commit 14bdd40cdbd21184fb5f47720f85008ec5de8242 Author: HugoPoi Date: Fri Apr 15 14:45:29 2022 +0200 feat: initial archive provided by archivarix.com diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3f39788 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +www/.content.*/binary/ diff --git a/README.txt b/README.txt new file mode 100644 index 0000000..62db0b9 --- /dev/null +++ b/README.txt @@ -0,0 +1,313 @@ + +This README.txt is provided in following languages: +Этот README.txt предоставлен на следующих языках: +Este README.txt está en los siguientes idiomas: + + * English + * Русский (смотрите ниже) + * Español (más abajo) + +============================================================================== + +INSTRUCTION (English version) +----------------------------- +This folder contains the files required for launching a copy of a recovered/downloaded website on the hosting server managed by Apache 2.x or NGINX. + +All the important files containing the website's content are in .content.xxxxxxxx directory. Its name starts with a period for security purposes, so that it is not displayed in the list of directories located on the server when the directory listing is opened. + +The most convenient way to upload a site to your hosting is to perform a simple installation through Archivarix CMS. + https://en.archivarix.com/cms/ +To do this, upload the script archivarix.cms.php to the root of your domain and open it in a browser. All you need is a unique serial number to your site, which is in each letter or on the page of your recovery. + +If you want to perform manual configuration, upload the directory .content.xxxxxxxx and the files .htaccess, index.php to the root of the site. + +ATTENTION!!! +In case you do not see the directory named .content.xxxxxxxx or the file named .htaccess, you are possibly using MacOS which hides directories and files whose names start with a period by default. To see them, press Cmd+Shift+. (period) on your keyboard. +In case you use a Unix terminal, you use the command `ls -a` (with the parameter -a), to see this directory and the files. + + +APACHE SERVER WITH PHP +---------------------- + * Make sure the server has PHP 5.6 or above installed on it. You also must have the PDO_SQLITE extension activated (it is named simply pdo for PHP 5, and pdo_sqlite for PHP 7) + * Please, avoid using PHP as Apache module. Use FastCGI mode instead. + * It is sufficient to upload the .content.xxxxxxxx directory and the index.php and the .htaccess files to the hosting server's root directory + + +NGINX SERVER WITH PHP +--------------------- +*Make sure the server has PHP 5.6 or above installed on it. You also must have the PDO_SQLITE extension activated (it is named simply pdo for PHP 5, and pdo_sqlite for PHP 7) + * It is sufficient to upload the .content.xxxxxxxx directory and the index.php file to the hosting server's root directory. + * You need to add the following rule to the NGINX configuration: + try_files $uri $uri/ /index.php; + Nginx configs can be very different. It's just important to direct all requests to /index.php, including *.php requests. + + +INTEGRATION WITH OTHER CMS +-------------------------- +To perform the integration, just upload the Archivarix CMS script (archivarix.cms.php) to the root of your site and perform the proposed installation using the serial number of your recovery. The system itself will determine Wordpress / Joomla and will suggest integration. + +Download the latest version of Archivarix CMS here: + https://en.archivarix.com/cms/ + +If you want to perform the integration manually, upload the .content.xxxxxxxxx folder with its contents to the root of the site. After that, upload the .htaccess, archivarix.php files from the archive to the root of the site using the link: + https://en.archivarix.com/download/archivarix.loader.integration.zip + +This solution will allow you to display the full working version of the old site on the site and at the same time add new pages to your CMS. You will not be able to see or edit the restored site from Wordpress. It is simply the work of two sites independently on the same domain. You can edit the restored site through Archivarix CMS. + +To disable integration, just delete the .htaccess and archivarix.php files. + +Attention, if you do not have Apache on the server, but only Nginx, then you need to add a rule that will direct ALL requests from nonexistent files and directories to the archivarix.php file in the root. To disable integration, be sure to remove this rule from the nginx configuration. + + +index.php PARAMETERS +-------------------- +ARCHIVARIX_LOADER_MODE + turns on the CMS mode, when the php-script coexists with your already installed CMS and does not do anything (passes the management to the CMS) if the requested address is not among the recovered ones. Upon the launch of this mode, the following five parameters are automatically turned off (*MISSING*). Read the instruction on integration above. By default, it is set to 0, i.e. turned off. Previously this parameter was called ARCHIVARIX_CMS_MODE. + +ARCHIVARIX_PROTOCOL + three values are available: "any" (default), "http" and "https". If the value is "any", the site will work on http and https at the same time. If the value is set to a specific protocol, then all requests will be redirected to this protocol. + +ARCHIVARIX_FIX_MISSING_IMAGES + display an empty, transparent .png picture in order to avoid possible 404 errors + +ARCHIVARIX_FIX_MISSING_CSS + display an empty text file in order to avoid possible 404 errors + +ARCHIVARIX_FIX_MISSING_JS + display an empty text file in order to avoid possible 404 errors + +ARCHIVARIX_FIX_MISSING_ICO + display an empty valid .ico file in order to avoid possible 404 errors + +ARCHIVARIX_REDIRECT_MISSING_HTML + the path where redirection should be carried out to in case of a missing .html page + +ARCHIVARIX_INCLUDE_CUSTOM + has parameters: + FILE - the name of the file that you place in .content.xxxxxxxx/includes/ directory + KEYPHRASE - a combination of symbols, tag ot comment that will be replaced to the content of the file, + LIMIT - of how many matches to replace, set -1 for unlimited + REGEX - set 1 to enable perl regular expressions, + POSITION - set -1 to place before KEYPHRASE, 0 to replace, 1 to place after KEYPHRASE + +ARCHIVARIX_CONTENT_PATH + if you have renamed the .content.xxxxxxxx directory specify the new name in this parameter. By default, the script automatically searches for a directory of the .content.xxxxxxxx type in its directory and uses the first found one. + +ARCHIVARIX_CACHE_CONTROL_MAX_AGE + for static files, the max-age parameter of the Cache-Control heading is set by default. You can change the time value in seconds or delete it by setting 0. + +ARCHIVARIX_CUSTOM_DOMAIN + restored website can run on another domain be default. Set this parameter only if $_SERVER['HTTP_HOST'] value is not recognized correctly. + +ARCHIVARIX_SITEMAP_PATH + specify the path for automatic generation of xml site maps. If the number of pages exceeds 50,000, a sitemap index will be created with links to xml sitemaps. + +ARCHIVARIX_CATCH_MISSING + experimental parameter. Tracks and saves the requested and not found URLs in a separate table. + + +CONTACTS +-------- +In case you have any other questions, need help or you've got great ideas about how our service can be improved - feel free to write an email to hello@archivarix.com or chat with our support on Telegram https://t.me/archivarixsupport + +============================================================================== + +ИНСТРУКЦИЯ (Русская версия) +--------------------------- +В данной папке содержатся файлы, необходимые для запуска копии восстановленного/скачанного сайта на хостинге под управлением Apache 2.x или NGINX. + +Все файлы с содержимым сайта находятся в папке .content.xxxxxxxx. Она начинается с точки по причинам безопасности, чтобы не отображаться в списке папок на сервере при открытом листинге директории. + +Самый удобный способ загрузить сайт на ваш хостинг, это выполнить простую установку через Archivarix CMS. + https://ru.archivarix.com/cms/ +Для этого загрузите скрипт archivarix.cms.php в корень вашего домена и откройте его в браузере. Вам понадобится только уникальный серийный номер вашего сайта, который есть в каждом письме или на странице вашего восстановления. + +Если вы хотите выполнить настройку вручную, то загрузите в корень сайта директорию.content.xxxxxxxx и файлы .htaccess, index.php. + +ВНИМАНИЕ!!! Если вы не видите папку с названием .content.xxxxxxxx или файла .htaccess, вероятнее всего вы используете операционную систему MacOS, которая по-умолчанию скрывает файлы и папки, начинающиеся с точки. Чтобы увидеть их, нажмите на клавиатуре комбинацию клавиш Cmd+Shift+. (точка). +Если вы пользуетесь терминалом на Unix-системе, используйте команду `ls -a` (с параметром -a), чтобы увидеть эту папку и файлы. + + +СЕРВЕР APACHE С PHP +-------------------- + * Убедитесь, что на сервере установлен PHP версии 5.6 или выше и php расширение PDO_SQLITE (для PHP 5-ой версии он просто называется pdo, для PHP 7-ой версии pdo_sqlite) + * Желательно не использовать PHP в режиме модуля Apache. Используйте режим FastCGI. + * На хостинг в корень достаточно загрузить папку .content.xxxxxxxx, а так же файлы index.php и .htaccess + + +СЕРВЕР NGINX С PHP +------------------ + * Убедитесь, что на сервере установлен PHP версии 5.6 или выше и php расширение PDO_SQLITE (для PHP 5-ой версии он просто называется pdo, для PHP 7-ой версии pdo_sqlite) + * На хостинг в корень достаточно загрузить папку .content.xxxxxxxx, а так же файл index.php + * В конфигурации NGINX необходимо добавить правило: + try_files $uri $uri/ /index.php; + Правила конфигурации nginx могут бывают очень разными. Важно, чтобы все запросы, включая *.php были направлены на /index.php + + +ИНТЕГРАЦИЯ С ДРУГИМИ CMS +------------------------ +Чтобы выполнить интеграцию, достаточно загрузить скрипт Archivarix CMS (archivarix.cms.php) в корень вашего сайта и выполнить предлагаемую установку по серийному номеру вашего восстановления. Система сама определит Wordpress/Joomla и предложит выполнить интеграцию. + +Актуальную версию Archivarix CMS скачайте здесь: + https://ru.archivarix.com/cms/ + +Если вы хотите выполнить интеграцию вручную, то загрузите в корень сайта папку .content.xxxxxxxxx с её содержимым. После этого загрузите в корень сайта файлы .htaccess, archivarix.php из архива по ссылке: + https://ru.archivarix.com/download/archivarix.loader.integration.zip + +Данное решение позволит отображать на сайте полноценную рабочую версию старого сайта и одновременно добавлять новые страницы в вашу CMS. Вы не сможете видеть или редактировать восстановленный сайт из Wordpress. Это просто работа двух сайтов независимо друг от друга на одном домене. Редактировать восстановленный сайт вы можете через Archivarix CMS. + +Чтобы отключить интеграцию, достаточно удалить файлы .htaccess и archivarix.php. + +Внимание, если у вас на сервере нет Apache, а стоит только Nginx, то необходимо добавить правило, которое будет направлять ВСЕ запросы у несуществующих файлов и директорий на файл archivarix.php в корне. Для отключения интеграции не забудьте убрать это правило из конфигурации nginx. + + +ПАРАМЕТРЫ index.php +------------------- +ARCHIVARIX_LOADER_MODE + включает режим CMS, когда наш php скрипт живет совместно с вашей установленной CMS и ничего не делает (передает управление CMS) если запрашиваемого адреса нет среди восстановленных. При включении этого режима автоматически отключаются последующие 5 параметров (*MISSING*). Инструкцию по интеграции читайте выше. Ранее этот параметр назывался ARCHIVARIX_CMS_MODE. + +ARCHIVARIX_PROTOCOL + доступны три значения: "any" (по-умолчанию), "http" и "https". При значении "any" сайт будет работать на http и https одновременно. Если значение установить конкретный протокол, то все запросы будут перенаправляться на этот протокол. + +ARCHIVARIX_FIX_MISSING_IMAGES + показывать пустую прозрачную png картику, чтобы избежать лишних 404 ошибок + +ARCHIVARIX_FIX_MISSING_CSS + показывать пустой текстовой файл, чтобы избежать лишних 404 ошибок + +ARCHIVARIX_FIX_MISSING_JS + показывать пустой текстовой файл, чтобы избежать лишних 404 ошибок + +ARCHIVARIX_FIX_MISSING_ICO + показывать пустой валидный ico файл, чтобы избежать лишних 404 ошибок + +ARCHIVARIX_REDIRECT_MISSING_HTML + путь, куда следует делать перенаправление в случае отсутствующей html страницы + +ARCHIVARIX_INCLUDE_CUSTOM + имеет параметры: + FILE - название подгружаемого файла, который нужно расположить в папке .content.xxxxxxxx/includes/, + KEYPHRASE - комбинация символов, тег или комментарий, вхождение которого будет заменено на содержимое указанного файла, + LIMIT - количество найденных вхождений, которые будут заменены, уставновите -1 для замены всех вхождений, + REGEX - set 1 to enable perl regular expressions, + POSITION - установите значение -1, чтобы подгрузить файл до найденной KEYPHRASE, 0 чтобы заменить, 1 чтобы подгрузить после KEYPHRASE + +ARCHIVARIX_CONTENT_PATH + если вы сменили название папки .content.xxxxxxxx, тогда укажите его в этом параметре. По-умолчанию скрипт автоматически ищет папку вида .content.xxxxxxxx в своей директории и использует первую найденную + +ARCHIVARIX_CACHE_CONTROL_MAX_AGE + для статических файлов по-умолчанию задан параметр max-age заголовка Cache-Control. Вы можете изменить значение времени в секундах или убрать его выставив 0 + +ARCHIVARIX_CUSTOM_DOMAIN + восстановленные сайты могут работать на других доменах по-умолчанию. Используйте этот параметр только если $_SERVER['HTTP_HOST'] не распознается корректно. + +ARCHIVARIX_SITEMAP_PATH + укажите путь для автоматической генерации xml карты сайта. Если количество страниц превышает 50000, то создастся sitemap index с ссылками на xml sitemap'ы. + +ARCHIVARIX_CATCH_MISSING + экспериментальный параметр. Отслеживает и сохраняет в отдельную таблицу запрашиваемые и не найденные урлы. + +КОНТАКТЫ +-------- +Если у Вас есть другие вопросы, нужна помощь или появились хорошие идеи для улучешения нашего сервиса - пишите на наш имейл hello@archivarix.com или пообщайтесь с нашей поддержкой в Telegram https://t.me/archivarixsupport + +============================================================================== + +INSTRUCCIÓN (versión española) +------------------------------ +Esta carpeta contiene los archivos, necesarios para lanzar la copia del sitio restaurado/descargado en el alojamiento web bajo el control de Apache 2.x o NGINX. + +Todos los archivos con el contenido del sitio se encuentran en la carpeta .content.xxxxxxxx. Empieza por un punto por motivos de seguridad, para no reflejarse en la lista de carpetas en el servidor con el listado abierto del directorio. + +La forma más conveniente de cargar un sitio en su alojamiento es realizar una instalación simple a través de Archivarix CMS. + https://es.archivarix.com/cms/ +Para hacerlo, suba el script archivarix.cms.php a la raíz de su dominio y ábralo en un navegador. Solo necesitará el número de serie único de su sitio, que se encuentra en cada letra o en su página de recuperación. + +Si desea realizar la configuración manualmente, cargue el directorio .content.xxxxxxxx y los archivos .htaccess, index.php en la raíz del sitio. + +¡¡¡ATENCION!!! Si no ve la carpeta con el nombre .content.xxxxxxxx o el archivo .htaccess, lo más seguro es que esté usando el sistema operativo MacOS, el cual por defecto oculta los archivos y las carpetas que empiezan por un punto. Para verlos, pulse en el teclado la combinación de teclas Cmd+Shift+. (punto). +Si usa un terminal en un sistema Unix, use el comando `ls -a` (con el parámetro -a), para ver esta carpeta y archivos. + + +SERVIDOR APACHE CON PHP +----------------------- + * Asegúrese de que en el servidor esté instalado PHP versión 5.6 o superior y la extensión php PDO_SQLITE (para PHP versión 5 se llama simplemente pdo, para PHP versión 7 pdo_sqlite) + * Por favor, evite usar PHP como módulo Apache. Utilice el modo FastCGI en su lugar. + * En el alojamiento web, en la raíz, es suficiente con cargar la carpeta .content.xxxxxxxx, así como los archivos index.php y .htaccess + +SERVIDOR NGINX CON PHP +---------------------- + * Asegúrese de que en el servidor esté instalado PHP versión 5.6 o superior y la extensión php PDO_SQLITE (para PHP versión 5 se llama simplemente pdo, para PHP versión 7 pdo_sqlite) + * En el alojamiento web, en la raíz, es suficiente con cargar la carpeta .content.xxxxxxxx, así como el archivo index.php + * En la configuración NGINX hay que añadir la regla: + try_files $uri $uri/ /index.php; + Las configuraciones de Nginx pueden ser muy diferentes. Es importante dirigir todas las solicitudes a /index.php, incluidas las solicitudes * .php. + + +INTEGRACIÓN CON OTROS CMS +------------------------- +Para realizar la integración, simplemente cargue el script Archivarix CMS (archivarix.cms.php) en la raíz de su sitio y realice la instalación propuesta utilizando el número de serie de su recuperación. El sistema mismo determinará Wordpress / Joomla y sugerirá la integración. + +Descargue la última versión de Archivarix CMS aquí: + https://es.archivarix.com/cms/ + +Si desea realizar la integración manualmente, cargue la carpeta .content.xxxxxxxxx con su contenido en la raíz del sitio. Después de eso, cargue los archivos .htaccess, archivarix.php del archivo a la raíz del sitio usando el enlace: + https://es.archivarix.com/download/archivarix.loader.integration.zip + +Esta solución le permitirá mostrar la versión de trabajo completa del sitio anterior en el sitio y, al mismo tiempo, agregar nuevas páginas a su CMS. No podrá ver ni editar el sitio restaurado desde Wordpress. Es simplemente el trabajo de dos sitios independientemente en el mismo dominio. Puede editar el sitio restaurado a través de Archivarix CMS. + +Para deshabilitar la integración, simplemente elimine los archivos .htaccess y archivarix.php. + +Atención, si no tiene Apache en el servidor, sino solo Nginx, debe agregar una regla que dirija TODAS las solicitudes de archivos y directorios inexistentes al archivo archivarix.php en la raíz. Para deshabilitar la integración, asegúrese de eliminar esta regla de la configuración de nginx. + + +PARÁMETROS index.php +-------------------- +ARCHIVARIX_LOADER_MODE + activa el modo CMS, cuando nuestro script php convive conjuntamente con su CMS instalado y no hace nada (le pasa el control al CMS) si la dirección solicitada no está entre las restauradas. Al activar este modo, automáticamente se desactivan los siguientes 5 parámetros (*MISSING*). Lea más arriba la instrucción de integración. Anteriormente este parámetro se llamaba ARCHIVARIX_CMS_MODE. + +ARCHIVARIX_PROTOCOL + hay tres valores disponibles: "any" (predeterminado), "http" y "https". Si el valor es "any", el sitio se ejecutará en http y https al mismo tiempo. Si el valor se establece en un protocolo específico, todas las solicitudes se redirigirán a este protocolo. + +ARCHIVARIX_FIX_MISSING_IMAGES + mostrar una imagen png vacía transparente, para evitar excesivos errores 404 + +ARCHIVARIX_FIX_MISSING_CSS + mostrar un archivo de texto vacío, para evitar excesivos errores 404 + +ARCHIVARIX_FIX_MISSING_JS +mostrar un archivo de texto vacío, para evitar excesivos errores 404 + +ARCHIVARIX_FIX_MISSING_ICO +mostrar un archivo ico válido vacío, para evitar excesivos errores 404 + +ARCHIVARIX_INCLUDE_BODY + precisamente como el parámetro anterior. El nombre del archivo, cuyo contenido se añade delante del tag de cierre para las páginas html. + +ARCHIVARIX_INCLUDE_CUSTOM + tiene parámetros: + FILE - nombre del archivo que se carga, que hay que ubicar en la carpeta .content.xxxxxxxx/includes/, + KEYPHRASE - combinación de símbolos, tag o comentario, cuya entrada será reemplazada por el contenido del archivo indicado + LIMIT - cuántas coincidencias reemplazar, -1 para ilimitado + REGEX - establece 1 para habilitar las expresiones regulares en Perl, + POSITION - configure -1 para colocar antes de KEYPHRASE, 0 para reemplazar, 1 para colocar después de KEYPHRASE + +ARCHIVARIX_CONTENT_PATH + si ha cambiado el nombre de la carpeta .content.xxxxxxxx, entonces indíquelo en este parámetro. Por defecto el script busca automáticamente la carpeta de tipo .content.xxxxxxxx en su directorio y usa la primera encontrada + +ARCHIVARIX_CACHE_CONTROL_MAX_AGE + para los archivos estáticos por defecto está establecido el parámetro max-age del encabezado Cache-Control. Puede cambiar el valor en segundos o quitarlo poniendo 0 + +ARCHIVARIX_CUSTOM_DOMAIN + los sitios restaurados pueden funcionar en otros dominios por defecto. Use este parámetro sólo si $_SERVER['HTTP_HOST'] no se reconoce correctamente. + +ARCHIVARIX_SITEMAP_PATH + especifique la ruta para la generación automática de mapas de sitio xml. Si el número de páginas supera las 50,000, se creará un índice de mapa del sitio con enlaces a mapas de sitios xml. + +ARCHIVARIX_CATCH_MISSING + parámetro experimental. Hace un seguimiento y guarda las URL solicitadas y no encontradas en una tabla separada. + +CONTACTOS +--------- +Si tiene otras dudas, necesita ayuda o tiene buenas ideas para mejorar nuestro servicio - escríbanos a nuestro correo electrónico hello@archivarix.com o póngase en contacto con nuestro servicio de soporte técnico en Telegram https://t.me/archivarixsupport + diff --git a/www/.content.EZtzwPjb/1px.png b/www/.content.EZtzwPjb/1px.png new file mode 100644 index 0000000..26b59e7 Binary files /dev/null and b/www/.content.EZtzwPjb/1px.png differ diff --git a/www/.content.EZtzwPjb/empty.css b/www/.content.EZtzwPjb/empty.css new file mode 100644 index 0000000..e69de29 diff --git a/www/.content.EZtzwPjb/empty.ico b/www/.content.EZtzwPjb/empty.ico new file mode 100644 index 0000000..9b3e545 Binary files /dev/null and b/www/.content.EZtzwPjb/empty.ico differ diff --git a/www/.content.EZtzwPjb/empty.js b/www/.content.EZtzwPjb/empty.js new file mode 100644 index 0000000..e69de29 diff --git a/www/.content.EZtzwPjb/html/002fd88c291fcde5805d4fccf42035c7e80c4c16.00000433.html b/www/.content.EZtzwPjb/html/002fd88c291fcde5805d4fccf42035c7e80c4c16.00000433.html new file mode 100644 index 0000000..d076807 --- /dev/null +++ b/www/.content.EZtzwPjb/html/002fd88c291fcde5805d4fccf42035c7e80c4c16.00000433.html @@ -0,0 +1,382 @@ + + + + + + + Linux – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+ +
+
+
+
+
+

Pourquoi je suis sous Linux bordel !

Début d’année 2017, 6 mois que j’ai pas écrit sur le blog ! Cette année j’ai pris une résolution un choix de merde je n’installerais plus Windaube que se soit pour moi ou pour la dépanne, les amis, la famille, mon chat … Bref pendant les fêtes j’avais de la maintenance à faire comme d’habitude fallait faire une réinstallation pour la famille « met moi Windows 7 ça me suffit et au moins il y tout qui marche dessus » ça faisait environ plus 1 an que j’avais pas installé de windaube. Je me dit que ça va me prendre une petite demi journée. J’ai mis plus d’une journée si on compte le temps de faire les mises à jour. (suite…)

+
Par HugoPoi, il y a

Préparation Migration

Après réception de ma freebox revolution et son switch gigabit il est temps de s’occuper de mon home serveur :

+

Windows est facile mais chiant pour certains trucs… Trop de contraintes pour un usage à la maison et oui je suis sûr que certain vont troller car chez moi j’ai un serveur avec comme OS Windows Server 2008 R2. Mais pourquoi Windows Server? Première raison, tous les postes à la maison sont sous windows 7 (pour jouer c’est mieux ;). Deuxième raison, j’avais envie de me faire la main sur 2008 avec son lot de nouveautés dont la gestion des machines virtuelles VM qui est très pratique. Mais c’est vraiment trop lourd comme OS, il faut 10 minutes pour installer un service style DNS et la majorité des services réseaux ont besoin de Active Directory pour fonctionner. Dès que j’ai installé AD, ça a foutu la merde partout sur les trucs déjà configurés donc je suis retourné en arrière. Aussi IIS c’est un peu la foire pour trouver un paramètre donc je préfère utiliser un Apache. (suite…)

+
Par HugoPoi, il y a
+
+ +
+
+
+
+ +
+
+ + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/005f6e9f06b67a9f5dc40b29fc005d912c44bc3f.00000418.html b/www/.content.EZtzwPjb/html/005f6e9f06b67a9f5dc40b29fc005d912c44bc3f.00000418.html new file mode 100644 index 0000000..cc1e4a5 --- /dev/null +++ b/www/.content.EZtzwPjb/html/005f6e9f06b67a9f5dc40b29fc005d912c44bc3f.00000418.html @@ -0,0 +1,364 @@ + + + + + + + Grooveshark – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+ +
+
+
+
+
+

Pascal Negre tu m’emmerdes

Bon sérieux, Pascal Negre il commence à me les briser sec. Après Deezer qui est devenu une belle merde car il n’y a plus que les Black Eyed Peas, Justin et Britney, la plateforme est devenue complètement payante et cela reste cher au vu du catalogue proposé. Puis l’année dernière Lire la suite…

+
Par HugoPoi, il y a
+
+ +
+
+
+
+ +
+
+ + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/00b777416ac8a2daa632a990301872b7badb3b51.00000024.html b/www/.content.EZtzwPjb/html/00b777416ac8a2daa632a990301872b7badb3b51.00000024.html new file mode 100644 index 0000000..83aa496 --- /dev/null +++ b/www/.content.EZtzwPjb/html/00b777416ac8a2daa632a990301872b7badb3b51.00000024.html @@ -0,0 +1,548 @@ + + + + + + + + Stop au terme pirate – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+ +
+
+
+
+
+
+

Après la petite interview de Pascal Nègre réalisée par TF1 News, j’en ai eu marre de voir encore et toujours le terme « pirate » pour désigner les personnes qui téléchargent illégalement. Pour rappel, la définition du terme « pirate » : Le mot pirate provient à la fois du terme grec πειρατής (peiratês), lui même dérivé du verbe πειράω (peiraô) signifiant « s’efforcer de », « essayer de », « tenter sa chance à l’aventure » et du latin pirata : celui qui tente la fortune, qui entreprend. Ce n’est qu’au Moyen Âge que le pirate désigne un bandit qui parcourait les mers pour piller des navires de commerce.

+

Alors Pascal, prenons comme point de départ que vous désignez « pirate » ceux qui pillent votre maison de disque. Cela voudrait donc dire que je viens avec ma bande de flibustier équipé de canon pour défoncer votre devanture et voler votre argent. Mais ceci n’est exact puisque je ne vais pas chez votre fabricant de disques voler les disques fabriqués pour les revendre au plus offrant et me faire plein de blé. Moi je ne suis qu’un pauvre étudiant qui n’a aucun moyen financier, et je ne pourrais jamais acheter sur iDaube (=iTunes) de quoi remplir l’iPaud que je n’aurais jamais (d’après mes calculs : en se basant sur un ipod 8 Go et un titre fait environ 10Mo donc sa fait 8000/10=800 que l’on multiplie par le prix d’un titre soit 0.99€, 800*0.99=792€ ). Pour revenir au téléchargement illégal, quand je télécharge un titre, je ne le vole pas car je n’aurais pas pu l’acheter donc je ne crée pas un manque à gagner pour votre entreprise. Et même au contraire, je contribue à la promotion de vos artistes en téléchargeant  car quand je trouve un truc bien, j’en fais la promotion en parlant à mes contacts de ce que j’ai trouvé. En attendant, vous dites que les artistes qui vendent 100000 disques touchent à peine 2000€. Mais vous, votre salaire c’est combien ? 8000€ ou plus dans les 20000€ (vous êtes plus Audi ou BMW ?). Je vous cite « moins de nouveaux talents émergent » …Ah bon !?!$$?? et la nouvelle star , stardaube, j’en passe et des meilleurs, ça ne vous fait pas des nouvelles daubes à sortir ?

+

Pour revenir sur le coeur du sujet « pirate », je ne sais pas si j’ai réussi à tuer un artiste technicien sonore en sabordant téléchargeant rené la taupe. En tout cas Sarko pour vous c’est une bonne affaire, avec la carte musique jeune qui vous fait une belle prime de fin d’année donnée gracieusement par nos impôts. J’espère que vous offrirez des Ipods à vos enfants. Puis le coup hadopi aussi, pour faire peur au gens et les faire culpabiliser de vous faire gagner moins d’argent cette année. Je vous cite encore une fois pour finir : « j’ai simplement  dit que je ne croyais pas au modèle de la gratuité de la musique financée par la pub. Ni pour Deezer, ni surtout pas pour nous. » , bien joué le « je ne croyais pas » c’étais facile pour vous de mettre la pression à Deezer en augmentant votre dîme parce que si vous les aviez laissés continuer dans cette voie, il aurait fallu que vous baissiez votre salaire pour rémunérer vos artistes.

+

C’est là que je m’aperçois que je n’ai pas tout à fait réussi à garder mon sang froid. Dans l’attente que tu me lises Pascal, je t’embrasse, Bisous @++.

+

PS Pour Pascal :

+

http://bluetouff.com/2010/11/24/hadopi-pascal-negre-defend-son-bebe/

+

http://www.glazman.org/weblog/dotclear/index.php?post/2010/11/24/Reponse-a-Pascal-Negre-qui-commence-a-serieusement-m-echauffer-les-oreilles

+
+
+
+
+
Catégories : HadopiNews
+
+
+
+ + + + + + + + + +
+
+
+
+
+
+
+

+ 4 commentaires

+
+ +
+
+
+
+

+ Xavier + · 26 novembre 2010 à 0 h 05 min +

+

Ouah sa va tu t’est lâché . Lol . Il doit bien avoir un Twitter ou un Facebook pour lui transmettre l’info LOL. Néanmoins je pense qu ce qu’on télécharge est quelque chose que l’on achètera pas donc il y à perte d’argent quand même .mais avec la pub faite grâce au téléchargement ils ne perdent rien .fin voila jdit sa jdit rien moi ;)

+ +
+
+ +
+ +
+
+
+
+

+ HugoPoi + · 26 novembre 2010 à 10 h 20 min +

+

J’ai twitter l’article à Monsieur Pascal Nègre mais je pense que même si il m’a lu, il n’a pas le temps de répondre à toutes les critiques qu’on lui fait entre Numerama, Bluetouff, Glazman …
+Quand tu dis que si on télécharge quelque chose, on ne l’achètera pas, c’est faux parce que quand un truc me plait vraiment je vais l’acheter.

+ +
+
+ +
+ +
+
+
+
+

+ saad + · 25 avril 2011 à 21 h 26 min +

+

cool

+ +
+
+ +
+
+

+ Tweets that mention Stop au terme pirate | HugoPoi -- Topsy.com + · 28 novembre 2010 à 3 h 08 min +

+

[…] This post was mentioned on Twitter by HugoPoi, HugoPoi. HugoPoi said: Stop au terme pirate http://bit.ly/flDnyU @Pascal_Negre […]

+ +
+
+ +
+
+
+

Répondre à Tweets that mention Stop au terme pirate | HugoPoi -- Topsy.com Annuler la réponse

Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

+
+
+

+ +

+
+
+
+
+
+
+ +
+
+
+
+
+
+ + +
+ + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/0133ec9db2ff56b2338940cfd52039a10bf2abe3.00000048.xml b/www/.content.EZtzwPjb/html/0133ec9db2ff56b2338940cfd52039a10bf2abe3.00000048.xml new file mode 100644 index 0000000..d05c58b --- /dev/null +++ b/www/.content.EZtzwPjb/html/0133ec9db2ff56b2338940cfd52039a10bf2abe3.00000048.xml @@ -0,0 +1,49 @@ + + + Commentaires sur : Coup de gueule + + http://blog.hugopoi.net/2011/01/06/coup-de-gueule/ + Internet, Hardware et Bidouille + Mon, 22 Aug 2016 14:09:10 +0000 + hourly + 1 + https://wordpress.org/?v=4.6.1 + + Par : HugoPoi + http://blog.hugopoi.net/2011/01/06/coup-de-gueule/#comment-42 + + Thu, 06 Jan 2011 23:31:52 +0000 + http://blog.hugopoi.net/?p=155#comment-42 + + Pour le 25 j’ai pas testé, tous mes transferts de mail se font en SSL sur les ports par default.

+

Très intéressant le lien merci.

+]]>
+
+ + Par : ®om + http://blog.hugopoi.net/2011/01/06/coup-de-gueule/#comment-41 + + Thu, 06 Jan 2011 21:22:55 +0000 + http://blog.hugopoi.net/?p=155#comment-41 + + Tout à fait d’accord avec toi.

+

Cet article de rwwfr explique la situation avec Orange : Orange donne un aperçu de l’internet sans neutralité du net.

+

L’Internet mobile n’est pas Internet, car on n’a pas d’IP publique (on a qu’une IPv4 sur le réseau privé de l’opérateur). Au passage, je ne sais pas quand ils ont prévu de passer en IPv6…

+

Orange est vraiment le FAI à fuir : ils sont ouvertement contre la neutralité du net, et ne se privent pas de bloquer des ports y compris sur leur « Internet » fixe (le port 25 par exemple).

+

Côté mobile, Bouygues est également à fuir (ils bloquent également le port 25, il faut configurer le client mail pour passer par le port 587).

+

Chez SFR, au moins ils ne bloquent pas de ports (le SSH passe sur n’importe quel port). Je ne sais pas par contre s’ils priorisent (le réseau mobile est tellement lent que c’est difficile de s’en rendre compte). Mais ça reste du non-Internet (pas d’IP publique, usages interdits par contrat, etc.).

+]]>
+
+
+
diff --git a/www/.content.EZtzwPjb/html/0189f146ca378965fc51c8a59ff8f8a3ff9d5fd8.00000170.html b/www/.content.EZtzwPjb/html/0189f146ca378965fc51c8a59ff8f8a3ff9d5fd8.00000170.html new file mode 100644 index 0000000..0291972 --- /dev/null +++ b/www/.content.EZtzwPjb/html/0189f146ca378965fc51c8a59ff8f8a3ff9d5fd8.00000170.html @@ -0,0 +1,869 @@ + + + + + + + + Réparer un Vidéoprojecteur Sony VPL-CX5 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+ +
+
+
+
+
+
+

Bon les cocos, j’ai récupéré un vidéo projecteur Sony VPL-CX5 en état décédé. Comme je sais que c’est encore et toujours ce problème d’obsolescence programmée j’ai donc décidé de le réparer.

+

Sony VPL-CX5

+

Première étape, identifier la panne

+

Le vidéoprojecteur ne donnait aucun signe de vie, aucune led ne s’allume quand je l’ai branché rien du tout même pas un petit crépitement d’alimentation. Je pense a un problème d’alimentation mais rien est sur tant que je ne l’ai pas démonté. Mais avant le dévissage je vais quand même faire une recherche Google car le Internet il est grand et il est beau. J’ai trouvé un truc qui m’a mis la puce à l’oreille sans même avoir enlever la première visse, sur un forum quelconque que je n’arrive plus à retrouver, un mec dit qu’il a changé un composant (un certain MCZ3001) sur une des cartes d’alimentation, et le vidéoprojecteur remarchait.

+

Démontage

+

Sony VPL-CX5

+

J’ai donc commencé par enlever les quelques visses, puis démonter toutes les cartes une par une, une vrai galère. Pour m’aider j’ai trouvé le « manuel de service » (or Service Manual) que je mets a disposition ici même : sony_vpl-cx5_cs5_servicemanual. J’ai mis dans la suite les références des connecteurs pour les mesures.

+

1) Premier test vérifier le fusible sur la première carte d’alimentation GA, faire le test avec la carte débranché, j’ai utilisé un voltmètre sur la position test de résistance : test OK.

+

2) Deuxième test, vérifier la tension continu fournie par cette carte GA sur le connecteur de sortie CN2001 environ 380V DC, DONC FAIRE CECI AVEC PRÉCAUTION (je l’ai fait avec un voltmètre de merde à 5€) : test OK j’ai 380 Volt en sortie. Sur cette carte il y un gros condensateur de 400V donc faire TRÈS ATTENTION MÊME QUAND LA CARTE EST DÉBRANCHÉ DU SECTEUR.(j’ai vérifier le condensateur se décharge assez vite j’ai mesuré 4V 10 secondes après avoir débranché)

+

3) Maintenant test de la carte GB qui transforme le 400V continu en basse tension continu ici du 24V d’après le SM. Donc j’ai le point de mesure parfait, c’est le connecteur CN3201.

+
N'oubliez d'ouvrir le manuel de service ça donne des infos précieuses pour le dépannage

N’oubliez d’ouvrir le manuel de service ça donne des infos précieuses pour le dépannage

+

Plusieurs points pour tester le plus pratique étant le petit connecteur blanc de 3 broches qui fournit la masse et VCC 24V. Après mesure sur ce connecteur j’ai une tension stable mais pas du 24VDC, les composants n’ont pas l’air endommagés donc je vérifie à l’entrée du fameux MCZ3001 il est bien alimenté correctement mais ne sort pas 24VDC. Pas de condensateurs chimiques endommagés.

+

Donc la panne est certainement dû à ce composant, achetons-le !

+

Trouver le composant de rechange

+

Au début j’ai cherché chez des e-commerçant d’électronique comme Farnell,Conrad, etc pas trouvé en france, puis j’ai fait les marchants Anglais et je l’ai trouvé mais à 30€ frais de port inclus. Et comme un con j’avais oublié de faire Ebay : encore un coup des chinois 4.27€ avec le support DIP et les frais de port inclus OMFG j’adore la mondialisation. J’en ai pris 2 pour mois de 10€ et comme les chinois ils sont trop fort j’ai tout reçu en moins de 2 semaines.

+

Capture-ebay-mcz3001

+

Dés-soudage

+

Bon j’avais des fer à souder de merde et du coup c’est le #FAIL, j’ai pas réussi à dés-souder proprement, j’ai donc été obligé d’investir dans une merde à 10€ :

+

Fer à souderEnsuite j’ai finalement réussi à dés-souder :

+

Carte GB MCZ3001 dés-soudéEt il me semble que sur cette photo j’avais nettoyer avec du dissolvant.

+

Remontage

+

Alors je suis désolé mais je n’ai pas de photos pour le MCZ soudé car j’avais déjà remonté le projecteur. Les étapes :

+
    +
  1. Souder un support fourni (au cas ou ce fameux MCZ rendrais encore l’âme)
  2. +
  3. Placer un MCZ neuf dans le support
  4. +
  5. Relier la carte GA et GB ensemble
  6. +
  7. Brancher sur le 220V
  8. +
  9. Tester le 24VDC sur le connecteur CN3201
  10. +
  11. #WIN
  12. +
  13. Remonter le projecteur
  14. +
  15. Tester en vrai
  16. +
  17. #WIN2
  18. +
+

Conclusion

+

Oui c’est un WIN d’une valeur 4€ mais je tiens à préciser que ça représente environ 10 heures de travail continu. Entre les recherches Google et la lecture de la documentation, les heures passés au démontage, les quelques fois ou je me suis arraché les cheveux et risquer ma vie avec un voltmètre à 5€.

+

Mon banc de test

+

Banc de test chez HugoLa table du salon 2Les Tofs

+ + +
+
+
+ +
+
+ + + + + + + + + +
+
+
+
+
+
+
+

+ 16 commentaires

+
+ +
+
+
+
+

+ Georg + · 30 janvier 2014 à 12 h 22 min +

+

Hello,
+dear Hugo, at first: HAVE MANY THANKS FOR YOUR VERY INTERESTING BLOG!!!

+

I also have a cx5 and try to repair it.

+

It has the same problems like your projector…

+

I’ve measured the CN2001 but in my power supply there are only 320 V (stable).
+Are you sure, that there have to be 380V?
+In the service manual, I didn’t find a value (either 320V nor 380V)

+

Best Regards
+Your Georg

+ +
+
+
    +
    + +
    +
    +
    +
    +

    + HugoPoi + · 21 février 2014 à 17 h 36 min +

    +

    Sorry to be so long to answer,
    +320V seems to be OK, I have extrapolated the value from the schema ~ 220Vxrootsquare(2) but this depends of the quality of your current source. I think 320 will not impact the power for the next card.

    +

    Good repair !
    +Thanks for the comment :-D

    + +
    +
    + +
+ +
+ +
+
+
+
+

+ henri moine + · 2 février 2014 à 20 h 43 min +

+

Bonsoir,
+Merci beaucoup pour l’explication détaillée et les photos.
+Je vais pas tarder de m’attaquer à mon SONY VPL CS7 bizarrement inerte depuis quelques semaines…
+Bonne continuation !

+ +
+
+
    +
    + +
    +
    +
    +
    +

    + florian + · 21 avril 2014 à 9 h 09 min +

    +

    Bonjour,
    +Je possède également un sony VPL CS7, et depuis plusieurs mois il a quelques signes de faiblesses.

    +

    1) lorsque je le débranche du secteur et que je le rebranche, il faut que j’attende 24 à 48 h pour que le voyant on/off se mette à éclairer, donc je ne peux pas l’allumer pendant ce temps.

    +

    2) aujourd’hui j’ai beau le laisser brancher, aucun signe de vie plus rien ne s’allume.

    +

    As tu attaqué ton VPL, As tu trouvé quelque chose ?

    +

    Merci

    + +
    +
    +
      +
      + +
      +
      +
      +
      +

      + HugoPoi + · 9 mai 2014 à 17 h 50 min +

      +

      Le VPL que j’avais était en panne je l’ai réparé jusqu’à il y a 2 mois ou il retombé en panne. Ton problème d’allumage ressemble à un problème de condensateur cramé. tu peux regarder si tu en vois des gonflés en démontant.

      + +
      +
      + +
    + +
+ +
+ +
+
+
+
+

+ Ghent + · 21 septembre 2014 à 12 h 48 min +

+

Bonjour,

+

Déjà, super tuto.
+Je rencontre un problème à priori similaire avec mon CX5: le bouton de mise sous tension n’est plus éclairé et il ne se passe rien quand j’appuie dessus.

+

Je me suis donc lancé, et j’ai démonté jusqu’à atteindre les cartes d’alimentation.
+J’ai mesuré donc au niveau du CN3201, et là j’ai 22V continu stable.
+D’où ma première question, ai-je le même problème que toi avec le MCZ3001, ou dois-je chercher autre part ?
+Faut-il 24V exactement ?

+

Ensuite, j’ai essayé de me rapprocher du composant lui-même, mais je ne sais pas où mesurer. Le diagramme indique le VC1 sur la patte 8, mais je ne sais pas où prendre la masse.
+Saurais-tu m’aider ?

+

J’ai enfin voulu tester la tension en sortie de la carte GB, le point 17V, mais même question, si je teste la patte 1 du connecteur, où prendre la masse pour vérifier qu’il y a bien 17V ?
+Cette partie est-elle alimentée malgré que l’appareil soit éteint ?

+

Dans tous les cas, j’ai commandé le MCZ3001D, mais je voudrais m’assurer qu’il est bien le responsable avant de le changer.

+

Merci d’avance pour tes réponses, et encore une fois, merci de partager ton travail !

+ +
+
+
    +
    + +
    +
    +
    +
    +

    + HugoPoi + · 26 septembre 2014 à 15 h 01 min +

    +

    Je penses que si tu as 22V sur CN3201 le problème est sûrement ailleurs. Même si cela ne coûte rien de changer le MCZ3001D si tu as de quoi dessouder proprement. Regarde sur le service manuel pour tester les autres tensions qui sortent de la carte après les partie d’isolement, de mémoire il y a 3,3 V et du 5V.

    + +
    +
    +
      +
      + +
      +
      +
      +
      +

      + Neckron + · 12 décembre 2014 à 21 h 32 min +

      +

      Bonsoir, je déterre un peu ce vpl-cx5 que je possède et que je vends !!!
      +Je voie qu’il y a encore des personnes qui s’y intéresse.
      +Je précise juste que le mien est en excellent état de marche, il y a la télécommande et qu’il n’a servi QUE 220 Heures. Lampe d’origine. Je cherchais pendant un temps un moyen de l’upgrader pour l’image, mais finalement…. je change…

      + +
      +
      + +
    + +
+ +
+ +
+
+
+
+

+ Jean-Marie + · 31 décembre 2014 à 14 h 43 min +

+

Bonjour Hugo.
+Merci pour ton partage d’expérience.
+Moi aussi, j’ai un VPL-CS7 inerte comme tu dis. Pas la moindre led s’allume ou clignote quand je le branche.
+Je l’ai complètement démonté. Je soupçonne un composant sur le bloc d’alim.
+As-tu réparé le tien ?
+Merci.
+JM.

+ +
+
+
    +
    + +
    +
    +
    +
    +

    + HugoPoi + · 31 janvier 2015 à 15 h 13 min +

    +

    Moi j’ai bien réparé mon CX5 mais celui-ci est retombé en panne 6 mois plus tard. Cette fois-ci avec plus de composants endommagés :-(
    +Bon courage pour les réparations.

    + +
    +
    + +
+ +
+ +
+
+
+
+

+ Sorce + · 14 mars 2015 à 16 h 05 min +

+

Bonjour ,j’ai un vpl cs6 ,qui ne s’allume pas rien du tous j’ai suivi tes étape et sur le connecteur con 2001 et la 325v bizarre bon je relie la carte gb pour tester au borne du con 3201 et la 15v et sa retombe et sa remonte a 15v peut tu m aider cdt richard (pense tu que je doi changer le mcz)

+ +
+
+
    +
    + +
    +
    +
    +
    +

    + HugoPoi + · 29 avril 2015 à 16 h 18 min +

    +

    Vérifiez les autres tensions en sortie de la carte GB, de mémoire il doit y avoir 3,3 V du 5 V et du 15V. Si tout est OK, la carte-mère principale est peut-être endommagé et pas moyen de réparer sans changement.

    + +
    +
    + +
    + +
    +
    +
    +
    +

    + Gilles + · 16 juin 2018 à 13 h 44 min +

    +

    Même chose que vous ?
    +Avez-vous trouvé une solution ?
    +Est-ce que c’est normal cette tension non stable ?

    + +
    +
    + +
+ +
+ +
+
+
+
+

+ Daoud Yacoub + · 20 octobre 2015 à 9 h 54 min +

+

Je remercie beaucoup l’equipe

+ +
+
+ +
+ +
+
+
+
+

+ Daoud Yacoub + · 20 octobre 2015 à 10 h 02 min +

+

Aidez moi à depanner mon vidéo projecteur le tout ne s’allume pas ;jai démonté et nettoyer toutes les plaques alimentation et logique me rien ne se passe mais en toute sincérité si je peux avoir le document technique de réparation m’est indispensable

+ +
+
+
    +
    + +
    +
    +
    +
    +

    + HugoPoi + · 24 octobre 2015 à 13 h 39 min +

    +

    Les commentaires n’ont pas pour vocation d’être un forum :-)

    + +
    +
    + +
+ +
+
+
+

Répondre à Neckron Annuler la réponse

Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

+
+
+

+ +

+
+
+
+
+
+
+ +
+
+
+
+
+
+ + +
+ + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/01e8c6b7fe4d8e53eb07248dc09f205dd23faa5b.00000632.css b/www/.content.EZtzwPjb/html/01e8c6b7fe4d8e53eb07248dc09f205dd23faa5b.00000632.css new file mode 100644 index 0000000..8043bbf --- /dev/null +++ b/www/.content.EZtzwPjb/html/01e8c6b7fe4d8e53eb07248dc09f205dd23faa5b.00000632.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;background:#fff;border:1px +solid #f00;font-size:10pt;width:280px;padding:2px}span.wpcf7-not-valid-tip-no-ajax{color:#f00;font-size:10pt;display:block}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/01f77444258fd33a33f2c3d9a95786a0e0f5d6a6.00000791.css b/www/.content.EZtzwPjb/html/01f77444258fd33a33f2c3d9a95786a0e0f5d6a6.00000791.css new file mode 100644 index 0000000..24419ad --- /dev/null +++ b/www/.content.EZtzwPjb/html/01f77444258fd33a33f2c3d9a95786a0e0f5d6a6.00000791.css @@ -0,0 +1,5015 @@ +/* +Theme Name: Hestia +Theme URI: https://themeisle.com/themes/hestia/ +Author: ThemeIsle +Author URI: https://themeisle.com +Description: Hestia is a modern WordPress theme for professionals. It fits creative business, small businesses (restaurants, wedding planners, sport/medical shops), startups, corporate businesses, online agencies and firms, portfolios, ecommerce (WooCommerce), and freelancers. It has a multipurpose one-page design, widgetized footer, blog/news page and a clean look, is compatible with: Flat Parallax Slider, Photo Gallery, Travel Map and Elementor Page Builder . The theme is responsive, WPML, Retina ready, SEO friendly, and uses Material Kit for design. +Version: 1.1.33 +License: GNU General Public License v2 or later +License URI: http://www.gnu.org/licenses/gpl-2.0.html +Text Domain: hestia +Tags: blog, custom-logo, portfolio, e-commerce, rtl-language-support, post-formats, grid-layout, one-column, two-columns, custom-background, custom-colors, custom-header, custom-menu, featured-image-header, featured-images, flexible-header, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready + +This theme, like WordPress, is licensed under the GPL. +Use it to make something cool, have fun, and share what you've learned with others. + +Hestia is based on Underscores http://underscores.me/, (C) 2012-2015 Automattic, Inc. +Underscores is distributed under the terms of the GNU GPL v2 or later. +*/ + + +/*-------------------------------------------------------------- +>>> TABLE OF CONTENTS: +---------------------------------------------------------------- +# General + ## Generic styles + ## Buttons and links +# Navigation +# Forms +# Pagination and navbar +# Typography +# Cards styling +# Tables +# Sections Styling + ## About Section + ## Portfolio Section + ## Contact Section + ## Team Section + ## Subscribe Section +# Footer +# Blog + ## Content + ## Sidebar + ## Attachment Page +# Woocommerce Integration + ## My Account Page + ## Generic + ## YITH Magnifier +# Responsive +--------------------------------------------------------------*/ + +a, +.form-group.label-static label.control-label, +.form-group.label-placeholder label.control-label, +.form-group.label-floating label.control-label, +.pagination a, +.pagination span, +.card-background:after, +.woocommerce div.product .woocommerce-tabs ul.tabs.wc-tabs li a, +.woocommerce nav.woocommerce-pagination ul li a { + -webkit-transition: all 0.3s ease; + transition: all 0.3s ease; +} + +.button, +button, +input[type="submit"], +input[type="button"], +.btn, +.woocommerce .single-product div.product form.cart .button, +.woocommerce #respond input#submit, +.woocommerce a.button, +.woocommerce button.button, +.woocommerce input.button, +.woocommerce #respond input#submit.alt, +.woocommerce a.button.alt, +.woocommerce button.button.alt, +.woocommerce input.button.alt, +.woocommerce input.button:disabled, +.woocommerce input.button[disabled]:disabled, +#add_payment_method .wc-proceed-to-checkout a.checkout-button, +.woocommerce-cart .wc-proceed-to-checkout a.checkout-button, +.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button, +.added_to_cart.wc-forward { + -webkit-transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1); + transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1); + transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1); + transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1); +} + + +/*-------------------------------------------------------------- +# Typography +--------------------------------------------------------------*/ + +body { + color: #3c4858; + background-color: #e5e5e5; + font-family: "Roboto", "Helvetica", "Arial", sans-serif; + font-weight: 300; + line-height: 1.5em; + + direction: ltr; +} + +h1, +h2, +h3, +h4, +h5, +h6 { + font-family: "Roboto", "Helvetica", "Arial", sans-serif; + font-weight: 300; + line-height: 1.5em; +} + +a { + color: #9c27b0; +} +a:hover, +a:focus { + color: #89229b; + text-decoration: none; +} + +blockquote p { + font-style: italic; +} + +h1 { + font-size: 3.8em; + line-height: 1.15em; +} + +h2 { + font-size: 2.6em; +} + +h3 { + margin: 20px 0 10px; + font-size: 1.825em; + line-height: 1.4em; +} + +h4 { + font-size: 17px; + line-height: 1.55em; +} + +h5 { + margin-bottom: 15px; + font-size: 1.25em; + line-height: 1.55em; +} + +h6 { + font-size: 0.9em; + font-weight: 500; + text-transform: uppercase; +} + +.title, +.card-title, +.info-title, +.footer-brand, +.footer-big h4, +.footer-big h5, +.media .media-heading { + font-family: "Roboto Slab", "Times New Roman", serif; + font-weight: 700; +} + +.title, +.title a, +.card-title, +.card-title a, +.info-title, +.info-title a, +.footer-brand, +.footer-brand a, +.footer-big h4, +.footer-big h4 a, +.footer-big h5, +.footer-big h5 a, +.media .media-heading, +.media .media-heading a { + color: #3c4858; + text-decoration: none; + word-wrap: break-word; +} + +h2.title { + margin-bottom: 30px; +} + +.carousel h2.title { + margin-bottom: 20px; + font-family: "Roboto", "Helvetica", "Arial", sans-serif; + font-size: 4.8em; + line-height: 1.15em; +} +.carousel h4 { + margin-bottom: 60px; + font-family: "Roboto Slab", "Times New Roman", serif; + font-size: 1.3em; + line-height: 1.4em; +} +.carousel .buttons a { + padding: 17px 35px; + font-size: 14px; +} + +.description, +.card-description, +.footer-big { + color: #999; +} + +.subscribe-description { + color: #efefef; +} + +.text-warning { + color: #ff9800; +} + +.text-primary { + color: #9c27b0; +} + +.text-danger { + color: #f44336; +} + +.text-success { + color: #4caf50; +} + +.text-info { + color: #00bcd4; +} + +.text-rose { + color: #e91e63; +} + +.text-gray { + color: #999; +} + +.tooltip { + opacity: 0; + -webkit-transition: opacity,-webkit-transform 0.2s ease; + transition: opacity,-webkit-transform 0.2s ease; + transition: opacity,transform 0.2s ease; + transition: opacity,transform 0.2s ease,-webkit-transform 0.2s ease; + -webkit-transform: translate3d(0, 5px, 0); + -ms-transform: translate3d(0, 5px, 0); + transform: translate3d(0, 5px, 0); +} +.tooltip.in { + opacity: 1; + -webkit-transform: translate3d(0, 0px, 0); + -ms-transform: translate3d(0, 0px, 0); + transform: translate3d(0, 0px, 0); +} +.tooltip.left .tooltip-arrow { + border-left-color: #fff; +} +.tooltip.right .tooltip-arrow { + border-right-color: #fff; +} +.tooltip.top .tooltip-arrow { + border-top-color: #fff; +} +.tooltip.bottom .tooltip-arrow { + border-bottom-color: #fff; +} + +.tooltip-inner { + min-width: 130px; + padding: 10px 15px; + border: none; + border-radius: 3px; + color: #555; + background: #fff; + -webkit-box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2); + box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2); + font-size: 12px; + line-height: 1.5em; + text-transform: none; +} + +.screen-reader-text { + overflow: hidden; + clip: rect(1px, 1px, 1px, 1px); + position: absolute !important; + width: 1px; + height: 1px; +} +.screen-reader-text:focus { + display: block; + clip: auto !important; + z-index: 100000; + top: 5px; + left: 5px; + width: auto; + height: auto; + padding: 15px 23px 14px; + border-radius: 3px; + color: #21759b; + background-color: #f1f1f1; + -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6); + box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6); + font-size: 14px; + font-size: 0.875rem; + font-weight: bold; + line-height: normal; + text-decoration: none; + /* Above WP toolbar. */ +} + + +/*-------------------------------------------------------------- +# Elements +--------------------------------------------------------------*/ + + +/*-------------------------------------------------------------- +## General +--------------------------------------------------------------*/ + +.container { + max-width: 100%; +} + +* { + -webkit-tap-highlight-color: transparent; + -webkit-tap-highlight-color: rgba(255, 255, 255, 0); +} + +embed, +iframe, +img, +object, +video, +button, +input, +select, +textarea, +.wp-caption { + max-width: 100%; +} + +img { + height: auto; +} + +ul, +ol { + margin-bottom: 30px; + line-height: 1.5em; +} + +legend { + border-bottom: 0; +} + +.animation-transition-fast, +.navbar, +.panel .panel-heading i, +.section-cards .card { + -webkit-transition: all 150ms ease; + transition: all 150ms ease; +} + +.thumbnail { + padding: 0; + border: 0 none; + border-radius: 0; +} + +.section-image .description .default-link, +.section-image .default-link, +.title .default-link, +.default-link:hover, +.default-link { + color: #fff; +} + +.description .default-link { + color: #999; +} + + +/*-------------------------------------------------------------- +## Buttons +--------------------------------------------------------------*/ + +:focus, +:active, +::-moz-focus-inner { + outline: 0 !important; +} + +button, +input[type="submit"]::-moz-focus-inner, +input[type="button"]::-moz-focus-inner, +.btn::-moz-focus-inner { + border: 0; +} + +button, +input, +select, +textarea { + padding: 7px; + font-family: inherit; + font-size: inherit; + line-height: inherit; +} + +.button, +button, +input[type="submit"], +input[type="button"], +.btn { + position: relative; + margin: 10px 1px; + padding: 12px 30px; + border: none; + border-radius: 3px; + font-size: 12px; + font-weight: 400; + white-space: normal; + letter-spacing: 0; + text-transform: uppercase; + + will-change: box-shadow,transform; +} + +input[type="number"] { + padding: 0; +} + +button, +input[type="submit"], +input[type="button"], +.btn, +.btn.btn-default { + -webkit-box-shadow: 0 2px 2px 0 rgba(153, 153, 153, 0.14), 0 3px 1px -2px rgba(153, 153, 153, 0.2), 0 1px 5px 0 rgba(153, 153, 153, 0.12); + box-shadow: 0 2px 2px 0 rgba(153, 153, 153, 0.14), 0 3px 1px -2px rgba(153, 153, 153, 0.2), 0 1px 5px 0 rgba(153, 153, 153, 0.12); +} +button:hover, +button:focus, +button:active, +input[type="submit"]:hover, +input[type="submit"]:focus, +input[type="submit"]:active, +input[type="button"]:hover, +input[type="button"]:focus, +input[type="button"]:active, +.btn:hover, +.btn:focus, +.btn:active, +.btn.btn-default:hover, +.btn.btn-default:focus, +.btn.btn-default:active { + -webkit-box-shadow: 0 14px 26px -12px rgba(153, 153, 153, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(153, 153, 153, 0.2); + box-shadow: 0 14px 26px -12px rgba(153, 153, 153, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(153, 153, 153, 0.2); +} + +button:hover, +button:focus, +input[type="submit"]:hover, +input[type="submit"]:focus, +input[type="submit"]:active, +input[type="button"]:hover, +input[type="button"]:focus, +input[type="button"]:active, +.btn, +.btn:hover, +.btn:focus, +.btn:active, +.btn.active, +.btn:active:focus, +.btn:active:hover, +.btn.active:focus, +.btn.active:hover, +.open > .btn.dropdown-toggle, +.open > .btn.dropdown-toggle:focus, +.open > .btn.dropdown-toggle:hover, +.btn.btn-default, +.btn.btn-default:hover, +.btn.btn-default:focus, +.btn.btn-default:active, +.btn.btn-default.active, +.btn.btn-default:active:focus, +.btn.btn-default:active:hover, +.btn.btn-default.active:focus, +.btn.btn-default.active:hover, +.open > .btn.btn-default.dropdown-toggle, +.open > .btn.btn-default.dropdown-toggle:focus, +.open > .btn.btn-default.dropdown-toggle:hover { + outline: none; + color: #fff; + background-color: #999; +} + +.btn > a:hover, +.btn > a:focus, +.btn > a:active, +.btn:hover > a, +.btn:focus > a, +.btn:active > a { + color: #fff; +} + +.btn.btn-simple, +.btn.btn-simple:hover, +.btn.btn-simple:focus, +.btn.btn-simple:active, +.btn.btn-default.btn-simple, +.btn.btn-default.btn-simple:hover, +.btn.btn-default.btn-simple:focus, +.btn.btn-default.btn-simple:active { + color: #999; + background-color: transparent; +} + +button, +input[type="submit"], +input[type="button"], +.btn.btn-primary { + -webkit-box-shadow: 0 2px 2px 0 rgba(156, 39, 176, 0.14), 0 3px 1px -2px rgba(156, 39, 176, 0.2), 0 1px 5px 0 rgba(156, 39, 176, 0.12); + box-shadow: 0 2px 2px 0 rgba(156, 39, 176, 0.14), 0 3px 1px -2px rgba(156, 39, 176, 0.2), 0 1px 5px 0 rgba(156, 39, 176, 0.12); +} +button:hover, +button:focus, +button:active, +input[type="submit"]:hover, +input[type="submit"]:focus, +input[type="submit"]:active, +input[type="button"]:hover, +input[type="button"]:focus, +input[type="button"]:active, +.btn.btn-primary:hover, +.btn.btn-primary:focus, +.btn.btn-primary:active { + -webkit-box-shadow: 0 14px 26px -12px rgba(156, 39, 176, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(156, 39, 176, 0.2); + box-shadow: 0 14px 26px -12px rgba(156, 39, 176, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(156, 39, 176, 0.2); +} + +.btn.btn-primary.btn-simple, +.btn.btn-primary.btn-simple:hover, +.btn.btn-primary.btn-simple:focus, +.btn.btn-primary.btn-simple:active { + color: #9c27b0; + background-color: transparent; +} + +button, +button:hover, +input[type="submit"], +input[type="submit"]:hover, +input[type="button"], +input[type="button"]:hover, +input#searchsubmit, +.btn.btn-primary, +.btn.btn-primary:hover, +.btn.btn-primary:focus, +.btn.btn-primary:active, +.btn.btn-primary.active, +.btn.btn-primary:active:focus, +.btn.btn-primary:active:hover, +.btn.btn-primary.active:focus, +.btn.btn-primary.active:hover, +.open > .btn.btn-primary.dropdown-toggle, +.open > .btn.btn-primary.dropdown-toggle:focus, +.open > .btn.btn-primary.dropdown-toggle:hover { + color: #fff; + background-color: #9c27b0; +} + +.btn.btn-danger { + -webkit-box-shadow: 0 2px 2px 0 rgba(244, 67, 54, 0.14), 0 3px 1px -2px rgba(244, 67, 54, 0.2), 0 1px 5px 0 rgba(244, 67, 54, 0.12); + box-shadow: 0 2px 2px 0 rgba(244, 67, 54, 0.14), 0 3px 1px -2px rgba(244, 67, 54, 0.2), 0 1px 5px 0 rgba(244, 67, 54, 0.12); +} +.btn.btn-danger:hover, +.btn.btn-danger:focus, +.btn.btn-danger:active { + -webkit-box-shadow: 0 14px 26px -12px rgba(244, 67, 54, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(244, 67, 54, 0.2); + box-shadow: 0 14px 26px -12px rgba(244, 67, 54, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(244, 67, 54, 0.2); +} + +.btn.btn-danger.btn-simple, +.btn.btn-danger.btn-simple:hover, +.btn.btn-danger.btn-simple:focus, +.btn.btn-danger.btn-simple:active, +.btn.btn-danger, +.btn.btn-danger:hover, +.btn.btn-danger:focus, +.btn.btn-danger:active, +.btn.btn-danger.active, +.btn.btn-danger:active:focus, +.btn.btn-danger:active:hover, +.btn.btn-danger.active:focus, +.btn.btn-danger.active:hover, +.open > .btn.btn-danger.dropdown-toggle, +.open > .btn.btn-danger.dropdown-toggle:focus, +.open > .btn.btn-danger.dropdown-toggle:hover { + color: #f44336; + background-color: transparent; +} + +.btn.btn-rose { + -webkit-box-shadow: 0 2px 2px 0 rgba(233, 30, 99, 0.14), 0 3px 1px -2px rgba(233, 30, 99, 0.2), 0 1px 5px 0 rgba(233, 30, 99, 0.12); + box-shadow: 0 2px 2px 0 rgba(233, 30, 99, 0.14), 0 3px 1px -2px rgba(233, 30, 99, 0.2), 0 1px 5px 0 rgba(233, 30, 99, 0.12); +} +.btn.btn-rose:hover, +.btn.btn-rose:focus, +.btn.btn-rose:active { + -webkit-box-shadow: 0 14px 26px -12px rgba(233, 30, 99, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(233, 30, 99, 0.2); + box-shadow: 0 14px 26px -12px rgba(233, 30, 99, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(233, 30, 99, 0.2); +} + +.btn.btn-rose.btn-simple, +.btn.btn-rose.btn-simple:hover, +.btn.btn-rose.btn-simple:focus, +.btn.btn-rose.btn-simple:active { + color: #e91e63; + background-color: transparent; +} + +.btn.btn-rose, +.btn.btn-rose:hover, +.btn.btn-rose:focus, +.btn.btn-rose:active, +.btn.btn-rose.active, +.btn.btn-rose:active:focus, +.btn.btn-rose:active:hover, +.btn.btn-rose.active:focus, +.btn.btn-rose.active:hover, +.open > .btn.btn-rose.dropdown-toggle, +.open > .btn.btn-rose.dropdown-toggle:focus, +.open > .btn.btn-rose.dropdown-toggle:hover { + color: #fff; + background-color: #e91e63; +} + +.btn.btn-white, +.btn.btn-white:focus, +.btn.btn-white:hover { + color: #999; + background-color: #fff; +} +.btn.btn-white.btn-simple, +.btn.btn-white:focus.btn-simple, +.btn.btn-white:hover.btn-simple { + color: #fff; + background: transparent; +} +.btn.btn-round { + border-radius: 30px; +} +.btn:not(.btn-just-icon):not(.btn-fab) .fa { + position: relative; + font-size: 18px; +} +.btn.btn-just-icon { + padding: 12px; + font-size: 20px; + line-height: 1em; +} +.btn.btn-just-icon i { + width: 20px; +} +.btn.btn-just-icon.btn-lg { + padding: 13px 18px; + font-size: 22px; +} + +.btn .fa { + position: relative; + top: -1px; + font-size: 17px; + vertical-align: middle; +} + +.navbar button.navbar-toggle, +.navbar button.navbar-toggle:hover { + color: #555; +} +.navbar.navbar-transparent button.navbar-toggle, +.navbar.navbar-transparent button.navbar-toggle:hover { + color: #fff; +} + +.btn.btn-facebook, +.btn.btn-facebook:hover, +.btn.btn-facebook:focus, +.btn.btn-facebook:active, +.navbar .navbar-nav > li > a.btn.btn-facebook, +.navbar .navbar-nav > li > a.btn.btn-facebook:hover, +.navbar .navbar-nav > li > a.btn.btn-facebook:focus, +.navbar .navbar-nav > li > a.btn.btn-facebook:active { + color: #fff; + background-color: #3b5998; +} + +.btn.btn-facebook, +.navbar .navbar-nav > li > a.btn.btn-facebook { + -webkit-box-shadow: 0 2px 2px 0 rgba(59, 89, 152, 0.14), 0 3px 1px -2px rgba(59, 89, 152, 0.2), 0 1px 5px 0 rgba(59, 89, 152, 0.12); + box-shadow: 0 2px 2px 0 rgba(59, 89, 152, 0.14), 0 3px 1px -2px rgba(59, 89, 152, 0.2), 0 1px 5px 0 rgba(59, 89, 152, 0.12); +} +.btn.btn-facebook:hover, +.btn.btn-facebook:focus, +.btn.btn-facebook:active, +.navbar .navbar-nav > li > a.btn.btn-facebook:hover, +.navbar .navbar-nav > li > a.btn.btn-facebook:focus, +.navbar .navbar-nav > li > a.btn.btn-facebook:active { + -webkit-box-shadow: 0 14px 26px -12px rgba(59, 89, 152, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(59, 89, 152, 0.2); + box-shadow: 0 14px 26px -12px rgba(59, 89, 152, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(59, 89, 152, 0.2); +} + +.btn.btn-facebook.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-facebook.btn-simple { + color: #3b5998; + background-color: transparent; +} + +.btn.btn-twitter, +.btn.btn-twitter:hover, +.btn.btn-twitter:focus, +.btn.btn-twitter:active, +.navbar .navbar-nav > li > a.btn.btn-twitter, +.navbar .navbar-nav > li > a.btn.btn-twitter:hover, +.navbar .navbar-nav > li > a.btn.btn-twitter:focus, +.navbar .navbar-nav > li > a.btn.btn-twitter:active { + color: #fff; + background-color: #55acee; +} + +.btn.btn-twitter, +.navbar .navbar-nav > li > a.btn.btn-twitter { + -webkit-box-shadow: 0 2px 2px 0 rgba(85, 172, 238, 0.14), 0 3px 1px -2px rgba(85, 172, 238, 0.2), 0 1px 5px 0 rgba(85, 172, 238, 0.12); + box-shadow: 0 2px 2px 0 rgba(85, 172, 238, 0.14), 0 3px 1px -2px rgba(85, 172, 238, 0.2), 0 1px 5px 0 rgba(85, 172, 238, 0.12); +} +.btn.btn-twitter:hover, +.btn.btn-twitter:focus, +.btn.btn-twitter:active, +.navbar .navbar-nav > li > a.btn.btn-twitter:hover, +.navbar .navbar-nav > li > a.btn.btn-twitter:focus, +.navbar .navbar-nav > li > a.btn.btn-twitter:active { + -webkit-box-shadow: 0 14px 26px -12px rgba(85, 172, 238, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(85, 172, 238, 0.2); + box-shadow: 0 14px 26px -12px rgba(85, 172, 238, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(85, 172, 238, 0.2); +} + +.btn.btn-twitter.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-twitter.btn-simple { + color: #55acee; + background-color: transparent; +} + +.btn.btn-pinterest, +.btn.btn-pinterest:hover, +.btn.btn-pinterest:focus, +.btn.btn-pinterest:active, +.navbar .navbar-nav > li > a.btn.btn-pinterest, +.navbar .navbar-nav > li > a.btn.btn-pinterest:hover, +.navbar .navbar-nav > li > a.btn.btn-pinterest:focus, +.navbar .navbar-nav > li > a.btn.btn-pinterest:active { + color: #fff; + background-color: #cc2127; +} + +.btn.btn-pinterest, +.navbar .navbar-nav > li > a.btn.btn-pinterest { + -webkit-box-shadow: 0 2px 2px 0 rgba(204, 33, 39, 0.14), 0 3px 1px -2px rgba(204, 33, 39, 0.2), 0 1px 5px 0 rgba(204, 33, 39, 0.12); + box-shadow: 0 2px 2px 0 rgba(204, 33, 39, 0.14), 0 3px 1px -2px rgba(204, 33, 39, 0.2), 0 1px 5px 0 rgba(204, 33, 39, 0.12); +} +.btn.btn-pinterest:hover, +.btn.btn-pinterest:focus, +.btn.btn-pinterest:active, +.navbar .navbar-nav > li > a.btn.btn-pinterest:hover, +.navbar .navbar-nav > li > a.btn.btn-pinterest:focus, +.navbar .navbar-nav > li > a.btn.btn-pinterest:active { + -webkit-box-shadow: 0 14px 26px -12px rgba(204, 33, 39, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(204, 33, 39, 0.2); + box-shadow: 0 14px 26px -12px rgba(204, 33, 39, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(204, 33, 39, 0.2); +} + +.btn.btn-pinterest.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-pinterest.btn-simple { + color: #cc2127; + background-color: transparent; +} + +.btn.btn-google, +.btn.btn-google:hover, +.btn.btn-google:focus, +.btn.btn-google:active, +.navbar .navbar-nav > li > a.btn.btn-google, +.navbar .navbar-nav > li > a.btn.btn-google:hover, +.navbar .navbar-nav > li > a.btn.btn-google:focus, +.navbar .navbar-nav > li > a.btn.btn-google:active { + color: #fff; + background-color: #dd4b39; +} + +.btn.btn-google, +.navbar .navbar-nav > li > a.btn.btn-google { + -webkit-box-shadow: 0 2px 2px 0 rgba(221, 75, 57, 0.14), 0 3px 1px -2px rgba(221, 75, 57, 0.2), 0 1px 5px 0 rgba(221, 75, 57, 0.12); + box-shadow: 0 2px 2px 0 rgba(221, 75, 57, 0.14), 0 3px 1px -2px rgba(221, 75, 57, 0.2), 0 1px 5px 0 rgba(221, 75, 57, 0.12); +} +.btn.btn-google:hover, +.btn.btn-google:focus, +.btn.btn-google:active, +.navbar .navbar-nav > li > a.btn.btn-google:hover, +.navbar .navbar-nav > li > a.btn.btn-google:focus, +.navbar .navbar-nav > li > a.btn.btn-google:active { + -webkit-box-shadow: 0 14px 26px -12px rgba(221, 75, 57, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(221, 75, 57, 0.2); + box-shadow: 0 14px 26px -12px rgba(221, 75, 57, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(221, 75, 57, 0.2); +} + +.btn.btn-google.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-google.btn-simple { + color: #dd4b39; + background-color: transparent; +} + +.btn.btn-linkedin, +.btn.btn-linkedin:hover, +.btn.btn-linkedin:focus, +.btn.btn-linkedin:active, +.navbar .navbar-nav > li > a.btn.btn-linkedin, +.navbar .navbar-nav > li > a.btn.btn-linkedin:hover, +.navbar .navbar-nav > li > a.btn.btn-linkedin:focus, +.navbar .navbar-nav > li > a.btn.btn-linkedin:active { + color: #fff; + background-color: #0976b4; +} + +.btn.btn-linkedin, +.navbar .navbar-nav > li > a.btn.btn-linkedin { + -webkit-box-shadow: 0 2px 2px 0 rgba(9, 118, 180, 0.14), 0 3px 1px -2px rgba(9, 118, 180, 0.2), 0 1px 5px 0 rgba(9, 118, 180, 0.12); + box-shadow: 0 2px 2px 0 rgba(9, 118, 180, 0.14), 0 3px 1px -2px rgba(9, 118, 180, 0.2), 0 1px 5px 0 rgba(9, 118, 180, 0.12); +} +.btn.btn-linkedin:hover, +.btn.btn-linkedin:focus, +.btn.btn-linkedin:active, +.navbar .navbar-nav > li > a.btn.btn-linkedin:hover, +.navbar .navbar-nav > li > a.btn.btn-linkedin:focus, +.navbar .navbar-nav > li > a.btn.btn-linkedin:active { + -webkit-box-shadow: 0 14px 26px -12px rgba(9, 118, 180, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(9, 118, 180, 0.2); + box-shadow: 0 14px 26px -12px rgba(9, 118, 180, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(9, 118, 180, 0.2); +} + +.btn.btn-linkedin.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-linkedin.btn-simple { + color: #0976b4; + background-color: transparent; +} + +.btn.btn-dribbble, +.btn.btn-dribbble:hover, +.btn.btn-dribbble:focus, +.btn.btn-dribbble:active, +.navbar .navbar-nav > li > a.btn.btn-dribbble, +.navbar .navbar-nav > li > a.btn.btn-dribbble:hover, +.navbar .navbar-nav > li > a.btn.btn-dribbble:focus, +.navbar .navbar-nav > li > a.btn.btn-dribbble:active { + color: #fff; + background-color: #ea4c89; +} + +.btn.btn-dribbble, +.navbar .navbar-nav > li > a.btn.btn-dribbble { + -webkit-box-shadow: 0 2px 2px 0 rgba(234, 76, 137, 0.14), 0 3px 1px -2px rgba(234, 76, 137, 0.2), 0 1px 5px 0 rgba(234, 76, 137, 0.12); + box-shadow: 0 2px 2px 0 rgba(234, 76, 137, 0.14), 0 3px 1px -2px rgba(234, 76, 137, 0.2), 0 1px 5px 0 rgba(234, 76, 137, 0.12); +} +.btn.btn-dribbble:hover, +.btn.btn-dribbble:focus, +.btn.btn-dribbble:active, +.navbar .navbar-nav > li > a.btn.btn-dribbble:hover, +.navbar .navbar-nav > li > a.btn.btn-dribbble:focus, +.navbar .navbar-nav > li > a.btn.btn-dribbble:active { + -webkit-box-shadow: 0 14px 26px -12px rgba(234, 76, 137, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(234, 76, 137, 0.2); + box-shadow: 0 14px 26px -12px rgba(234, 76, 137, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(234, 76, 137, 0.2); +} + +.btn.btn-dribbble.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-dribbble.btn-simple { + color: #ea4c89; + background-color: transparent; +} + +.btn.btn-github, +.btn.btn-github:hover, +.btn.btn-github:focus, +.btn.btn-github:active, +.navbar .navbar-nav > li > a.btn.btn-github, +.navbar .navbar-nav > li > a.btn.btn-github:hover, +.navbar .navbar-nav > li > a.btn.btn-github:focus, +.navbar .navbar-nav > li > a.btn.btn-github:active { + color: #fff; + background-color: #333; +} + +.btn.btn-github, +.navbar .navbar-nav > li > a.btn.btn-github { + -webkit-box-shadow: 0 2px 2px 0 rgba(51, 51, 51, 0.14), 0 3px 1px -2px rgba(51, 51, 51, 0.2), 0 1px 5px 0 rgba(51, 51, 51, 0.12); + box-shadow: 0 2px 2px 0 rgba(51, 51, 51, 0.14), 0 3px 1px -2px rgba(51, 51, 51, 0.2), 0 1px 5px 0 rgba(51, 51, 51, 0.12); +} +.btn.btn-github:hover, +.btn.btn-github:focus, +.btn.btn-github:active, +.navbar .navbar-nav > li > a.btn.btn-github:hover, +.navbar .navbar-nav > li > a.btn.btn-github:focus, +.navbar .navbar-nav > li > a.btn.btn-github:active { + -webkit-box-shadow: 0 14px 26px -12px rgba(51, 51, 51, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(51, 51, 51, 0.2); + box-shadow: 0 14px 26px -12px rgba(51, 51, 51, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(51, 51, 51, 0.2); +} + +.btn.btn-github.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-github.btn-simple { + color: #333; + background-color: transparent; +} + +.btn.btn-youtube, +.btn.btn-youtube:hover, +.btn.btn-youtube:focus, +.btn.btn-youtube:active, +.navbar .navbar-nav > li > a.btn.btn-youtube, +.navbar .navbar-nav > li > a.btn.btn-youtube:hover, +.navbar .navbar-nav > li > a.btn.btn-youtube:focus, +.navbar .navbar-nav > li > a.btn.btn-youtube:active { + color: #fff; + background-color: #e52d27; +} + +.btn.btn-youtube, +.navbar .navbar-nav > li > a.btn.btn-youtube { + -webkit-box-shadow: 0 2px 2px 0 rgba(229, 45, 39, 0.14), 0 3px 1px -2px rgba(229, 45, 39, 0.2), 0 1px 5px 0 rgba(229, 45, 39, 0.12); + box-shadow: 0 2px 2px 0 rgba(229, 45, 39, 0.14), 0 3px 1px -2px rgba(229, 45, 39, 0.2), 0 1px 5px 0 rgba(229, 45, 39, 0.12); +} +.btn.btn-youtube:hover, +.btn.btn-youtube:focus, +.btn.btn-youtube:active, +.navbar .navbar-nav > li > a.btn.btn-youtube:hover, +.navbar .navbar-nav > li > a.btn.btn-youtube:focus, +.navbar .navbar-nav > li > a.btn.btn-youtube:active { + -webkit-box-shadow: 0 14px 26px -12px rgba(229, 45, 39, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(229, 45, 39, 0.2); + box-shadow: 0 14px 26px -12px rgba(229, 45, 39, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(229, 45, 39, 0.2); +} + +.btn.btn-youtube.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-youtube.btn-simple { + color: #e52d27; + background-color: transparent; +} + +.btn.btn-instagram, +.btn.btn-instagram:hover, +.btn.btn-instagram:focus, +.btn.btn-instagram:active, +.navbar .navbar-nav > li > a.btn.btn-instagram, +.navbar .navbar-nav > li > a.btn.btn-instagram:hover, +.navbar .navbar-nav > li > a.btn.btn-instagram:focus, +.navbar .navbar-nav > li > a.btn.btn-instagram:active { + color: #fff; + background-color: #125688; +} + +.btn.btn-instagram, +.navbar .navbar-nav > li > a.btn.btn-instagram { + -webkit-box-shadow: 0 2px 2px 0 rgba(18, 86, 136, 0.14), 0 3px 1px -2px rgba(18, 86, 136, 0.2), 0 1px 5px 0 rgba(18, 86, 136, 0.12); + box-shadow: 0 2px 2px 0 rgba(18, 86, 136, 0.14), 0 3px 1px -2px rgba(18, 86, 136, 0.2), 0 1px 5px 0 rgba(18, 86, 136, 0.12); +} +.btn.btn-instagram:hover, +.btn.btn-instagram:focus, +.btn.btn-instagram:active, +.navbar .navbar-nav > li > a.btn.btn-instagram:hover, +.navbar .navbar-nav > li > a.btn.btn-instagram:focus, +.navbar .navbar-nav > li > a.btn.btn-instagram:active { + -webkit-box-shadow: 0 14px 26px -12px rgba(18, 86, 136, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(18, 86, 136, 0.2); + box-shadow: 0 14px 26px -12px rgba(18, 86, 136, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(18, 86, 136, 0.2); +} + +.btn.btn-instagram.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-instagram.btn-simple { + color: #125688; + background-color: transparent; +} + +.btn.btn-reddit, +.btn.btn-reddit:hover, +.btn.btn-reddit:focus, +.btn.btn-reddit:active, +.navbar .navbar-nav > li > a.btn.btn-reddit, +.navbar .navbar-nav > li > a.btn.btn-reddit:hover, +.navbar .navbar-nav > li > a.btn.btn-reddit:focus, +.navbar .navbar-nav > li > a.btn.btn-reddit:active { + color: #fff; + background-color: #ff4500; +} + +.btn.btn-reddit, +.navbar .navbar-nav > li > a.btn.btn-reddit { + -webkit-box-shadow: 0 2px 2px 0 rgba(255, 69, 0, 0.14), 0 3px 1px -2px rgba(255, 69, 0, 0.2), 0 1px 5px 0 rgba(255, 69, 0, 0.12); + box-shadow: 0 2px 2px 0 rgba(255, 69, 0, 0.14), 0 3px 1px -2px rgba(255, 69, 0, 0.2), 0 1px 5px 0 rgba(255, 69, 0, 0.12); +} +.btn.btn-reddit:hover, +.btn.btn-reddit:focus, +.btn.btn-reddit:active, +.navbar .navbar-nav > li > a.btn.btn-reddit:hover, +.navbar .navbar-nav > li > a.btn.btn-reddit:focus, +.navbar .navbar-nav > li > a.btn.btn-reddit:active { + -webkit-box-shadow: 0 14px 26px -12px rgba(255, 69, 0, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(255, 69, 0, 0.2); + box-shadow: 0 14px 26px -12px rgba(255, 69, 0, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(255, 69, 0, 0.2); +} + +.btn.btn-reddit.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-reddit.btn-simple { + color: #ff4500; + background-color: transparent; +} + +.btn.btn-tumblr, +.btn.btn-tumblr:hover, +.btn.btn-tumblr:focus, +.btn.btn-tumblr:active, +.navbar .navbar-nav > li > a.btn.btn-tumblr, +.navbar .navbar-nav > li > a.btn.btn-tumblr:hover, +.navbar .navbar-nav > li > a.btn.btn-tumblr:focus, +.navbar .navbar-nav > li > a.btn.btn-tumblr:active { + color: #fff; + background-color: #35465c; +} + +.btn.btn-tumblr, +.navbar .navbar-nav > li > a.btn.btn-tumblr { + -webkit-box-shadow: 0 2px 2px 0 rgba(53, 70, 92, 0.14), 0 3px 1px -2px rgba(53, 70, 92, 0.2), 0 1px 5px 0 rgba(53, 70, 92, 0.12); + box-shadow: 0 2px 2px 0 rgba(53, 70, 92, 0.14), 0 3px 1px -2px rgba(53, 70, 92, 0.2), 0 1px 5px 0 rgba(53, 70, 92, 0.12); +} +.btn.btn-tumblr:hover, +.btn.btn-tumblr:focus, +.btn.btn-tumblr:active, +.navbar .navbar-nav > li > a.btn.btn-tumblr:hover, +.navbar .navbar-nav > li > a.btn.btn-tumblr:focus, +.navbar .navbar-nav > li > a.btn.btn-tumblr:active { + -webkit-box-shadow: 0 14px 26px -12px rgba(53, 70, 92, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(53, 70, 92, 0.2); + box-shadow: 0 14px 26px -12px rgba(53, 70, 92, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(53, 70, 92, 0.2); +} + +.btn.btn-tumblr.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-tumblr.btn-simple { + color: #35465c; + background-color: transparent; +} + +.btn.btn-behance, +.btn.btn-behance:hover, +.btn.btn-behance:focus, +.btn.btn-behance:active, +.navbar .navbar-nav > li > a.btn.btn-behance, +.navbar .navbar-nav > li > a.btn.btn-behance:hover, +.navbar .navbar-nav > li > a.btn.btn-behance:focus, +.navbar .navbar-nav > li > a.btn.btn-behance:active { + color: #fff; + background-color: #1769ff; +} + +.btn.btn-behance, +.navbar .navbar-nav > li > a.btn.btn-behance { + -webkit-box-shadow: 0 2px 2px 0 rgba(23, 105, 255, 0.14), 0 3px 1px -2px rgba(23, 105, 255, 0.2), 0 1px 5px 0 rgba(23, 105, 255, 0.12); + box-shadow: 0 2px 2px 0 rgba(23, 105, 255, 0.14), 0 3px 1px -2px rgba(23, 105, 255, 0.2), 0 1px 5px 0 rgba(23, 105, 255, 0.12); +} +.btn.btn-behance:hover, +.btn.btn-behance:focus, +.btn.btn-behance:active, +.navbar .navbar-nav > li > a.btn.btn-behance:hover, +.navbar .navbar-nav > li > a.btn.btn-behance:focus, +.navbar .navbar-nav > li > a.btn.btn-behance:active { + -webkit-box-shadow: 0 14px 26px -12px rgba(23, 105, 255, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(23, 105, 255, 0.2); + box-shadow: 0 14px 26px -12px rgba(23, 105, 255, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(23, 105, 255, 0.2); +} + +.btn.btn-behance.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-behance.btn-simple { + color: #1769ff; + background-color: transparent; +} + +.btn.disabled, +.btn.disabled:hover, +.btn.disabled:focus, +.btn.disabled.focus, +.btn.disabled:active, +.btn.disabled.active, +.btn:disabled, +.btn:disabled:hover, +.btn:disabled:focus, +.btn.focus:disabled, +.btn:disabled:active, +.btn.active:disabled, +.btn[disabled], +.btn[disabled]:hover, +.btn[disabled]:focus, +.btn[disabled].focus, +.btn[disabled]:active, +.btn[disabled].active, +fieldset[disabled] .btn, +fieldset[disabled] .btn:hover, +fieldset[disabled] .btn:focus, +fieldset[disabled] .btn.focus, +fieldset[disabled] .btn:active, +fieldset[disabled] .btn.active, +.btn.btn-simple, +.btn.btn-default.btn-simple, +.btn.btn-primary.btn-simple, +.btn.btn-danger.btn-simple, +.btn.btn-rose.btn-simple, +.btn.btn-white.btn-simple, +.btn.btn-white.btn-simple:focus, +.btn.btn-white.btn-simple:hover, +.navbar button.navbar-toggle, +.navbar button.navbar-toggle:hover, +.btn.btn-facebook.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-facebook.btn-simple, +.btn.btn-twitter.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-twitter.btn-simple, +.btn.btn-pinterest.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-pinterest.btn-simple, +.btn.btn-google.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-google.btn-simple, +.btn.btn-linkedin.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-linkedin.btn-simple, +.btn.btn-dribbble.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-dribbble.btn-simple, +.btn.btn-github.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-github.btn-simple, +.btn.btn-youtube.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-youtube.btn-simple, +.btn.btn-instagram.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-instagram.btn-simple, +.btn.btn-reddit.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-reddit.btn-simple, +.btn.btn-tumblr.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-tumblr.btn-simple, +.btn.btn-behance.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-behance.btn-simple { + -webkit-box-shadow: none; + box-shadow: none; +} + + +/*-------------------------------------------------------------- +## Forms +--------------------------------------------------------------*/ + +legend { + margin-bottom: 20px; + font-size: 21px; +} + +output { + padding-top: 8px; + font-size: 14px; + line-height: 1.42857; +} + +.radio label, +.checkbox label { + min-height: 20px; +} + +.label { + border-radius: 2px; + background-color: #fff; +} +.label.label-default { + background-color: #fff; +} +.label.label-primary { + background-color: #9c27b0; +} +.label.label-success { + background-color: #4caf50; +} +.label.label-danger { + background-color: #f44336; +} +.label.label-rose { + background-color: #e91e63; +} + +.form-control, +.form-group .form-control, +.woocommerce form .form-row input.input-text, +.woocommerce form .form-row textarea { + float: none; + border: 0; + border-radius: 0; + background-color: transparent; + background-image: -webkit-gradient(linear, left top, left bottom, from(#9c27b0), to(#9c27b0)), -webkit-gradient(linear, left top, left bottom, from(#d2d2d2), to(#d2d2d2)); + background-image: -webkit-linear-gradient(#9c27b0, #9c27b0), -webkit-linear-gradient(#d2d2d2, #d2d2d2); + background-image: linear-gradient(#9c27b0, #9c27b0), linear-gradient(#d2d2d2, #d2d2d2); + background-repeat: no-repeat; + background-position: center bottom, center -webkit-calc(100% - 1px); + background-position: center bottom, center calc(100% - 1px); + background-size: 0 2px, 100% 1px; + font-weight: 400; + -webkit-transition: background 0s ease-out; + transition: background 0s ease-out; +} + +.form-control { + height: 36px; + padding: 7px 0; + font-size: 14px; + line-height: 1.42857; +} + +.form-control-static { + min-height: 34px; + padding-top: 8px; + padding-bottom: 8px; +} + +.form-control::-moz-placeholder, +.form-control:-ms-input-placeholder, +.form-control::-webkit-input-placeholder, +.form-group .form-control::-moz-placeholder, +.form-group .form-control:-ms-input-placeholder, +.form-group .form-control::-webkit-input-placeholder { + color: #aaa; + font-weight: 400; +} + +.form-control[readonly], +.form-control[disabled], +fieldset[disabled] .form-control, +.form-group .form-control[readonly], +.form-group .form-control[disabled], +fieldset[disabled] .form-group .form-control { + background-color: transparent; +} + +.form-control[disabled], +fieldset[disabled] .form-control, +.form-group .form-control[disabled], +fieldset[disabled] .form-group .form-control { + border-bottom: 1px dotted #d2d2d2; + background-image: none; +} + +.form-control { + margin-bottom: 7px; +} + +.form-control::-moz-placeholder, +.form-group .form-control::-moz-placeholder, +.form-control:-ms-input-placeholder, +.form-group +.form-control:-ms-input-placeholder, +.form-control::-webkit-input-placeholder, +.form-group +.form-control::-webkit-input-placeholder, +.checkbox label, +.form-group +.checkbox label, +.radio label, +.form-group +.radio label, +label, +.form-group +label { + color: #aaa; + font-size: 14px; + font-weight: 400; + line-height: 1.42857; +} + +label.control-label { + margin: 16px 0 0; + color: #aaa; + font-size: 11px; + font-weight: 400; + line-height: 1.07143; +} + +.help-block { + margin-top: 0; + font-size: 11px; +} + +.form-group { + position: relative; + padding-bottom: 7px; +} +.form-group .form-control { + margin-bottom: 7px; +} +.form-group label.control-label { + margin: 16px 0 0; + color: #aaa; + font-size: 11px; + font-weight: 400; + line-height: 1.07143; +} +.form-group input[type=file] { + position: relative; + z-index: 100; + top: 0; + right: 0; + bottom: 0; + left: 0; + width: 100%; + height: 100%; + opacity: 1; +} +.form-group textarea { + resize: none; +} +.form-group textarea ~ .form-control-highlight { + margin-top: -11px; +} +.form-group .help-block { + display: none; + position: absolute; + margin-top: 0; + font-size: 11px; +} +.form-group.label-static label.control-label, +.form-group.label-placeholder label.control-label, +.form-group.label-floating label.control-label { + position: absolute; + pointer-events: none; +} +.form-group.label-floating label.control-label { + will-change: left,top,contents; +} +.form-group.label-placeholder:not(.is-empty) label.control-label { + display: none; +} +.form-group.label-floating label.control-label, +.form-group.label-placeholder label.control-label { + top: -7px; + font-size: 14px; + line-height: 1.42857; +} +.form-group.label-static label.control-label, +.form-group.label-floating.is-focused label.control-label, +.form-group.label-floating:not(.is-empty) label.control-label { + top: -28px; + left: 0; + font-size: 11px; + line-height: 1.07143; +} +.form-group.is-focused .form-control { + outline: none; + background-image: -webkit-gradient(linear, left top, left bottom, from(#9c27b0), to(#9c27b0)), -webkit-gradient(linear, left top, left bottom, from(#d2d2d2), to(#d2d2d2)); + background-image: -webkit-linear-gradient(#9c27b0, #9c27b0), -webkit-linear-gradient(#d2d2d2, #d2d2d2); + background-image: linear-gradient(#9c27b0, #9c27b0), linear-gradient(#d2d2d2, #d2d2d2); + background-size: 100% 2px,100% 1px; + -webkit-transition-duration: 0.3s; + transition-duration: 0.3s; +} +.form-group.is-focused .form-control .material-input:after { + background-color: #9c27b0; +} +.form-group.is-focused.label-placeholder label, +.form-group.is-focused.label-placeholder label.control-label { + color: #aaa; +} +.form-group.is-focused select.form-control { + border-color: #d2d2d2; +} +.form-group.has-warning.is-focused .form-control { + background-image: -webkit-gradient(linear, left top, left bottom, from(#ff9800), to(#ff9800)), -webkit-gradient(linear, left top, left bottom, from(#d2d2d2), to(#d2d2d2)); + background-image: -webkit-linear-gradient(#ff9800, #ff9800), -webkit-linear-gradient(#d2d2d2, #d2d2d2); + background-image: linear-gradient(#ff9800, #ff9800), linear-gradient(#d2d2d2, #d2d2d2); +} +.form-group.has-warning label.control-label { + color: #ff9800; +} +.form-group.has-error.is-focused .form-control { + background-image: -webkit-gradient(linear, left top, left bottom, from(#f44336), to(#f44336)), -webkit-gradient(linear, left top, left bottom, from(#d2d2d2), to(#d2d2d2)); + background-image: -webkit-linear-gradient(#f44336, #f44336), -webkit-linear-gradient(#d2d2d2, #d2d2d2); + background-image: linear-gradient(#f44336, #f44336), linear-gradient(#d2d2d2, #d2d2d2); +} +.form-group.has-error label.control-label { + color: #f44336; +} +.form-group.has-success.is-focused .form-control { + background-image: -webkit-gradient(linear, left top, left bottom, from(#4caf50), to(#4caf50)), -webkit-gradient(linear, left top, left bottom, from(#d2d2d2), to(#d2d2d2)); + background-image: -webkit-linear-gradient(#4caf50, #4caf50), -webkit-linear-gradient(#d2d2d2, #d2d2d2); + background-image: linear-gradient(#4caf50, #4caf50), linear-gradient(#d2d2d2, #d2d2d2); +} +.form-group.has-success label.control-label { + color: #4caf50; +} +.form-group.has-info.is-focused .form-control { + background-image: -webkit-gradient(linear, left top, left bottom, from(#00bcd4), to(#00bcd4)), -webkit-gradient(linear, left top, left bottom, from(#d2d2d2), to(#d2d2d2)); + background-image: -webkit-linear-gradient(#00bcd4, #00bcd4), -webkit-linear-gradient(#d2d2d2, #d2d2d2); + background-image: linear-gradient(#00bcd4, #00bcd4), linear-gradient(#d2d2d2, #d2d2d2); +} +.form-group.has-info label.control-label, +.form-group.has-info .help-block { + color: #00bcd4; +} + +select.form-control { + border: 0; + border-radius: 0; +} +select.form-control[multiple], +select .form-group.is-focused select.form-control[multiple] { + height: 85px; +} + +.input-group-btn .btn { + margin: 0 0 7px; +} + +.input-group .input-group-btn { + padding: 0 12px; +} +.input-group .input-group-addon { + padding: 6px 15px 0; + border: 0; + background: transparent; +} + +.form-control-feedback { + opacity: 0; +} +.has-success .form-control-feedback { + opacity: 1; + color: #4caf50; +} +.has-error .form-control-feedback { + opacity: 1; + color: #f44336; +} + +.searchform label, +.search-form label { + display: table-cell; + width: 100%; + padding-right: 25px; + vertical-align: top; +} + +.searchform, +.search-form, +.woocommerce-product-search { + display: table; + position: relative; +} +.searchform input[type=submit], +.search-form input[type=submit], +.woocommerce-product-search input[type=submit] { + display: table-cell; + top: -19px; + width: 45px; + padding-right: 0; + padding-left: 0; + text-align: center; + vertical-align: top; + text-indent: -9999px; +} +.searchform input[type=search], +.search-form input[type=search], +.woocommerce-product-search input[type=search] { + height: 36px; +} +.searchform:after, +.search-form:after, +.woocommerce-product-search:after { + position: absolute; + top: 4px; + right: 15px; + color: #fff; + font-family: "Fontawesome"; + font-size: 18px; + content: "\f002"; + pointer-events: none; +} + +.form-control, +.form-group .form-control, +.woocommerce form .form-row input.input-text, +.woocommerce form .form-row textarea, +.form-group.is-focused .form-control, +.form-group.is-focused select.form-control, +.form-group.has-warning .form-control, +.form-group.has-error .form-control, +.form-group.has-success .form-control, +.form-group.has-info .form-control, +select.form-control { + -webkit-box-shadow: none; + box-shadow: none; +} + + +/*-------------------------------------------------------------- +## Navigation +--------------------------------------------------------------*/ + +.navbar { + padding: 10px 0; + border: 0; + border-radius: 3px; + -webkit-box-shadow: 0 10px 20px -12px rgba(0, 0, 0, 0.42), 0 3px 20px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2); + box-shadow: 0 10px 20px -12px rgba(0, 0, 0, 0.42), 0 3px 20px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2); +} +.navbar.navbar-default:not(.navbar-transparent) .navbar-nav > li > a.btn.btn-white.btn-simple { + color: #555; +} +.navbar .navbar-nav > li { + margin: 0; +} +.navbar .navbar-nav > li > a { + padding-top: 15px; + padding-bottom: 15px; + border-radius: 3px; + color: inherit; + font-size: 12px; + font-weight: 400; + text-transform: uppercase; +} +.navbar .navbar-nav > li > a:hover, +.navbar .navbar-nav > li > a:focus { + color: inherit; +} +.navbar .navbar-nav > li > a:before { + position: absolute; + z-index: -1; + top: 0; + right: 0; + bottom: 0; + left: 0; + border-radius: 3px; + background-color: rgba(255, 255, 255, 0.1); + content: ""; + -webkit-transition: all 300ms cubic-bezier(0.34, 0.9, 0.7, 1); + transition: all 300ms cubic-bezier(0.34, 0.9, 0.7, 1); + -webkit-transform: scaleX(0); + -ms-transform: scaleX(0); + transform: scaleX(0); + -webkit-transform-origin: 50%; + -ms-transform-origin: 50%; + transform-origin: 50%; +} +.navbar .navbar-nav > li > a:hover:before, +.navbar .navbar-nav > li > a:focus:before { + color: inherit; + -webkit-transform: scaleX(1); + -ms-transform: scaleX(1); + transform: scaleX(1); +} +.navbar .navbar-nav > li > a .fa { + max-width: 20px; + font-size: 20px; +} +.navbar .navbar-nav > li > a:not(.btn-just-icon) .fa { + position: relative; + top: 2px; + margin-top: -4px; + margin-right: 4px; +} +.navbar .navbar-nav > li > a:not(.btn) .fa { + position: relative; + top: 0; + margin-top: -3px; + margin-right: 3px; +} +.navbar .navbar-nav > li .dropdown-menu { + margin-top: -20px; +} +.navbar .navbar-nav > li.btn { + padding: 0 10px; +} +.navbar .navbar-nav > li.btn a:hover:before, +.navbar .navbar-nav > li.btn a:focus:before { + -webkit-transform: scaleX(0); + -ms-transform: scaleX(0); + transform: scaleX(0); +} +.navbar .navbar-nav > li.open > .dropdown-menu { + margin-top: 0; +} +.navbar .navbar-nav > .active a, +.navbar .navbar-nav > .open a { + background: transparent; +} +.navbar .navbar-nav > .active > a:hover, +.navbar .navbar-nav > .active > a:focus, +.navbar .navbar-nav > .open > a:hover, +.navbar .navbar-nav > .open > a:focus { + color: inherit; + background-color: transparent; +} +.navbar .navbar-nav > .open li a:hover, +.navbar .navbar-nav .open li a:focus { + color: #fff; + background-color: #9c27b0; +} +.navbar.navbar-color-on-scroll li.active a { + color: #9c27b0; +} +.navbar.navbar-color-on-scroll li.active.btn a, +.navbar.navbar-color-on-scroll li.active a { + color: #fff; +} +.navbar.navbar-transparent ul.dropdown-menu li a { + color: #333; +} +.navbar .title-logo-wrapper { + min-width: 250px; +} +.navbar .navbar-brand { + position: relative; + height: auto; + padding: 0; + color: inherit; + line-height: 30px; +} +.navbar .navbar-brand img { + max-height: 50px; +} +.navbar .navbar-brand h1 { + margin: 0; + font-size: 18px; + line-height: 1.5em; +} +.navbar .navbar-brand p { + margin-bottom: 0; + font-size: 18px; +} +.navbar .navbar-brand:hover, +.navbar .navbar-brand:focus { + color: inherit; + background-color: transparent; +} +.navbar .navbar-toggle { + border: 0; +} +.navbar .navbar-toggle:hover, +.navbar .navbar-toggle:focus { + background-color: transparent; +} +.navbar .navbar-toggle .icon-bar { + border: 1px solid; +} +.navbar .navbar-collapse { + border-top: none; +} +.navbar .btn { + margin-top: 0; + margin-bottom: 0; +} +.navbar.navbar-transparent { + padding-top: 25px; + color: #fff; + background-color: transparent; + -webkit-box-shadow: none; + box-shadow: none; +} +.navbar.navbar-transparent .navbar-nav .active > a { + background: transparent; +} + +.navbar { + color: #555; + background-color: #fff; + -webkit-transition: all 150ms ease 0s; + transition: all 150ms ease 0s; +} +.navbar .dropdown-menu { + border: 0; + border-radius: 3px !important; + -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26); + box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26); +} +.navbar .dropdown-menu li { + position: relative; +} +.navbar .dropdown-menu li > a { + margin: 0 5px; + padding: 12px 20px 12px 12px; + border-radius: 2px; + font-size: 13px; + -webkit-transition: all 150ms linear; + transition: all 150ms linear; +} +.navbar .dropdown-menu li > a:hover, +.navbar .dropdown-menu li > a:focus, +.navbar .dropdown-menu li > a:active { + color: #fff; + background-color: #9c27b0; + -webkit-box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2); + box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2); +} +.navbar .dropdown-menu li > a > i { + position: relative; + top: 1px; + min-width: 30px; + margin-right: 12px; + opacity: 0.5; + color: #333; + font-size: 24px; + text-align: center; +} +.navbar .dropdown-menu li > a:hover > i { + color: #fff; +} +.navbar .dropdown-menu li > a .fa { + position: relative; + top: 1px; + margin-top: -4px; + margin-right: 12px; + opacity: 0.5; + font-size: 20px; + vertical-align: middle; +} +.navbar .dropdown-menu li.active > a { + color: #555; + background-color: #fff; +} +.navbar .dropdown-menu li.active > a:hover, +.navbar .dropdown-menu li.active > a:focus { + color: #fff; +} + +.navbar-fixed-top { + border-radius: 0; +} + + +/*-------------------------------------------------------------- +## Pagination +--------------------------------------------------------------*/ + +.pagination { + width: 100%; + text-align: center; +} +.pagination a, +.pagination span { + display: inline-block; + min-width: 30px; + height: 30px; + margin: 0 3px; + padding: 0 11px; + border: 0; + border-radius: 30px !important; + color: #999; + background: transparent; + font-size: 12px; + font-weight: 400; + line-height: 30px; + text-transform: uppercase; +} +.pagination a:hover, +.pagination a:focus { + color: #999; + background-color: #eee; +} +.pagination span:not(.dots):hover, +.pagination span:not(.dots):focus { + color: #999; + background-color: #eee; +} +.pagination span.current, +.pagination span.current:focus, +.pagination span.current:hover { + border-color: #9c27b0; + color: #fff; + background-color: #9c27b0; + -webkit-box-shadow: 0 4px 5px 0 rgba(156, 39, 176, 0.14), 0 1px 10px 0 rgba(156, 39, 176, 0.12), 0 2px 4px -1px rgba(156, 39, 176, 0.2); + box-shadow: 0 4px 5px 0 rgba(156, 39, 176, 0.14), 0 1px 10px 0 rgba(156, 39, 176, 0.12), 0 2px 4px -1px rgba(156, 39, 176, 0.2); +} +.pagination .next.page-numbers:after { + content: " \00bb"; +} +.pagination .prev.page-numbers:before { + content: "\00ab "; +} + +.label { + padding: 5px 12px; + border-radius: 12px; + font-size: 10px; + text-transform: uppercase; +} +.label.label-default { + background-color: #999; +} + + +/*-------------------------------------------------------------- +# Cards styling +--------------------------------------------------------------*/ + +.card { + display: inline-block; + position: relative; + width: 100%; + margin-bottom: 30px; + border-radius: 6px; + color: rgba(0, 0, 0, 0.87); + background: #fff; + -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12); + box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12); +} +.card .card-image { + overflow: hidden; + position: relative; + height: 60%; + margin-top: -30px; + margin-right: 15px; + margin-left: 15px; + border-radius: 6px; + -webkit-transition: all 300ms cubic-bezier(0.34, 1.61, 0.7, 1); + transition: all 300ms cubic-bezier(0.34, 1.61, 0.7, 1); + -webkit-transform: translate(0, 0); + -ms-transform: translate(0, 0); + transform: translate(0, 0); +} +.card .card-image img { + float: left; + width: 100%; + height: 100%; + /* WooCommerce fix */ + margin: 0 !important; + border-radius: 6px; +} +.card .category:not([class*="text-"]) { + color: #999; +} +.card .content { + padding: 15px 30px; +} +.card .header { + margin: 15px; + padding: 15px 0; + border-radius: 3px; + background-color: #fff; +} +.card .header-primary, +.card .content-primary { + background: -webkit-linear-gradient(30deg, #ab47bc, #7b1fa2); + background: linear-gradient(60deg, #ab47bc, #7b1fa2); +} +.card [class*="header-"], +.card [class*="content-"], +.card [class*="header-"] .card-title a, +.card [class*="header-"] .card-title, +.card [class*="header-"] .icon i, +.card [class*="content-"] .card-title a, +.card [class*="content-"] .card-title, +.card [class*="content-"] .icon i, +.card [class*="header-"] .author a:hover, +.card [class*="header-"] .author a:focus, +.card [class*="header-"] .author a:active, +.card [class*="content-"] .author a:hover, +.card [class*="content-"] .author a:focus, +.card [class*="content-"] .author a:active { + color: #fff; +} +.card [class*="header-"] .icon i, +.card [class*="content-"] .icon i { + border-color: rgba(255, 255, 255, 0.25); +} +.card [class*="header-"] .author a, +.card [class*="header-"] .footer .stats, +.card [class*="header-"] .category, +.card [class*="header-"] .card-description, +.card [class*="content-"] .author a, +.card [class*="content-"] .footer .stats, +.card [class*="content-"] .category, +.card [class*="content-"] .card-description, +.card [class*="content-"] h1 small, +.card [class*="content-"] h2 small, +.card [class*="content-"] h3 small { + color: rgba(255, 255, 255, 0.8); +} +.card [class*="content-"] { + border-radius: 6px; +} +.card img { + width: 100%; + height: auto; +} +.card .category .fa { + position: relative; + top: 6px; + line-height: 0; +} +.card .author .avatar { + overflow: hidden; + width: 30px; + height: 30px; + margin-right: 5px; + border-radius: 50%; +} +.card .author a { + color: #3c4858; + text-decoration: none; +} +.card .footer { + margin-top: 15px; +} +.card .footer div { + /* WooCommerce fix */ + display: inline-block !important; +} +.card .footer .author, +.card .footer .stats { + color: #999; +} +.card .footer .stats { + float: right; + line-height: 30px; +} +.card .footer .stats .fa { + position: relative; + top: 4px; + font-size: 18px; +} +.card .checkbox { + margin-top: 16px; +} + +.card-contact .header { + margin-top: -20px; + padding: 15px 10px; +} + +.card-plain { + background: transparent; + -webkit-box-shadow: none; + box-shadow: none; +} +.card-plain .content { + padding-right: 5px; + padding-left: 5px; +} +.card-plain .card-image { + margin: 0; + border-radius: 3px; +} +.card-plain .card-image a { + display: block; +} +.card-plain .card-image img { + border-radius: 3px; +} + +.card-form-horizontal .content { + padding-right: 15px; + padding-left: 15px; +} +.card-form-horizontal .form-group { + margin: 3px 0 0; + padding-bottom: 0; +} +.card-form-horizontal .form-group .form-control { + margin-bottom: 0; +} +.card-form-horizontal .btn { + margin: 0; +} +.card-form-horizontal .input-group .input-group-addon { + padding-left: 0; +} + +.card-profile { + margin-top: 30px; + text-align: center; +} +.card-profile .card-avatar { + overflow: hidden; + max-width: 130px; + max-height: 130px; + margin: -50px auto 0; + border-radius: 50%; +} +.card-profile.card-plain .card-avatar { + margin-top: 0; +} + +.card-testimonial { + margin-top: 30px; + text-align: center; +} +.card-testimonial .card-avatar { + max-width: 100px; + max-height: 100px; + margin: 30px auto 0; +} +.card-testimonial .card-avatar img { + overflow: hidden; + max-width: 130px; + max-height: 130px; + margin: -50px auto 0; + border-radius: 50%; +} +.card-testimonial .card-avatar + .content { + margin-top: 15px; +} + +.card-blog { + margin-top: 30px; +} +.card-blog.sticky { + padding: 20px; +} +.card-blog.sticky .card-image { + margin-right: 0; + margin-left: 0; +} +.card-blog .row .category { + margin-bottom: 0; +} +.card-blog .row .category a { + color: #00bcd4; +} +.card-blog .card-title { + margin-top: 5px; + font-size: 1.3em; + line-height: 1.4em; +} +.card-blog a.moretag, +.card-blog a.more-link { + display: inline-block; + margin-left: 5px; + color: #23527c; +} +.card-blog a.moretag:hover, +.card-blog a.more-link:hover { + color: #89229b; +} + +.card-pricing { + text-align: center; +} +.card-pricing .card-title { + margin-top: 30px; + font-size: 60px; +} +.card-pricing .content { + padding: 15px !important; +} +.card-pricing small { + font-size: 18px; +} +.card-pricing small:first-child { + position: relative; + top: -17px; + font-size: 26px; +} +.card-pricing ul { + max-width: 240px; + margin: 10px auto; + padding: 0; + list-style: none; +} +.card-pricing ul li { + padding: 12px 0; + border-bottom: 1px solid rgba(153, 153, 153, 0.3); + color: #999; + text-align: center; +} +.card-pricing ul li:last-child { + border: 0; +} +.card-pricing ul li b { + color: #3c4858; +} + +.card-background { + background-position: center center; + background-size: cover; + text-align: center; +} +.card-background .content { + position: relative; + z-index: 2; + max-width: 440px; + min-height: 280px; + margin: 0 auto; + padding-top: 40px; + padding-bottom: 40px; +} +.card-background .card-title { + margin-top: 10px; + color: #fff; +} +.card-background:after { + display: block; + position: absolute; + z-index: 1; + top: 0; + left: 0; + width: 100%; + height: 100%; + border-radius: 6px; + opacity: 0; + background-color: rgba(0, 0, 0, 0.56); + content: ""; +} +.card-background:hover:after { + opacity: 1; +} + +.card-product { + margin-top: 30px; +} +.card-product .btn-simple.btn-just-icon { + padding: 0; +} +.card-product .footer { + margin-top: 5px; +} +.card-product .footer .stats .fa { + top: 0; + margin-top: 4px; +} +.card-product .footer .price h4 { + margin-bottom: 0; +} +.card-product .card-title, +.card-product .category, +.card-product .card-description { + text-align: center; +} + +.img-thumbnail { + border-radius: 16px; +} + +.iframe-container iframe { + width: 100%; +} + +.card .card-image, +.card .header, +.card-profile .card-avatar, +.card-testimonial .card-avatar img, +.card-raised, +.img-raised, +.iframe-container iframe { + -webkit-box-shadow: 0 16px 38px -12px rgba(0, 0, 0, 0.56), 0 4px 25px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2); + box-shadow: 0 16px 38px -12px rgba(0, 0, 0, 0.56), 0 4px 25px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2); +} + + +/*-------------------------------------------------------------- +# Tables +--------------------------------------------------------------*/ + +table { + width: 100%; +} +table > thead > tr > th { + padding: 12px 8px; + font-size: 1.25em; + font-weight: 300; + vertical-align: middle; +} +table > tbody > tr > th, +table > tfoot > tr > th, +table > thead > tr > td, +table > tbody > tr > td, +table > tfoot > tr > td { + padding: 12px 8px; + vertical-align: middle; +} +table > tbody > tr { + position: relative; + border-bottom: 1px solid #eee; +} +table > tbody > tr:last-child { + border-bottom: 0; +} + + +/*-------------------------------------------------------------- +# Sections +--------------------------------------------------------------*/ + + +/*-------------------------------------------------------------- +## Slider +--------------------------------------------------------------*/ + +.carousel .carousel-control.left, +.carousel .carousel-control.right { + z-index: 99; + background-image: none; +} +.carousel .item { + text-align: center; +} +.carousel .carousel-control { + text-shadow: none; +} +.carousel .carousel-control.left { + /*rtl:ignore*/ + right: auto; + /*rtl:ignore*/ + left: 0; +} +.carousel .carousel-control.right { + /*rtl:ignore*/ + right: 0; +} +.carousel .carousel-control .fa { + display: inline-block; + position: absolute; + z-index: 5; + top: 50%; + bottom: 15px; + font-size: 50px; +} + + +/*-------------------------------------------------------------- +## Generic +--------------------------------------------------------------*/ + +.section-gray { + background: #e5e5e5; +} + +.section { + padding: 70px 0; +} + +.section-dark, +.section-image { + background: #232323; + background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #585858), color-stop(100%, #232323)); + background: -webkit-radial-gradient(center, ellipse cover, #585858 0%, #232323 100%); + background: -webkit-radial-gradient(center ellipse, #585858 0%, #232323 100%); + background: radial-gradient(ellipse at center, #585858 0%, #232323 100%); + background-color: #343434; + background-size: 200% 240%; + background-size: 550% 450%; +} + +.section-dark .title, +.section-dark .card-plain .card-title, +.section-dark .card-plain .icon i, +.section-dark .card-plain [class*="text-"], +.section-dark .card-plain ul li b, +.section-image .title, +.section-image .card-plain .card-title, +.section-image .card-plain .icon i, +.section-image .card-plain [class*="text-"], +.section-image .card-plain ul li b { + color: #fff; +} + +.section-dark .description, +.section-dark .card-plain .card-description, +.section-dark .card-plain .icon, +.section-image .description, +.section-image .card-plain .card-description, +.section-image .card-plain .icon { + color: #eaeaea; +} + +.section-dark .card-plain .category, +.section-image .card-plain .category { + color: rgba(255, 255, 255, 0.5); +} + +.section-image { + position: relative; +} +.section-image:after { + display: block; + position: absolute; + z-index: 1; + top: 0; + left: 0; + width: 100%; + height: 100%; + background-color: rgba(0, 0, 0, 0.7); + content: ""; +} +.section-image .container { + position: relative; + z-index: 2; +} + +.section, +.section-image { + background-position: center center; + background-size: cover; +} + +.hestia-features, +.features, +.hestia-about, +.products, +.hestia-work, +.hestia-team, +.team, +.hestia-testimonials, +.testimonials, +.hestia-blogs, +.subscribe-line, +.contactus { + padding: 40px 0; +} + +.pricing { + padding: 100px 0 80px; +} + + +/*-------------------------------------------------------------- +## About Section +--------------------------------------------------------------*/ + +.hestia-about { + color: #999; + background-attachment: fixed; + font-weight: 300; +} +.hestia-about h1, +.hestia-about h2, +.hestia-about h3, +.hestia-about h4, +.hestia-about h5 { + color: #3c4858; + font-family: "Roboto Slab", "Times New Roman", serif; + font-weight: 700; + text-decoration: none; + word-wrap: break-word; +} +.hestia-about.section-image { + color: #fefefe; +} +.hestia-about.section-image h1, +.hestia-about.section-image h2, +.hestia-about.section-image h3, +.hestia-about.section-image h4, +.hestia-about.section-image h5 { + color: #fff; +} +.hestia-about.section-image h6 { + color: rgba(255, 255, 255, 0.76); +} +.hestia-about p { + font-size: 1.25em; + line-height: 1.55em; +} +.hestia-about .customizer-hidden { + display: none; +} + +.products .shop-item { + margin-top: 30px; +} +.products .shop-item .added_to_cart { + font-size: 10px; +} + + +/*-------------------------------------------------------------- +## Portfolio Section +--------------------------------------------------------------*/ + +.hestia-work .portfolio-item { + margin-top: 30px; +} +.hestia-work .card-background .content { + padding-bottom: 50px; + opacity: 0; +} +.hestia-work .col-md-4 .card-background .content { + padding-top: 30%; +} +.hestia-work .col-md-6 .card-background .content { + padding-top: 20%; +} +.hestia-work .card-background:hover .content { + opacity: 1; + -webkit-transition: all ease 0.5s; + transition: all ease 0.5s; +} +.hestia-work .card-background .card-title { + font-size: 20px; +} +.hestia-work .portfolio-item:nth-child(6n) .label { + background-color: #4caf50; +} +.hestia-work .portfolio-item:nth-child(6n+1) .label { + background-color: #89229b; +} +.hestia-work .portfolio-item:nth-child(6n+2) .label { + background-color: #00bcd4; +} +.hestia-work .portfolio-item:nth-child(6n+3) .label { + background-color: #f44336; +} +.hestia-work .portfolio-item:nth-child(6n+4) .label { + background-color: #ff9800; +} +.hestia-work .portfolio-item:nth-child(6n+5) .label { + background-color: #e91e63; +} + + +/*-------------------------------------------------------------- +## Contact Section +--------------------------------------------------------------*/ + +.contactus .content .row { + padding: 0; +} +.contactus .form-group { + margin: 0; +} +.contactus .pirate_forms_wrap .form_field_wrap { + line-height: 0; +} +.contactus .card .content { + padding: 15px 20px; +} +.contactus .pirate_forms_wrap { + float: none; +} +.contactus .contact_message_wrap { + margin-bottom: 0; +} +.contactus .contact_submit_wrap { + width: 100%; + margin-bottom: 0; +} +.contactus .hestia-info, +.contactus .info { + margin: 0; + padding: 0; +} +.contactus .hestia-info p, +.contactus .hestia-info a, +.contactus .info p, +.contactus .info a { + color: #fefefe; +} +.contactus .hestia-info a:hover, +.contactus .info a:hover { + text-decoration: underline; +} +.contactus .hestia-info:first-child, +.contactus .info:first-child { + margin-top: 30px; +} +.contactus .hestia-info .info-title, +.contactus .info .info-title { + margin-top: 20px; + color: #fff; +} +.contactus .hestia-info .icon, +.contactus .info .icon { + margin-top: 14px; + color: #fff; +} +.contactus .card-contact { + margin-top: 30px; +} + +.page-template-template-fullwidth .pirate_forms_wrap .contact_submit_wrap { + width: 100%; + text-align: center; +} + + +/*-------------------------------------------------------------- +## Features Section +--------------------------------------------------------------*/ + +.hestia-features, +.features { + padding: 80px 0 50px; + text-align: center; +} +.hestia-features .hestia-info, +.hestia-features .info, +.features .hestia-info, +.features .info { + margin: 0 auto; + padding: 70px 0 30px; +} +.hestia-features .hestia-info p, +.hestia-features .info p, +.features .hestia-info p, +.features .info p { + font-size: 16px; +} +.hestia-features .hestia-info .info-title, +.hestia-features .info .info-title, +.features .hestia-info .info-title, +.features .info .info-title { + font-size: 1.3em; +} + +.hestia-info, +.info { + max-width: 360px; +} +.hestia-info .icon, +.info .icon { + color: #999; +} +.hestia-info .icon > i, +.info .icon > i { + font-size: 4.4em; +} +.hestia-info .info-title, +.info .info-title { + margin: 30px 0 15px; + color: #3c4858; +} +.hestia-info p, +.info p { + color: #999; +} + +.info-horizontal .icon { + float: left; + margin-top: 24px; + margin-right: 10px; +} +.info-horizontal .icon > i { + font-size: 2.6em; +} +.info-horizontal .description { + overflow: hidden; +} + +.icon.icon-primary { + color: #9c27b0; +} +.icon.icon-success { + color: #4caf50; +} +.icon.icon-danger { + color: #f44336; +} +.icon.icon-rose { + color: #e91e63; +} + + +/*-------------------------------------------------------------- +## Team Section +--------------------------------------------------------------*/ + +.hestia-team .card, +.team .card { + text-align: left; +} +.hestia-team .card .footer, +.team .card .footer { + margin-top: 0; +} +.hestia-team h5.description, +.team h5.description { + margin-bottom: 70px; +} + +.hestia-team .footer a[href*="facebook.com"], +.team .footer a[href*="facebook.com"] { + color: #3b5998; +} + +.hestia-team .footer a[href*="twitter.com"], +.team .footer a[href*="twitter.com"] { + color: #55acee; +} + +.hestia-team .footer a[href*="pinterest.com"], +.team .footer a[href*="pinterest.com"] { + color: #cc2127; +} + +.hestia-team .footer a[href*="google.com"], +.team .footer a[href*="google.com"] { + color: #dd4b39; +} + +.hestia-team .footer a[href*="linkedin.com"], +.team .footer a[href*="linkedin.com"] { + color: #0976b4; +} + +.hestia-team .footer a[href*="dribbble.com"], +.team .footer a[href*="dribbble.com"] { + color: #ea4c89; +} + +.hestia-team .footer a[href*="github.com"], +.team .footer a[href*="github.com"] { + color: #333; +} + +.hestia-team .footer a[href*="youtube.com"], +.team .footer a[href*="youtube.com"] { + color: #e52d27; +} + +.hestia-team .footer a[href*="instagram.com"], +.team .footer a[href*="instagram.com"] { + color: #125688; +} + +.hestia-team .footer a[href*="reddit.com"], +.team .footer a[href*="reddit.com"] { + color: #ff4500; +} + +.hestia-team .footer a[href*="tumblr.com"], +.team .footer a[href*="tumblr.com"] { + color: #35465c; +} + +.hestia-team .footer a[href*="behance.com"], +.team .footer a[href*="behance.com"] { + color: #1769ff; +} + + +/*-------------------------------------------------------------- +## Subscribe Section +--------------------------------------------------------------*/ + +.subscribe-line { + padding: 30px 0; +} +.subscribe-line .card { + margin-top: 30px; +} +.subscribe-line.subscribe-line-image { + position: relative; + background-position: top center; + background-size: cover; +} +.subscribe-line.subscribe-line-image .title { + color: #fff; +} +.subscribe-line.subscribe-line-image:after { + display: block; + position: absolute; + z-index: 1; + top: 0; + left: 0; + width: 100%; + height: 100%; + background-color: rgba(0, 0, 0, 0.66); + content: ""; +} +.subscribe-line.subscribe-line-image .container { + position: relative; + z-index: 2; +} +.subscribe-line .card h5, +.subscribe-line .sib_loader { + display: none !important; +} + + +/*-------------------------------------------------------------- +## Blog Section +--------------------------------------------------------------*/ + +.hestia-blogs article:nth-child(6n) .category a { + color: #4caf50; +} +.hestia-blogs article:nth-child(6n+1) .category a { + color: #89229b; +} +.hestia-blogs article:nth-child(6n+2) .category a { + color: #00bcd4; +} +.hestia-blogs article:nth-child(6n+3) .category a { + color: #f44336; +} +.hestia-blogs article:nth-child(6n+4) .category a { + color: #ff9800; +} +.hestia-blogs article:nth-child(6n+5) .category a { + color: #e91e63; +} + + +/*-------------------------------------------------------------- +## Footer +--------------------------------------------------------------*/ + +.footer-big { + padding: 30px 0; + text-align: center; +} +.footer-big ul { + margin-bottom: 0; + padding: 0; + list-style: none; +} +.footer-big ul li a { + display: inline-block; + position: relative; + padding: 5px 0; + border-radius: 3px; + font-size: 12px; + font-weight: 500; + text-decoration: none; + text-transform: uppercase; +} +.footer-big ul li a:hover { + text-decoration: none; +} +.footer-big ul li .btn { + margin: 0; +} +.footer-big .footer-menu li { + display: inline-block; +} +.footer-big .footer-menu li a { + padding: 15px; +} +.footer-big .copyright { + padding: 15px 0; +} +.footer-big .col-md-4 { + padding: 0 30px; +} +.footer-big .content { + text-align: left; +} + +.footer-black { + background: #232323; + background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #585858), color-stop(100%, #232323)); + background: -webkit-radial-gradient(center, ellipse cover, #585858 0%, #232323 100%); + background: -webkit-radial-gradient(center ellipse, #585858 0%, #232323 100%); + background: radial-gradient(ellipse at center, #585858 0%, #232323 100%); + background-size: 550% 450%; +} +.footer-black a { + opacity: 0.86; + color: #fff; +} +.footer-black a:hover, +.footer-black a:focus { + opacity: 1; +} +.footer-black h5, +.footer-black h4, +.footer-black i, +.footer-black .copyright { + color: #fff; +} +.footer-black hr { + border-color: rgba(255, 255, 255, 0.2); +} + + +/*-------------------------------------------------------------- +# Blog +--------------------------------------------------------------*/ + + +/*-------------------------------------------------------------- +## Content +--------------------------------------------------------------*/ + +.search-no-results .search-form, +.error404 .search-form { + margin-top: 40px; +} + +#authors-on-blog { + padding: 80px 0; +} +#authors-on-blog .card-profile { + text-align: left; +} + +.blog-post { + word-wrap: break-word; +} +.blog-post .section-text { + padding-bottom: 0; +} +.blog-post .section-text p { + margin-bottom: 30px; + color: #555; + font-size: 1.2em; + line-height: 1.8em; +} +.blog-post .section-text ul > li, +.blog-post .section-text ol > li { + font-size: 17px; + line-height: 1.6em; +} +.blog-post .section-blog-info { + padding-top: 15px; + padding-bottom: 0; +} +.blog-post .section-blog-info .entry-categories, +.blog-post .section-blog-info .entry-tags { + word-break: break-all; +} +.blog-post .section-blog-info .entry-categories span, +.blog-post .section-blog-info .entry-tags span { + display: inline-block; + margin: 5px; +} +.blog-post .section-blog-info .entry-categories a { + display: inline-block; + padding: 2px 2px; + color: #fff; +} +.blog-post .section-blog-info .card-profile { + margin-top: 0; + text-align: left; +} +.blog-post .section-blog-info .card-profile .description { + font-size: 14px; +} + +dl dd, +pre { + margin-bottom: 30px; +} + +.alignleft .avatar { + margin-right: 24px; + margin-right: 2.4rem; +} + +.alignright .avatar { + margin-left: 24px; + margin-left: 2.4rem; +} + +article.sticky h2:before { + content: "Featured: "; +} + +img.centered, +.aligncenter { + display: block; + margin: 0 auto 24px; + margin: 0 auto 2.4rem; +} + +img.alignnone { + margin-bottom: 12px; + margin-bottom: 1.2rem; +} + +.alignleft { + float: left; + text-align: left; +} + +.alignright { + float: right; + text-align: right; +} + +img.alignleft, +.wp-caption.alignleft { + margin: 0 24px 24px 0; + margin: 0 2.4rem 2.4rem 0; +} + +img.alignright, +.wp-caption.alignright { + margin: 0 0 24px 24px; + margin: 0 0 2.4rem 2.4rem; +} + +.wp-caption-text { + padding-top: 10px; + font-size: 14px; + font-size: 1.4rem; + font-weight: 700; + text-align: center; +} + +.gallery-caption { + padding-top: 10px; +} + +.bypostauthor { + display: block; +} + + +/*-------------------------------------------------------------- +## Comments +--------------------------------------------------------------*/ + +.media .avatar, +.media-body .avatar, +.media-area .avatar { + overflow: hidden; + width: 64px; + height: 64px; + margin: 0 auto; + margin-right: 15px; + border-radius: 50%; + -webkit-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2); + box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2); +} + +.media-body div.avatar { + margin: 0 10px; +} + +.media .avatar img { + width: 100%; +} +.media .media-heading small { + font-family: "Roboto", "Helvetica", "Arial", sans-serif; +} +.media .media-body { + padding-right: 10px; +} +.media .media-body .media .media-body { + padding-right: 0; +} +.media .media-footer .btn { + margin-bottom: 20px; +} +.media .media-footer:after { + display: table; + clear: both; + content: " "; +} +.media p { + color: #999; + font-size: 16px; + line-height: 1.6em; +} + +.media-left, +.media > .pull-left { + padding: 10px; +} + +.section-comments ul.children .comment-author.avatar, +.section-comments ul.children .avatar img { + width: 40px; + height: 40px; +} + +.blog-post .media p { + color: #555; +} +.blog-post .section-comments .title { + margin-bottom: 30px; +} +.blog-post .section-comments .comment-respond .author { + margin: 15px 20px 0 0; +} +.blog-post .section-comments .comment-respond .author img { + border-radius: 100%; +} + + +/*-------------------------------------------------------------- +## Sidebar +--------------------------------------------------------------*/ + +.single aside.blog-sidebar { + padding: 40px 0; +} + +.widget { + margin-bottom: 30px; +} +.widget ul { + margin: 0; + padding: 0 0 0 10px; + list-style: none; +} +.widget ul li { + padding-top: 5px; + line-height: 2em; +} +.widget ul li:first-child { + padding-top: 0; +} + +aside .widget a { + color: #23527c; + font-weight: 500; +} + +.widget a:hover { + color: #89229b; +} +.widget #searchform { + margin-bottom: 0; + padding-bottom: 0; +} +.widget h5 { + margin-bottom: 10px; + font-family: "Roboto Slab", "Times New Roman", serif; + font-size: 1.3em; + font-weight: 700; + line-height: 1.4em; +} +.widget select { + width: 100%; +} + +.hestia-widget-placeholder { + padding: 25px; + border: 1px dashed #b4b9be; + text-align: center; +} +.hestia-widget-placeholder .widget { + margin: 0; +} + + +/*-------------------------------------------------------------- +## Attachment Page +--------------------------------------------------------------*/ + +.attachment .main-raised .blog-post { + padding-bottom: 130px; +} +.attachment .sizes { + margin-top: 20px; +} + + +/*-------------------------------------------------------------- +# Page +--------------------------------------------------------------*/ + +.page-header .container, +.page-header .author, +.page-header .author a, +.page-header .title, +.page-header .description { + color: #fff; +} + +.page-header { + overflow: hidden; + height: 90vh; + margin: 0; + padding: 0; + border: 0; + background-position: center center; + background-size: cover; +} +.page-header .carousel .carousel-indicators { + bottom: 60px; +} +.page-header .container { + padding-top: 30vh; +} + +.archive .page-header .title, +.blog .page-header .title, +.search .page-header .title { + font-size: 2.6em; +} + +.page-header.header-small { + height: auto; + min-height: 300px; +} +.page-header.header-small .container { + padding: 180px 0 170px; +} + +.header-filter { + position: relative; +} +.header-filter:before, +.header-filter:after { + display: block; + position: absolute; + z-index: 1; + top: 0; + left: 0; + width: 100%; + height: 100%; + content: ""; +} +.header-filter::before { + background-color: rgba(0, 0, 0, 0.5); +} +.header-filter .container { + position: relative; + z-index: 2; +} + +.clear-filter:before { + display: none; +} + +.header .wrapper { + background: #ccc; +} +.header .btn { + margin: 0; +} +.header h6 { + margin-bottom: 0; +} + +.phone-container img { + width: 100%; +} + +.main { + position: relative; + z-index: 3; + background: #fff; +} + +.main-raised { + margin: -60px 30px 0; + border-radius: 6px; + -webkit-box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2); + box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2); +} + +.page-template-template-pagebuilder-blank .section { + padding: 0; +} + +.woocommerce.archive .main-raised, +.single .main-raised { + margin: -60px 30px 30px; +} + +.woocommerce.archive .main-raised { + background-color: #e5e5e5; +} + +.content-sidebar-left { + padding-left: 55px; +} + +.content-sidebar-right { + padding-right: 55px; +} + + +/*-------------------------------------------------------------- +# Woocommerce Integration +--------------------------------------------------------------*/ + + +/*-------------------------------------------------------------- +## Generic +--------------------------------------------------------------*/ + +.woocommerce.archive .page-header { + height: auto; + min-height: 300px; +} +.woocommerce.single-product .main.main-raised { + margin: 0; + border-radius: 0; + -webkit-box-shadow: 0; + box-shadow: 0; +} +.woocommerce.single-product .blog-post { + background-color: #e5e5e5; +} +.woocommerce.single-product .blog-post .col-md-12 > div[id^=product].product { + margin: -350px 0 0; + padding: 40px; + border-radius: 6px; + background: #fff; + -webkit-box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2); + box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2); +} +.woocommerce.single-product .page-header { + height: auto; + min-height: 500px; + background-position: top center; +} +.woocommerce.single-product .product_title { + font-family: "Roboto Slab", "Times New Roman", serif; + font-size: 2.6em; + font-weight: 700; + line-height: 1.5em; +} +.woocommerce.single-product .summary .price { + margin: 10px 0 25px; + color: #3c4858; + font-family: "Roboto", "Helvetica", "Arial", sans-serif; + font-size: 1.825em; + font-weight: 300; + line-height: 1.4em; +} +.woocommerce div.product form.cart .reset_variations { + float: right; + margin-top: 20px; + font-size: 14px; +} +.woocommerce div.product form.cart .reset_variations:after { + margin-left: 5px; + font-family: "Fontawesome"; + content: "\f00d"; +} +.woocommerce div.product form.cart input { + margin-right: 10px; + border: none; + border-bottom: 1px solid #ccc; +} +.woocommerce div.product form.cart .button:after { + margin-left: 10px; + font-family: "Fontawesome"; + content: "\f07a"; +} +.woocommerce div.product .woocommerce-tabs ul.tabs.wc-tabs { + overflow: visible; +} +.woocommerce div.product .woocommerce-tabs ul.tabs.wc-tabs li { + background: none; +} +.woocommerce div.product .woocommerce-tabs ul.tabs li:after, +.woocommerce div.product .woocommerce-tabs ul.tabs li:before { + border: none; + -webkit-box-shadow: none; + box-shadow: none; +} +.woocommerce div.product .woocommerce-tabs ul.tabs.wc-tabs li { + border: none; +} +.woocommerce div.product .woocommerce-tabs ul.tabs.wc-tabs li.active a { + color: #fff; + background-color: #9c27b0; +} +.woocommerce div.product .woocommerce-tabs ul.tabs.wc-tabs li.active a:hover { + color: #fff; + background-color: #9c27b0; +} +.woocommerce div.product .woocommerce-tabs ul.tabs.wc-tabs li a { + min-width: 100px; + padding: 10px 15px; + border-radius: 30px; + color: #555; + font-size: 12px; + font-weight: 500; + line-height: 24px; + text-align: center; + text-transform: uppercase; +} +.woocommerce div.product .woocommerce-tabs ul.tabs.wc-tabs li a:hover { + background-color: rgba(200, 200, 200, 0.2); +} +.woocommerce div.product .woocommerce-tabs ul.tabs:before { + border: none; +} +.woocommerce div.product .woocommerce-tabs h2 { + font-size: 30px; +} +.woocommerce div.product form.cart .variations tr { + display: inline-block; + width: 48%; + margin-bottom: 25px; +} +.woocommerce div.product form.cart .variations tr:nth-child(2n), +.woocommerce div.product form.cart .variations tr td { + float: right; +} +.woocommerce div.product form.cart .variations td.label { + text-align: left; +} +.woocommerce div.product form.cart .variations td label { + background: transparent; + font-family: "Roboto", "Helvetica", "Arial", sans-serif; + font-weight: 400; + text-transform: none; +} +.woocommerce div.product form.cart .variations select { + width: 100%; + padding: 7px 0; + border: none; + border-bottom: 1px solid #ccc; + background: transparent; +} +.woocommerce div.product form.cart .variations td, +.woocommerce div.product form.cart .variations th { + width: 100%; +} +.woocommerce div.product div.images .flex-control-thumbs { + margin-top: 10px; +} +.woocommerce div.product div.images .flex-control-thumbs li { + width: 32%; + margin-bottom: 10px; + margin-left: 2%; +} +.woocommerce div.product div.images .flex-control-thumbs li:nth-child(3n+1), +.woocommerce div.product div.images .flex-control-thumbs li:first-child { + margin-left: 0; +} +.woocommerce.single-product .summary .price ins { + font-weight: 400; + text-decoration: none; +} +.woocommerce.single-product .section-text p { + font-family: "Roboto", "Helvetica", "Arial", sans-serif; + font-size: 14px; + font-weight: 300; + line-height: 1.5em; +} +.woocommerce .page-header .container { + padding-top: 150px; +} +.woocommerce .shop-item p { + font-size: 14px; +} +.woocommerce ul.products li.product .onsale, +.woocommerce span.onsale { + right: -15px; + width: 50px; + margin: 0; + padding: 0; + border-radius: 3px; + background-color: #89229b; + -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12); + box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12); + font-family: "Roboto Condensed", sans-serif; + font-size: 12px; + font-weight: 300; + line-height: 50px; + text-transform: uppercase; +} +.woocommerce span.onsale { + top: -25px; + left: -25px; +} +.woocommerce #respond input#submit.added:after, +.woocommerce a.button.added:after, +.woocommerce button.button.added:after, +.woocommerce input.button.added:after { + color: #4caf50; +} +.woocommerce .single-product div.product form.cart .button, +.woocommerce #respond input#submit, +.woocommerce a.button, +.woocommerce button.button, +.woocommerce input.button, +.woocommerce #respond input#submit.alt, +.woocommerce a.button.alt, +.woocommerce button.button.alt { + padding: 12px 30px; + border-radius: 3px; + color: #fff; + background-color: #9c27b0; + font-family: "Roboto", "Helvetica", "Arial", sans-serif; + font-size: 12px; + font-weight: 400; + text-transform: uppercase; +} +.woocommerce input.button.alt { + padding: 12px 30px; + border-radius: 3px; + color: #fff; + background-color: #9c27b0; + font-family: "Roboto", "Helvetica", "Arial", sans-serif; + font-size: 12px; + font-weight: 400; + text-transform: uppercase; +} +.woocommerce input.button:disabled { + padding: 12px 30px; + border-radius: 3px; + color: #fff; + background-color: #9c27b0; + font-family: "Roboto", "Helvetica", "Arial", sans-serif; + font-size: 12px; + font-weight: 400; + text-transform: uppercase; +} +.woocommerce input.button:disabled[disabled] { + padding: 12px 30px; + border-radius: 3px; + color: #fff; + background-color: #9c27b0; + font-family: "Roboto", "Helvetica", "Arial", sans-serif; + font-size: 12px; + font-weight: 400; + text-transform: uppercase; +} +.woocommerce a.button.wc-backward:hover, +.woocommerce .single-product div.product form.cart +.button:hover, +.woocommerce #respond input#submit:hover, +.woocommerce button.button:hover, +.woocommerce input.button:hover, +.woocommerce #respond input#submit.alt:hover, +.woocommerce a.button.alt:hover, +.woocommerce button.button.alt:hover { + color: #fff; + background-color: #9c27b0; +} +.woocommerce input.button.alt:hover { + color: #fff; + background-color: #9c27b0; +} +.woocommerce input.button:disabled:hover, +.woocommerce input.button:disabled[disabled]:hover { + color: #fff; + background-color: #9c27b0; +} +.woocommerce .cart-collaterals { + margin-top: -60px; + margin-bottom: 2.75em; +} +.woocommerce .cart-collaterals h2 { + margin: 0 0 4px; + font-size: 2em; +} +.woocommerce .cart-collaterals .cross-sells { + width: 52%; +} +.woocommerce .cart-collaterals .cross-sells .products { + margin-top: 30px; +} +.woocommerce .cart-collaterals .cart_totals { + width: 44%; + margin-bottom: 1em; +} +.woocommerce .cart-collaterals .cart_totals th, +.woocommerce .cart-collaterals .cart_totals td { + padding: 20px 0; +} +.woocommerce .cart-collaterals .cart_totals th { + font-weight: 300; +} +.woocommerce .cart-collaterals .cart_totals td { + font-weight: 700; +} +.woocommerce .cart-collaterals .cart_totals .checkout-button { + font-size: 14px; +} +.woocommerce .product .card-product { + text-align: center; +} +.woocommerce .product .card-product .card-description p { + margin-bottom: 10px; + color: #999; + font-size: 14px; + font-weight: 300; + line-height: 1.5em; +} +.woocommerce .product .card-product .footer { + text-align: left; +} +.woocommerce ul.products li.product { + width: 25%; + margin: 0; + padding: 0 15px; + background: transparent; + -webkit-box-shadow: none; + box-shadow: none; +} +.woocommerce ul.products li.product .price del { + display: inline; + opacity: 1; +} +.woocommerce ul.products li.product .price ins { + font-weight: 300; + text-decoration: none; +} +.woocommerce ul.products li.product .button { + margin-top: 0.7em; +} +.woocommerce .hestia-features p { + color: #999; + font-size: 14px; + font-weight: 300; + line-height: 1.5em; +} +.woocommerce .related.products h2 { + margin-bottom: 30px; + font-family: "Roboto Slab", "Times New Roman", serif; + font-weight: 700; + text-align: center; +} +.woocommerce ul.products li.product .price { + color: #333; +} +.woocommerce nav.woocommerce-pagination ul { + overflow: visible; + margin: 20px 0; + border: none; +} +.woocommerce nav.woocommerce-pagination ul li { + overflow: visible; + border: none; +} +.woocommerce nav.woocommerce-pagination ul li span.current { + min-width: 30px; + height: 30px; + margin: 0 3px; + padding: 0 11px; + border-color: #9c27b0; + border-radius: 30px; + color: #fff; + background-color: #9c27b0; + -webkit-box-shadow: 0 4px 5px 0 rgba(156, 39, 176, 0.14), 0 1px 10px 0 rgba(156, 39, 176, 0.12), 0 2px 4px -1px rgba(156, 39, 176, 0.2); + box-shadow: 0 4px 5px 0 rgba(156, 39, 176, 0.14), 0 1px 10px 0 rgba(156, 39, 176, 0.12), 0 2px 4px -1px rgba(156, 39, 176, 0.2); + line-height: 30px; +} +.woocommerce nav.woocommerce-pagination ul li a { + min-width: 30px; + height: 30px; + margin: 0 3px; + padding: 0 11px; + border: 0; + border-radius: 30px; + color: #999; + background: transparent; + font-size: 12px; + font-weight: 400; + line-height: 30px; + text-transform: uppercase; +} +.woocommerce nav.woocommerce-pagination ul li a:hover, +.woocommerce nav.woocommerce-pagination ul li a:focus { + background-color: #eee; +} +.woocommerce td.product-name dl.variation dd, +.woocommerce td.product-name dl.variation dt { + margin-bottom: 7px; +} +.woocommerce dl.variation dd p { + margin: 0 4px 0 0; + padding: 0 0 0.25em; + font-size: 14px; + line-height: 1.42857143; +} +.woocommerce form .form-row .required { + text-decoration: none; +} +.woocommerce form .form-row .input-checkbox { + margin: 8px 0 0; +} +.woocommerce .col2-set .woocommerce-account-fields label.checkbox span { + margin-left: 20px; +} +.woocommerce form.login { + margin: 0; + padding: 0; + border: none; +} +.woocommerce form.login input[type=submit] { + margin-right: 20px; +} + +.woocommerce-checkout-payment .woocommerce-info { + padding: 0 !important; + color: #3c4858; + background: #ebe9eb; +} +.woocommerce-checkout-payment .woocommerce-info:before { + display: none; +} + +#add_payment_method table.cart td.actions .coupon .input-text, +.woocommerce-cart table.cart td.actions .coupon .input-text, +.woocommerce-checkout table.cart td.actions .coupon .input-text { + width: auto; + margin: 0 20px 0 0; + border: 0; +} + +.woocommerce table.shop_table, +.table > thead > tr > th { + border: none; +} + +#add_payment_method table.cart img, +.woocommerce-cart table.cart img, +.woocommerce-checkout table.cart img { + width: auto; + max-width: 100px; + -webkit-box-shadow: none; + box-shadow: none; +} + +.woocommerce .quantity .qty { + padding: 4px 0; +} + +.shop-item:hover > .card > .card-image, +.product:hover > .card > .card-image { + -webkit-box-shadow: 0 26px 38px -12px rgba(0, 0, 0, 0.56), 0 4px 25px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2); + box-shadow: 0 26px 38px -12px rgba(0, 0, 0, 0.56), 0 4px 25px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2); + -webkit-transform: translate(0, -10px); + -ms-transform: translate(0, -10px); + transform: translate(0, -10px); +} + +#add_payment_method .wc-proceed-to-checkout a.checkout-button, +.woocommerce-cart .wc-proceed-to-checkout a.checkout-button, +.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button { + padding: 12px 30px; + border-radius: 3px; + color: #fff; + background-color: #9c27b0; + font-family: "Roboto", "Helvetica", "Arial", sans-serif; + font-size: 12px; + font-weight: 400; + text-transform: uppercase; +} + +.added_to_cart.wc-forward { + display: inline-block; + bottom: -25px; + width: auto; + margin: 0 auto; + padding: 5px 15px; + border-radius: 3px; + color: #fff; + background-color: #9c27b0; + font-family: "Roboto", "Helvetica", "Arial", sans-serif; + font-size: 10px; + font-weight: 400; + text-align: center; + text-transform: uppercase; +} + +.hestia-view-cart-wrapper { + display: block !important; + overflow: visible; + position: absolute; + right: 0; + bottom: -20px; + left: 0; + width: 100%; + text-align: center; +} + +.added_to_cart.wc-forward:hover, +.woocommerce-message a.button:hover, +#add_payment_method .wc-proceed-to-checkout a.checkout-button:hover, +.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover, +.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button:hover { + color: #fff; + background-color: #9c27b0; +} + +.woocommerce-page ul.products li.product { + width: 25%; + margin: 0; + padding: 0 15px; + background: transparent; + -webkit-box-shadow: none; + box-shadow: none; +} + +.woocommerce-cart table.shop_table { + margin-top: -30px; +} +.woocommerce-cart table.shop_table th { + padding: 20px; + font-size: 13px; + font-weight: 300; + text-transform: uppercase; +} +.woocommerce-cart table.shop_table .product-name a { + color: #3c4858; + font-size: 16px; + font-weight: 500; + line-height: 30px; +} +.woocommerce-cart table.shop_table td { + padding: 20px; +} +.woocommerce-cart table.shop_table td.product-remove { + width: 21px; +} +.woocommerce-cart table.shop_table td.product-thumbnail { + width: 100px; +} +.woocommerce-cart table.shop_table td.actions { + padding: 20px 0; +} +.woocommerce-cart table.shop_table td.actions input[type=submit] { + font-size: 14px; +} + +.woocommerce-page .page-header .container { + padding-top: 150px; +} +.woocommerce-page .title-row { + margin-top: 20px; +} + +.single-product.woocommerce .thumbnails #slider-prev, +.single-product.woocommerce .thumbnails #slider-next { + top: 45% !important; +} + +.variations tr { + border: none; +} +.variations tr .label { + color: #aaa; + font-size: 14px; +} + +.woocommerce-cart .col-md-12, +.woocommerce-checkout .col-md-12 { + padding-right: 0; + padding-left: 0; +} + +.woocommerce .single-product div.product form.cart .button, +.woocommerce #respond input#submit, +.woocommerce a.button, +.woocommerce button.button, +.woocommerce input.button, +.woocommerce #respond input#submit.alt, +.woocommerce a.button.alt, +.woocommerce button.button.alt, +.woocommerce input.button.alt, +.woocommerce input.button:disabled, +.woocommerce input.button[disabled]:disabled, +#add_payment_method .wc-proceed-to-checkout a.checkout-button, +.woocommerce-cart .wc-proceed-to-checkout a.checkout-button, +.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button, +.added_to_cart.wc-forward { + -webkit-box-shadow: 0 2px 2px 0 rgba(156, 39, 176, 0.14), 0 3px 1px -2px rgba(156, 39, 176, 0.2), 0 1px 5px 0 rgba(156, 39, 176, 0.12); + box-shadow: 0 2px 2px 0 rgba(156, 39, 176, 0.14), 0 3px 1px -2px rgba(156, 39, 176, 0.2), 0 1px 5px 0 rgba(156, 39, 176, 0.12); +} + +.woocommerce div.product .woocommerce-tabs ul.tabs.wc-tabs li.active a, +.woocommerce div.product .woocommerce-tabs ul.tabs.wc-tabs li.active a:hover, +.woocommerce a.button.wc-backward:hover, +.woocommerce .single-product div.product form.cart +.button:hover, +.woocommerce #respond input#submit:hover, +.woocommerce button.button:hover, +.woocommerce input.button:hover, +.woocommerce #respond input#submit.alt:hover, +.woocommerce a.button.alt:hover, +.woocommerce button.button.alt:hover, +.woocommerce input.button.alt:hover, +.woocommerce input.button:disabled:hover, +.woocommerce input.button[disabled]:disabled:hover, +.added_to_cart.wc-forward:hover, +.woocommerce-message a.button:hover, +#add_payment_method .wc-proceed-to-checkout a.checkout-button:hover, +.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover, +.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button:hover, +.woocommerce div[id^=woocommerce_widget_cart].widget .remove:hover, +div[id^=woocommerce_widget_cart].widget .remove:hover { + -webkit-box-shadow: 0 14px 26px -12px rgba(156, 39, 176, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(156, 39, 176, 0.2); + box-shadow: 0 14px 26px -12px rgba(156, 39, 176, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(156, 39, 176, 0.2); +} + + +/*-------------------------------------------------------------- +## Widgets +--------------------------------------------------------------*/ + +.shop-sidebar.card { + width: 25%; + padding-top: 29px; +} + +.woocommerce ul.product_list_widget, +.footer ul.product_list_widget, +ul.product_list_widget { + padding: 0; +} +.woocommerce ul.product_list_widget li, +.footer ul.product_list_widget li, +ul.product_list_widget li { + padding: 10px 0; + font-size: 14px; +} +.woocommerce ul.product_list_widget li:after, +.footer ul.product_list_widget li:after, +ul.product_list_widget li:after { + display: block; + clear: both; + height: 0; + content: " "; +} +.woocommerce ul.product_list_widget li a, +.footer ul.product_list_widget li a, +ul.product_list_widget li a { + display: block; + margin-bottom: 8px; + padding: 0; + font-weight: 400; + line-height: normal; +} +.woocommerce ul.product_list_widget li img, +.footer ul.product_list_widget li img, +ul.product_list_widget li img { + float: right; + width: 70px; + margin-left: 20px; + border-radius: 6px; + -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12); + box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12); + -webkit-transition: all 300ms cubic-bezier(0.34, 1.61, 0.7, 1); + transition: all 300ms cubic-bezier(0.34, 1.61, 0.7, 1); +} +.woocommerce ul.product_list_widget li:hover img, +.footer ul.product_list_widget li:hover img, +ul.product_list_widget li:hover img { + -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 6px -2px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.12); + box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 6px -2px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.12); + -webkit-transform: translateY(-3px); + -ms-transform: translateY(-3px); + transform: translateY(-3px); +} +.woocommerce ul.product_list_widget li .quantity, +.footer ul.product_list_widget li .quantity, +ul.product_list_widget li .quantity { + display: block; +} +.woocommerce ul.product_list_widget li:first-child, +.footer ul.product_list_widget li:first-child, +ul.product_list_widget li:first-child { + padding-top: 0; +} + +.star-rating { + overflow: hidden; + position: relative; + width: 5.4em; + height: 1em; + color: #ff9800; + font-family: star; + font-size: 1em; + line-height: 1; +} +.star-rating:before { + float: left; + position: absolute; + top: 0; + left: 0; + color: #d3ced2; + content: "\73\73\73\73\73"; +} +.star-rating span { + position: absolute; + padding-top: 1.5em; +} +.star-rating span:before { + position: absolute; + top: 0; + left: 0; + content: "\53\53\53\53\53"; +} + +#secondary div[id^=woocommerce_rating_filter] li, +.footer div[id^=woocommerce_rating_filter] li { + text-align: right; +} +#secondary div[id^=woocommerce_rating_filter] li a, +.footer div[id^=woocommerce_rating_filter] li a { + font-weight: 300; +} +#secondary div[id^=woocommerce_rating_filter] li .star-rating, +.footer div[id^=woocommerce_rating_filter] li .star-rating { + float: left; +} + +#secondary div[id^=woocommerce_layered_nav] ul, +#secondary div[id^=woocommerce_product_categories] ul, +.footer div[id^=woocommerce_layered_nav] ul, +.footer div[id^=woocommerce_product_categories] ul { + padding: 0; +} +#secondary div[id^=woocommerce_layered_nav] ul.children, +#secondary div[id^=woocommerce_product_categories] ul.children, +.footer div[id^=woocommerce_layered_nav] ul.children, +.footer div[id^=woocommerce_product_categories] ul.children { + padding-left: 15px; +} +#secondary div[id^=woocommerce_layered_nav] ul li a, +#secondary div[id^=woocommerce_product_categories] ul li a, +.footer div[id^=woocommerce_layered_nav] ul li a, +.footer div[id^=woocommerce_product_categories] ul li a { + font-size: 14px; + font-weight: 400; +} +#secondary div[id^=woocommerce_layered_nav] ul .count, +#secondary div[id^=woocommerce_product_categories] ul .count, +.footer div[id^=woocommerce_layered_nav] ul .count, +.footer div[id^=woocommerce_product_categories] ul .count { + float: right; + font-size: 14px; +} + +#secondary div[id^=woocommerce_products] a .product-title, +#secondary div[id^=woocommerce_top_rated_products] a .product-title, +#secondary div[id^=woocommerce_recently_viewed_products] a .product-title, +.footer div[id^=woocommerce_products] a .product-title, +.footer div[id^=woocommerce_top_rated_products] a .product-title, +.footer div[id^=woocommerce_recently_viewed_products] a .product-title { + margin-top: 20px; +} +#secondary div[id^=woocommerce_products] .amount:first-of-type, +#secondary div[id^=woocommerce_products] ins, +#secondary div[id^=woocommerce_top_rated_products] .amount:first-of-type, +#secondary div[id^=woocommerce_top_rated_products] ins, +#secondary div[id^=woocommerce_recently_viewed_products] .amount:first-of-type, +#secondary div[id^=woocommerce_recently_viewed_products] ins, +.footer div[id^=woocommerce_products] .amount:first-of-type, +.footer div[id^=woocommerce_products] ins, +.footer div[id^=woocommerce_top_rated_products] .amount:first-of-type, +.footer div[id^=woocommerce_top_rated_products] ins, +.footer div[id^=woocommerce_recently_viewed_products] .amount:first-of-type, +.footer div[id^=woocommerce_recently_viewed_products] ins { + text-decoration: none; +} +#secondary div[id^=woocommerce_products] ins .amount, +#secondary div[id^=woocommerce_top_rated_products] ins .amount, +#secondary div[id^=woocommerce_recently_viewed_products] ins .amount, +.footer div[id^=woocommerce_products] ins .amount, +.footer div[id^=woocommerce_top_rated_products] ins .amount, +.footer div[id^=woocommerce_recently_viewed_products] ins .amount { + margin-left: 10px !important; +} + +#secondary div[id^=woocommerce_recent_reviews] .reviewer, +.footer div[id^=woocommerce_recent_reviews] .reviewer { + font-size: 15px; +} +#secondary div[id^=woocommerce_recent_reviews] ul.product_list_widget li > a > img, +.footer div[id^=woocommerce_recent_reviews] ul.product_list_widget li > a > img { + width: 70px; +} + +#secondary div[id^=woocommerce_price_filter], +.footer div[id^=woocommerce_price_filter] { + padding-right: 14px; +} +#secondary div[id^=woocommerce_price_filter] .price_slider, +.footer div[id^=woocommerce_price_filter] .price_slider { + height: 2px; + margin: 15px 0 30px; + border-radius: 5px; + background-color: #c8c8c8; +} +#secondary div[id^=woocommerce_price_filter] .price_slider .ui-slider-range, +.footer div[id^=woocommerce_price_filter] .price_slider .ui-slider-range { + display: block; + position: absolute; + height: 2px; + background-color: #9c27b0; +} +#secondary div[id^=woocommerce_price_filter] .price_slider .ui-slider-handle, +.footer div[id^=woocommerce_price_filter] .price_slider .ui-slider-handle { + position: absolute; + width: 14px; + height: 14px; + margin-top: -6px; + border: 1px solid #9c27b0; + border-radius: 50%; + background: #fff; + -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12); + box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12); + cursor: pointer; + -webkit-transition: -webkit-transform 0.3s ease; + transition: -webkit-transform 0.3s ease; + transition: transform 0.3s ease; + transition: transform 0.3s ease, -webkit-transform 0.3s ease; +} +#secondary div[id^=woocommerce_price_filter] .price_slider .ui-slider-handle:focus, +.footer div[id^=woocommerce_price_filter] .price_slider .ui-slider-handle:focus { + outline: none; +} +#secondary div[id^=woocommerce_price_filter] .price_slider .ui-slider-handle.ui-state-active, +#secondary div[id^=woocommerce_price_filter] .price_slider .ui-slider-handle:hover, +.footer div[id^=woocommerce_price_filter] .price_slider .ui-slider-handle.ui-state-active, +.footer div[id^=woocommerce_price_filter] .price_slider .ui-slider-handle:hover { + -webkit-transform: scale3d(1.5, 1.5, 1); + transform: scale3d(1.5, 1.5, 1); +} +#secondary div[id^=woocommerce_price_filter] .button, +.footer div[id^=woocommerce_price_filter] .button { + float: right; + margin-right: -14px; +} +#secondary div[id^=woocommerce_price_filter] .price_label, +.footer div[id^=woocommerce_price_filter] .price_label { + max-width: 50%; + padding-top: 9px; +} + +div[id^=woocommerce_product_tag_cloud].widget a { + margin-bottom: 5px; + padding: 5px 12px; + border-radius: 12px; + color: #fff; + background: #9c27b0; + font-size: 10px !important; + font-weight: 600; + line-height: 27px; + white-space: nowrap; + text-transform: uppercase; +} + +.woocommerce div[id^=woocommerce_widget_cart].widget img, +div[id^=woocommerce_widget_cart].widget img { + float: left; + width: 70px; + margin-right: 20px; + margin-left: 0; +} +.woocommerce div[id^=woocommerce_widget_cart].widget .remove, +.woocommerce div[id^=woocommerce_widget_cart].widget .total .amount, +.woocommerce div[id^=woocommerce_widget_cart].widget .buttons .button:last-child, +div[id^=woocommerce_widget_cart].widget .remove, +div[id^=woocommerce_widget_cart].widget .total .amount, +div[id^=woocommerce_widget_cart].widget .buttons .button:last-child { + float: right; +} +.woocommerce div[id^=woocommerce_widget_cart].widget .remove, +div[id^=woocommerce_widget_cart].widget .remove { + z-index: 1; + top: -2px; + width: 18px; + height: 18px; + border-radius: 50%; + color: #f44336; + font-size: 18px; + font-weight: 600; + line-height: 18px; + text-align: center; +} +.woocommerce div[id^=woocommerce_widget_cart].widget .remove:hover, +div[id^=woocommerce_widget_cart].widget .remove:hover { + color: #fff; + background: #f44336; +} +.woocommerce div[id^=woocommerce_widget_cart].widget .buttons .button, +div[id^=woocommerce_widget_cart].widget .buttons .button { + display: inline-block; + color: #fff; +} +.woocommerce div[id^=woocommerce_widget_cart].widget .buttons:after, +div[id^=woocommerce_widget_cart].widget .buttons:after { + display: block; + clear: both; + height: 0; + content: " "; +} + +.woocommerce-product-search { + width: 100%; +} +.woocommerce-product-search input.search-field { + display: table-cell; + float: left; + width: 70%; + vertical-align: top; +} +.woocommerce-product-search input[type=submit] { + float: right; +} + + +/*-------------------------------------------------------------- +## Account Page +--------------------------------------------------------------*/ + +.woocommerce-account .woocommerce-MyAccount-navigation { + display: inline-block; + width: 20%; +} +.woocommerce-account .woocommerce-MyAccount-content { + display: inline-block; + float: right; + width: 75%; + margin-left: 5%; +} +.woocommerce-account .woocommerce-MyAccount-navigation ul { + padding: 0; + border-top: 1px solid #eee; +} +.woocommerce-account .woocommerce-MyAccount-navigation ul li { + padding-bottom: 0; + border-bottom: 1px solid #eee; + list-style: none; +} +.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a:before { + opacity: 1; +} +.woocommerce-account .woocommerce-MyAccount-navigation ul li a { + display: block; + padding: 10px 5px; +} +.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover { + color: #333; +} +.woocommerce-account .woocommerce-MyAccount-navigation ul li a:before { + margin-right: 20px; + opacity: 0.25; +} +.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover:before { + opacity: 1; +} +.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--dashboard a:before, +.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--orders a:before, +.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--downloads a:before, +.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-address a:before, +.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--payment-methods a:before, +.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-account a:before, +.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a:before { + font-family: "FontAwesome"; +} +.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--dashboard a:before { + content: "\f0e4"; +} +.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--orders a:before { + content: "\f291"; +} +.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--downloads a:before { + content: "\f1c6"; +} +.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-address a:before { + content: "\f015"; +} +.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--payment-methods a:before { + content: "\f09d"; +} +.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-account a:before { + content: "\f007"; +} +.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a:before { + content: "\f08b"; +} +.woocommerce-account .woocommerce-MyAccount-content h2 { + font-size: 25px; + font-weight: 600; + text-align: center; +} +.woocommerce-account p.order-again { + text-align: right; +} + +.woocommerce-EditAccountForm input[type="submit"] { + float: right; + margin-top: 50px; +} + +.woocommerce-account table.shop_table_responsive thead { + color: #fff; + background-color: #333; +} +.woocommerce-account table.shop_table_responsive thead th { + padding: 10px; + border-right: 1px solid; + text-align: center; +} +.woocommerce-account table.shop_table_responsive tbody td { + padding: 10px; + text-align: center; +} +.woocommerce-account table.shop_table_responsive tbody tr { + border-bottom: 1px solid #eee; +} +.woocommerce-account .my_account_orders .button { + text-decoration: underline; + text-transform: uppercase; +} +.woocommerce-account .woocommerce-MyAccount-content .col2-set { + width: 100%; +} + + +/*-------------------------------------------------------------- +## Notifications +--------------------------------------------------------------*/ + +.woocommerce-info, +.woocommerce-error, +.woocommerce-message { + padding: 20px 15px 20px 50px !important; + border: none; + border-radius: 5px; + color: #fff; + line-height: 20px; +} +.woocommerce-info:before, +.woocommerce-error:before, +.woocommerce-message:before { + top: 19px; + color: #fff; + font-family: "FontAwesome"; +} +.woocommerce-info a:not(.button), +.woocommerce-error a:not(.button), +.woocommerce-message a:not(.button) { + color: #fff; + font-weight: bold; +} +.woocommerce-info a:not(.button):hover, +.woocommerce-error a:not(.button):hover, +.woocommerce-message a:not(.button):hover { + opacity: 0.75; + color: #fff; +} + +.woocommerce-info { + background-color: #00bcd4; +} +.woocommerce-info:before { + content: "\f129"; +} +.woocommerce-info a { + color: #fff; + font-weight: bold; +} + +.woocommerce-error { + background-color: #f44336; +} +.woocommerce-error:before { + content: "\f12a"; +} + +.woocommerce-message { + background-color: #4caf50; +} +.woocommerce-message:before { + content: "\f00c"; +} + + +/*-------------------------------------------------------------- +## Reviews +--------------------------------------------------------------*/ + +.woocommerce #reviews #comments ol.commentlist { + padding: 0; +} +.woocommerce div.product #reviews .comment img { + overflow: hidden; + width: 45px; + height: 45px; + margin: 0 auto; + padding: 0; + border: none; + border-radius: 50%; + -webkit-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2); + box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2); +} +.woocommerce #reviews #comments ol.commentlist li img.avatar { + overflow: hidden; + width: 45px; + height: 45px; + margin: 0 auto; + padding: 0; + border: none; + border-radius: 50%; + -webkit-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2); + box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2); +} +.woocommerce #reviews #comments ol.commentlist li .comment-text { + margin-bottom: 25px; + border: none; +} + + +/*-------------------------------------------------------------- +## Checkout +--------------------------------------------------------------*/ + +.woocommerce .col2-set, +.woocommerce-page .col2-set, +.woocommerce-checkout .col2-set { + float: left; + width: 48%; + margin-right: 12%; +} + +.woocommerce-checkout .col2-set { + margin-bottom: 50px; +} + +#customer_details .col-1, +#customer_details .col-2 { + clear: left; + width: 100%; +} + +#order_review, +#order_review_heading { + float: right; + clear: right; + width: 40%; + margin-right: 0; +} + +.woocommerce-checkout #payment input[type=submit], +.woocommerce-checkout input[type=submit] { + font-size: 14px; +} +.woocommerce-checkout table.shop_table td strong { + display: block; +} +.woocommerce-checkout .woocommerce-info, +.woocommerce-checkout .woocommerce-error, +.woocommerce-checkout .woocommerce-message, +.woocommerce-checkout #payment { + border-radius: 3px; +} +.woocommerce-checkout #payment { + background: #f0f0f0; +} +.woocommerce-checkout #payment #place_order { + float: none; +} +.woocommerce-checkout #payment ul.payment_methods, +.woocommerce-checkout #payment div.form-row { + padding: 20px; +} +.woocommerce-checkout #payment ul.payment_methods { + padding-bottom: 0; + border: none; +} +.woocommerce-checkout #payment ul.payment_methods li { + background: #f0f0f0; +} +.woocommerce-checkout #payment ul.payment_methods li, +.woocommerce-checkout #payment ul.payment_methods div, +.woocommerce-checkout #payment ul.payment_methods div p { + font-size: 14px; + line-height: 1.5; +} +.woocommerce-checkout #payment div.payment_box { + background: #dfdfdf; +} +.woocommerce-checkout #payment div.payment_box ::before { + border-color: #dfdfdf; +} +.woocommerce-checkout .checkout_coupon .form-row { + width: 53%; + margin-bottom: 0; +} +.woocommerce-checkout .checkout_coupon .form-row-last { + width: 47%; + text-align: right; +} +.woocommerce-checkout .form-row label { + color: #9799a7; + font-size: 16px; + font-weight: 300; +} +.woocommerce-checkout .select2-container--default .select2-selection--single, +.woocommerce-checkout .select2-dropdown { + border-color: #d2d2d2; +} + + +/*-------------------------------------------------------------- +## WooCommerce Responsive +--------------------------------------------------------------*/ + +@media (min-width: 992px) { + .woocommerce .content-sidebar-right ul.products li.product, + .woocommerce .content-sidebar-left ul.products li.product { + width: 33.3%; + } +} +@media (max-width: 991px) { + .woocommerce .content-sidebar-left, + .woocommerce .content-sidebar-right { + padding: 0 15px; + } + .woocommerce .content-sidebar-left ul.products li.product, + .woocommerce .content-sidebar-right ul.products li.product { + clear: none; + } + + .woocommerce.single-product .page-header { + min-height: 500px; + } + +/* product list */ + .woocommerce ul.products li.product { + float: left; + width: 50%; + margin: auto; + padding-right: 15px; + padding-left: 15px; + } + + .shop-with-sidebar ul.products li.product:nth-child(3n+1) { + clear: none; + } + + .woocommerce ul.products li.product:nth-child(2n+1) { + clear: left; + } + + .woocommerce-ordering, + .woocommerce-ordering select { + width: 100%; + margin-right: 0; + } + + .woocommerce-breadcrumb { + width: 100%; + margin-bottom: 20px; + line-height: 33px; + text-align: center; + } + +/*My Account Styling*/ + .woocommerce-account .woocommerce-MyAccount-navigation { + width: 100%; + } + + .woocommerce-account .woocommerce-MyAccount-navigation ul li { + display: table-cell; + border: none; + } + + .woocommerce-account .woocommerce-MyAccount-navigation ul { + display: table; + width: 100%; + margin: 0 0 25px; + border: none; + } + + .woocommerce-account .woocommerce-MyAccount-navigation ul li a { + display: block; + } + + .woocommerce-account .woocommerce-MyAccount-content { + width: 100%; + margin-left: 0; + } + + .woocommerce-account .woocommerce-MyAccount-navigation ul li a:before { + margin-right: 5px; + opacity: 0.25; + } + + .woocommerce-account input.woocommerce-Button.button { + height: auto; + margin-top: 10px; + padding: 8px 37px; + border: none; + border-radius: 2px; + color: #fff; + background: #111; + font-family: "Roboto Condensed", sans-serif; + font-size: 11px; + letter-spacing: 2px; + text-transform: uppercase; + } + + .woocommerce-account input.woocommerce-Button.button:hover { + background: rgba(17, 17, 17, 0.8); + } + + .woocommerce-checkout table.shop_table th.product-total, + .woocommerce-checkout table.shop_table td.product-total, + .woocommerce-checkout table.shop_table tfoot td { + text-align: right; + } +} +@media (max-width: 767px) { + /* Woocommerce */ + .woocommerce .page-header .container { + padding-top: 60px; + } + + .woocommerce ul.products li.product, + .woocommerce ul.products li.product:nth-child(2n), + .woocommerce-page ul.products li.product:nth-child(2n) { + float: none; + width: 100%; + max-width: 370px; + margin: 25px auto; + } + + .woocommerce.archive .page-header { + min-height: 200px; + } + +/*My Account Styling*/ + .woocommerce-account .woocommerce-MyAccount-navigation ul li { + display: inline-block; + min-width: 125px; + border: none; + } + + .woocommerce-account .woocommerce-MyAccount-navigation ul { + display: table; + width: 100%; + margin: 0 0 25px; + border: none; + } + + .woocommerce .col2-set, + .woocommerce-page .col2-set { + float: none; + width: auto; + margin-right: 0; + } + + #order_review, + #order_review_heading { + float: none; + width: auto; + } + + .woocommerce.single-product .product { + padding: 30px 15px 0; + } + + .woocommerce.single-product.single .section { + padding: 0; + } + + .woocommerce-cart table.shop_table td.product-remove { + width: 100%; + } + + .woocommerce .cart-collaterals { + margin-top: 0; + } + .woocommerce .cart-collaterals h2 { + margin-top: 20px; + margin-bottom: 10px; + text-align: center; + } + .woocommerce .cart-collaterals .cross-sells, + .woocommerce .cart-collaterals .cart_totals, + .woocommerce .cart-collaterals .cross-sells ul.products li { + width: 100%; + } +} +@media (max-width: 1200px) { + .woocommerce .widget_shopping_cart_content a.button { + padding: 12px 18px; + } + + .woocommerce-cart .col-md-12, + .woocommerce-checkout .col-md-12 { + padding-right: 15px; + padding-left: 15px; + } +} +@media (max-width: 480px) { + /* Woocommerce */ + .woocommerce.archive .main-raised { + margin: -60px 10px 30px; + } + +/*My Account Styling*/ + .woocommerce-account .woocommerce-MyAccount-navigation ul li { + width: 50%; + } + + .woocommerce-account .my_account_orders .button { + display: block; + } + + .woocommerce span.onsale { + top: -5px; + left: -5px; + } + + .woocommerce.single-product .page-header { + min-height: 450px; + } +} + + +/*-------------------------------------------------------------- +## YITH Magnifier +--------------------------------------------------------------*/ + +li.yith_magnifier_thumbnail { + display: block; + position: relative; + padding: 0 10px; +} +li.yith_magnifier_thumbnail a { + margin: 25px auto; +} +li.yith_magnifier_thumbnail a img { + border-radius: 6px; +} + +.yith_magnifier_zoom_magnifier { + border: none !important; +} + + +/*-------------------------------------------------------------- +# Responsive +--------------------------------------------------------------*/ + +@media (max-width: 1199px) { + .hestia-features .row, + .hestia-about .row, + .products .row, + .hestia-work .row, + .hestia-team .row, + .pricing .row, + .hestia-testimonials .row, + section.hestia-blogs .row, + .contactus .row { + padding: 0 50px; + } + + .carousel h2.title { + font-size: 4.2em; + } + + .navbar .navbar-brand { + padding: 0 15px; + } + + .navbar .navbar-nav > li > a { + padding-top: 15px; + padding-bottom: 15px; + } +} +@media (max-width: 991px) { + .navbar .navbar-brand { + max-width: 250px; + } + + .navbar .navbar-nav > li { + margin-right: 10px; + margin-left: 10px; + } + + .page-header { + height: auto; + min-height: 100vh; + } + + .card.card-raised .card-image { + display: block; + margin-top: -30px; + margin-right: 0; + margin-left: 0; + } + + .card.card-raised { + padding: 20px; + } + + .woocommerce-checkout .page-header { + height: auto; + min-height: 440px; + } + + .hestia-about .text-area { + margin: 0 0 10px; + } + + .blog .page-header.header-small h2 { + margin: 0; + } + + .blog .page-header.header-small .container { + padding: 200px 15px; + } + + .blog .page-header.header-small { + height: auto; + min-height: 0; + } + + .page-header .iframe-container { + padding: 30px 0; + } + + .card-form-horizontal .form-group { + padding-bottom: 20px; + } + + .carousel .page-header { + padding: 0 30px; + } + + .carousel .buttons { + margin-bottom: 100px; + } + + .btn.btn-simple { + padding-right: 0; + padding-left: 0; + text-align: left; + } + + .hestia-work .col-md-6 .card-background .content, + .hestia-work .col-md-4 .card-background .content { + padding-top: 15%; + } + + .alternative-blog-row { + display: table; + width: 100%; + margin: 0 auto; + table-layout: fixed; + } + + .alternative-blog-row div:first-child { + display: table-footer-group; + } + + .alternative-blog-row div:last-child { + display: table-header-group; + } + + .hestia-features .row, + .features .row, + .hestia-about .row, + .about .row, + .products .row, + .hestia-work .row, + .work .row, + .hestia-team .row, + .team .row, + .pricing .row, + .hestia-testimonials .row, + .testimonials .row, + section.blogs .row, + .contactus .row { + padding: 0 25px; + } + + .contactus .contact_submit_wrap { + text-align: center; + } + + .single aside.blog-sidebar { + padding: 40px 30px; + } + + .shop-sidebar.card { + width: 96%; + text-align: initial; + } + + .shop-sidebar-wrapper { + text-align: center; + } +} +@media (min-width: 992px) { + .navbar .navbar-collapse { + text-align: center; + } + + .blog-posts-wrap > article { + padding: 20px; + } + + .card.card-raised .card-image { + margin-right: 0; + margin-left: 0; + } + + .navbar .navbar-center { + display: inline-block; + float: none; + } + + .navbar .navbar-nav > li { + margin: 0; + } + + .navbar .navbar-nav > li.btn { + margin: 0 10px; + } + + .navbar .navbar-nav > li.btn:last-child { + margin-right: 0; + } + + .gallery .gallery-item { + padding: 5px; + } + + .gallery img { + border: none !important; + border-radius: 6px; + -webkit-box-shadow: 0 16px 38px -12px rgba(0, 0, 0, 0.56), 0 4px 25px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2); + box-shadow: 0 16px 38px -12px rgba(0, 0, 0, 0.56), 0 4px 25px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2); + } + + .entry-social { + text-align: right; + } +} +@media (min-width: 783px) and (min-width: 601px) { + body.admin-bar .navbar-default:not(.navbar-transparent) { + margin-top: 32px; + } +} +@media (min-width: 768px) { + .form-horizontal .control-label { + padding-top: 8px; + } + + .dropdown .dropdown-menu { + display: block; + visibility: hidden; + margin-top: -20px; + opacity: 0; + -webkit-transition: all 150ms linear; + transition: all 150ms linear; + } + .dropdown.open .dropdown-menu { + visibility: visible; + margin-top: 1px; + opacity: 1; + } + + .navbar-nav > li { + display: inline-block; + float: none; + } + + .container > .navbar-header { + display: table-cell !important; + float: none; + vertical-align: middle; + } + + .navbar .navbar-collapse { + display: table-cell !important; + width: 100%; + text-align: right; + vertical-align: middle; + } +} +@media (max-width: 767px) { + .navbar .navbar-transparent .dropdown-menu li > a > i { + color: #fff; + } + .navbar .dropdown-menu li > a > i { + color: #333; + } + .navbar .navbar-nav .navbar-text { + margin-top: 15px; + margin-bottom: 15px; + color: inherit; + } + .navbar .navbar-nav .open .dropdown-menu > .dropdown-header { + border: 0; + color: inherit; + } + .navbar .navbar-nav li > a { + text-align: center; + } + .navbar .navbar-brand h1, + .navbar .navbar-brand p { + padding: 10px 0; + } + + .navbar-default .navbar-nav .open .dropdown-menu { + background-color: #f3f3f3; + } + + .navbar-transparent .navbar-nav .open .dropdown-menu { + background-color: rgba(0, 0, 0, 0.5); + } + + .navbar .navbar-nav .open .dropdown-menu > li > a { + color: inherit; + } + + .navbar .navbar-nav .open .dropdown-menu > li > a:hover, + .navbar .navbar-nav .open .dropdown-menu > li > a:focus, + .navbar .navbar-nav .open .dropdown-menu > .active > a, + .navbar .navbar-nav .open .dropdown-menu > .active > a:hover, + .navbar .navbar-nav .open .dropdown-menu > .active > a:focus, + .navbar .navbar-nav .open .dropdown-menu > .disabled > a, + .navbar .navbar-nav .open .dropdown-menu > .disabled > a:hover, + .navbar .navbar-nav .open .dropdown-menu > .disabled > a:focus { + color: inherit; + background-color: transparent; + } + + .single .section { + padding: 30px 15px 0; + } + + h1 { + font-size: 3em; + } + + .subscribe-line .btn { + margin-top: 15px; + } + + ul.children { + padding-left: 5px; + border-left: 1px #cfcfcf solid; + } + + .blog-post .section-comments .comment-respond .author { + display: none; + } + + .carousel h2.title { + font-size: 3em; + } + + .page-header .container { + padding-top: 25vh; + } + + .hestia-about .text-area { + margin-bottom: 20px; + } + + .footer .copyright { + display: inline-block; + float: none !important; + width: 100%; + padding: 10px 0; + text-align: center; + } + + .navbar.navbar-transparent { + padding-top: 10px; + border-radius: 0; + background-color: rgba(0, 0, 0, 0.8); + } + + .main-raised { + margin-right: 10px; + margin-left: 10px; + } +} +@media (max-width: 480px) { + .single .main-raised { + margin: -60px 10px 30px; + } +} + + +/*-------------------------------------------------------------- +# Compatibility +--------------------------------------------------------------*/ + + +/*-------------------------------------------------------------- +## WPML +--------------------------------------------------------------*/ + +footer .wpml-ls-item-legacy-dropdown a, +footer .wpml-ls-item-legacy-dropdown-click a { + color: #000; +} + +.wpml-ls-statics-footer { + margin: 0 auto; +} + + +/*-------------------------------------------------------------- +## BBPress Basic +--------------------------------------------------------------*/ + +.bbp-template-notice.info { + max-width: inherit; +} + +#bbpress-forums p.bbp-topic-meta img.avatar, +#bbpress-forums ul.bbp-reply-revision-log img.avatar, +#bbpress-forums ul.bbp-topic-revision-log img.avatar, +#bbpress-forums div.bbp-template-notice img.avatar, +#bbpress-forums .widget_display_topics img.avatar, +#bbpress-forums .widget_display_replies img.avatar { + margin-bottom: 0; +} + +.bbpress.blog-post .section-text p { + margin-bottom: 20px; + font-size: 15px; +} + +#wp-link-close { + -webkit-box-shadow: none; + box-shadow: none; +} diff --git a/www/.content.EZtzwPjb/html/020464a6477d4912e7adbc3a40a7ca151f6f150d.00000232.html b/www/.content.EZtzwPjb/html/020464a6477d4912e7adbc3a40a7ca151f6f150d.00000232.html new file mode 100644 index 0000000..c35bc81 --- /dev/null +++ b/www/.content.EZtzwPjb/html/020464a6477d4912e7adbc3a40a7ca151f6f150d.00000232.html @@ -0,0 +1,333 @@ + + + + + + + Screenshot_LinuxMint19-LXDE-x64-clone-secureboot-test_2018-11-18_19:06:48 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+
+
+
+
+ + + +

+
+
+
+
+

+ 0 commentaire

+
+
+
+

Laisser un commentaire

Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

+
+
+

+ +

+
+
+
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/02cb79aee3bf4598d5932b235f785a8bf241e825.00000047.html b/www/.content.EZtzwPjb/html/02cb79aee3bf4598d5932b235f785a8bf241e825.00000047.html new file mode 100644 index 0000000..5d5e72e --- /dev/null +++ b/www/.content.EZtzwPjb/html/02cb79aee3bf4598d5932b235f785a8bf241e825.00000047.html @@ -0,0 +1,535 @@ + + + + + + + + Coup de gueule – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+ +
+
+
+
+
+
+

http://www.flickr.com/photos/wgyuri/

+

En ce jour, je passe mon coup de gueule  à tous les opérateurs de téléphonie mobile qui osent mettre la mention « internet illimité » dans leurs contrats alors qu’il n’en n’est rien. Premièrement, toutes les offres pour particuliers avec un tarif décent utilisent un système de quota de donnée avec le plus souvent deux issues possible une fois la limite atteinte : réduction de débit ou coupure complète. Après la deuxième limitation est la discrimination de contenu et de protocole effectué par les opérateurs. Pour résumer, le terme « Internet » pour les opérateur signifie accès HTTP et rien d’autre. Ensuite je ne parlerais pas du filtrage en temps réel effectué sur votre trafic avec usage certain du DPI…

+

Donc soit je suis abruti et j’ai une mauvaise définition du mot illimité, soit messieurs les opérateurs ont confondu illimité et limité. Même constat pour le mot « Internet » qui a du être confondu avec Réseau Opérateur Amélioré. Si un marqueteu ou quelconque responsable veut répondre à ma prose et défendre son offre R.O.A limité , je l’attends de clavier ferme.

+

Petite Offre Opérateur :

+

-Accès Internet Limité

+

-500Mo de quota par mois

+

-Protocoles Autorisés : HTTP, POP, IMAP, SMTP

+

-Usages Interdits : Peer to peer, Newsgroup, VOIP (autorisé en option)

+

-Filtrage plus ou moins violent des autres protocoles : SSH, …

+

Je caricature peut-être un peu mais c’est ce que les opérateurs nous proposent pour un peu plus de 30€/mois, ça fais cher vous ne trouvez pas ? En sachant que chez moi je vais payer 35€ pour avoir du « vrai » illimité en fixe.

+

Autre blague, il y a certains opérateurs qui veulent nous faire croire que leurs infrastructures ne vont pas supporter l’augmentation d’abonnés et de services, que leur réseau va saturer et que l’on va tous mourir. Alors la solution qu’ ils sont trouvée c’est de limiter la data de leurs abonnés au lieu de faire leur boulot d’opérateur et d’augmenter la taille de leur réseau. Mais d’un autre coté, ils nous mettent de la TV en illimité, c’est le monde à l’envers ?

+

Exemple concret, je suis actuellement client Orange et je viens de passer sur Origami Style à 30€/mois. Je dispose d’un quota de 500Mo/mois mais celui-ci exclu ma consommation effectué avec Deezer soit presque 100Mo/jour. Et en plus ce type data n’est pas du multicast comme la tv mais du unicast donc c’est du trafic perso. Par contre l’option tv de mon forfait n’est pas illimité et passe dans mon quota mensuel, allez comprendre …

+

Donc faudra que l’on m’explique la cohérence de tout ce merdier.

+
+
+
+
+
Catégories : InternetNews
+
+
+
+ + + + + + + + + +
+
+
+
+
+
+
+

+ 2 commentaires

+
+ +
+
+
+
+

+ ®om + · 6 janvier 2011 à 22 h 22 min +

+

Tout à fait d’accord avec toi.

+

Cet article de rwwfr explique la situation avec Orange : Orange donne un aperçu de l’internet sans neutralité du net.

+

L’Internet mobile n’est pas Internet, car on n’a pas d’IP publique (on a qu’une IPv4 sur le réseau privé de l’opérateur). Au passage, je ne sais pas quand ils ont prévu de passer en IPv6…

+

Orange est vraiment le FAI à fuir : ils sont ouvertement contre la neutralité du net, et ne se privent pas de bloquer des ports y compris sur leur « Internet » fixe (le port 25 par exemple).

+

Côté mobile, Bouygues est également à fuir (ils bloquent également le port 25, il faut configurer le client mail pour passer par le port 587).

+

Chez SFR, au moins ils ne bloquent pas de ports (le SSH passe sur n’importe quel port). Je ne sais pas par contre s’ils priorisent (le réseau mobile est tellement lent que c’est difficile de s’en rendre compte). Mais ça reste du non-Internet (pas d’IP publique, usages interdits par contrat, etc.).

+ +
+
+
    +
    + +
    +
    +
    +
    +

    + HugoPoi + · 7 janvier 2011 à 0 h 31 min +

    +

    Pour le 25 j’ai pas testé, tous mes transferts de mail se font en SSL sur les ports par default.

    +

    Très intéressant le lien merci.

    + +
    +
    + +
+ +
+
+
+

Laisser un commentaire

Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

+
+
+

+ +

+
+
+
+
+
+
+ +
+
+
+
+
+
+ + +
+ + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/02d7ad56e02881e21797c39afca7d6db847913e3.00000505.html b/www/.content.EZtzwPjb/html/02d7ad56e02881e21797c39afca7d6db847913e3.00000505.html new file mode 100644 index 0000000..feefc29 --- /dev/null +++ b/www/.content.EZtzwPjb/html/02d7ad56e02881e21797c39afca7d6db847913e3.00000505.html @@ -0,0 +1,378 @@ + + + + + + + samsung – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+ +
+
+
+
+
+

Réparations Samsung SyncMaster 2232BW

Allô docteur on a un problème,

+

En ce dimanche calme avant la fin de mes partiels, mon écran Samsung SyncMaster 2232BW commençait à faire des siennes. Celui-ci depuis un mois ou deux clignotait de façon systématique au démarrage, au début pendant seulement quelques secondes, puis au fur et à mesure, de plus en plus jusqu’à devoir attendre 10 minutes pour que je puisse l’utiliser. Après 3 ans et 4 mois de bons et loyaux services, il voulait me quitter. J’ai tenté le support Samsung par email avec peu d’espoir car l’écran a dépassé sa garantie de 4 mois (oui oui les bâtards -> obsolescence programmée). Et donc j’ai eu le droit à un joli mail automatique me disant de contacter un numéro non surtaxé (mais avec combien de temps d’attente ?), ce que je n’ai pas fait car je n’avais pas envie de passer 30min au téléphone pour au final avoir un « On est désolé mais on ne peut rien faire pour vous car la garantie est dépassée, mais on peut envoyer votre écran en SAV pour faire un devis pour seulement 50 boules ». Concernant le support email de Samsung France, je leur donne une note de 0/20 puisque ce n’est pas un support mais une redirection vers le téléphone.

+

(suite…)

+
Par HugoPoi, il y a

Test du Samsung Galaxy S

C’est une petite révolution pour moi qui passe d’un HTC Touch à un Galaxy S. Le Touch était bien en son temps, smartphone de première génération, mais vite dépassé par les évènements et l’avènement du web sur mobile. (suite…)

+
Par HugoPoi, il y a
+
+ +
+
+
+
+ +
+
+ + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/02f7386d56eae777a01b2d26bc5eaa03ebf80ca8.00001252.js b/www/.content.EZtzwPjb/html/02f7386d56eae777a01b2d26bc5eaa03ebf80ca8.00001252.js new file mode 100644 index 0000000..16e4c13 --- /dev/null +++ b/www/.content.EZtzwPjb/html/02f7386d56eae777a01b2d26bc5eaa03ebf80ca8.00001252.js @@ -0,0 +1,2 @@ +/*! This file is auto-generated */ +!function(c,d){"use strict";var e=!1,n=!1;if(d.querySelector)if(c.addEventListener)e=!0;if(c.wp=c.wp||{},!c.wp.receiveEmbedMessage)if(c.wp.receiveEmbedMessage=function(e){var t=e.data;if(t)if(t.secret||t.message||t.value)if(!/[^a-zA-Z0-9]/.test(t.secret)){for(var r,a,i,s=d.querySelectorAll('iframe[data-secret="'+t.secret+'"]'),n=d.querySelectorAll('blockquote[data-secret="'+t.secret+'"]'),o=0;o +1.0HugoPoihttp://blog.hugopoi.netHugoPoihttp://blog.hugopoi.net/author/hugopoi/Orange et consort, impossible d'obtenir le désimlockagerich600338<blockquote class="wp-embedded-content"><a href="/2013/09/15/orange-et-consort-impossible-dobtenir-le-desimlockage/">Orange et consort, impossible d’obtenir le désimlockage</a></blockquote> +<script type='text/javascript'> +<!--//--><![CDATA[//><!-- + !function(a,b){"use strict";function c(){if(!e){e=!0;var a,c,d,f,g=-1!==navigator.appVersion.indexOf("MSIE 10"),h=!!navigator.userAgent.match(/Trident.*rv:11\./),i=b.querySelectorAll("iframe.wp-embedded-content");for(c=0;c<i.length;c++){if(d=i[c],!d.getAttribute("data-secret"))f=Math.random().toString(36).substr(2,10),d.src+="#?secret="+f,d.setAttribute("data-secret",f);if(g||h)a=d.cloneNode(!0),a.removeAttribute("security"),d.parentNode.replaceChild(a,d)}}}var d=!1,e=!1;if(b.querySelector)if(a.addEventListener)d=!0;if(a.wp=a.wp||{},!a.wp.receiveEmbedMessage)if(a.wp.receiveEmbedMessage=function(c){var d=c.data;if(d.secret||d.message||d.value)if(!/[^a-zA-Z0-9]/.test(d.secret)){var e,f,g,h,i,j=b.querySelectorAll('iframe[data-secret="'+d.secret+'"]'),k=b.querySelectorAll('blockquote[data-secret="'+d.secret+'"]');for(e=0;e<k.length;e++)k[e].style.display="none";for(e=0;e<j.length;e++)if(f=j[e],c.source===f.contentWindow){if(f.removeAttribute("style"),"height"===d.message){if(g=parseInt(d.value,10),g>1e3)g=1e3;else if(~~g<200)g=200;f.height=g}if("link"===d.message)if(h=b.createElement("a"),i=b.createElement("a"),h.href=f.getAttribute("src"),i.href=d.value,i.host===h.host)if(b.activeElement===f)a.top.location.href=d.value}else;}},d)a.addEventListener("message",a.wp.receiveEmbedMessage,!1),b.addEventListener("DOMContentLoaded",c,!1),a.addEventListener("load",c,!1)}(window,document); +//--><!]]> +</script><iframe sandbox="allow-scripts" security="restricted" src="/2013/09/15/orange-et-consort-impossible-dobtenir-le-desimlockage/embed/" width="600" height="338" title="« Orange et consort, impossible d’obtenir le désimlockage » — HugoPoi" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" class="wp-embedded-content"></iframe> diff --git a/www/.content.EZtzwPjb/html/033b7b5d6103ab237b673dbe81b2e979a7be67b2.00000230.html b/www/.content.EZtzwPjb/html/033b7b5d6103ab237b673dbe81b2e979a7be67b2.00000230.html new file mode 100644 index 0000000..5d4363e --- /dev/null +++ b/www/.content.EZtzwPjb/html/033b7b5d6103ab237b673dbe81b2e979a7be67b2.00000230.html @@ -0,0 +1,333 @@ + + + + + + + Screenshot_LinuxMint19-LXDE-x64-clone-secureboot-test_2018-11-18_19:04:43 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+
+
+
+
+ + + +

+
+
+
+
+

+ 0 commentaire

+
+
+
+

Laisser un commentaire

Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

+
+
+

+ +

+
+
+
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/03560c9e01ca857fb54a7af85488881c27e560e4.00000262.html b/www/.content.EZtzwPjb/html/03560c9e01ca857fb54a7af85488881c27e560e4.00000262.html new file mode 100644 index 0000000..120b447 --- /dev/null +++ b/www/.content.EZtzwPjb/html/03560c9e01ca857fb54a7af85488881c27e560e4.00000262.html @@ -0,0 +1,452 @@ + + + + + + + + Cookies beurre noisette chocolat caramel – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+ +
+
+
+
+
+
+

Largement inspiré de Bon Appétit « Brown Butter and Toffee Chocolate Chip Cookies »
+Shitload of cookies

+

Ingrédients

+
    +
  • 230g Beurre doux
  • +
  • 270g Farine ( 511ml )
  • +
  • 5g Levure chimique
  • +
  • 3g Sel
  • +
  • 280g cassonade ( 330ml )
  • +
  • 2 Oeufs
  • +
  • 2 Cuillère à café d’extrait vanille ou 1 sachet de sucre vanillé
  • +
  • Environ 10 Mi-Cho-ko La pie qui chante, coupé en quatre
  • +
  • 200g de Chocolat noir (1 tablette coupé en morceaux)
  • +
  • (Bonus) 2 cuillière à soupe de fécule de manioc (aka Tapioca Tipiak)
  • +
  • Crystaux de sel
  • +
+

Steps

+
    +
  1. Faire un beurre noisette
  2. +
  3. Laisser refroidir
  4. +
  5. Dans un saladier mélanger le sucre, la vanille, le beurre noisette, ajouté les 2 oeufs, bien mélanger pour obtenir un truc bien lisse.
  6. +
  7. Ajouter la farine, la levure, le sel et la fécule de manioc
  8. +
  9. Mélanger jusqu’a ce que la farine soit presque totalement incorporée ajouter le chocolat coupé en morceaux et les morceaux de Mi-Cho-Ko
  10. +
  11. Mélanger juste assez pour finir d’incorporer la farine (éviter de travailler le gluten)
    +Pate a cookie avant hydratation
  12. +
  13. Laisser reposer 30 minutes à température ambiante, la pate doit durcir et tenir
  14. +
  15. Faire des boules de pates d’environ 4cm de diamètre sur une plaque de cuisson
  16. +
  17. Ajouter des crystaux de sel au dessus avant d’enfourner
  18. +
  19. Enfourner 11 minutes à 190°C
  20. +
+

+
+
+
+
+
Catégories : Cuisine
+
+
+
+ + + + + + + + + +
+
+
+
+
+
+
+

+ 0 commentaire

+
+
+
+

Laisser un commentaire

Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

+
+
+

+ +

+
+
+
+
+
+
+ +
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/03e5c0bd583cf869995bbfce61ef857a900b1012.00000622.css b/www/.content.EZtzwPjb/html/03e5c0bd583cf869995bbfce61ef857a900b1012.00000622.css new file mode 100644 index 0000000..fe440fe --- /dev/null +++ b/www/.content.EZtzwPjb/html/03e5c0bd583cf869995bbfce61ef857a900b1012.00000622.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;background:#fff;border:1px +solid #f00;font-size:10pt;width:280px;padding:2px}span.wpcf7-not-valid-tip-no-ajax{color:#f00;font-size:10pt;display:block}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/03fde81f1719e14dcffad84a85a93efe56e68808.00000742.js b/www/.content.EZtzwPjb/html/03fde81f1719e14dcffad84a85a93efe56e68808.00000742.js new file mode 100644 index 0000000..e641506 --- /dev/null +++ b/www/.content.EZtzwPjb/html/03fde81f1719e14dcffad84a85a93efe56e68808.00000742.js @@ -0,0 +1 @@ +if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");!function(t){"use strict";var e=t.fn.jquery.split(" ")[0].split(".");if(e[0]<2&&e[1]<9||1==e[0]&&9==e[1]&&e[2]<1||e[0]>3)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher, but lower than version 4")}(jQuery),function(t){"use strict";var e=function(e,i){this.$element=t(e),this.$indicators=this.$element.find(".carousel-indicators"),this.options=i,this.paused=null,this.sliding=null,this.interval=null,this.$active=null,this.$items=null,this.options.keyboard&&this.$element.on("keydown.bs.carousel",t.proxy(this.keydown,this)),"hover"==this.options.pause&&!("ontouchstart"in document.documentElement)&&this.$element.on("mouseenter.bs.carousel",t.proxy(this.pause,this)).on("mouseleave.bs.carousel",t.proxy(this.cycle,this))};function i(i){return this.each(function(){var s=t(this),o=s.data("bs.carousel"),n=t.extend({},e.DEFAULTS,s.data(),"object"==typeof i&&i),a="string"==typeof i?i:n.slide;o||s.data("bs.carousel",o=new e(this,n)),"number"==typeof i?o.to(i):a?o[a]():n.interval&&o.pause().cycle()})}e.VERSION="3.3.7",e.TRANSITION_DURATION=600,e.DEFAULTS={interval:5e3,pause:"hover",wrap:!0,keyboard:!0},e.prototype.keydown=function(t){if(!/input|textarea/i.test(t.target.tagName)){switch(t.which){case 37:this.prev();break;case 39:this.next();break;default:return}t.preventDefault()}},e.prototype.cycle=function(e){return e||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(t.proxy(this.next,this),this.options.interval)),this},e.prototype.getItemIndex=function(t){return this.$items=t.parent().children(".item"),this.$items.index(t||this.$active)},e.prototype.getItemForDirection=function(t,e){var i=this.getItemIndex(e);if(("prev"==t&&0===i||"next"==t&&i==this.$items.length-1)&&!this.options.wrap)return e;var s=(i+("prev"==t?-1:1))%this.$items.length;return this.$items.eq(s)},e.prototype.to=function(t){var e=this,i=this.getItemIndex(this.$active=this.$element.find(".item.active"));if(!(t>this.$items.length-1||t<0))return this.sliding?this.$element.one("slid.bs.carousel",function(){e.to(t)}):i==t?this.pause().cycle():this.slide(t>i?"next":"prev",this.$items.eq(t))},e.prototype.pause=function(e){return e||(this.paused=!0),this.$element.find(".next, .prev").length&&t.support.transition&&(this.$element.trigger(t.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},e.prototype.next=function(){if(!this.sliding)return this.slide("next")},e.prototype.prev=function(){if(!this.sliding)return this.slide("prev")},e.prototype.slide=function(i,s){var o=this.$element.find(".item.active"),n=s||this.getItemForDirection(i,o),a=this.interval,r="next"==i?"left":"right",l=this;if(n.hasClass("active"))return this.sliding=!1;var h=n[0],d=t.Event("slide.bs.carousel",{relatedTarget:h,direction:r});if(this.$element.trigger(d),!d.isDefaultPrevented()){if(this.sliding=!0,a&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var p=t(this.$indicators.children()[this.getItemIndex(n)]);p&&p.addClass("active")}var c=t.Event("slid.bs.carousel",{relatedTarget:h,direction:r});return t.support.transition&&this.$element.hasClass("slide")?(n.addClass(i),n[0].offsetWidth,o.addClass(r),n.addClass(r),o.one("bsTransitionEnd",function(){n.removeClass([i,r].join(" ")).addClass("active"),o.removeClass(["active",r].join(" ")),l.sliding=!1,setTimeout(function(){l.$element.trigger(c)},0)}).emulateTransitionEnd(e.TRANSITION_DURATION)):(o.removeClass("active"),n.addClass("active"),this.sliding=!1,this.$element.trigger(c)),a&&this.cycle(),this}};var s=t.fn.carousel;t.fn.carousel=i,t.fn.carousel.Constructor=e,t.fn.carousel.noConflict=function(){return t.fn.carousel=s,this};var o=function(e){var s,o=t(this),n=t(o.attr("data-target")||(s=o.attr("href"))&&s.replace(/.*(?=#[^\s]+$)/,""));if(n.hasClass("carousel")){var a=t.extend({},n.data(),o.data()),r=o.attr("data-slide-to");r&&(a.interval=!1),i.call(n,a),r&&n.data("bs.carousel").to(r),e.preventDefault()}};t(document).on("click.bs.carousel.data-api","[data-slide]",o).on("click.bs.carousel.data-api","[data-slide-to]",o),t(window).on("load",function(){t('[data-ride="carousel"]').each(function(){var e=t(this);i.call(e,e.data())})})}(jQuery),function(t){"use strict";var e=function(e,i){this.options=i,this.$body=t(document.body),this.$element=t(e),this.$dialog=this.$element.find(".modal-dialog"),this.$backdrop=null,this.isShown=null,this.originalBodyPad=null,this.scrollbarWidth=0,this.ignoreBackdropClick=!1,this.options.remote&&this.$element.find(".modal-content").load(this.options.remote,t.proxy(function(){this.$element.trigger("loaded.bs.modal")},this))};function i(i,s){return this.each(function(){var o=t(this),n=o.data("bs.modal"),a=t.extend({},e.DEFAULTS,o.data(),"object"==typeof i&&i);n||o.data("bs.modal",n=new e(this,a)),"string"==typeof i?n[i](s):a.show&&n.show(s)})}e.VERSION="3.3.7",e.TRANSITION_DURATION=300,e.BACKDROP_TRANSITION_DURATION=150,e.DEFAULTS={backdrop:!0,keyboard:!0,show:!0},e.prototype.toggle=function(t){return this.isShown?this.hide():this.show(t)},e.prototype.show=function(i){var s=this,o=t.Event("show.bs.modal",{relatedTarget:i});this.$element.trigger(o),this.isShown||o.isDefaultPrevented()||(this.isShown=!0,this.checkScrollbar(),this.setScrollbar(),this.$body.addClass("modal-open"),this.escape(),this.resize(),this.$element.on("click.dismiss.bs.modal",'[data-dismiss="modal"]',t.proxy(this.hide,this)),this.$dialog.on("mousedown.dismiss.bs.modal",function(){s.$element.one("mouseup.dismiss.bs.modal",function(e){t(e.target).is(s.$element)&&(s.ignoreBackdropClick=!0)})}),this.backdrop(function(){var o=t.support.transition&&s.$element.hasClass("fade");s.$element.parent().length||s.$element.appendTo(s.$body),s.$element.show().scrollTop(0),s.adjustDialog(),o&&s.$element[0].offsetWidth,s.$element.addClass("in"),s.enforceFocus();var n=t.Event("shown.bs.modal",{relatedTarget:i});o?s.$dialog.one("bsTransitionEnd",function(){s.$element.trigger("focus").trigger(n)}).emulateTransitionEnd(e.TRANSITION_DURATION):s.$element.trigger("focus").trigger(n)}))},e.prototype.hide=function(i){i&&i.preventDefault(),i=t.Event("hide.bs.modal"),this.$element.trigger(i),this.isShown&&!i.isDefaultPrevented()&&(this.isShown=!1,this.escape(),this.resize(),t(document).off("focusin.bs.modal"),this.$element.removeClass("in").off("click.dismiss.bs.modal").off("mouseup.dismiss.bs.modal"),this.$dialog.off("mousedown.dismiss.bs.modal"),t.support.transition&&this.$element.hasClass("fade")?this.$element.one("bsTransitionEnd",t.proxy(this.hideModal,this)).emulateTransitionEnd(e.TRANSITION_DURATION):this.hideModal())},e.prototype.enforceFocus=function(){t(document).off("focusin.bs.modal").on("focusin.bs.modal",t.proxy(function(t){document===t.target||this.$element[0]===t.target||this.$element.has(t.target).length||this.$element.trigger("focus")},this))},e.prototype.escape=function(){this.isShown&&this.options.keyboard?this.$element.on("keydown.dismiss.bs.modal",t.proxy(function(t){27==t.which&&this.hide()},this)):this.isShown||this.$element.off("keydown.dismiss.bs.modal")},e.prototype.resize=function(){this.isShown?t(window).on("resize.bs.modal",t.proxy(this.handleUpdate,this)):t(window).off("resize.bs.modal")},e.prototype.hideModal=function(){var t=this;this.$element.hide(),this.backdrop(function(){t.$body.removeClass("modal-open"),t.resetAdjustments(),t.resetScrollbar(),t.$element.trigger("hidden.bs.modal")})},e.prototype.removeBackdrop=function(){this.$backdrop&&this.$backdrop.remove(),this.$backdrop=null},e.prototype.backdrop=function(i){var s=this,o=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var n=t.support.transition&&o;if(this.$backdrop=t(document.createElement("div")).addClass("modal-backdrop "+o).appendTo(this.$body),this.$element.on("click.dismiss.bs.modal",t.proxy(function(t){this.ignoreBackdropClick?this.ignoreBackdropClick=!1:t.target===t.currentTarget&&("static"==this.options.backdrop?this.$element[0].focus():this.hide())},this)),n&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),!i)return;n?this.$backdrop.one("bsTransitionEnd",i).emulateTransitionEnd(e.BACKDROP_TRANSITION_DURATION):i()}else if(!this.isShown&&this.$backdrop){this.$backdrop.removeClass("in");var a=function(){s.removeBackdrop(),i&&i()};t.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one("bsTransitionEnd",a).emulateTransitionEnd(e.BACKDROP_TRANSITION_DURATION):a()}else i&&i()},e.prototype.handleUpdate=function(){this.adjustDialog()},e.prototype.adjustDialog=function(){var t=this.$element[0].scrollHeight>document.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&t?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!t?this.scrollbarWidth:""})},e.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},e.prototype.checkScrollbar=function(){var t=window.innerWidth;if(!t){var e=document.documentElement.getBoundingClientRect();t=e.right-Math.abs(e.left)}this.bodyIsOverflowing=document.body.clientWidth
',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0}},e.prototype.init=function(e,i,s){if(this.enabled=!0,this.type=e,this.$element=t(i),this.options=this.getOptions(s),this.$viewport=this.options.viewport&&t(t.isFunction(this.options.viewport)?this.options.viewport.call(this,this.$element):this.options.viewport.selector||this.options.viewport),this.inState={click:!1,hover:!1,focus:!1},this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");for(var o=this.options.trigger.split(" "),n=o.length;n--;){var a=o[n];if("click"==a)this.$element.on("click."+this.type,this.options.selector,t.proxy(this.toggle,this));else if("manual"!=a){var r="hover"==a?"mouseenter":"focusin",l="hover"==a?"mouseleave":"focusout";this.$element.on(r+"."+this.type,this.options.selector,t.proxy(this.enter,this)),this.$element.on(l+"."+this.type,this.options.selector,t.proxy(this.leave,this))}}this.options.selector?this._options=t.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},e.prototype.getDefaults=function(){return e.DEFAULTS},e.prototype.getOptions=function(e){return(e=t.extend({},this.getDefaults(),this.$element.data(),e)).delay&&"number"==typeof e.delay&&(e.delay={show:e.delay,hide:e.delay}),e},e.prototype.getDelegateOptions=function(){var e={},i=this.getDefaults();return this._options&&t.each(this._options,function(t,s){i[t]!=s&&(e[t]=s)}),e},e.prototype.enter=function(e){var i=e instanceof this.constructor?e:t(e.currentTarget).data("bs."+this.type);if(i||(i=new this.constructor(e.currentTarget,this.getDelegateOptions()),t(e.currentTarget).data("bs."+this.type,i)),e instanceof t.Event&&(i.inState["focusin"==e.type?"focus":"hover"]=!0),i.tip().hasClass("in")||"in"==i.hoverState)i.hoverState="in";else{if(clearTimeout(i.timeout),i.hoverState="in",!i.options.delay||!i.options.delay.show)return i.show();i.timeout=setTimeout(function(){"in"==i.hoverState&&i.show()},i.options.delay.show)}},e.prototype.isInStateTrue=function(){for(var t in this.inState)if(this.inState[t])return!0;return!1},e.prototype.leave=function(e){var i=e instanceof this.constructor?e:t(e.currentTarget).data("bs."+this.type);if(i||(i=new this.constructor(e.currentTarget,this.getDelegateOptions()),t(e.currentTarget).data("bs."+this.type,i)),e instanceof t.Event&&(i.inState["focusout"==e.type?"focus":"hover"]=!1),!i.isInStateTrue()){if(clearTimeout(i.timeout),i.hoverState="out",!i.options.delay||!i.options.delay.hide)return i.hide();i.timeout=setTimeout(function(){"out"==i.hoverState&&i.hide()},i.options.delay.hide)}},e.prototype.show=function(){var i=t.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(i);var s=t.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(i.isDefaultPrevented()||!s)return;var o=this,n=this.tip(),a=this.getUID(this.type);this.setContent(),n.attr("id",a),this.$element.attr("aria-describedby",a),this.options.animation&&n.addClass("fade");var r="function"==typeof this.options.placement?this.options.placement.call(this,n[0],this.$element[0]):this.options.placement,l=/\s?auto?\s?/i,h=l.test(r);h&&(r=r.replace(l,"")||"top"),n.detach().css({top:0,left:0,display:"block"}).addClass(r).data("bs."+this.type,this),this.options.container?n.appendTo(this.options.container):n.insertAfter(this.$element),this.$element.trigger("inserted.bs."+this.type);var d=this.getPosition(),p=n[0].offsetWidth,c=n[0].offsetHeight;if(h){var u=r,f=this.getPosition(this.$viewport);r="bottom"==r&&d.bottom+c>f.bottom?"top":"top"==r&&d.top-cf.width?"left":"left"==r&&d.left-pa.top+a.height&&(o.top=a.top+a.height-l)}else{var h=e.left-n,d=e.left+n+i;ha.right&&(o.left=a.left+a.width-d)}return o},e.prototype.getTitle=function(){var t=this.$element,e=this.options;return t.attr("data-original-title")||("function"==typeof e.title?e.title.call(t[0]):e.title)},e.prototype.getUID=function(t){do{t+=~~(1e6*Math.random())}while(document.getElementById(t));return t},e.prototype.tip=function(){if(!this.$tip&&(this.$tip=t(this.options.template),1!=this.$tip.length))throw new Error(this.type+" `template` option must consist of exactly 1 top-level element!");return this.$tip},e.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},e.prototype.enable=function(){this.enabled=!0},e.prototype.disable=function(){this.enabled=!1},e.prototype.toggleEnabled=function(){this.enabled=!this.enabled},e.prototype.toggle=function(e){var i=this;e&&((i=t(e.currentTarget).data("bs."+this.type))||(i=new this.constructor(e.currentTarget,this.getDelegateOptions()),t(e.currentTarget).data("bs."+this.type,i))),e?(i.inState.click=!i.inState.click,i.isInStateTrue()?i.enter(i):i.leave(i)):i.tip().hasClass("in")?i.leave(i):i.enter(i)},e.prototype.destroy=function(){var t=this;clearTimeout(this.timeout),this.hide(function(){t.$element.off("."+t.type).removeData("bs."+t.type),t.$tip&&t.$tip.detach(),t.$tip=null,t.$arrow=null,t.$viewport=null,t.$element=null})};var i=t.fn.tooltip;t.fn.tooltip=function(i){return this.each(function(){var s=t(this),o=s.data("bs.tooltip"),n="object"==typeof i&&i;!o&&/destroy|hide/.test(i)||(o||s.data("bs.tooltip",o=new e(this,n)),"string"==typeof i&&o[i]())})},t.fn.tooltip.Constructor=e,t.fn.tooltip.noConflict=function(){return t.fn.tooltip=i,this}}(jQuery),function(t){"use strict";var e=function(i,s){this.$element=t(i),this.options=t.extend({},e.DEFAULTS,s),this.$trigger=t('[data-toggle="collapse"][href="#'+i.id+'"],[data-toggle="collapse"][data-target="#'+i.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};function i(e){var i,s=e.attr("data-target")||(i=e.attr("href"))&&i.replace(/.*(?=#[^\s]+$)/,"");return t(s)}function s(i){return this.each(function(){var s=t(this),o=s.data("bs.collapse"),n=t.extend({},e.DEFAULTS,s.data(),"object"==typeof i&&i);!o&&n.toggle&&/show|hide/.test(i)&&(n.toggle=!1),o||s.data("bs.collapse",o=new e(this,n)),"string"==typeof i&&o[i]()})}e.VERSION="3.3.7",e.TRANSITION_DURATION=350,e.DEFAULTS={toggle:!0},e.prototype.dimension=function(){return this.$element.hasClass("width")?"width":"height"},e.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var i,o=this.$parent&&this.$parent.children(".panel").children(".in, .collapsing");if(!(o&&o.length&&(i=o.data("bs.collapse"))&&i.transitioning)){var n=t.Event("show.bs.collapse");if(this.$element.trigger(n),!n.isDefaultPrevented()){o&&o.length&&(s.call(o,"hide"),i||o.data("bs.collapse",null));var a=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[a](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var r=function(){this.$element.removeClass("collapsing").addClass("collapse in")[a](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!t.support.transition)return r.call(this);var l=t.camelCase(["scroll",a].join("-"));this.$element.one("bsTransitionEnd",t.proxy(r,this)).emulateTransitionEnd(e.TRANSITION_DURATION)[a](this.$element[0][l])}}}},e.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var i=t.Event("hide.bs.collapse");if(this.$element.trigger(i),!i.isDefaultPrevented()){var s=this.dimension();this.$element[s](this.$element[s]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse in").attr("aria-expanded",!1),this.$trigger.addClass("collapsed").attr("aria-expanded",!1),this.transitioning=1;var o=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};if(!t.support.transition)return o.call(this);this.$element[s](0).one("bsTransitionEnd",t.proxy(o,this)).emulateTransitionEnd(e.TRANSITION_DURATION)}}},e.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},e.prototype.getParent=function(){return t(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(t.proxy(function(e,s){var o=t(s);this.addAriaAndCollapsedClass(i(o),o)},this)).end()},e.prototype.addAriaAndCollapsedClass=function(t,e){var i=t.hasClass("in");t.attr("aria-expanded",i),e.toggleClass("collapsed",!i).attr("aria-expanded",i)};var o=t.fn.collapse;t.fn.collapse=s,t.fn.collapse.Constructor=e,t.fn.collapse.noConflict=function(){return t.fn.collapse=o,this},t(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(e){var o=t(this);o.attr("data-target")||e.preventDefault();var n=i(o),a=n.data("bs.collapse")?"toggle":o.data();s.call(n,a)})}(jQuery),function(t){"use strict";t.fn.emulateTransitionEnd=function(e){var i=!1,s=this;t(this).one("bsTransitionEnd",function(){i=!0});return setTimeout(function(){i||t(s).trigger(t.support.transition.end)},e),this},t(function(){t.support.transition=function(){var t=document.createElement("bootstrap"),e={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var i in e)if(void 0!==t.style[i])return{end:e[i]};return!1}(),t.support.transition&&(t.event.special.bsTransitionEnd={bindType:t.support.transition.end,delegateType:t.support.transition.end,handle:function(e){if(t(e.target).is(this))return e.handleObj.handler.apply(this,arguments)}})})}(jQuery); \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/0426a8adfe3f0ab7ce3aa13b080509d4f1dfa5c7.00001221.js b/www/.content.EZtzwPjb/html/0426a8adfe3f0ab7ce3aa13b080509d4f1dfa5c7.00001221.js new file mode 100644 index 0000000..91e3fbc --- /dev/null +++ b/www/.content.EZtzwPjb/html/0426a8adfe3f0ab7ce3aa13b080509d4f1dfa5c7.00001221.js @@ -0,0 +1,3 @@ +/*! jQuery v3.5.1 | (c) JS Foundation and other contributors | jquery.org/license */ +!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],r=Object.getPrototypeOf,s=t.slice,g=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},x=function(e){return null!=e&&e===e.window},E=C.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.5.1",S=function(e,t){return new S.fn.init(e,t)};function p(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace($,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||v.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||v.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&y(p,e)?-1:t==C||t.ownerDocument==p&&y(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function D(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||j,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,j=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),y.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="",y.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="",y.option=!!ce.lastChild;var ge={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n",""]);var me=/<|&#?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function qe(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function Le(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function He(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Oe(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var Ut,Xt=[],Vt=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Xt.pop()||S.expando+"_"+Ct.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Vt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Vt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Vt,"$1"+r):!1!==e.jsonp&&(e.url+=(Et.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Xt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((Ut=E.implementation.createHTMLDocument("").body).innerHTML="
",2===Ut.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):("number"==typeof f.top&&(f.top+="px"),"number"==typeof f.left&&(f.left+="px"),c.css(f))}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=$e(y.pixelPosition,function(e,t){if(t)return t=Be(e,n),Me.test(t)?S(e).position()[n]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 0 + + + + + + chocolat – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+ +
+
+
+
+
+
+
+ +
+
+
+
+ +
+
+ + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/0479a6469f20fa90d261877212ada38441f917ee.00000550.xml b/www/.content.EZtzwPjb/html/0479a6469f20fa90d261877212ada38441f917ee.00000550.xml new file mode 100644 index 0000000..9b25e7f --- /dev/null +++ b/www/.content.EZtzwPjb/html/0479a6469f20fa90d261877212ada38441f917ee.00000550.xml @@ -0,0 +1,38 @@ + + + + HugoPoi » VPL-CX5 + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Sat, 14 Sep 2013 23:01:40 +0000 + fr-FR + hourly + 1 + http://wordpress.org/?v=3.6 + + Réparer un Vidéoprojecteur Sony VPL-CX5 + http://blog.hugopoi.net/2013/05/04/reparer-un-videoprojecteur-sony-vpl-cx5/ + http://blog.hugopoi.net/2013/05/04/reparer-un-videoprojecteur-sony-vpl-cx5/#comments + Sat, 04 May 2013 15:26:39 +0000 + HugoPoi + + + + + + + http://blog.hugopoi.net/?p=737 + Lire la suite »

]]>
+ http://blog.hugopoi.net/2013/05/04/reparer-un-videoprojecteur-sony-vpl-cx5/feed/ + 0 +
+
+
diff --git a/www/.content.EZtzwPjb/html/048daec269a240a82affec728868371be70127ec.00000087.html b/www/.content.EZtzwPjb/html/048daec269a240a82affec728868371be70127ec.00000087.html new file mode 100644 index 0000000..57b13e5 --- /dev/null +++ b/www/.content.EZtzwPjb/html/048daec269a240a82affec728868371be70127ec.00000087.html @@ -0,0 +1,497 @@ + + + + + + Démontage Asus U36 | HugoPoi + + + + + + + + + + + + + + + + + +
+ +
+
+

Démontage Asus U36

+ +
+
+ +

J’ai acheté un petit SSD pour mettre dans mon U36 acheté il y a quelques mois, je n’ai pas trouvé de procédure de démontage sur Internet donc voici les photos de mon démontage.

+

1) Commencer par enlever toutes les vis et la trappe pour accéder à la RAM, puis déconnecter les deux connecteurs clavier et touchpad qui se situent juste à coté de la carte wifi.

+

2) Retourner le pc et à l’aide d’un petit tournevis plat, dé-clipser les petits clips sur tout le tour du pc. Vous pouvez maintenant enlever toute la partie supérieur.

+

+

3) Démontage Terminé :D

+

4) Galerie

+ + +
+
+
+ + +
+ + +
    +
  1. +
    + +
    +

    Salut Hugo,

    +

    Comment as tu fait pour déconnecter les deux connecteurs clavier et touchpad qui se situent juste à coté de la carte wifi ?

    +

    Merci d’avance,
    +John

    +
    + +
    +
      +
    • +
      + +
      +

      Désolé pour l’attente,

      +

      Il faut prendre un petit tournevis plat et relever les petites languettes au dessus des nappes de façon à la mettre à 90° par rapport à la carte mère.

      +
      + +
      +
    • +
    +
  2. +
  3. +
    +
    + leboulanger + +
    +
    +

    bonjour,
    +super ton tuto ! j’ai la m idée que toi à savoir mettre un ssd mais est ce que tu sais si çest du SATA 1 ou 2 ? concernant les connecteurs je ne l’ai situe pas du tout. est ce que tu pourrais ajoutait une photo stp ?
    +merci en ts cas pour la contribution

    +
    + +
    +
      +
    • +
      + +
      +

      Salut,
      +Pour le mode SATA c’est du 2. Après j’ai pas d’autre photo mais le connecteur il est situé juste au bout du disque sur la gauche.

      +
      + +
      +
    • +
    +
  4. +
  5. +
    +
    + Asus U36 et OCZ Vertex 3 la suite | HugoPoi - pingback on 15 mai 2012 at 3 h 39 min +
    +
    +
  6. +
  7. +
    + +
    +

    J’ai aussi démonté le mien pour mettre un ssd et il n’a plus jamais redémarré (même avec le disque dur initial) …
    +Un conseil, soyez très prudents !

    +
    + +
    + +
  8. +
  9. +
    + +
    +

    Emiso tu es un boulet

    +
    + +
    + +
  10. +
  11. +
    + +
    +

    Mon U36 avec un SSD Crucial M4 et une carte Intel Centrino n-6230 à la place de la n-100… que du bonheur.

    +

    Merci pour le tuto bien utile.

    +
    + +
    +
  12. +
  13. +
    + +
    +

    merci pour ce tuto; a noter un truc pour ne pas perdre les vis et savoir où les replacer:

    +

    http://fr.slideshare.net/stepmond/remplacement-ecran-sony-vaio?ref=http://www.pcsoleil.fr/ecran-pc-portable-sony-vaio-casse/

    +

    3eme diapo

    +
    + +
    +
  14. +
  15. +
    + +
    +

    Can you send me a close up picture of both sides of the U36JC I/O board? It would be nice if you could give me also the resistor/capacitor values. I need to connect my SATA hard drive, but the board itself is very expensive. Do you think I can solder the SATA wires to a cable and plug that to the hard drive?

    +
    + +
    +
      +
    • +
      + +
      +

      I don’t want to reopen my laptop just for take picture. I don’t know if there are any out pins to solder a SATA connector but in Intel driver menu on Windows a port with no-connection appear.

      +
      + +
      +
    • +
    +
  16. +
  17. +
    + +
    +

    Hello , j’ai également cet Asus et comme tout le monde je pense, bien tenté de remplacer le disque dur de base par un ssd ^^.
    + Sur la première image de ton petit tuto, tu sembles montrer des emplacements vis sous les antidérapants.. ca me semble étrange ;p. Je voulais savoir si ceux si ne risquaient pas de s’abîmer (et du coup s’ils se remettaient également facilement).
    + Si tu passe par là, merci de la réponse!

    +
    + +
    +
      +
    • +
      + +
      +

      J’ai pu décoller et recoller sans problème les patins antidérapants. Mais à la rigueur prévoir du double-face pour remplacement.

      +
      + +
      +
    • +
    +
  18. +
  19. +
    + +
    +

    Oh my goodness! Incredible article dude! Thank
    +you so much, However I am going through issues with your RSS.
    +I don’t know why I am unable to subscribe to it. Is there anyone else getting the same RSS problems? Anybody who knows the answer will you kindly respond? Thanks!!

    +
    + +
    + +
  20. +
+ +
+

Répondre à Mez ¬
Annuler la réponse

+
+

+ +

+

NOTE - Vous pouvez utiliser les éléments et attributs HTML tags and attributes:
<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

+ + + +

+

+
+
+

Trackbacks and Pingbacks:

+ +
+
+
+
+ + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/048e35ef8d94f01e99e51c4ec0a881dee50a0fcd.00000240.html b/www/.content.EZtzwPjb/html/048e35ef8d94f01e99e51c4ec0a881dee50a0fcd.00000240.html new file mode 100644 index 0000000..abcb3e7 --- /dev/null +++ b/www/.content.EZtzwPjb/html/048e35ef8d94f01e99e51c4ec0a881dee50a0fcd.00000240.html @@ -0,0 +1,665 @@ + + + + + + + + Le cloud maison – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+ +
+
+
+
+
+
+
+

Voilà un petit moment que je me devais de faire cet article pour vous en dire un peu plus sur comment je gère mes données numériques au quotidien.

+

Et après plusieurs essais et échecs, je peux enfin dire que j’ai trouvé des outils simples et maintenus pour cette quête. Même si ce n’est pas encore parfait ni à la porté de tous.

+

Ma philosophie

+

C’est celle de Framasoft Dégooglelisons l’Internet ! Dans un monde ou si c’est gratuit, c’est vous le produit. Je me devais d’éviter d’aller à la simplicité et utiliser les Gmail, Dropbox, Spotify, iCloud et autres merdes du genre. On peut se dire que c’est cool, c’est simple mais vous ne contrôlez plus rien, et au final les GAFAM se serviront de vos données pour vous faire devenir des moutons consommateurs au service des actionnaires. Et j’entends déjà dire que « oui mais moi je sais mais je m’en fout » !

+

Le matos

+

Oui c’est chiant mais pour faire du hors cloud, il faut le construire chez soi ou chez le voisin le nuage. L’avantage de le faire chez soi c’est qu’on dépend de personne et aussi plus c’est proche plus on a de débit donc la donnée locale devient la donnée accessible rapidement.

+

J’ai viré ma box

+

Pour ne plus dépendre de mon opérateur en terme de matos, j’ai remplacé le routeur (une NeufBox v6) par Netgear R8000 flashé sous DD-WRT mod Kong. Avantages :

+
  • Meilleur wifi 30Mo/s sur la bande AC 5Ghz
  • Peu de changement de configuration si changement d’opérateur
  • Beaucoup paramétrage avancés possible
  • Si votre opérateur est en carafe, votre routeur marche toujours.
+

Par ici pour voir comment se passer de la neufbox v6 de SFR.

+

Le NAS

+

Là vous avez plein de solution pour stocker des données. Mais pour avoir un truc flexible surtout si vous avez de gros besoin, il faut faire du sur mesure. Vous pouvez faire avec du Synology ou concurrents mais c’est plutôt cher et en plus ils se font du blé sur des logiciels libres dont ils ne reversent jamais le code, bref des enculés hors la loi.

+

Donc il vous faut un PC x86 de préférence, moi je suis parti sur une configuration maison avec dans l’idée de faire un truc très compacte.

+
  • Intel Pentium G4400
  • 24 Go de RAM ( je vous explique après )
  • 4 x Disque de 3 To
  • 1 Disque de merde pour l’OS de base
  • Boîtier compacte In Win IW-MS04 ( Vous pouvez jeter un œil sur le SilverStone CS01-HS )
+

Et tous ça tient dans mon meuble de salon.

+
NAS dans le meuble TV
+

Donc si on fait les compte ça fait :

+
  • 200€ de routeur
  • Grosso modo 900€ de NAS
+

Ouai ça fait un budget après faut mettre en parallèle avec le coût du service rendu, pour avoir l’équivalent chez Dropbox c’est l’offre pro à 18€ par mois sauf qu’il faut prendre minimum 3 licences. Cela donne en annuel avec les remises si vous payez comptant 540€. Chez Google on est à 100€ par mois pour 10To soit 1200€ l’année. Après il y a en plus moyen de faire du recyclage de vieux composants ou acheter des trucs d’occasion ce que j’ai fait en partie. Pour ce qui est des solutions clé en main comme les Synology, on est au double du prix pour la même configuration.

+

Les logiciels

+

Dans l’idée d’avoir un truc souple et plutôt performant la première étape est de savoir comment vous allez exploiter vos disques-durs :

+
  • Es que l’on va faire du RAID 1/5/6/10 ?
  • Si du RAID logiciel ou matériel ?
  • Quel système d’exploitation ?
+

J’ai utilisé pendant longtemps des NAS maison sous Debian avec du raid 5 logiciel, les performances sont correctes (>100Mo/s en écriture) mais il y a pas mal d’inconvénients à cette solution. Comme devoir souvent recourir à la ligne de commande pour installer ou configurer des logiciels, pas de gestion simplifier se rapprochant d’une solution Synology. Au niveau du stockage vous ne pouvez pas augmenter facilement la taille ou le nombre de disque sans devoir recourir à des opérations complexe. Et une simple monté de version de l’OS se transforme rapidement en cauchemar.

+

Donc pour la base de mon NAS je me suis dit que j’allais devoir choisir une solution d’OS plus proche de l’objectif que juste une simple distribution Linux ou il faut tout configurer de 0. Inventaire du possible :

+

FreeNAS

+

Basé sur FreeBSD, solution pour NAS avec interface web avec gestion du stockage via ZFS.

+

OpenMediaVault

+

Basé sur Debian, solution pour NAS avec interface web avec gestion du RAID logiciel via mdadm.

+

Syncloud

+

Basé sur Raspian/Debian, distribution minimaliste pour Raspberry Pi et autres joyeusetés.

+

Yunohost

+

Petit nouveau dans le game, basé sur Debian, solution pour NAS avec interface web sans solution de gestion du stockage.

+

Proxmox

+

Basé sur Debian distribution commercial, environnement complet de stockage et de virtualisation avec interface web.

+

UnRaid
Distribution Linux commercial proposant un solution de RAID propriétaire. Interface Web et virtualisation.

+

En faisant cet article je suis tombé sur snapraid qui fournit un comparatif des différentes solutions de RAID logiciel au niveau du système de fichier.

+

J’ai opté pour FreeNAS comme OS de base. Pour les raisons suivantes :

+
  • Support natif de ZFS qui permet de faire du RAIDZ2 avec tolérance de panne de 2 disques, et gère les checksum sur fichier ainsi qu’une correction d’erreur. Gestion des snapshot comme LVM et permet de faire du stockage block pour d’autre système de fichier.
  • Gère le chiffrement sur disque en natif.
  • Robustesse et maintenue pour du commercial.
  • Possibilité de faire de la virtualisation ainsi qu’un système de JAIL.
  • L’interface WEB qui marche et est complète.
  • Mise à jour hyper simple via l’interface Web
  • Backup de la configuration via un simple fichier
+

FreeNAS

+

Déjà la mauvaise nouvelle c’est que pour avoir de bonne performance de stockage avec ZFS c’est qu’il vous faut de la RAM beaucoup de RAM car elle utilisé pour faire du cache et gérer les opérations interne de ZFS. J’en ai un peu plus que nécessaire car je prévois de faire de la virtualisation et ajouter d’autres fonctions sur mon NAS. Pour l’installation je vous recommande d’utiliser un device de merde pour le système car j’ai utilisé un SSD mais cela ne sert à rien, votre SSD sera beaucoup plus utile pour faire du cache pour ZFS. Vous pouvez utiliser une clé USB ou une carte SD.

+

NDLR: je vous laisse lire la doc de FreeNAS pour savoir comment installer le merdier. #RTFM

+

Ci-dessous un petit benchmark des performances disques sur du RAIDZ2 avec 4 disques de 3To, environ 400Mo/s de moyenne en écriture très correcte sans cache.

+
% fio --name TEST --eta-newline=5s --filename=fio-tempfile.dat --rw=write --size=500m --io_size=10g --blocksize=64k --fsync=10000 --iodepth=32 --direct=1 --numjobs=1 --runtime=60 --group_reporting
+ TEST: (g=0): rw=write, bs=(R) 64.0KiB-64.0KiB, (W) 64.0KiB-64.0KiB, (T) 64.0KiB-64.0KiB, ioengine=psync, iodepth=32
+ fio-3.0
+ Starting 1 process
+ Jobs: 1 (f=1): [W(1)][31.8%][r=0KiB/s,w=626MiB/s][r=0,w=10.0k IOPS][eta 00m:15s]
+ Jobs: 1 (f=1): [W(1)][58.3%][r=0KiB/s,w=0KiB/s][r=0,w=0 IOPS][eta 00m:10s]
+ Jobs: 1 (f=1): [W(1)][83.3%][r=0KiB/s,w=625MiB/s][r=0,w=10.0k IOPS][eta 00m:04s]
+ Jobs: 1 (f=1): [W(1)][100.0%][r=0KiB/s,w=0KiB/s][r=0,w=0 IOPS][eta 00m:00s]
+ TEST: (groupid=0, jobs=1): err= 0: pid=20290: Sun Mar 17 17:01:13 2019
+   write: IOPS=6702, BW=419MiB/s (439MB/s)(10.0GiB/24445msec)
+     clat (usec): min=5, max=17384, avg=10.20, stdev=96.40
+      lat (usec): min=6, max=17440, avg=10.76, stdev=105.67
+     clat percentiles (usec):
+      |  1.00th=[    8],  5.00th=[    8], 10.00th=[    8], 20.00th=[    9],
+      | 30.00th=[    9], 40.00th=[    9], 50.00th=[    9], 60.00th=[   10],
+      | 70.00th=[   10], 80.00th=[   10], 90.00th=[   11], 95.00th=[   11],
+      | 99.00th=[   21], 99.50th=[   30], 99.90th=[   75], 99.95th=[  165],
+      | 99.99th=[ 2999]
+    bw (  MiB/s): min=  105, max= 1250, per=100.00%, avg=1104.55, stdev=362.70, samples=18
+    iops        : min= 1688, max=20000, avg=17672.50, stdev=5803.29, samples=18
+   lat (usec)   : 10=90.15%, 20=8.83%, 50=0.87%, 100=0.07%, 250=0.04%
+   lat (usec)   : 500=0.01%, 750=0.01%, 1000=0.01%
+   lat (msec)   : 2=0.01%, 4=0.01%, 10=0.01%, 20=0.01%
+   cpu          : usr=0.68%, sys=7.26%, ctx=3362, majf=0, minf=1
+   IO depths    : 1=100.0%, 2=0.0%, 4=0.0%, 8=0.0%, 16=0.0%, 32=0.0%, >=64=0.0%
+      submit    : 0=0.0%, 4=100.0%, 8=0.0%, 16=0.0%, 32=0.0%, 64=0.0%, >=64=0.0%
+      complete  : 0=0.0%, 4=100.0%, 8=0.0%, 16=0.0%, 32=0.0%, 64=0.0%, >=64=0.0%
+      issued rwt: total=0,163840,0, short=0,0,0, dropped=0,0,0
+      latency   : target=0, window=0, percentile=100.00%, depth=32
+Run status group 0 (all jobs):
+ WRITE: bw=419MiB/s (439MB/s), 419MiB/s-419MiB/s (439MB/s-439MB/s), io=10.0GiB (10.7GB), run=24445-24445msec
+
Capture FreeNAS écran des disques
+

Donc à partir de cette étape vous avez du stockage utilisable en 3 cliques vous pouvez l’utiliser en réseau.

+
  • Partage NFS
  • Partage SMB pour Windaube
  • Partage MacOS avec AFP
  • Et bien-sur aussi via SFTP
  • Et aussi iSCSI
+

Vous allez me dire ouai c’est cool mais comment je fais pour utiliser mes données en dehors de chez moi comme dans le nuage. Vous pouvez mettre en place un VPN mais ça solutionne pas vraiment le problème de la mobilité

+

Les JAILs et la virtu

+

FreeNAS fournit des plugins basés sur les JAIL ancestre des containers Docker. Le truc assez cool vous pouvez installer Nextcloud, Owncloud et une dizaines d’autres donc si vos besoins sont limités et que vous voulez pas vous faire chier les plugins FreeNAS c’est la vie.

+
FreeNAS liste des plugins
+

Moi j’avais besoin de plus de souplesse et surtout de plus d’outils que ceux disponibles, et certains outils que je voulais avoir que j’utilisais déjà auparavant. C’est pour ça que mon usage des plugins est limité. J’utilise uniquement les plugins Transmission, SickRage et CouchPotato. Si vous voulez vous amusez le tuto ici est très bien fait pour configurer les différents plugins. J’utilise aussi une jail pour faire tourner Unbound comme résolveur DNS pour mon réseau local très pratique.

+

Yunohost

+

Comme FreeNAS ne fait pas tout, il me fallait une solution pour exploiter pleinement mon NAS et lui ajouter des features digne d’un cloud maison. Et Yunohost est vraiment super cool pour ça !

+
Page d’accueil utilisateur de Yunohost
+

Yunohost c’est faire plein de trucs !

+
  • Les courriels en natif oui oui ! Multi-domaines multi-utilisateurs avec une interface web du bonheur !
  • Baikal pour gérer la synchronisation Agenda / Contact sur tout mes devices en CardDav/CalDav
  • Roundcube pour l’accès webmail
  • Ampache pour gérer ma bibliothèque musical
  • Wallabag pour gérer mes liens favoris à lire plus tard
  • Tiny Tiny RSS pour gérer mes flux RSS
  • Gitea pour gérer mes dépôts git
  • Lufi pour uploader simplement des fichiers de manière temporaire et sécurisé
  • Seafile pour faire comme Dropbox, ce soft est TRÈS PERFORMANT surtout quand vous devez synchroniser de gros volume de fichier aussi bien en taille que en nombre !
  • Piwigo pour partager des albums photos pour la famille
  • Riot pour tchater !
  • Mastodon ( Je déconseille fortement car bouffe à mort de RAM ) pour remplacer Twitter
+

Pour installer Yunohost il vous faut une VM dans Freenas et vous installez Debian dedans, une fois Debian installé vous pouvez suivre la procédure pour installer Yunohost.

+

Je vous recommande de faire comme ça pour le partitionnement de votre VM Debian. Vous créez 2 disques virtuels un pour / et swap. Et le deuxième pour toutes les données donc /home /var.

+
FreeNAS volume pour yunohost
+

Pour le deuxième disque vous allez faire un truc un peu particulier, vous allez l’utiliser comme LVM mais sans table de partition si qui permettra de faire grossir le volume à chaud sans éditer la table de partition comme il y en aura pas ! Je suis pas sur que se soit supporté par Bhyve de FreeBSD donc faudra à minima que votre VM reboot une fois après le changement de taille.

+
Partitionnement VM Debian
+

Donc on a vda partitionné normalement avec une partition de boot EFI et le système dans un LVM mais pas indispensable. Le deuxième disque vdb n’a pas de table des partitions et a directement un LVM avec /var et /home Yunohost utilise principalement ces points de montages pour stocker les donnée des applications installées. Cette solution n’est pas parfaite car vous n’avez pas de moyen simple pour accéder au fichier de la machine Yunohost depuis FreeNas. Par contre l’inverse est possible rendre disponible vos fichiers et partages FreeNas dans Yunohost en utilisant un point de montage NFS. Ci-dessous mon fichier /etc/fstab.

+
# /etc/fstab: static file system information.
+#
+# Use 'blkid' to print the universally unique identifier for a
+# device; this may be used with UUID= as a more robust way to name devices
+# that works even if disks are added and removed. See fstab(5).
+#
+# <file system> <mount point>   <type>  <options>       <dump>  <pass>
+/dev/mapper/osvg-root /               ext4    errors=remount-ro 0       1
+# /boot/efi was on /dev/vda1 during installation
+UUID=4CFA-31EB  /boot/efi       vfat    umask=0077      0       1
+/dev/mapper/datasvg-home /home           ext4    defaults        0       2
+/dev/mapper/datasvg-var /var            xfs     defaults        0       0
+/dev/mapper/osvg-swap none            swap    sw              0       0
+192.168.1.35:/mnt/Mainraidz2/medias	/home/yunohost.multimedia/share	nfs	auto,x-systemd.automount,x-systemd.device-timeout=10,timeo=14,x-systemd.idle-timeout=1min	0	0
+

Pour revenir aux avantages de cette solution en machine virtuelle, cela permet une grande facilite de maintenance grâce a la possibilité de snapshot de la VM quand on le souhaite. Promis je vous fais un script de déploiement de Yunohost pour FreeNas, je ne sais si c’est possible que j’en fasse un plugin car Yunohost s’appuie beaucoup sur Debian, et on ne pas faire de plugin de VM dans FreeNas pour l’instant. J’ai aussi commencé à investiguer une autre solution plus élégante qui serait d’utiliser le sous-système d’émulation linux dans une Jail BSD pour monter Debian+Yunohost sauf que cette méthode ne permet que d’installer Wheezy comme version de Debian donc pas possible. La solution la plus probable serait d’utiliser Docker pour FreeBSD c’est encore en expérimental.

+

Schéma du merdier

+
Schéma de mon réseau à la maison
+

Améliorations et travaux en cours

+

Tout se merdier je le fais sur mon temps libre et tout est loin d’être parfait donc voici la liste des travaux à faire ou en cours :

+
  • Secondary SMTP entry point has fail safe
  • External offsite backup via ZFS Sync or S3 protocol
  • Monitoring stuff (Premetheus, Grafana, snmp)
  • Upgrade Router firmware
  • Torrent stuff available on network trought SMB and other protocol
  • Add a reverse proxy over transmission web and other freenas apps
  • Use SSD for ZFS caching
  • Add 4G fallback connection on the router
  • Mastodon to Pleroma (save lot of ressource)
  • Configure HDD hidle for saving some juice
  • DNS-over-TLS
  • VPN ? already have ssh … usefull only for UDP
  • Have a haproxy in front of yunohost and the other stuff for manage ressource easily for sharing port like 443
  • IPv6 !
+

+
+
+ +
+
+
+
+
+

+ 4 commentaires

+
+ +
+
+
+
+

+ clement + · 11 juillet 2019 à 22 h 15 min +

+

Merci pour le retour d’expérience (et l’humour sur le blog!) ^^. Chez moi, c’est Synology avec l’OS d’origine et Yunohost sur RASPI! #fun

+ +
+
+ +
+ +
+
+
+
+

+ emilien mougeat + · 27 janvier 2020 à 22 h 42 min +

+

Salut !
+Merci pour ce retour d’experience.
+J’ai également passé le pas ! freenas + yunohost en iohyve ( debian9+yunohost). plutot cool.
+Par contre j’ai une petite galere que je n’arrive pas à resoudre, et je voulais savoir si tu avais rencontré la meme problematique.
+En effet quand j’essaye de monter le NFS entre le yuno et le freenas, impossible.
+Ma conf « semble » bonne maiiiiiiis je n’y arrive pas.
+Qu niveau de la conf nfs du freenas, quels paramètres as tu ?
+++

+ +
+
+ +
+ +
+
+
+
+

+ emilien mougeat + · 27 janvier 2020 à 23 h 44 min +

+

Bon Je viens de comprendre le probleme NFS, les droits configurés sur le volume etaient des droits windaube ….. SERIEUX Oo

+ +
+
+ +
+ +
+
+
+
+

+ T'es pas sérieux + · 19 septembre 2020 à 15 h 46 min +

+

Comment peut-on confondre « sait » et « c’est » ? Ce et se? Mon dieu…

+ +
+
+ +
+
+
+

Laisser un commentaire

Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

+
+
+

+ +

+
+
+
+
+
+
+ +
+
+
+
+
+
+ + +
+ + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/04a6b27cb7b32b8aad8f2250db195310ed31e799.00000331.txt b/www/.content.EZtzwPjb/html/04a6b27cb7b32b8aad8f2250db195310ed31e799.00000331.txt new file mode 100644 index 0000000..11ff78c --- /dev/null +++ b/www/.content.EZtzwPjb/html/04a6b27cb7b32b8aad8f2250db195310ed31e799.00000331.txt @@ -0,0 +1,4 @@ +User-agent: * +Disallow: /wp-admin/ +Allow: /wp-admin/admin-ajax.php +Sitemap: https://blog.hugopoi.net/wp-sitemap.xml diff --git a/www/.content.EZtzwPjb/html/04d3cb56cf59ad5a4ee005ce6cf268f0cc395c01.00000082.html b/www/.content.EZtzwPjb/html/04d3cb56cf59ad5a4ee005ce6cf268f0cc395c01.00000082.html new file mode 100644 index 0000000..7531a00 --- /dev/null +++ b/www/.content.EZtzwPjb/html/04d3cb56cf59ad5a4ee005ce6cf268f0cc395c01.00000082.html @@ -0,0 +1,497 @@ + + + + + + Démontage Asus U36 | HugoPoi + + + + + + + + + + + + + + + + + +
+ +
+
+

Démontage Asus U36

+ +
+
+ +

J’ai acheté un petit SSD pour mettre dans mon U36 acheté il y a quelques mois, je n’ai pas trouvé de procédure de démontage sur Internet donc voici les photos de mon démontage.

+

1) Commencer par enlever toutes les vis et la trappe pour accéder à la RAM, puis déconnecter les deux connecteurs clavier et touchpad qui se situent juste à coté de la carte wifi.

+

2) Retourner le pc et à l’aide d’un petit tournevis plat, dé-clipser les petits clips sur tout le tour du pc. Vous pouvez maintenant enlever toute la partie supérieur.

+

+

3) Démontage Terminé :D

+

4) Galerie

+ + +
+
+
+ + +
+ + +
    +
  1. +
    + +
    +

    Salut Hugo,

    +

    Comment as tu fait pour déconnecter les deux connecteurs clavier et touchpad qui se situent juste à coté de la carte wifi ?

    +

    Merci d’avance,
    +John

    +
    + +
    +
      +
    • +
      + +
      +

      Désolé pour l’attente,

      +

      Il faut prendre un petit tournevis plat et relever les petites languettes au dessus des nappes de façon à la mettre à 90° par rapport à la carte mère.

      +
      + +
      +
    • +
    +
  2. +
  3. +
    +
    + leboulanger + +
    +
    +

    bonjour,
    +super ton tuto ! j’ai la m idée que toi à savoir mettre un ssd mais est ce que tu sais si çest du SATA 1 ou 2 ? concernant les connecteurs je ne l’ai situe pas du tout. est ce que tu pourrais ajoutait une photo stp ?
    +merci en ts cas pour la contribution

    +
    + +
    +
      +
    • +
      + +
      +

      Salut,
      +Pour le mode SATA c’est du 2. Après j’ai pas d’autre photo mais le connecteur il est situé juste au bout du disque sur la gauche.

      +
      + +
      +
    • +
    +
  4. +
  5. +
    +
    + Asus U36 et OCZ Vertex 3 la suite | HugoPoi - pingback on 15 mai 2012 at 3 h 39 min +
    +
    +
  6. +
  7. +
    + +
    +

    J’ai aussi démonté le mien pour mettre un ssd et il n’a plus jamais redémarré (même avec le disque dur initial) …
    +Un conseil, soyez très prudents !

    +
    + +
    + +
  8. +
  9. +
    + +
    +

    Emiso tu es un boulet

    +
    + +
    + +
  10. +
  11. +
    + +
    +

    Mon U36 avec un SSD Crucial M4 et une carte Intel Centrino n-6230 à la place de la n-100… que du bonheur.

    +

    Merci pour le tuto bien utile.

    +
    + +
    +
  12. +
  13. +
    + +
    +

    merci pour ce tuto; a noter un truc pour ne pas perdre les vis et savoir où les replacer:

    +

    http://fr.slideshare.net/stepmond/remplacement-ecran-sony-vaio?ref=http://www.pcsoleil.fr/ecran-pc-portable-sony-vaio-casse/

    +

    3eme diapo

    +
    + +
    +
  14. +
  15. +
    + +
    +

    Can you send me a close up picture of both sides of the U36JC I/O board? It would be nice if you could give me also the resistor/capacitor values. I need to connect my SATA hard drive, but the board itself is very expensive. Do you think I can solder the SATA wires to a cable and plug that to the hard drive?

    +
    + +
    +
      +
    • +
      + +
      +

      I don’t want to reopen my laptop just for take picture. I don’t know if there are any out pins to solder a SATA connector but in Intel driver menu on Windows a port with no-connection appear.

      +
      + +
      +
    • +
    +
  16. +
  17. +
    + +
    +

    Hello , j’ai également cet Asus et comme tout le monde je pense, bien tenté de remplacer le disque dur de base par un ssd ^^.
    + Sur la première image de ton petit tuto, tu sembles montrer des emplacements vis sous les antidérapants.. ca me semble étrange ;p. Je voulais savoir si ceux si ne risquaient pas de s’abîmer (et du coup s’ils se remettaient également facilement).
    + Si tu passe par là, merci de la réponse!

    +
    + +
    +
      +
    • +
      + +
      +

      J’ai pu décoller et recoller sans problème les patins antidérapants. Mais à la rigueur prévoir du double-face pour remplacement.

      +
      + +
      +
    • +
    +
  18. +
  19. +
    + +
    +

    Oh my goodness! Incredible article dude! Thank
    +you so much, However I am going through issues with your RSS.
    +I don’t know why I am unable to subscribe to it. Is there anyone else getting the same RSS problems? Anybody who knows the answer will you kindly respond? Thanks!!

    +
    + +
    + +
  20. +
+ +
+

Répondre à Alex ¬
Annuler la réponse

+
+

+ +

+

NOTE - Vous pouvez utiliser les éléments et attributs HTML tags and attributes:
<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

+ + + +

+

+
+
+

Trackbacks and Pingbacks:

+ +
+
+
+
+ + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/04f66b21626f39737b34480a2ea48f9476a1cf63.00000526.html b/www/.content.EZtzwPjb/html/04f66b21626f39737b34480a2ea48f9476a1cf63.00000526.html new file mode 100644 index 0000000..6889582 --- /dev/null +++ b/www/.content.EZtzwPjb/html/04f66b21626f39737b34480a2ea48f9476a1cf63.00000526.html @@ -0,0 +1,373 @@ + + + + + + + SyncMaster 2232BW – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+ +
+
+
+
+
+

Réparations Samsung SyncMaster 2232BW

Allô docteur on a un problème,

+

En ce dimanche calme avant la fin de mes partiels, mon écran Samsung SyncMaster 2232BW commençait à faire des siennes. Celui-ci depuis un mois ou deux clignotait de façon systématique au démarrage, au début pendant seulement quelques secondes, puis au fur et à mesure, de plus en plus jusqu’à devoir attendre 10 minutes pour que je puisse l’utiliser. Après 3 ans et 4 mois de bons et loyaux services, il voulait me quitter. J’ai tenté le support Samsung par email avec peu d’espoir car l’écran a dépassé sa garantie de 4 mois (oui oui les bâtards -> obsolescence programmée). Et donc j’ai eu le droit à un joli mail automatique me disant de contacter un numéro non surtaxé (mais avec combien de temps d’attente ?), ce que je n’ai pas fait car je n’avais pas envie de passer 30min au téléphone pour au final avoir un « On est désolé mais on ne peut rien faire pour vous car la garantie est dépassée, mais on peut envoyer votre écran en SAV pour faire un devis pour seulement 50 boules ». Concernant le support email de Samsung France, je leur donne une note de 0/20 puisque ce n’est pas un support mais une redirection vers le téléphone.

+

(suite…)

+
Par HugoPoi, il y a
+
+ +
+
+
+
+ +
+
+ + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/050544ff2e21e6889846ab7e04842996609e82d5.00000255.html b/www/.content.EZtzwPjb/html/050544ff2e21e6889846ab7e04842996609e82d5.00000255.html new file mode 100644 index 0000000..82f0d07 --- /dev/null +++ b/www/.content.EZtzwPjb/html/050544ff2e21e6889846ab7e04842996609e82d5.00000255.html @@ -0,0 +1,817 @@ + + + + + + + + Install RancherOs on FreeNas 11.3 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+ +
+
+
+
+
+
+

Install RancherOs on FreeNas 11.3

+
    +
  • The automated RancherOs installation aka Docker VM has been removed in
    +11.3
  • +
  • RancherOs doesn’t support EFI boot out of the box
  • +
  • Thanks to MKinney howto
  • +
  • This howto is provided without warranty
  • +
  • TODO the proper way of doing it is somewhere here
  • +
  • Some stuff about losetup
  • +
+

1. Make a EFI bootable RancherOs image

+ +
    +
  1. wget https://releases.rancher.com/os/v1.5.5/rancheros.iso
  2. +
  3. wget http://releases.ubuntu.com/18.04/ubuntu-18.04.4-live-server-amd64.iso
  4. +
  5. mkdir tmpubuntu tmprancheros tmprancheros_dest
  6. +
  7. sudo mount ubuntuserverlive.iso tmpubuntu
  8. +
  9. sudo mount rancheros.iso tmprancheros
  10. +
  11. fallocate -l 150M rancheros.img
  12. +
  13. gdisk rancheros.img o,y,n,enter,enter,ef00,w,Y
  14. +
  15. sudo losetup --partscan --show --find rancheros.img
  16. +
  17. sudo mkfs.fat /dev/loop2p1
  18. +
  19. sudo mount /dev/loop2p1 rancheros_dest
  20. +
  21. sudo cp -r tmprancheros/* tmprancheros_dest/
  22. +
  23. sudo cp -r tmpubuntu/EFI tmprancheros_dest/
  24. +
  25. Replace the content of tmprancheros_dest/boot/grub/grub.cfg with:
  26. +
+
set timeout=5
+menuentry "Install Rancher" {
+    linux   /boot/vmlinuz-4.14.138-rancher rancher.autologin=tty1 rancher.autologin=ttyS0 rancher.autologin=ttyS1 console=tty1 console=ttyS0 console=ttyS1 printk.devkmsg=on panic=10 ---
+    initrd  /boot/initrd-v1.5.5
+}
+
+
    +
  1. sudo umount tmprancheros_dest
  2. +
  3. sudo losetup -d /dev/loop2
  4. +
  5. sudo umount tmpubuntu tmprancheros
  6. +
+

2. Installation in FreeNas as Vm

+
    +
  1. Create a VM with EFI boot 2GB RAM choose virtio for all the driver
    +better performance with linux
  2. +
  3. Add a RAW device and select your rancheros.img
  4. +
  5. Start the VM
  6. +
  7. Go to serial and in the shell cu -l /dev/nmdmXX at this point you should
    +have a rancher shell
  8. +
  9. sudo fdisk /dev/vda then g,n,1,+200M,t,1,n,enter,enter,w you
    +should something like at the end
  10. +
+
Disk /dev/vda: 10 GiB, 10737418240 bytes, 20971520 sectors
+Units: sectors of 1 * 512 = 512 bytes
+Sector size (logical/physical): 512 bytes / 16384 bytes
+I/O size (minimum/optimal): 16384 bytes / 16384 bytes
+Disklabel type: gpt
+Disk identifier: 2B56EE14-44BF-6443-A197-EF73723B715F
+Device      Start      End  Sectors  Size Type
+/dev/vda1    2048   411647   409600  200M EFI System
+/dev/vda2  411648 20971486 20559839  9.8G Linux filesystem
+
+
    +
  1. Format the boot partition sudo mkdosfs -n RANCHER -F 32 /dev/vda1
  2. +
  3. Format the main filesystem sudo mkfs.ext4 -L RANCHER_STATE /dev/vda2
  4. +
  5. Create a cloud-config.yml see https://rancher.com/docs/os/v1.x/en/installation/running-rancheros/server/install-to-disk/ for minimum content
  6. +
  7. sudo mkdir /dev/sr0 for installer checking about iso mounted before
    +install
  8. +
  9. Install ros with sudo ros install -t gptsyslinux -c cloud-config.yml -d /dev/vda -p /dev/vda2
  10. +
  11. mkdir /mnt/efipart && sudo mount /dev/vda1 /mnt/efipart
  12. +
  13. mkdir /mnt/installer && sudo mount /dev/vdb1 /mnt/installer
  14. +
  15. sudo cp -r /mnt/installer/EFI /mnt/efipart
  16. +
  17. Add a grub.cfg in /mnt/efipart/EFI/BOOT/grub.cfg with in it:
    +You might want to add/remove autologin as you wish below

    +
      +
    • tty0 I think is VNC but I havent tested it
    • +
    • ttyS0 is serial (I have autologin enable in serial see below)
    • +
    +
  18. +
+
set timeout=1
+menuentry "Rancher from GPT" {
+    search --no-floppy --set=root --label RANCHER_STATE
+    linux    /boot/vmlinuz-4.14.138-rancher printk.devkmsg=on rancher.state.dev=LABEL=RANCHER_STATE rancher.state.wait panic=10 console=tty0 console=ttyS0 rancher.autologin=ttyS0
+    initrd    /boot/initrd-v1.5.5
+}
+
+
    +
  1. sudo umount /mnt/*
  2. +
  3. sudo reboot
  4. +
  5. You are good to go
  6. +
  7. You can remove the RAW device in the VM config in FreeNas
  8. +
+
+
+ +
+
+
+
+
+

+ 12 commentaires

+
+ +
+
+
+
+

+ Rudi Pittman + · 18 mars 2020 à 17 h 46 min +

+

Can I or can I not use my existing rancher img that was previously being used by freenas? ie

+

-rw-r–r– 1 root wheel 21474836480 Mar 18 02:13 rancher.img_docker1

+

I have around 10 different docker containers defined inside and I really don’t want to have to redo all of them.

+ +
+
+
    +
    + +
    +
    +
    +
    +

    + HugoPoi + · 11 avril 2020 à 16 h 32 min +

    +

    If the image is a VM image like a zvol, I think it will work, but I’m not sure, it will only work if the 11.2 behavior is EFI compatible.
    +You may patch your existing image/snapshot by justing installing the efi bootloader aka grub in it.

    + +
    +
    + +
+ +
+ +
+
+
+
+

+ Rob RD + · 4 avril 2020 à 19 h 36 min +

+

Parfait – Merci Beaucoup! :)

+ +
+
+ +
+ +
+
+
+
+

+ dario + · 12 avril 2020 à 14 h 07 min +

+

Thanks for this guide. I am stuck at Step 12:
+> sudo mount /dev/vdb1 /mnt/installer
+ther is no /dev/vdb1, regardingless if I choose to boot at step 10 or not

+ +
+
+
    +
    + +
    +
    +
    +
    +

    + HugoPoi + · 22 avril 2020 à 23 h 34 min +

    +

    Your installer may be on a different disk if you choose SCSI in place of virtio when you add the raw image device in Freenas, you can identified with

    +

    cat /proc/partitions

    +

    and

    +

    mount

    +

    it should be /dev/sda1 maybe

    + +
    +
    + +
+ +
+ +
+
+
+
+

+ somebody + · 19 avril 2020 à 13 h 07 min +

+

Thank you so much for the step by step guide, it was very helpful. With this I can finally transition from my old Docker VM inherited from FreeNAS 11.1.

+

Going to state the obvious (for some) and mention that when new version gets released and you run

+

sudo ros os upgrade

+

to upgrade you’ll also need to update initrd command in your grub.cfg file on EFI partition, otherwise you’re just going to boot into the same version.

+ +
+
+
    +
    + +
    +
    +
    +
    +

    + Rudi Pittman + · 1 juin 2020 à 1 h 58 min +

    +

    The problem I have is even though grub is specifying 4.14.138 and initird-v1.5.5 on reboot it tells me those don’t exist. Doing a grub edit and using autocomplete the files it ACTUALLY find are /boot/vmlinuz-4.14.73-rancher and /boot/initrd-v1.4.2. Where the heck are those coming from? When I look on /dev/vda2/boot I see the 4.14.138 and initrd-v1.5.5 as the grub reflects. /mnt/efipart/EFI/BOOT has:

    +

    -rwxr-xr-x 1 root root 1334816 May 30 15:13 BOOTx64.EFI
    +-rwxr-xr-x 1 root root 316 May 30 15:15 grub.cfg
    +-rwxr-xr-x 1 root root 1146744 May 30 15:13 grubx64.efi

    + +
    +
    + +
+ +
+ +
+
+
+
+

+ Max + · 3 mai 2020 à 16 h 40 min +

+

The image i downloaded does not start. Stuck at step4 in the bhyve shell. Any idea how to proceed from there?

+ +
+
+
    +
    + +
    +
    +
    +
    +

    + HugoPoi + · 10 mai 2020 à 14 h 53 min +

    +

    Try to change the device order to a lower or higher number to be sure it try to load the good bootloader.

    + +
    +
    + +
+ +
+ +
+
+
+
+

+ Rudi Pittman + · 1 juin 2020 à 18 h 28 min +

+

If you do a « ros os version » on your efi image it’s NOT v1.5.5. It’s v1.4.2 and running the command although it MAY download the files does nothing to actually make the grub.cfg FIND those new files. It’s still looking for vmlinuz-4.14.73 and initrd-v1.4.2.

+ +
+
+
    +
    + +
    +
    +
    +
    +

    + Johnny Z + · 25 juin 2020 à 8 h 49 min +

    +

    I found them. The guide doesn’t necessarily state where or when to get the files. You should be able to do this to find and copy the files

    +

    cd /mnt/installer/boot/
    +ls -asl
    +(here you will find the two files)
    +cp vmlinuz-4.14.138-rancher ../../efipart/efi/boot/
    +cp initrd-v1.5.5.5 ../../efipart/efi/boot

    +

    Double check my paths here but that should basically get you the files so the kernel can load proper

    + +
    +
    + +
+ +
+ +
+
+
+
+

+ Toohai + · 16 septembre 2020 à 8 h 18 min +

+

Missing step after 12 in part 1?

+

sudo cp -r tmpubuntu/boot/grub tmprancheros_dest/boot/

+ +
+
+ +
+
+
+

Répondre à Rudi Pittman Annuler la réponse

Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

+
+
+

+ +

+
+
+
+
+
+
+ +
+
+
+
+
+
+ + +
+ + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/0569722b1a2317c2f6dae39ef73aa459231fa75c.00000261.html b/www/.content.EZtzwPjb/html/0569722b1a2317c2f6dae39ef73aa459231fa75c.00000261.html new file mode 100644 index 0000000..3a821ea --- /dev/null +++ b/www/.content.EZtzwPjb/html/0569722b1a2317c2f6dae39ef73aa459231fa75c.00000261.html @@ -0,0 +1,560 @@ + + + + + + + + My shitty Nvidia DisplayPort Problems who no ones care about – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+ +
+
+
+
+
+
+

Recently I have done the acquisition of a new ULTRAWIDE screen, precisily a Philips 439PH9 with a DisplayPort v1.4, this information is very important for what’s coming next.

+

The problem

+

The morning I receive it, I already have my computer running, so I hot swap my DisplayPort cable to the new monitor and all going well, the screen work perfectly fine. Couple days later I need to do an upgrade of my linux kernel, so I restart my computer and a black screen appear with nothing, no signal, not even the UEFI logo. So I know by heart how to start without screen :

+
    +
  1. Hit 10 times backward key to make sure my very old wireless keyboard connect
  2. +
  3. Enter my LUKS passphrase to start decrypt my disk
  4. +
  5. Wait 2 seconds for the login screen
  6. +
  7. Hit 10 times backward key to ensure the keyboard is connected
  8. +
  9. Enter my Login and password
  10. +
  11. Then X server will start
  12. +
+

Because yes I don’t have a Display/Login manager, I don’t need one, so my computer stay in console mode until I sign up on TTY1.

+

After some digging on The Internet, very interesting reading about a display port issue concerning some Nvidia GTX9xx serie GPU.
+Of course Nvidia provide a fix but only on Windows for doing the patching. Then I checked on MSI website for a miracle Linux compatible VGABios upgrade tool, there is none.

+

The Linux community have done a lot lately, and new standard/tool exists for upgrading firmware on Linux, fwupd is the response. But only too few manufacturer play the game, big ones like Dell, Lenovo and Logitech, that’s all.

+

Diagnosis

+
    +
  • Always black screen in text mode and UEFI at boot
  • +
  • The display work perfectly in graphic mode
  • +
  • My old screen work without problem on Display Port
  • +
  • I test with HDMI => the problem disapear
  • +
+

Fix attempt 1

+

WARNING DON4T DO THIS
+1. Get a Windows 10 PE weird image on The Pirate Bay
+2. Flash it on a USB stick with woeusb --device GandalfsWindows10PE.iso /dex/sdx
+3. Boot => success
+4. Try MSI Live Updater 6 => instantly crash with no message
+5. Try Nvidia tool get

+

Conclusion

+

Windows 10 PE is a no go.

+

Fix attempt 2

+
    +
  1. Get a Windows iso
  2. +
  3. Flash on a usb stick woeusb --device windows10.iso /dex/sdx
  4. +
  5. Installing Windows (I do this through a virtual machine, and a raw device to /dev/sdx)
  6. +
  7. Try MSI Live Updater 6 => USELESS
  8. +
  9. Try the Nvidia DisplayPort fixer tool
    +
    +
  10. +
  11. FUCKING SOLVED MY ISSUE
  12. +
+

Conclusion 2

+

Nvidia can you provide Linux tools for fixing your mistakes ?
+MSI, your tools are useless, can you provide vga bios update ?
+More than the half of earth computers now running Linux based system this days, too much to ask that hardware manufacturers have the desency to provide a support for Linux.

+

## Other notes
+ * There is nvflash which working on Linux
+ * No clue how to find the patched version of my gpu bios, not here anymore
+ * I’m in touch with MSI French support …
+

+
+
+
+
+
Catégories : #FAILHardware
+
+
+
+ + + + + + + + + +
+
+
+
+
+
+
+

+ 1 commentaire

+
+ +
+
+
+
+

+ Rudi Pittman + · 1 juin 2020 à 1 h 56 min +

+

The problem I have is even though grub is specifying 4.14.138 and initird-v1.5.5 on reboot it tells me those don’t exist. Doing a grub edit and using autocomplete the files it ACTUALLY find are /boot/vmlinuz-4.14.73-rancher and /boot/initrd-v1.4.2. Where the heck are those coming from? When I look on /dev/vda2/boot I see the 4.14.138 and initrd-v1.5.5 as the grub reflects. /mnt/efipart/EFI/BOOT has:

+

-rwxr-xr-x 1 root root 1334816 May 30 15:13 BOOTx64.EFI
+-rwxr-xr-x 1 root root 316 May 30 15:15 grub.cfg
+-rwxr-xr-x 1 root root 1146744 May 30 15:13 grubx64.efi

+ +
+
+ +
+
+
+

Répondre à Rudi Pittman Annuler la réponse

Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

+
+
+

+ +

+
+
+
+
+
+
+ +
+
+
+
+
+
+ + +
+ + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/0596262a8f0dab5d34def06638023fcb0ef9464f.00000714.css b/www/.content.EZtzwPjb/html/0596262a8f0dab5d34def06638023fcb0ef9464f.00000714.css new file mode 100644 index 0000000..fe9245c --- /dev/null +++ b/www/.content.EZtzwPjb/html/0596262a8f0dab5d34def06638023fcb0ef9464f.00000714.css @@ -0,0 +1,28 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7 .screen-reader-response{position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);height:1px;width:1px;margin:0;padding:0;border:0}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{color:#f00;font-size:1em;display:block}.use-floating-validation-tip span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;border:1px +solid #f00;background:#fff;padding: .2em .8em}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wpcf7-recaptcha +iframe{margin-bottom:0}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/05a0b4c835c92d4a7eea8701cfcc4b624396939c.00000286.html b/www/.content.EZtzwPjb/html/05a0b4c835c92d4a7eea8701cfcc4b624396939c.00000286.html new file mode 100644 index 0000000..af818a6 --- /dev/null +++ b/www/.content.EZtzwPjb/html/05a0b4c835c92d4a7eea8701cfcc4b624396939c.00000286.html @@ -0,0 +1,385 @@ + + + + + + + Aventure PC – Page 3 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+ +
+
+
+
+
+ +
+
+ +
+
+
+
+ +
+
+ + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/05cb72979285ccf23d5e8367dce614f1b7ac14c6.00000545.html b/www/.content.EZtzwPjb/html/05cb72979285ccf23d5e8367dce614f1b7ac14c6.00000545.html new file mode 100644 index 0000000..6504b82 --- /dev/null +++ b/www/.content.EZtzwPjb/html/05cb72979285ccf23d5e8367dce614f1b7ac14c6.00000545.html @@ -0,0 +1,364 @@ + + + + + + + v6 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+ +
+
+
+
+
+

IPv6 – Intro

Etant donné la proche pénurie d’adresse IP v4, plus que 5% seraient disponible sur le réseau public qu’est Internet, je vais faire un dossier qui parlera d’IP v6. Dans ce dossier, je vais vous faire des tutoriels, des RFC et des découvertes. (suite…)

+
+
+ +
+
+
+
+ +
+
+ + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/063a1afb8f8af6de8c402f0a288d268c84977ae8.00000672.css b/www/.content.EZtzwPjb/html/063a1afb8f8af6de8c402f0a288d268c84977ae8.00000672.css new file mode 100644 index 0000000..20df2bb --- /dev/null +++ b/www/.content.EZtzwPjb/html/063a1afb8f8af6de8c402f0a288d268c84977ae8.00000672.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7 .screen-reader-response{position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);height:1px;width:1px;margin:0;padding:0;border:0}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{color:#f00;font-size:1em;display:block}.use-floating-validation-tip span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;border:1px +solid #f00;background:#fff;padding: .2em .8em}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/063fb9d4ceebd5d74d4b291470f85c7f2999b5d3.00000534.html b/www/.content.EZtzwPjb/html/063fb9d4ceebd5d74d4b291470f85c7f2999b5d3.00000534.html new file mode 100644 index 0000000..ed0d68d --- /dev/null +++ b/www/.content.EZtzwPjb/html/063fb9d4ceebd5d74d4b291470f85c7f2999b5d3.00000534.html @@ -0,0 +1,373 @@ + + + + + + + Tor – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+ +
+
+
+
+
+
+
+ +
+
+
+
+ +
+
+ + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/06471d499e9f4d913dd7a5e650b477f3c778ca84.00000264.html b/www/.content.EZtzwPjb/html/06471d499e9f4d913dd7a5e650b477f3c778ca84.00000264.html new file mode 100644 index 0000000..0d18d39 --- /dev/null +++ b/www/.content.EZtzwPjb/html/06471d499e9f4d913dd7a5e650b477f3c778ca84.00000264.html @@ -0,0 +1,545 @@ + + + + + + + + SSH Port forwarding par l’exemple – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+ +
+
+
+
+
+
+

Accéder à un port distant via SSH

+

ssh -L $LOCAL_PORT:$TARGET_IP:$TARGET_PORT user@serverssh

+
    +
  • $LOCAL_PORT est le port qui sera ouvert localement qui pointera vers le port cible $TARGET_PORT
  • +
  • $TARGET_IP ip de la cible doit être joingnable depuis le serveur ssh
  • +
+

Exemple

+

Accéder à un serveur MongoDB sur un serveur distant non exposé ou derrière un firewall
+ssh -L 27018:serveurmongo:27017 user@serverssh
+En local le serveur mongodb sera accessible via mongo localhost:27018

+

Accéder à un réseau distant via SSH (socks proxy)

+

ssh -D $SOCKS_LISTEN_PORT user@serverssh
+* ouvre un server socks4 en local qui requètera depuis le serveur ssh

+

Exemple

+
    +
  1. ssh user@serverssh -f -D 9051 -- sleep 10 (va attendre 10 secondes qu’une connexion arrive, -f met la commande en background)
  2. +
  3. curl --proxy socks4://localhost:9051 https://ipinfo.io
  4. +
  5. chromium --proxy-server=socks4://localhost:9051
  6. +
+

Vous pouvez aussi installer proxychains et ajouter le port 9051 dans sa config /etc/proxychains.conf puis utiliser comme ceci proxychains curl https://ipinfo.io.

+

Rendre disponible un port local sur le serveur SSH

+

ssh -R $LISTEN_PORT:$TARGET_IP:$TARGET_PORT user@serverssh
+* $LISTEN_PORT port ouvert côté serveur pour l’écoute
+* $TARGET_IP cible relative au client ssh
+* $TARGET_PORT port cible a exposé

+

Exemple

+

Rendre disponible sont serveur web local sur un serveur disposant d’une ip public.
+ssh -R 8080:localhost:80 user@serverssh
+* serverssh écoutera sur le port 8080 et acheminera le traffic vers le port 80 de votre machine

+

Astuce pour exposer un port local sur un router dd-wrt

+

ssh -f -R $PUBLIC_IP:6666:localhost:80 myddwrtrouter 'iptables -I INPUT -p tcp -i $(nvram get wan_iface) --dport 6666 -j ACCEPT && sleep 20'

+
    +
  • J’ajoute $PUBLIC_IP pour que le port soit exposé directement sur l’interface public et pas avoir besoin de se faire chier avec la chain de PREROUTING et le NAT en v4
  • +
+
+
+
+
+
Catégories : News
+
+
+
+ + + + + + + + + +
+
+
+
+
+
+
+

+ 2 commentaires

+
+ +
+
+
+
+

+ michel marcon (aka cmic) + · 2 janvier 2021 à 10 h 04 min +

+

Cool ton article.
+Ce qui me rappelle cette excellente image qui explique (mieux ?). Trouvée sur stackexchange :
+https://unix.stackexchange.com/questions/115897/whats-ssh-port-forwarding-and-whats-the-difference-between-ssh-local-and-remot

+ +
+
+
    +
    + +
    +
    +
    +
    +

    + HugoPoi + · 2 janvier 2021 à 11 h 35 min +

    +

    Putain trop bien l’explication

    + +
    +
    + +
+ +
+
+
+

Laisser un commentaire

Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

+
+
+

+ +

+
+
+
+
+
+
+ +
+
+
+
+
+
+ + +
+ + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/0715ef7d827a5451a288f60e197c9ef2d5f27b5e.00001283.json b/www/.content.EZtzwPjb/html/0715ef7d827a5451a288f60e197c9ef2d5f27b5e.00001283.json new file mode 100644 index 0000000..ab2a4ff --- /dev/null +++ b/www/.content.EZtzwPjb/html/0715ef7d827a5451a288f60e197c9ef2d5f27b5e.00001283.json @@ -0,0 +1 @@ +{"version":"1.0","provider_name":"HugoPoi","provider_url":"http:\/\/blog.hugopoi.net","author_name":"HugoPoi","author_url":"http:\/\/blog.hugopoi.net\/author\/hugopoi\/","title":"Honte T\u00e9l\u00e9visuelle","type":"rich","width":600,"height":338,"html":"
Honte T\u00e9l\u00e9visuelle<\/a><\/blockquote>\n + + + + + + + + + + + + + + + + + +
+
+
+
+ +
+
+
+
+
+

Asus U36JC-RX260V

Depuis le temps que je voulais investir dans un pc portable, je l’ai enfin fait. Je cherchais une machine en complément de mon fixe avec comme premiers critères l’autonomie et un minimum de puissance. J’ai donc acheté un ultra-portable Asus, un chassie U36JC avec les caractéristiques suivantes : (suite…)

+
Par HugoPoi, il y a
+
+ +
+
+
+
+ +
+
+ + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/085dd26858fa216480f7e955373be0ee16addfd0.00000126.html b/www/.content.EZtzwPjb/html/085dd26858fa216480f7e955373be0ee16addfd0.00000126.html new file mode 100644 index 0000000..3293e49 --- /dev/null +++ b/www/.content.EZtzwPjb/html/085dd26858fa216480f7e955373be0ee16addfd0.00000126.html @@ -0,0 +1,1370 @@ + + + + + + + + Réparations Samsung SyncMaster 2232BW – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+ +
+
+
+
+
+
+

Allô docteur on a un problème,

+

En ce dimanche calme avant la fin de mes partiels, mon écran Samsung SyncMaster 2232BW commençait à faire des siennes. Celui-ci depuis un mois ou deux clignotait de façon systématique au démarrage, au début pendant seulement quelques secondes, puis au fur et à mesure, de plus en plus jusqu’à devoir attendre 10 minutes pour que je puisse l’utiliser. Après 3 ans et 4 mois de bons et loyaux services, il voulait me quitter. J’ai tenté le support Samsung par email avec peu d’espoir car l’écran a dépassé sa garantie de 4 mois (oui oui les bâtards -> obsolescence programmée). Et donc j’ai eu le droit à un joli mail automatique me disant de contacter un numéro non surtaxé (mais avec combien de temps d’attente ?), ce que je n’ai pas fait car je n’avais pas envie de passer 30min au téléphone pour au final avoir un « On est désolé mais on ne peut rien faire pour vous car la garantie est dépassée, mais on peut envoyer votre écran en SAV pour faire un devis pour seulement 50 boules ». Concernant le support email de Samsung France, je leur donne une note de 0/20 puisque ce n’est pas un support mais une redirection vers le téléphone.

+

+

Symptômes

+

Clignotements de l’écran et de la LED power systématiques à chaque démarrage de l’écran. Je me suis tout de suite douté d’un problème d’alimentation et après quelques recherches sur google, confirmation du problème sur beaucoup d’écrans et téléviseurs. Dans 99% des cas ce clignotement est dû à des condensateurs défectueux qu’il faut simplement changer :-D

+

Démontage

+

Donc après avoir cerné le problème, j’ai ouvert l’écran pour chercher les condos défectueux. J’ai trouvé une petite vidéo pour mon écran :

+

+

Voici quelques photos en plus pour vous aider :

+

Les outils que j’ai utilisé pour le démontage

+

Position des clips

+

Carte d’alimentation dans son emplacement

+

Et voici les condensateurs qui posent problèmes. Comme vous pouvez le voir sur la photo, ils sont très facilement identifiable car ils sont bombés sur le dessus.

+

Condensateurs défectueux

+

Vous devez donc acheter des condensateurs de remplacement, par exemple sur Conrad.

+

Mes condensateurs suivant étaient endommagés:

+
    +
  • 1 de 330uF 25V remplacé par un 470uF 25V
  • +
  • 3 de 820uF 25V remplacé par des 1000uF 50V
  • +
+

Pour la réparation, il vous faut un fer à souder avec une panne pas trop grosse mais d’une grosse puissance car les soudures sont très solides (j’ai galéré avec un fer pro qui monte jusqu’à 400°).

+

Tout remarche nickel après remontage, plus de clignotement pour seulement quelques euros.

+

edit du 19 aout 2014 : j’ai trouvé le service manuel de l’écran si besoin samsung_2232bw_chassis_lpe22bs_sm

+ + +
+
+ +
+
+
+
+
+

+ 41 commentaires

+
+ +
+
+
+
+

+ c'est_moi + · 30 janvier 2012 à 18 h 57 min +

+

Mille mercis et mille félicitations pour cette fiche technique si pédagogue.

+

J’espère que le partiels se passent plus que parfait !!

+

J’ai gardé l’url de la page pour réparer mon écran dans un petit mois : j’espère que la page soit toujours là ;-)

+

Merci encore.

+ +
+
+ +
+ +
+
+
+
+

+ Maxime + · 5 mai 2012 à 12 h 31 min +

+

Bonjour HugoPoi!

+

Merci pour toutes vos infos et votre topic, je voulais avoir quelques précisions sur les condos à changer pour samsung 2232bw, je veux passer commande mais j’ai un problème avec les dimensions des condos, si vous pouvez m’informer de ce que je pourrais acheter car il y a trop de références. En vous remerciant A+ Maxime

+ +
+
+
    +
    + +
    +
    +
    +
    +

    + HugoPoi + · 14 juin 2012 à 22 h 56 min +

    +

    N’importe quel condensateur polarisé avec des caractéristiques proches devrait marché.

    + +
    +
    + +
+ +
+ +
+
+
+
+

+ gaubjezj + · 14 juin 2012 à 22 h 32 min +

+

Merci pour le tuto qui m’a bien aidé.
+J’ai utilisé un fer de 40 W avec une panne fine et
+une pompe à dessouder et j’ai retiré les condensateurs sans problème.
+Merci encore (3€40 pour le dépannage).

+ +
+
+ +
+ +
+
+
+
+

+ DragonTribal + · 2 juillet 2012 à 12 h 02 min +

+

super merci pour manifique tuto.
+Est-il possible de changer les 5 condensateurs 820uF 25V par des 1000uF 50V? car moi mes 5 condensateurs sont presque HS ;-)

+

Cordialement

+ +
+
+
    +
    + +
    +
    +
    +
    +

    + HugoPoi + · 2 juillet 2012 à 12 h 25 min +

    +

    Oui je penses que ça marchera étant donné que c’est des valeurs plus grandes.

    + +
    +
    + +
+ +
+ +
+
+
+
+

+ FRED + · 11 juillet 2012 à 19 h 11 min +

+

Bravo, MERCI.
+Je n’ai encore rien fait…mais j’ai le même problème, et tu me donnes la solution.
+Super.

+ +
+
+ +
+ +
+
+
+
+

+ daninpet + · 31 août 2012 à 10 h 10 min +

+

Merci mille fois!

+

J’avais ce problème, et j’ai emmener la photo des trucs a remplacer chez le réparateur du coin et voila!! Ça m’a coûté 7 Euros (mais j’habite en Thaïlande)

+ +
+
+ +
+ +
+
+
+
+

+ moi + · 15 novembre 2012 à 15 h 25 min +

+

super mon 2232bw vient de lâcher, les 3 + 1 condos sont gonflés j ai trouvé un 330 en 35v qui traîné sur un écran mort et j’ai commander 5 1000uf 35v sur ebay pour moins de 3 dollars, ca devrait le faire j’espere j’attend d’être livré merci! par contre j’ai qu’un gros pistolet a soudure et un gros fil d’étain, c’est pas évident mais bon ca le fait quand même =)

+ +
+
+
    +
    + +
    +
    +
    +
    +

    + moi + · 7 décembre 2012 à 9 h 33 min +

    +

    parfait je vient de recevoir les condos; j ai meuler la panne du fer a souder pour la tailler en mine de crayon et j ai reussi a les souder facilement ils étaient un peu plus gros mais ca passe tout juste, mais attention ne pas prendre des plus gros! l écran fonctionne nickel maintenant.

    + +
    +
    + +
+ +
+ +
+
+
+
+

+ Croco + · 19 janvier 2013 à 18 h 39 min +

+

Je souhaiterai savoir si tu as utilisé un fer à souder bien précis étant donné que la carte est une multi couche.
+Merci

+ +
+
+ + +
+ +
+
+
+
+

+ momo + · 10 juin 2013 à 13 h 15 min +

+

slut je voudrai savoir ou trouvé les condansateur a changer sur mon ecran qui clignote

+ +
+
+ + +
+ +
+
+
+
+

+ lokmane + · 5 juillet 2013 à 16 h 08 min +

+

merci j’avais un ecran rouge ! et c’etais la tresse qui relie mon ecran votre page m’a aider a l’ouvrir et a le reparer merci bien

+ +
+
+ +
+ +
+
+
+
+

+ ML + · 21 août 2013 à 19 h 11 min +

+

Merci ! Ecran réparé. Halte à l’obsolescence programmée.

+ +
+
+ +
+ +
+
+
+
+

+ raymond + · 31 octobre 2013 à 13 h 20 min +

+

ai vu votre vidéo et les explications pour la reparation de mon écran , apparemment le méme probléme l écran passe au noir apres quelque seconde , j ai vu un le condensateur en bas a gauche gonflé , je l ai fait changé (10€) les autre condensateur étant toujour bon d après la personne qui me l a changé , mais j ai toujour le méme probléme cela peut il venir de la carte video a gauche ?

+ +
+
+
    +
    + +
    +
    +
    +
    +

    + HugoPoi + · 20 décembre 2013 à 12 h 27 min +

    +

    Si la led bleu du bouton power s’éteint aussi c’est un problème d’alimentation sinon c’est plus compliqué et ça peut provenir de condensateurs sur la partie vidéo. Changé tous les plus gros condensateurs sur la partie alimentation pourrait être un bon début même si ils ne paraissent pas endommagé.

    + +
    +
    + +
+ +
+ +
+
+
+
+

+ damien + · 4 novembre 2013 à 0 h 29 min +

+

bonjour,

+

j’ai des crasses coincées entres l’écran et le truc juste derrière, est ce qu’on sais les enlever en démontant la dalle ?

+ +
+
+
    +
    + +
    +
    +
    +
    +

    + HugoPoi + · 20 décembre 2013 à 12 h 28 min +

    +

    Je ne sais si cette partie de la dalle est démontable, je penses que c’est collé mais vous pouvez essayer.

    + +
    +
    + +
+ +
+ +
+
+
+
+

+ mac + · 1 décembre 2013 à 17 h 30 min +

+

Merci HugoPoi, avec ces excellents conseils et tuto vidéo, mon écran est reparti pour une nouvelle vie.
+Pour les composants, si vous êtes sur Paris ou proche. La boutique RAM électroniques est une bonne adresse, 138 bd Diderot 75012 Paris (Place de la Nation).

+ +
+
+ +
+ +
+
+
+
+

+ Bouddhid + · 16 janvier 2014 à 19 h 21 min +

+

Merci beaucoup pour ces conseils ! J’étais à 2 doigts de jeter mon écran, le voilà comme neuf pour moins de 5€ ! Vive la bricole !

+ +
+
+ +
+ +
+
+
+
+

+ Vincent + · 17 mai 2014 à 16 h 45 min +

+

Alors là merci.

+

Pour ce post, les photos, la vidéo, tout y est.

+

J’ai démonté l’écran assez vite, enlevé la carte, regarder quel condensateurs étaient gonflés,(il y en avaient 4), un magasin d’électronique sur lyon et une heure de démontage, soudure, remontage plus tard, voilà, c’est tout beau.
+Ca ne clignote plus, ça s’allume comme avant, comme neuf.

+

Et dire que j’allais jeter cet écran et claquer 350 euros pour un neuf…

+

Coût de l’opération pour 4 condensateurs, du fil d’étain 7 euros.

+

Je précise que je n’avais jamais fais de soudure sur composant électronique auparavant.
+Comme quoi cette opération de réparation est à la portée de tous.

+ +
+
+ +
+ +
+
+
+
+

+ Julot + · 6 juillet 2014 à 13 h 49 min +

+

Site vraiment détaillé et très claire. J’ai pu dépanner mon écran avec succès. Merci beaucoup pour ces précieuses explications.

+ +
+
+ +
+ +
+
+
+
+

+ PaniK31 + · 29 juillet 2014 à 9 h 21 min +

+

Pas besoin d’une grosse puissance pour le fer, il faut au préalable gratter le vernis sur l’étain afin de pouvoir le faire fondre plus facilement

+ +
+
+ +
+ +
+
+
+
+

+ R211_IP-45130B + · 20 août 2014 à 14 h 04 min +

+

Bonjour à tous,

+

Une âme charitable peut-elle me communiquer ce qui est gravé sur la résistance CMS R211 de la carte d’alimentation/inverter IP-45130B qui équipe le SAMSUNG 2232BW ? Cette résistance a pris un coup de tournevis et je n’arrive pas à déterminer sa valeur de résistance car son marquage est effacé et comme le composant est abimé la mesure à l’ohmmètre indique l’infinie.

+

Merci par avance.

+ +
+
+ +
+ +
+
+
+
+

+ roger + · 24 octobre 2014 à 17 h 21 min +

+

Ca refonctionne après échange de 4 condensateurs :
+-un 330uf25v remplacé à l’identique.
+-trois 820uf25v remplacés par 1000uf25v.
+Le tout pour quelques €. Le plus dur était le dessoudage, la tresse n’était pas très efficace contrairement à la pompe.
+Grand merci à HugoPoi.

+ +
+
+ +
+ +
+
+
+
+

+ Max + · 26 février 2015 à 16 h 28 min +

+

ENORME MERCI!! J’ai réparé mon écran en 20mn pour 3,50€, il était à 2 doigts de partir à la déchetterie. Ca faisait des mois qu’il clignotait, et l’allumage mettait parfois plus d’une demi heure. J’ai changé 5 condos 820uf25v et 1 330uf25v, par exactement les mêmes en neuf, et là il démarre au quart de tour! Ca fait plaisir! :)

+ +
+
+
    +
    + +
    +
    +
    +
    +

    + rocco michelle + · 7 octobre 2015 à 10 h 16 min +

    +

    Bonjour je ne sais si vous verrez mon message mais je tente…je cherche quelqu’un qui accepterait de changer mes condensateurs sur mon samsung, les réparateurs me demandent 70 à 80 euros et encore ils n’ont pss envie de le faire et me disent d’acheter un nouvel écran. j’aurais bien tenter mais je n’ai pas de matériel et j’ai lu que les condo pouvaient être très dangereux s’ils avaient de la charge alors j’ai la trouille de bidouiller pq je n’y connais rien. si vous êtes de lyon acccepteriez vous de changer mes condensateurs pour 45 euros? merci de votre réponse.

    + +
    +
    + +
+ +
+ +
+
+
+
+

+ lecakeseb + · 27 juillet 2015 à 15 h 26 min +

+

Bonjour,

+

J’ai utilisé la vidéo pour démonter mon écran afin de le nettoyer de 4 bêtes d’orage infiltrés entre le premier écran (noir) et la dalle (blanche) de mon samsung SyncMaster 2232W

+

Petits conseils afin de modérer ce que j’ai pu voir dans cette vidéo :

+

0 : aspirez, nettoyez l’extérieur de l’écran avant de l’ouvrir et nettoyez la table qui vous servira d’atelier, pour éviter les poussières qui s’infiltreront forcément plus tard si vous ne le faites pas…
+1 : pour ouvrir, utilisez plutôt un couteau à enduire pour la première partie (le cadre). Vous n’abîmerez ainsi pas du tout l’écran. Soyez patients, ne forcez pas ! ça viendra doucement, mais ça viendra. Il m’a fallu à peine 10 minutes, sans détériorer l’écran, sans le griffer… Il est encore nickel !
+2 : attention à ne pas déconnecter les fils reliant le cadre à la carte. Inutile pour simplement nettoyer l’écran.
+3 : pour séparer les deux éléments de la dalle entre lesquels les bêtes se sont infiltrées, les doigts suffisent, pas besoin d’outils qui viendraient les endommager. La dalle blanche reste à l’horizontale, l’écran noir sera tenu à la verticale.
+4 : utiliser un chiffon doux ne peluchant pas pour enlever les bêtes (faites-vous aider de quelqu’un qui les enlèvera pendant que vous tenez l’écran extérieur en position verticale).
+5 : repositionnez la colle d’étanchéité qui aurait pu se déplacer, avant de repositionner les deux écrans.
+6 : commencer par refermer par le bas de l’écran (sinon les éléments de réglage situés au bas de l’écran – luminosité, contraste,…- ne se replaceront pas correctement).
+7 : Une fois l’écran refermé, j’ai appliqué un peu de « barrage aux insectes », avec un chiffon à l’arrière de mon écran en insistant surtout sur les bouches d’aération par lesquelles les maudites bestioles ont du s’infiltrer. En espérant ne pas avoir à ouvrir !

+

Bon courage à vous !

+ +
+
+ +
+ +
+
+
+
+

+ Michel Jousserandot + · 20 janvier 2017 à 20 h 41 min +

+

Merci pour les conseils au démontage.
+J’avais un problème un peu différent :l’écran ne s’allumait plus du tout. Avec un copain beaucoup plus malin que moi, on a détecté 2 fusibles dont l’un était fichu. On l’a remplacé par un petit fil de cuivre. Et tout a remarché comme avant.
+Il faut surtout faire attention quand on teste la partie haute tension
+Michel.

+ +
+
+ +
+ +
+
+
+
+

+ Crec + · 14 juillet 2017 à 10 h 20 min +

+

Bonjour. Très bons conseils avertis. Merci beaucoup.
+Peut-on avoir les mêmes conseils pour un écran BX2250.
+Merci par avance.
+Crec

+ +
+
+
    +
    + +
    +
    +
    +
    +

    + HugoPoi + · 6 août 2017 à 14 h 03 min +

    +

    J’ai pas de BX2250 donc dans le détails non mais si c’est les même symptômes ça doit la même procédure.

    + +
    +
    + +
+ +
+ +
+
+
+
+

+ Ferronnier + · 10 août 2017 à 17 h 42 min +

+

Un grand merci !
+J’ai changé tous les condensateurs de la partie alimentation de la carte, en déportant certains qui n’avaient pas le même format qu’à l’origine, et ça tourne nickel !

+ +
+
+ +
+ +
+
+
+
+

+ Nours + · 1 décembre 2017 à 15 h 17 min +

+

Ca fait des années que j’ai cet article enregistré dans un coin, en nourrissant l’espoir d’avoir un jour le courage de réparer ce foutu écran… Après plus de cinq ans c’est chose faite \o/
+Un giga, hypra, immense merci pour ce tutoriel tellement bien expliqué et facile d’accès (je n’avais pas touché à un fer à souder depuis… Oh boy 15 ans déjà).
+Après une longue pause, l’écran reprend du service… Jusqu’à la prochaine panne /o/

+ +
+
+ +
+ +
+
+
+
+

+ Alex + · 11 août 2018 à 13 h 28 min +

+

Quelqu’un sait qui pourrait me le faire svp j ai le même problème mais aucun matériel

+ +
+
+ +
+ +
+
+
+
+

+ David + · 5 février 2019 à 21 h 06 min +

+

Merci Hugo pour ce tuto qui m’a déjà servi en 2013 et qui va me resservir aujourd’hui car mon 2ème 2232bw commence à avoir les mêmes symptômes.

+ +
+
+ +
+ +
+
+
+
+

+ yvan + · 23 novembre 2019 à 17 h 14 min +

+

Bonjour
+j’ai tenté de changer le condensateur qui avait l’air naze mais ça n’a pas marché … toujours le bouton bleu allumé, l’écran est reconnu par Windows 10 même si l’écran est éteint
+grâce au service manuel de l’écran fourni plus haut, j’ai vérifié les tensions jusque sur la carte de la dalle et elles sont correctes, ainsi que sur la carte elle-même, tout est ok, donc je pense que ce n’est plus un problème de condensateur
+pour les fusibles, ils ressemblent plutôt à des composants qu’à de simple fusibles, mais comme j’ai les bonnes tension, je ne pense pas que ça vienne de là
+j’ai bien peur que ce soit la dalle qui soit naze ? quelqu’un a t il des idées supplémentaires avant que je le jette avec grand regret (c’est un 2032bw, mais c’est la même chose, même si ma carte électronique est un peu différente car plus récente
+merci d’avance pour vos conseils

+ +
+
+ +
+ +
+
+
+
+

+ yvan + · 24 novembre 2019 à 17 h 26 min +

+

finalement j’ai trouvé, c’est un petit fusible vert qui ressemble à une résistance mais tout vert avec écrit 4A LF qui assure l’alimentation de la dalle.
+En le shuntant, mon écran a retrouvé l’image.
+après enquête il s’agit d’un fusible pico de 4ampères de chez little fuse, pas du tout évident à trouver
+Résolu !

+ +
+
+ +
+
+

+ Reflow Dell 1546 | HugoPoi + · 22 août 2016 à 16 h 09 min +

+

[…] « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable de marque Dell un 1546 pour être précis. Encore […]

+ +
+
+ +
+
+

+ Reflow Dell Inspiron 1546 – HugoPoi + · 23 juin 2017 à 23 h 18 min +

+

[…] d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un […]

+ +
+
+ +
+
+
+

Répondre à Michel Jousserandot Annuler la réponse

Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

+
+
+

+ +

+
+
+
+
+
+
+ +
+
+
+
+
+
+ + +
+ + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/08aed3ad16bf9e6346c9ccc72e2899ad9f5d874a.00000454.xml b/www/.content.EZtzwPjb/html/08aed3ad16bf9e6346c9ccc72e2899ad9f5d874a.00000454.xml new file mode 100644 index 0000000..762f7ec --- /dev/null +++ b/www/.content.EZtzwPjb/html/08aed3ad16bf9e6346c9ccc72e2899ad9f5d874a.00000454.xml @@ -0,0 +1,38 @@ + + + Multi-Flip 15 – HugoPoi + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Mon, 22 Aug 2016 14:10:26 +0000 + fr-FR + hourly + 1 + https://wordpress.org/?v=4.6 + + Test et démontage d’un Sony Multi Flip 15 SVF15N1C5E + http://blog.hugopoi.net/2014/08/04/test-et-demontage-dun-sony-multi-flip-15-svf15n1c5e/ + http://blog.hugopoi.net/2014/08/04/test-et-demontage-dun-sony-multi-flip-15-svf15n1c5e/#respond + Mon, 04 Aug 2014 13:25:59 +0000 + + + + + + + + + http://blog.hugopoi.net/?p=856 + Lire la suite »

]]>
+ http://blog.hugopoi.net/2014/08/04/test-et-demontage-dun-sony-multi-flip-15-svf15n1c5e/feed/ + 0 +
+
+
diff --git a/www/.content.EZtzwPjb/html/08ccdb0a3a6b1e832d57b92a77fb0f057fd61862.00000404.xml b/www/.content.EZtzwPjb/html/08ccdb0a3a6b1e832d57b92a77fb0f057fd61862.00000404.xml new file mode 100644 index 0000000..8094c70 --- /dev/null +++ b/www/.content.EZtzwPjb/html/08ccdb0a3a6b1e832d57b92a77fb0f057fd61862.00000404.xml @@ -0,0 +1,43 @@ + + + + HugoPoi » Error 3016 pas de HDCP + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Sat, 14 Sep 2013 23:01:40 +0000 + fr-FR + hourly + 1 + http://wordpress.org/?v=3.6 + + Home Cinéma + http://blog.hugopoi.net/2012/12/26/home-cinema/ + http://blog.hugopoi.net/2012/12/26/home-cinema/#comments + Wed, 26 Dec 2012 14:42:16 +0000 + HugoPoi + + + + + + + + + + + + http://blog.hugopoi.net/?p=518 + Lire la suite »

]]>
+ http://blog.hugopoi.net/2012/12/26/home-cinema/feed/ + 0 +
+
+
diff --git a/www/.content.EZtzwPjb/html/08f9244fd85cf70b4489f6ee30123d02fad1ad31.00000205.html b/www/.content.EZtzwPjb/html/08f9244fd85cf70b4489f6ee30123d02fad1ad31.00000205.html new file mode 100644 index 0000000..71c4816 --- /dev/null +++ b/www/.content.EZtzwPjb/html/08f9244fd85cf70b4489f6ee30123d02fad1ad31.00000205.html @@ -0,0 +1,680 @@ + + + + + + + + Installer Mac OS X Mavericks avec VirtualBox – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+ +
+
+
+
+
+
+

Capture Installation Mac OS X MavericksComme Apple c’est des blaireaux et que j’avais besoin d’un environnement de développement pour iDaube. J’ai du me résoudre à installer un Mac OS X dans une machine virtuel.

+

Ce dont vous avez besoin :

+ +

Moi je travail sous Linux Mint mais vous devriez réussir à faire les manipulations sous Windaube.

+

1) Préparer la clé pour pouvoir booter dans la VM

+

Au début j’ai essayer de convertir le .dmg en ISO avec un outil de conversion mais cela ne marche pas car l’opération doit endommager le système de boot mis en place par Niresh. Donc la seul solution que j’ai trouvé c’est de faire une clé USB comme indiqué par Niresh avec dd.

+

Sous Mint/ubuntu/debian :

+

Une façon simple sous Linux d’identifier votre clé usb c’est avec la commande « mount », cela va lister toutes les partitions monter avec les périphériques correspondants.

+
hugo@hugo-NB ~ $ mount
+/dev/sda2 on /boot type ext3 (rw)
+/dev/mapper/lmvg-home on /home type ext4 (rw)
+/dev/mapper/lmvg-var on /var type ext4 (rw,errors=remount-ro)
+/dev/sda1 on /boot/efi type vfat (rw)
+binfmt_misc on /proc/sys/fs/binfmt_misc type binfmt_misc (rw,noexec,nosuid,nodev)
+gvfsd-fuse on /run/user/hugo/gvfs type fuse.gvfsd-fuse (rw,nosuid,nodev,user=hugo)
+/dev/mapper/lmvg-games on /media/hugo/90d3426d-d8b2-4ba4-a7df-98363b9b40d9 type ext4 (rw,nosuid,nodev,uhelper=udisks2)
+/dev/sdb1 on /media/hugo/HugoKey type ext4
+

Moi ma clé usb c’est /dev/sdb. Donc après la commande pour balancer le dmg sur la clé :

+

ATTENTION LA COMMANDE DD ci-dessous peut casser votre système si vous le faites sur le mauvais périphérique.

+
hugo@hugo-NB ~ $ sudo umount /media/hugo/HugoKey
+hugo@hugo-NB ~ $ sudo dd if=mavericks.dmg of=/dev/sdb bs=1M
+

Sous Windaube

+

Je ne vais pas détailler la procédure mais vous avez 2 solutions, soit vous utilisez la commande dd disponible avec MinGW dans les outils Msys. Ou vous utilisez Win32DiskImager (je vous recommande cette solution qui est la plus simple).

+

2) Configurer votre VM dans VirtualBox

+

Voilà les paramètres que j’ai utilisé pour installer:

+
    +
  • OSType : Mac OSX 10.9 64bits
  • +
  • RAM : 2048Mo
  • +
  • Activer l’accélération Graphique 3D
  • +
  • Mémoire Vidéo : 128Mo
  • +
  • Désactiver l’EFI
  • +
  • VT activé
  • +
  • Pagination Imbriqué activé
  • +
  • IO-APIC activé
  • +
  • Horloge UTC désactivé
  • +
  • Son désactivé (uniquement pendant l’installation)
  • +
  • Réseau désactivé (uniquement pendant l’installation)
  • +
  • Un disque virtuel de 20 Go
  • +
+

3) Booter sur la clé USB dans VirtualBox

+

Je n’ai pas réussi à booter sur la clé avec l’ajout d’un filtre USB dans la VM, donc la solution que j’ai trouvé sur le net est de créer un fichier lien de disque physique. Pour le créer c’est relativement simple :

+
hugo@hugo-NB ~ $ vboxmanage internalcommands createrawvmdk -filename usb.vmdk -rawdisk /dev/sdb
+

Une fois votre fichier vmdk créé vous pouvez l’ajouter dans votre VM comme un disque virtuel existant, prenez soins de mettre ce disque sur le port SATA 0 car VirtualBox ce base sur l’ordre des disques pour le boot. Moi j’ai eu des problèmes de droits avec mes périphériques USB donc j’ai exécuté la commande vboxmanage avec sudo puis j’ai aussi lancé virtualbox avec sudo.

+

Pour Windows la procédure plus en détaille est disponible sur ce blog.

+

4) Lancer l’installation dans VirtualBox

+

Vous lancez la vm et ça boot. Si vous avez une erreur du type Fatal impossible de trouver de quoi booter, vérifiez que vous avez bien mis la clé USB en disque SATA sur le port 0 et le disque virtuel sur le 1 ou plus. Moi ça été un peu long avant d’afficher le choix de la langue environ 60 secondes, cela doit être dû à la vérification de l’image d’installation. Au moment de choisir la partition d’installation, vous devez lancer l’outil de disque pour créer une partition sur le disque virtuel (dans le menu en haut), ensuite vous le fermez et l’installateur continu.

+

Pour information ma vm ne s’arrête pas correctement au niveau de l’affichage, je penses qu’il y a un problème de driver mais j’y connais que dalle en iDaube OSX. Une fois l’installation finit vous pouvez passer la connexion iCloud et laisser le script finir l’installation. Ensuite vous devez créer un utilisateur administrateur pour ne pas utiliser le compte root. Et je n’ai pas encore réussi à avoir du son peut-être en laissant activé pendant l’installation mais je sais que ça peut poser problème.

+

Les identifiants de connexion sont :

+
    +
  • login : root
  • +
  • mot de passe : niresh
  • +
+

5) Configurer pour avoir une résolution correcte

+

Pour cela il faut éditer le fichier /Extra/com.chameleon.Boot.plist dans votre OS X fraichement installé et rajouter/éditer les balises suivantes :

+
<key>GraphicsEnabler</key>
+<string>y</string>
+<key>Graphics Mode</key>
+<string>1366x768x32</string>
+<key>Kernel Flags</key>
+<string>"Graphics Mode"="1366x768x32"</string>
+

Dans la balise string Kernel Flags, des flags sont surement déjà présent donc moi je les ai laissé, j’ai rajouter « Graphics Mode »= »1366x768x32 » à la fin.

+

Ensuite vous devez éditer votre fichier de configuration vbox avec les commandes suivantes :

+
hugo@hugo-NB ~ $ vboxmanage setextradata "MAC OS X" "CustomVideoMode1" "1366x768x32"
+hugo@hugo-NB ~ $ vboxmanage setextradata "MAC OS X" "GUI/CustomVideoMode1" "1366x768x32"
+

Voilà après c’est sans garantie de fonctionnement …

+
+
+ +
+
+
+
+
+

+ 6 commentaires

+
+ +
+
+
+
+

+ sc + · 2 mars 2014 à 23 h 44 min +

+

Merci, excellent tuto ! En suivant les étapes ça passe tout seul.

+ +
+
+ +
+ +
+
+
+
+

+ Djow + · 5 mars 2014 à 16 h 50 min +

+

Salut et merci pour le tuto , je suis bloqué a l instal « missing bluetooth controller transport » tester différente manip mais rien y fais . Une idée?

+ +
+
+ + +
+ +
+
+
+
+

+ LeKingduWar + · 7 mars 2014 à 10 h 22 min +

+

Hugo stp il me demande un controlleur bluetooth.

+ +
+
+ +
+ +
+
+
+
+

+ mac + · 7 mars 2014 à 14 h 03 min +

+

Thanks, I’m installing it right now. The usb key step wasnt necessary however, you can convert it directly from dmg to vdi with: « VBoxManage convertdd yourdmgfile.dmg yournewvdiimage.vdi ». Then boot from the converted .vdi file. Worked for me on Ubuntu 12.04 with Virtualbox 4.3.6.

+ +
+
+ +
+ +
+
+
+
+

+ Niamor + · 16 avril 2014 à 10 h 30 min +

+

Bonjour à tous,
+Effectivement, l’étape avec la clé USB n’est pas nécessaire.
+Il est tout à fait possible d’installer l’OS directement en bootant sur l’iso qui sera préalablement monté via le lecteur virtuel.
+En tout cas, merci pour le tuto et les sources.
+Bonne continuation

+ +
+
+ +
+
+
+

Répondre à Djow Annuler la réponse

Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

+
+
+

+ +

+
+
+
+
+
+
+ +
+
+
+
+
+
+ + +
+ + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/093a863f663d7b2a45886d54c99d68208be38e41.00000221.html b/www/.content.EZtzwPjb/html/093a863f663d7b2a45886d54c99d68208be38e41.00000221.html new file mode 100644 index 0000000..e21a76f --- /dev/null +++ b/www/.content.EZtzwPjb/html/093a863f663d7b2a45886d54c99d68208be38e41.00000221.html @@ -0,0 +1,495 @@ + + + + + + + + Le destin de Linux – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+ +
+
+
+
+
+
+

J’écris cet article en réponse à cette trouvaille sur les Interwebs.

+

« Linux, le meilleur système d’exploitation n’ayant jamais été créé selon eux »

+

Linux n’est pas un système d’exploitation, c’est un noyau pour faire des systèmes d’exploitations.

+

Alors déjà « Windows is awesome« , sans définir le « eux » car je ne sais pas vraiment qui sont ces gens qui sont assez fou pour utiliser un système d’exploitation basé sur Linux, les OS Linux sont loin d’être parfait surtout au niveau de l’ergonomie et des finitions.

+

« Très sécurisé, très performant et surtout très peu utilisé au final Windows Mobile n’est pas si loin que ça de son ennemi »

+
    +
  • Linux très performant oui => super computer
  • +
  • Linux très sécurisé je dirais plutôt sécurisé mais pas plus qu’un autre OS.
  • +
+

Bon à ma connaissance Windows Mobile ou Windows tout court sont très très rarement utilisés dans les super computer donc je dirais que sur le critère de la performance, Windows est loin loin derrière. Sur la sécurité déjà Linux n’est pas très sécurisé mais compte tenu de ça maturité et du fait qu’il soit opensource permet de garantir que ça va dans le bon sens. Windows Mobile est jeune, le code est fermé donc la sécurité on ne peut pas vraiment vérifier non ?

+

« Au final la guerre est certainement encore très longue et comme sur les ordinateurs où on pense qu’il y a de la place pour 3 (MacOS, Windows et Linux), sur smartphones il y a aussi de la place pour 3 avec iOS, Windows Mobile et Android. »

+

Alors oui la guerre risque d’être longue si il y en a une, car je le disais Linux n’est pas un OS en tant que tel mais il y a plus 1000 distributions Linux à ce jour, donc votre guerre fictive ( ce mot a le swag en ce moment ) à trois OS elle est vachement drôle. Et vous avez oubliez BSD. Ensuite la grosse différence entre les deux premiers et les OS basés sur Linux c’est que les deux premiers sont des OS commerciaux conçus dans le but de faire de l’argent. Alors que la major partie des distributions Linux sont LIBRE et sont développées par et pour ses utilisateurs. Elles sont maintenus comme des outils et non comme des produits et là c’est une sacré différence. Donc Windows Mobile est aussi un produit à ma connaissance qui a pour but de prendre de la part de marché pour rapporter de l’argent. La guerre des parts de marché des OS, désolé mais Linux n’est pas dans la course, il est libre. ( Cette phrase vend du rêve )

+

« un Android trop populaire qui aspire la vie de ses utilisateurs afin d’en tirer profit »

+

Alors là je vous arrête directement, pour la simple et bonne raison c’est que c’est le travail des services Google installé par sur une majorité de téléphone en France ( en Chine ce n’est pas cas par exemple). J’utilise Android Open Source Project et non il n’aspire pas la vie de ses utilisateurs.

+

« Tout naturellement les défenseurs de Linux vont crier au scandale en rétorquant que Linux est le meilleur et que la position d’Android en est la preuve ! »

+

Tant qu’on parle d’Android, juste pour rappel c’est une distribution Linux comme vous le dites. Donc si on poursuit votre résonnement jusqu’au bout Linux est l’OS le plus utilisé dans le monde devant Windows bref.

+

Donc pour conclure le seul point commun que je peux trouvé entre Windows Mobile et les distributions Linux sur les ordinateurs de bureaux se sont les parts de marché.

+

Mais comment Linux va pouvoir survivre sur ordinateurs de bureau ? Ses utilisateurs et future utilisateurs pourront choisir.

+

Les utilisateurs Windows Mobile ne choisiront pas mais subiront le vœu commercial de Microsoft.

+
+
+
+
+
Catégories : InternetLogiciels
+
+
+
+ + + + + + + + + +
+
+
+
+
+
+
+

+ 0 commentaire

+
+
+
+

Laisser un commentaire

Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

+
+
+

+ +

+
+
+
+
+
+
+ +
+
+
+
+
+
+ + +
+ + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/09d974eed8bcb2ee0fc3452cc734c4c0387a6167.00000617.css b/www/.content.EZtzwPjb/html/09d974eed8bcb2ee0fc3452cc734c4c0387a6167.00000617.css new file mode 100644 index 0000000..fe440fe --- /dev/null +++ b/www/.content.EZtzwPjb/html/09d974eed8bcb2ee0fc3452cc734c4c0387a6167.00000617.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;background:#fff;border:1px +solid #f00;font-size:10pt;width:280px;padding:2px}span.wpcf7-not-valid-tip-no-ajax{color:#f00;font-size:10pt;display:block}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/09dab155dfc7b3ae2044162c063d63a0d42e231e.00000427.xml b/www/.content.EZtzwPjb/html/09dab155dfc7b3ae2044162c063d63a0d42e231e.00000427.xml new file mode 100644 index 0000000..a022bd7 --- /dev/null +++ b/www/.content.EZtzwPjb/html/09dab155dfc7b3ae2044162c063d63a0d42e231e.00000427.xml @@ -0,0 +1,46 @@ + + + + HugoPoi » Intel N-6230 + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Sat, 14 Sep 2013 23:01:40 +0000 + fr-FR + hourly + 1 + http://wordpress.org/?v=3.6 + + Asus U36 et OCZ Vertex 3 la suite + http://blog.hugopoi.net/2012/03/30/asus-u36-et-ocz-vertex-3-la-suite/ + http://blog.hugopoi.net/2012/03/30/asus-u36-et-ocz-vertex-3-la-suite/#comments + Fri, 30 Mar 2012 10:29:27 +0000 + HugoPoi + + + + + + + + + + + + + + + http://blog.hugopoi.net/?p=635 + Lire la suite »

]]>
+ http://blog.hugopoi.net/2012/03/30/asus-u36-et-ocz-vertex-3-la-suite/feed/ + 1 +
+
+
diff --git a/www/.content.EZtzwPjb/html/0a07c2faf752e4d7845982a1ec250d452f0889dc.00000349.html b/www/.content.EZtzwPjb/html/0a07c2faf752e4d7845982a1ec250d452f0889dc.00000349.html new file mode 100644 index 0000000..2b19e4d --- /dev/null +++ b/www/.content.EZtzwPjb/html/0a07c2faf752e4d7845982a1ec250d452f0889dc.00000349.html @@ -0,0 +1,379 @@ + + + + + + + blu-ray – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+ +
+
+
+
+
+

Home Cinéma

Bientôt fini mais peut-être jamais terminé tellement il y a de boulot autour d’un système home-cinema complet et parfait. Cela fait bientôt deux semaines que je suis dans mes travaux et ma configuration HTPC. Première semaine, je suis parti de rien, aucun câble posé, pas de pc installé et pas de meuble. Du coup, le lundi, je suis allé à Ikea et j’ai trouvé à peu près ce que je voulais pour pas trop cher (120 € pour de l’aggloméré de merde). Le mardi, je venais de recevoir tout le matos, à savoir :

+
    +
  • Un Amplificateur Yamaha RX-671
  • +
  • Un kit d’enceinte Jamo 5.1
  • +
  • Un boitier Antec Remote black et les 2-3 composants qui vont bien
  • +
+

Salon Wii

+

 

+ +
Par HugoPoi, il y a
+
+ +
+
+
+
+ +
+
+ + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/0a25034baec3d07d2c301c46439ad0018696dd82.00000124.html b/www/.content.EZtzwPjb/html/0a25034baec3d07d2c301c46439ad0018696dd82.00000124.html new file mode 100644 index 0000000..c8f6dde --- /dev/null +++ b/www/.content.EZtzwPjb/html/0a25034baec3d07d2c301c46439ad0018696dd82.00000124.html @@ -0,0 +1,1370 @@ + + + + + + + + Réparations Samsung SyncMaster 2232BW – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+ +
+
+
+
+
+
+

Allô docteur on a un problème,

+

En ce dimanche calme avant la fin de mes partiels, mon écran Samsung SyncMaster 2232BW commençait à faire des siennes. Celui-ci depuis un mois ou deux clignotait de façon systématique au démarrage, au début pendant seulement quelques secondes, puis au fur et à mesure, de plus en plus jusqu’à devoir attendre 10 minutes pour que je puisse l’utiliser. Après 3 ans et 4 mois de bons et loyaux services, il voulait me quitter. J’ai tenté le support Samsung par email avec peu d’espoir car l’écran a dépassé sa garantie de 4 mois (oui oui les bâtards -> obsolescence programmée). Et donc j’ai eu le droit à un joli mail automatique me disant de contacter un numéro non surtaxé (mais avec combien de temps d’attente ?), ce que je n’ai pas fait car je n’avais pas envie de passer 30min au téléphone pour au final avoir un « On est désolé mais on ne peut rien faire pour vous car la garantie est dépassée, mais on peut envoyer votre écran en SAV pour faire un devis pour seulement 50 boules ». Concernant le support email de Samsung France, je leur donne une note de 0/20 puisque ce n’est pas un support mais une redirection vers le téléphone.

+

+

Symptômes

+

Clignotements de l’écran et de la LED power systématiques à chaque démarrage de l’écran. Je me suis tout de suite douté d’un problème d’alimentation et après quelques recherches sur google, confirmation du problème sur beaucoup d’écrans et téléviseurs. Dans 99% des cas ce clignotement est dû à des condensateurs défectueux qu’il faut simplement changer :-D

+

Démontage

+

Donc après avoir cerné le problème, j’ai ouvert l’écran pour chercher les condos défectueux. J’ai trouvé une petite vidéo pour mon écran :

+

+

Voici quelques photos en plus pour vous aider :

+

Les outils que j’ai utilisé pour le démontage

+

Position des clips

+

Carte d’alimentation dans son emplacement

+

Et voici les condensateurs qui posent problèmes. Comme vous pouvez le voir sur la photo, ils sont très facilement identifiable car ils sont bombés sur le dessus.

+

Condensateurs défectueux

+

Vous devez donc acheter des condensateurs de remplacement, par exemple sur Conrad.

+

Mes condensateurs suivant étaient endommagés:

+
    +
  • 1 de 330uF 25V remplacé par un 470uF 25V
  • +
  • 3 de 820uF 25V remplacé par des 1000uF 50V
  • +
+

Pour la réparation, il vous faut un fer à souder avec une panne pas trop grosse mais d’une grosse puissance car les soudures sont très solides (j’ai galéré avec un fer pro qui monte jusqu’à 400°).

+

Tout remarche nickel après remontage, plus de clignotement pour seulement quelques euros.

+

edit du 19 aout 2014 : j’ai trouvé le service manuel de l’écran si besoin samsung_2232bw_chassis_lpe22bs_sm

+ + +
+
+ +
+
+
+
+
+

+ 41 commentaires

+
+ +
+
+
+
+

+ c'est_moi + · 30 janvier 2012 à 18 h 57 min +

+

Mille mercis et mille félicitations pour cette fiche technique si pédagogue.

+

J’espère que le partiels se passent plus que parfait !!

+

J’ai gardé l’url de la page pour réparer mon écran dans un petit mois : j’espère que la page soit toujours là ;-)

+

Merci encore.

+ +
+
+ +
+ +
+
+
+
+

+ Maxime + · 5 mai 2012 à 12 h 31 min +

+

Bonjour HugoPoi!

+

Merci pour toutes vos infos et votre topic, je voulais avoir quelques précisions sur les condos à changer pour samsung 2232bw, je veux passer commande mais j’ai un problème avec les dimensions des condos, si vous pouvez m’informer de ce que je pourrais acheter car il y a trop de références. En vous remerciant A+ Maxime

+ +
+
+
    +
    + +
    +
    +
    +
    +

    + HugoPoi + · 14 juin 2012 à 22 h 56 min +

    +

    N’importe quel condensateur polarisé avec des caractéristiques proches devrait marché.

    + +
    +
    + +
+ +
+ +
+
+
+
+

+ gaubjezj + · 14 juin 2012 à 22 h 32 min +

+

Merci pour le tuto qui m’a bien aidé.
+J’ai utilisé un fer de 40 W avec une panne fine et
+une pompe à dessouder et j’ai retiré les condensateurs sans problème.
+Merci encore (3€40 pour le dépannage).

+ +
+
+ +
+ +
+
+
+
+

+ DragonTribal + · 2 juillet 2012 à 12 h 02 min +

+

super merci pour manifique tuto.
+Est-il possible de changer les 5 condensateurs 820uF 25V par des 1000uF 50V? car moi mes 5 condensateurs sont presque HS ;-)

+

Cordialement

+ +
+
+
    +
    + +
    +
    +
    +
    +

    + HugoPoi + · 2 juillet 2012 à 12 h 25 min +

    +

    Oui je penses que ça marchera étant donné que c’est des valeurs plus grandes.

    + +
    +
    + +
+ +
+ +
+
+
+
+

+ FRED + · 11 juillet 2012 à 19 h 11 min +

+

Bravo, MERCI.
+Je n’ai encore rien fait…mais j’ai le même problème, et tu me donnes la solution.
+Super.

+ +
+
+ +
+ +
+
+
+
+

+ daninpet + · 31 août 2012 à 10 h 10 min +

+

Merci mille fois!

+

J’avais ce problème, et j’ai emmener la photo des trucs a remplacer chez le réparateur du coin et voila!! Ça m’a coûté 7 Euros (mais j’habite en Thaïlande)

+ +
+
+ +
+ +
+
+
+
+

+ moi + · 15 novembre 2012 à 15 h 25 min +

+

super mon 2232bw vient de lâcher, les 3 + 1 condos sont gonflés j ai trouvé un 330 en 35v qui traîné sur un écran mort et j’ai commander 5 1000uf 35v sur ebay pour moins de 3 dollars, ca devrait le faire j’espere j’attend d’être livré merci! par contre j’ai qu’un gros pistolet a soudure et un gros fil d’étain, c’est pas évident mais bon ca le fait quand même =)

+ +
+
+
    +
    + +
    +
    +
    +
    +

    + moi + · 7 décembre 2012 à 9 h 33 min +

    +

    parfait je vient de recevoir les condos; j ai meuler la panne du fer a souder pour la tailler en mine de crayon et j ai reussi a les souder facilement ils étaient un peu plus gros mais ca passe tout juste, mais attention ne pas prendre des plus gros! l écran fonctionne nickel maintenant.

    + +
    +
    + +
+ +
+ +
+
+
+
+

+ Croco + · 19 janvier 2013 à 18 h 39 min +

+

Je souhaiterai savoir si tu as utilisé un fer à souder bien précis étant donné que la carte est une multi couche.
+Merci

+ +
+
+ + +
+ +
+
+
+
+

+ momo + · 10 juin 2013 à 13 h 15 min +

+

slut je voudrai savoir ou trouvé les condansateur a changer sur mon ecran qui clignote

+ +
+
+ + +
+ +
+
+
+
+

+ lokmane + · 5 juillet 2013 à 16 h 08 min +

+

merci j’avais un ecran rouge ! et c’etais la tresse qui relie mon ecran votre page m’a aider a l’ouvrir et a le reparer merci bien

+ +
+
+ +
+ +
+
+
+
+

+ ML + · 21 août 2013 à 19 h 11 min +

+

Merci ! Ecran réparé. Halte à l’obsolescence programmée.

+ +
+
+ +
+ +
+
+
+
+

+ raymond + · 31 octobre 2013 à 13 h 20 min +

+

ai vu votre vidéo et les explications pour la reparation de mon écran , apparemment le méme probléme l écran passe au noir apres quelque seconde , j ai vu un le condensateur en bas a gauche gonflé , je l ai fait changé (10€) les autre condensateur étant toujour bon d après la personne qui me l a changé , mais j ai toujour le méme probléme cela peut il venir de la carte video a gauche ?

+ +
+
+
    +
    + +
    +
    +
    +
    +

    + HugoPoi + · 20 décembre 2013 à 12 h 27 min +

    +

    Si la led bleu du bouton power s’éteint aussi c’est un problème d’alimentation sinon c’est plus compliqué et ça peut provenir de condensateurs sur la partie vidéo. Changé tous les plus gros condensateurs sur la partie alimentation pourrait être un bon début même si ils ne paraissent pas endommagé.

    + +
    +
    + +
+ +
+ +
+
+
+
+

+ damien + · 4 novembre 2013 à 0 h 29 min +

+

bonjour,

+

j’ai des crasses coincées entres l’écran et le truc juste derrière, est ce qu’on sais les enlever en démontant la dalle ?

+ +
+
+
    +
    + +
    +
    +
    +
    +

    + HugoPoi + · 20 décembre 2013 à 12 h 28 min +

    +

    Je ne sais si cette partie de la dalle est démontable, je penses que c’est collé mais vous pouvez essayer.

    + +
    +
    + +
+ +
+ +
+
+
+
+

+ mac + · 1 décembre 2013 à 17 h 30 min +

+

Merci HugoPoi, avec ces excellents conseils et tuto vidéo, mon écran est reparti pour une nouvelle vie.
+Pour les composants, si vous êtes sur Paris ou proche. La boutique RAM électroniques est une bonne adresse, 138 bd Diderot 75012 Paris (Place de la Nation).

+ +
+
+ +
+ +
+
+
+
+

+ Bouddhid + · 16 janvier 2014 à 19 h 21 min +

+

Merci beaucoup pour ces conseils ! J’étais à 2 doigts de jeter mon écran, le voilà comme neuf pour moins de 5€ ! Vive la bricole !

+ +
+
+ +
+ +
+
+
+
+

+ Vincent + · 17 mai 2014 à 16 h 45 min +

+

Alors là merci.

+

Pour ce post, les photos, la vidéo, tout y est.

+

J’ai démonté l’écran assez vite, enlevé la carte, regarder quel condensateurs étaient gonflés,(il y en avaient 4), un magasin d’électronique sur lyon et une heure de démontage, soudure, remontage plus tard, voilà, c’est tout beau.
+Ca ne clignote plus, ça s’allume comme avant, comme neuf.

+

Et dire que j’allais jeter cet écran et claquer 350 euros pour un neuf…

+

Coût de l’opération pour 4 condensateurs, du fil d’étain 7 euros.

+

Je précise que je n’avais jamais fais de soudure sur composant électronique auparavant.
+Comme quoi cette opération de réparation est à la portée de tous.

+ +
+
+ +
+ +
+
+
+
+

+ Julot + · 6 juillet 2014 à 13 h 49 min +

+

Site vraiment détaillé et très claire. J’ai pu dépanner mon écran avec succès. Merci beaucoup pour ces précieuses explications.

+ +
+
+ +
+ +
+
+
+
+

+ PaniK31 + · 29 juillet 2014 à 9 h 21 min +

+

Pas besoin d’une grosse puissance pour le fer, il faut au préalable gratter le vernis sur l’étain afin de pouvoir le faire fondre plus facilement

+ +
+
+ +
+ +
+
+
+
+

+ R211_IP-45130B + · 20 août 2014 à 14 h 04 min +

+

Bonjour à tous,

+

Une âme charitable peut-elle me communiquer ce qui est gravé sur la résistance CMS R211 de la carte d’alimentation/inverter IP-45130B qui équipe le SAMSUNG 2232BW ? Cette résistance a pris un coup de tournevis et je n’arrive pas à déterminer sa valeur de résistance car son marquage est effacé et comme le composant est abimé la mesure à l’ohmmètre indique l’infinie.

+

Merci par avance.

+ +
+
+ +
+ +
+
+
+
+

+ roger + · 24 octobre 2014 à 17 h 21 min +

+

Ca refonctionne après échange de 4 condensateurs :
+-un 330uf25v remplacé à l’identique.
+-trois 820uf25v remplacés par 1000uf25v.
+Le tout pour quelques €. Le plus dur était le dessoudage, la tresse n’était pas très efficace contrairement à la pompe.
+Grand merci à HugoPoi.

+ +
+
+ +
+ +
+
+
+
+

+ Max + · 26 février 2015 à 16 h 28 min +

+

ENORME MERCI!! J’ai réparé mon écran en 20mn pour 3,50€, il était à 2 doigts de partir à la déchetterie. Ca faisait des mois qu’il clignotait, et l’allumage mettait parfois plus d’une demi heure. J’ai changé 5 condos 820uf25v et 1 330uf25v, par exactement les mêmes en neuf, et là il démarre au quart de tour! Ca fait plaisir! :)

+ +
+
+
    +
    + +
    +
    +
    +
    +

    + rocco michelle + · 7 octobre 2015 à 10 h 16 min +

    +

    Bonjour je ne sais si vous verrez mon message mais je tente…je cherche quelqu’un qui accepterait de changer mes condensateurs sur mon samsung, les réparateurs me demandent 70 à 80 euros et encore ils n’ont pss envie de le faire et me disent d’acheter un nouvel écran. j’aurais bien tenter mais je n’ai pas de matériel et j’ai lu que les condo pouvaient être très dangereux s’ils avaient de la charge alors j’ai la trouille de bidouiller pq je n’y connais rien. si vous êtes de lyon acccepteriez vous de changer mes condensateurs pour 45 euros? merci de votre réponse.

    + +
    +
    + +
+ +
+ +
+
+
+
+

+ lecakeseb + · 27 juillet 2015 à 15 h 26 min +

+

Bonjour,

+

J’ai utilisé la vidéo pour démonter mon écran afin de le nettoyer de 4 bêtes d’orage infiltrés entre le premier écran (noir) et la dalle (blanche) de mon samsung SyncMaster 2232W

+

Petits conseils afin de modérer ce que j’ai pu voir dans cette vidéo :

+

0 : aspirez, nettoyez l’extérieur de l’écran avant de l’ouvrir et nettoyez la table qui vous servira d’atelier, pour éviter les poussières qui s’infiltreront forcément plus tard si vous ne le faites pas…
+1 : pour ouvrir, utilisez plutôt un couteau à enduire pour la première partie (le cadre). Vous n’abîmerez ainsi pas du tout l’écran. Soyez patients, ne forcez pas ! ça viendra doucement, mais ça viendra. Il m’a fallu à peine 10 minutes, sans détériorer l’écran, sans le griffer… Il est encore nickel !
+2 : attention à ne pas déconnecter les fils reliant le cadre à la carte. Inutile pour simplement nettoyer l’écran.
+3 : pour séparer les deux éléments de la dalle entre lesquels les bêtes se sont infiltrées, les doigts suffisent, pas besoin d’outils qui viendraient les endommager. La dalle blanche reste à l’horizontale, l’écran noir sera tenu à la verticale.
+4 : utiliser un chiffon doux ne peluchant pas pour enlever les bêtes (faites-vous aider de quelqu’un qui les enlèvera pendant que vous tenez l’écran extérieur en position verticale).
+5 : repositionnez la colle d’étanchéité qui aurait pu se déplacer, avant de repositionner les deux écrans.
+6 : commencer par refermer par le bas de l’écran (sinon les éléments de réglage situés au bas de l’écran – luminosité, contraste,…- ne se replaceront pas correctement).
+7 : Une fois l’écran refermé, j’ai appliqué un peu de « barrage aux insectes », avec un chiffon à l’arrière de mon écran en insistant surtout sur les bouches d’aération par lesquelles les maudites bestioles ont du s’infiltrer. En espérant ne pas avoir à ouvrir !

+

Bon courage à vous !

+ +
+
+ +
+ +
+
+
+
+

+ Michel Jousserandot + · 20 janvier 2017 à 20 h 41 min +

+

Merci pour les conseils au démontage.
+J’avais un problème un peu différent :l’écran ne s’allumait plus du tout. Avec un copain beaucoup plus malin que moi, on a détecté 2 fusibles dont l’un était fichu. On l’a remplacé par un petit fil de cuivre. Et tout a remarché comme avant.
+Il faut surtout faire attention quand on teste la partie haute tension
+Michel.

+ +
+
+ +
+ +
+
+
+
+

+ Crec + · 14 juillet 2017 à 10 h 20 min +

+

Bonjour. Très bons conseils avertis. Merci beaucoup.
+Peut-on avoir les mêmes conseils pour un écran BX2250.
+Merci par avance.
+Crec

+ +
+
+
    +
    + +
    +
    +
    +
    +

    + HugoPoi + · 6 août 2017 à 14 h 03 min +

    +

    J’ai pas de BX2250 donc dans le détails non mais si c’est les même symptômes ça doit la même procédure.

    + +
    +
    + +
+ +
+ +
+
+
+
+

+ Ferronnier + · 10 août 2017 à 17 h 42 min +

+

Un grand merci !
+J’ai changé tous les condensateurs de la partie alimentation de la carte, en déportant certains qui n’avaient pas le même format qu’à l’origine, et ça tourne nickel !

+ +
+
+ +
+ +
+
+
+
+

+ Nours + · 1 décembre 2017 à 15 h 17 min +

+

Ca fait des années que j’ai cet article enregistré dans un coin, en nourrissant l’espoir d’avoir un jour le courage de réparer ce foutu écran… Après plus de cinq ans c’est chose faite \o/
+Un giga, hypra, immense merci pour ce tutoriel tellement bien expliqué et facile d’accès (je n’avais pas touché à un fer à souder depuis… Oh boy 15 ans déjà).
+Après une longue pause, l’écran reprend du service… Jusqu’à la prochaine panne /o/

+ +
+
+ +
+ +
+
+
+
+

+ Alex + · 11 août 2018 à 13 h 28 min +

+

Quelqu’un sait qui pourrait me le faire svp j ai le même problème mais aucun matériel

+ +
+
+ +
+ +
+
+
+
+

+ David + · 5 février 2019 à 21 h 06 min +

+

Merci Hugo pour ce tuto qui m’a déjà servi en 2013 et qui va me resservir aujourd’hui car mon 2ème 2232bw commence à avoir les mêmes symptômes.

+ +
+
+ +
+ +
+
+
+
+

+ yvan + · 23 novembre 2019 à 17 h 14 min +

+

Bonjour
+j’ai tenté de changer le condensateur qui avait l’air naze mais ça n’a pas marché … toujours le bouton bleu allumé, l’écran est reconnu par Windows 10 même si l’écran est éteint
+grâce au service manuel de l’écran fourni plus haut, j’ai vérifié les tensions jusque sur la carte de la dalle et elles sont correctes, ainsi que sur la carte elle-même, tout est ok, donc je pense que ce n’est plus un problème de condensateur
+pour les fusibles, ils ressemblent plutôt à des composants qu’à de simple fusibles, mais comme j’ai les bonnes tension, je ne pense pas que ça vienne de là
+j’ai bien peur que ce soit la dalle qui soit naze ? quelqu’un a t il des idées supplémentaires avant que je le jette avec grand regret (c’est un 2032bw, mais c’est la même chose, même si ma carte électronique est un peu différente car plus récente
+merci d’avance pour vos conseils

+ +
+
+ +
+ +
+
+
+
+

+ yvan + · 24 novembre 2019 à 17 h 26 min +

+

finalement j’ai trouvé, c’est un petit fusible vert qui ressemble à une résistance mais tout vert avec écrit 4A LF qui assure l’alimentation de la dalle.
+En le shuntant, mon écran a retrouvé l’image.
+après enquête il s’agit d’un fusible pico de 4ampères de chez little fuse, pas du tout évident à trouver
+Résolu !

+ +
+
+ +
+
+

+ Reflow Dell 1546 | HugoPoi + · 22 août 2016 à 16 h 09 min +

+

[…] « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable de marque Dell un 1546 pour être précis. Encore […]

+ +
+
+ +
+
+

+ Reflow Dell Inspiron 1546 – HugoPoi + · 23 juin 2017 à 23 h 18 min +

+

[…] d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un […]

+ +
+
+ +
+
+
+

Répondre à Vincent Annuler la réponse

Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

+
+
+

+ +

+
+
+
+
+
+
+ +
+
+
+
+
+
+ + +
+ + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/0af9b9c4f6d3e7a3505a44f3263a0a04773e2abc.00000735.css b/www/.content.EZtzwPjb/html/0af9b9c4f6d3e7a3505a44f3263a0a04773e2abc.00000735.css new file mode 100644 index 0000000..cef18bb --- /dev/null +++ b/www/.content.EZtzwPjb/html/0af9b9c4f6d3e7a3505a44f3263a0a04773e2abc.00000735.css @@ -0,0 +1,43 @@ +.wp_syntax { + color: #100; + background-color: #f9f9f9; + border: 1px solid silver; + margin: 0 0 1.5em 0; + overflow: auto; +} + +/* IE FIX */ +.wp_syntax { + overflow-x: auto; + overflow-y: hidden; + padding-bottom: expression(this.scrollWidth > this.offsetWidth ? 15 : 0); + width: 100%; +} + +.wp_syntax table { + border-collapse: collapse; +} + +.wp_syntax div, .wp_syntax td { + vertical-align: top; + padding: 2px 4px; +} + +.wp_syntax .line_numbers { + text-align: right; + background-color: #def; + color: gray; + overflow: visible; +} + +/* potential overrides for other styles */ +.wp_syntax pre { + margin: 0; + width: auto; + float: none; + clear: none; + overflow: visible; + font-size: 12px; + line-height: 1.333; + white-space: pre; +} diff --git a/www/.content.EZtzwPjb/html/0b6e4bd765b694b70629f2d64e974d3f3dda811b.00000317.html b/www/.content.EZtzwPjb/html/0b6e4bd765b694b70629f2d64e974d3f3dda811b.00000317.html new file mode 100644 index 0000000..f9d1a65 --- /dev/null +++ b/www/.content.EZtzwPjb/html/0b6e4bd765b694b70629f2d64e974d3f3dda811b.00000317.html @@ -0,0 +1,377 @@ + + + + + + + Test – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+ +
+
+
+
+
+

Test et démontage d’un Sony Multi Flip 15 SVF15N1C5E

Longtemps que je n’avais pas posté ici, mais la je suis en vacances donc j’ai le temps. Voici donc mes retours sur ce pc portable Sony un peu atypique. J’ai choisit cette machine sur plusieurs critères qui m’avait convaincu pour les usages de ma chérie (c’est sa machine), elle fait du dessin vectoriel et de la retouche d’images principalement.
+ (suite…)

+
Par HugoPoi, il y a

Asus U36JC-RX260V

Depuis le temps que je voulais investir dans un pc portable, je l’ai enfin fait. Je cherchais une machine en complément de mon fixe avec comme premiers critères l’autonomie et un minimum de puissance. J’ai donc acheté un ultra-portable Asus, un chassie U36JC avec les caractéristiques suivantes : (suite…)

+
Par HugoPoi, il y a

Test du Samsung Galaxy S

C’est une petite révolution pour moi qui passe d’un HTC Touch à un Galaxy S. Le Touch était bien en son temps, smartphone de première génération, mais vite dépassé par les évènements et l’avènement du web sur mobile. (suite…)

+
Par HugoPoi, il y a
+
+ +
+
+
+
+ +
+
+ + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/0ba72ebb2e769af5edb1a7ad0109f6f06e5a6666.00000342.html b/www/.content.EZtzwPjb/html/0ba72ebb2e769af5edb1a7ad0109f6f06e5a6666.00000342.html new file mode 100644 index 0000000..a75be8a --- /dev/null +++ b/www/.content.EZtzwPjb/html/0ba72ebb2e769af5edb1a7ad0109f6f06e5a6666.00000342.html @@ -0,0 +1,370 @@ + + + + + + + Asus – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+ +
+
+
+
+
+

Asus U36 et OCZ Vertex 3 la suite

Après un mois d’attente auprès de Cdiscount, pour au final m’annoncer le remboursement de mon SSD Vertex 2 qui est mort subitement, j’ai donc décidé de commander un Vertex 3 qui va remplacer le mort au sein de mon Asus U36JC. Et pour ne pas l’ouvrir juste pour un banal remplacement de SSD j’ai décidé de remplacer par la même occasion la carte wifi, une Intel N-1000 par une Intel N-6320. Celle-ci disposant en plus du bluetooth. J’en ai donc profité pour prendre des photos supplémentaires du démontage pour compléter mon précédent article : Démontage d’un Asus U36. Vous pouvez d’abord lire mon ancien article avant d’attaquer celui-ci, je ne ferai qu’apporter des informations complémentaires pour le démontage. (suite…)

+
Par HugoPoi, il y a

Asus U36JC-RX260V

Depuis le temps que je voulais investir dans un pc portable, je l’ai enfin fait. Je cherchais une machine en complément de mon fixe avec comme premiers critères l’autonomie et un minimum de puissance. J’ai donc acheté un ultra-portable Asus, un chassie U36JC avec les caractéristiques suivantes : (suite…)

+
Par HugoPoi, il y a
+
+ +
+
+
+
+ +
+
+ + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/0c031bcd0bac0a0db371cc8f6b9833eb65ab7eb4.00001212.js b/www/.content.EZtzwPjb/html/0c031bcd0bac0a0db371cc8f6b9833eb65ab7eb4.00001212.js new file mode 100644 index 0000000..bc1b451 --- /dev/null +++ b/www/.content.EZtzwPjb/html/0c031bcd0bac0a0db371cc8f6b9833eb65ab7eb4.00001212.js @@ -0,0 +1,2 @@ +/*! This file is auto-generated */ +window.addComment=function(v){var I,C,h,E=v.document,b={commentReplyClass:"comment-reply-link",commentReplyTitleId:"reply-title",cancelReplyId:"cancel-comment-reply-link",commentFormId:"commentform",temporaryFormId:"wp-temp-form-div",parentIdFieldId:"comment_parent",postIdFieldId:"comment_post_ID"},e=v.MutationObserver||v.WebKitMutationObserver||v.MozMutationObserver,r="querySelector"in E&&"addEventListener"in v,n=!!E.documentElement.dataset;function t(){d(),e&&new e(o).observe(E.body,{childList:!0,subtree:!0})}function d(e){if(r&&(I=g(b.cancelReplyId),C=g(b.commentFormId),I)){I.addEventListener("touchstart",l),I.addEventListener("click",l);var t=function(e){if((e.metaKey||e.ctrlKey)&&13===e.keyCode)return C.removeEventListener("keydown",t),e.preventDefault(),C.submit.click(),!1};C&&C.addEventListener("keydown",t);for(var n,d=function(e){var t=b.commentReplyClass;e&&e.childNodes||(e=E);t=E.getElementsByClassName?e.getElementsByClassName(t):e.querySelectorAll("."+t);return t}(e),o=0,i=d.length;o this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/0c2ffa0703fa76e3738dba22b04bedd582122618.00000704.css b/www/.content.EZtzwPjb/html/0c2ffa0703fa76e3738dba22b04bedd582122618.00000704.css new file mode 100644 index 0000000..20df2bb --- /dev/null +++ b/www/.content.EZtzwPjb/html/0c2ffa0703fa76e3738dba22b04bedd582122618.00000704.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7 .screen-reader-response{position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);height:1px;width:1px;margin:0;padding:0;border:0}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{color:#f00;font-size:1em;display:block}.use-floating-validation-tip span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;border:1px +solid #f00;background:#fff;padding: .2em .8em}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/0c3332b54b1c5a4ed75dd127913b7ce0bfeabcb0.00001229.js b/www/.content.EZtzwPjb/html/0c3332b54b1c5a4ed75dd127913b7ce0bfeabcb0.00001229.js new file mode 100644 index 0000000..08b0bd7 --- /dev/null +++ b/www/.content.EZtzwPjb/html/0c3332b54b1c5a4ed75dd127913b7ce0bfeabcb0.00001229.js @@ -0,0 +1 @@ +!function(a){void 0===mejs.plugins&&(mejs.plugins={},mejs.plugins.silverlight=[],mejs.plugins.silverlight.push({types:[]})),mejs.HtmlMediaElementShim=mejs.HtmlMediaElementShim||{getTypeFromFile:mejs.Utils.getTypeFromFile},void 0===mejs.MediaFeatures&&(mejs.MediaFeatures=mejs.Features),void 0===mejs.Utility&&(mejs.Utility=mejs.Utils);var e=MediaElementPlayer.prototype.init;MediaElementPlayer.prototype.init=function(){this.options.classPrefix="mejs-",this.$media=this.$node=a(this.node),e.call(this)};var t=MediaElementPlayer.prototype._meReady;MediaElementPlayer.prototype._meReady=function(){this.container=a(this.container),this.controls=a(this.controls),this.layers=a(this.layers),t.apply(this,arguments)},MediaElementPlayer.prototype.getElement=function(e){return void 0!==a&&e instanceof a?e[0]:e},MediaElementPlayer.prototype.buildfeatures=function(e,t,i,s){for(var r=["playpause","current","progress","duration","tracks","volume","fullscreen"],l=0,n=this.options.features.length;l this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/0e061c14127939724ca274d588b20041f17f5231.00000275.html b/www/.content.EZtzwPjb/html/0e061c14127939724ca274d588b20041f17f5231.00000275.html new file mode 100644 index 0000000..d16b5a4 --- /dev/null +++ b/www/.content.EZtzwPjb/html/0e061c14127939724ca274d588b20041f17f5231.00000275.html @@ -0,0 +1,398 @@ + + + + + + + HugoPoi – Page 8 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+ +
+
+
+
+
+

Test du Samsung Galaxy S

C’est une petite révolution pour moi qui passe d’un HTC Touch à un Galaxy S. Le Touch était bien en son temps, smartphone de première génération, mais vite dépassé par les évènements et l’avènement du web sur mobile. (suite…)

+
Par HugoPoi, il y a

IPv6 – Intro

Etant donné la proche pénurie d’adresse IP v4, plus que 5% seraient disponible sur le réseau public qu’est Internet, je vais faire un dossier qui parlera d’IP v6. Dans ce dossier, je vais vous faire des tutoriels, des RFC et des découvertes. (suite…)

+

Liste de Noël

Comme presque tout le monde, je cède à la magie de noël, le plus grand coup marketing des deux derniers millénaires pour nous faire dépenser notre argent. Alors comme j’ai beaucoup de chance, je viens d’avoir un accident avec ma voiture, ça tombe à pique pour le mois de décembre. Heureusement, je vais pouvoir la réparer DIY pour pas trop chère. Je ne sais pas si des opérations de ce type sont en cours mais je me disais que l’on pourrais m’offrir une carte cadeau ou un bon d’achat dans une casse auto pour y acheter les pièces dont j’ai besoin (Je cherche : un capot violet, une traverse frontale et 2 phares complets pour Twingo 1gen). Après ce moment de rigolade déception je vous donne ci-dessous ma liste de noël. Elle est destinée à mes lecteurs généreux, ma famille, amis et autres donateurs qui sont les bienvenus. Je préviens c’est un peu plus qu’une liste de noël puisque je vais y mettre tous les truc fun, gadgets super high-tech dernier cri et super pc de la mort qui tue. Par contre il n’y aura pas d’objet Apple donc les fanboys de la pomme vous pouvez aller profiter de votre temps libre sur Apple.com. (suite…)

+
+
+
+ +
+
+
+
+ +
+
+ + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/0e7e4c892e8098c3fe9fc458dd1504b38b80a2cf.00000702.css b/www/.content.EZtzwPjb/html/0e7e4c892e8098c3fe9fc458dd1504b38b80a2cf.00000702.css new file mode 100644 index 0000000..20df2bb --- /dev/null +++ b/www/.content.EZtzwPjb/html/0e7e4c892e8098c3fe9fc458dd1504b38b80a2cf.00000702.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7 .screen-reader-response{position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);height:1px;width:1px;margin:0;padding:0;border:0}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{color:#f00;font-size:1em;display:block}.use-floating-validation-tip span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;border:1px +solid #f00;background:#fff;padding: .2em .8em}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/0ec96e952302a6cdb064df2cd21543c92eada6f1.00000137.html b/www/.content.EZtzwPjb/html/0ec96e952302a6cdb064df2cd21543c92eada6f1.00000137.html new file mode 100644 index 0000000..1114d76 --- /dev/null +++ b/www/.content.EZtzwPjb/html/0ec96e952302a6cdb064df2cd21543c92eada6f1.00000137.html @@ -0,0 +1,1370 @@ + + + + + + + + Réparations Samsung SyncMaster 2232BW – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+ +
+
+
+
+
+
+

Allô docteur on a un problème,

+

En ce dimanche calme avant la fin de mes partiels, mon écran Samsung SyncMaster 2232BW commençait à faire des siennes. Celui-ci depuis un mois ou deux clignotait de façon systématique au démarrage, au début pendant seulement quelques secondes, puis au fur et à mesure, de plus en plus jusqu’à devoir attendre 10 minutes pour que je puisse l’utiliser. Après 3 ans et 4 mois de bons et loyaux services, il voulait me quitter. J’ai tenté le support Samsung par email avec peu d’espoir car l’écran a dépassé sa garantie de 4 mois (oui oui les bâtards -> obsolescence programmée). Et donc j’ai eu le droit à un joli mail automatique me disant de contacter un numéro non surtaxé (mais avec combien de temps d’attente ?), ce que je n’ai pas fait car je n’avais pas envie de passer 30min au téléphone pour au final avoir un « On est désolé mais on ne peut rien faire pour vous car la garantie est dépassée, mais on peut envoyer votre écran en SAV pour faire un devis pour seulement 50 boules ». Concernant le support email de Samsung France, je leur donne une note de 0/20 puisque ce n’est pas un support mais une redirection vers le téléphone.

+

+

Symptômes

+

Clignotements de l’écran et de la LED power systématiques à chaque démarrage de l’écran. Je me suis tout de suite douté d’un problème d’alimentation et après quelques recherches sur google, confirmation du problème sur beaucoup d’écrans et téléviseurs. Dans 99% des cas ce clignotement est dû à des condensateurs défectueux qu’il faut simplement changer :-D

+

Démontage

+

Donc après avoir cerné le problème, j’ai ouvert l’écran pour chercher les condos défectueux. J’ai trouvé une petite vidéo pour mon écran :

+

+

Voici quelques photos en plus pour vous aider :

+

Les outils que j’ai utilisé pour le démontage

+

Position des clips

+

Carte d’alimentation dans son emplacement

+

Et voici les condensateurs qui posent problèmes. Comme vous pouvez le voir sur la photo, ils sont très facilement identifiable car ils sont bombés sur le dessus.

+

Condensateurs défectueux

+

Vous devez donc acheter des condensateurs de remplacement, par exemple sur Conrad.

+

Mes condensateurs suivant étaient endommagés:

+
    +
  • 1 de 330uF 25V remplacé par un 470uF 25V
  • +
  • 3 de 820uF 25V remplacé par des 1000uF 50V
  • +
+

Pour la réparation, il vous faut un fer à souder avec une panne pas trop grosse mais d’une grosse puissance car les soudures sont très solides (j’ai galéré avec un fer pro qui monte jusqu’à 400°).

+

Tout remarche nickel après remontage, plus de clignotement pour seulement quelques euros.

+

edit du 19 aout 2014 : j’ai trouvé le service manuel de l’écran si besoin samsung_2232bw_chassis_lpe22bs_sm

+ + +
+
+ +
+
+
+
+
+

+ 41 commentaires

+
+ +
+
+
+
+

+ c'est_moi + · 30 janvier 2012 à 18 h 57 min +

+

Mille mercis et mille félicitations pour cette fiche technique si pédagogue.

+

J’espère que le partiels se passent plus que parfait !!

+

J’ai gardé l’url de la page pour réparer mon écran dans un petit mois : j’espère que la page soit toujours là ;-)

+

Merci encore.

+ +
+
+ +
+ +
+
+
+
+

+ Maxime + · 5 mai 2012 à 12 h 31 min +

+

Bonjour HugoPoi!

+

Merci pour toutes vos infos et votre topic, je voulais avoir quelques précisions sur les condos à changer pour samsung 2232bw, je veux passer commande mais j’ai un problème avec les dimensions des condos, si vous pouvez m’informer de ce que je pourrais acheter car il y a trop de références. En vous remerciant A+ Maxime

+ +
+
+
    +
    + +
    +
    +
    +
    +

    + HugoPoi + · 14 juin 2012 à 22 h 56 min +

    +

    N’importe quel condensateur polarisé avec des caractéristiques proches devrait marché.

    + +
    +
    + +
+ +
+ +
+
+
+
+

+ gaubjezj + · 14 juin 2012 à 22 h 32 min +

+

Merci pour le tuto qui m’a bien aidé.
+J’ai utilisé un fer de 40 W avec une panne fine et
+une pompe à dessouder et j’ai retiré les condensateurs sans problème.
+Merci encore (3€40 pour le dépannage).

+ +
+
+ +
+ +
+
+
+
+

+ DragonTribal + · 2 juillet 2012 à 12 h 02 min +

+

super merci pour manifique tuto.
+Est-il possible de changer les 5 condensateurs 820uF 25V par des 1000uF 50V? car moi mes 5 condensateurs sont presque HS ;-)

+

Cordialement

+ +
+
+
    +
    + +
    +
    +
    +
    +

    + HugoPoi + · 2 juillet 2012 à 12 h 25 min +

    +

    Oui je penses que ça marchera étant donné que c’est des valeurs plus grandes.

    + +
    +
    + +
+ +
+ +
+
+
+
+

+ FRED + · 11 juillet 2012 à 19 h 11 min +

+

Bravo, MERCI.
+Je n’ai encore rien fait…mais j’ai le même problème, et tu me donnes la solution.
+Super.

+ +
+
+ +
+ +
+
+
+
+

+ daninpet + · 31 août 2012 à 10 h 10 min +

+

Merci mille fois!

+

J’avais ce problème, et j’ai emmener la photo des trucs a remplacer chez le réparateur du coin et voila!! Ça m’a coûté 7 Euros (mais j’habite en Thaïlande)

+ +
+
+ +
+ +
+
+
+
+

+ moi + · 15 novembre 2012 à 15 h 25 min +

+

super mon 2232bw vient de lâcher, les 3 + 1 condos sont gonflés j ai trouvé un 330 en 35v qui traîné sur un écran mort et j’ai commander 5 1000uf 35v sur ebay pour moins de 3 dollars, ca devrait le faire j’espere j’attend d’être livré merci! par contre j’ai qu’un gros pistolet a soudure et un gros fil d’étain, c’est pas évident mais bon ca le fait quand même =)

+ +
+
+
    +
    + +
    +
    +
    +
    +

    + moi + · 7 décembre 2012 à 9 h 33 min +

    +

    parfait je vient de recevoir les condos; j ai meuler la panne du fer a souder pour la tailler en mine de crayon et j ai reussi a les souder facilement ils étaient un peu plus gros mais ca passe tout juste, mais attention ne pas prendre des plus gros! l écran fonctionne nickel maintenant.

    + +
    +
    + +
+ +
+ +
+
+
+
+

+ Croco + · 19 janvier 2013 à 18 h 39 min +

+

Je souhaiterai savoir si tu as utilisé un fer à souder bien précis étant donné que la carte est une multi couche.
+Merci

+ +
+
+ + +
+ +
+
+
+
+

+ momo + · 10 juin 2013 à 13 h 15 min +

+

slut je voudrai savoir ou trouvé les condansateur a changer sur mon ecran qui clignote

+ +
+
+ + +
+ +
+
+
+
+

+ lokmane + · 5 juillet 2013 à 16 h 08 min +

+

merci j’avais un ecran rouge ! et c’etais la tresse qui relie mon ecran votre page m’a aider a l’ouvrir et a le reparer merci bien

+ +
+
+ +
+ +
+
+
+
+

+ ML + · 21 août 2013 à 19 h 11 min +

+

Merci ! Ecran réparé. Halte à l’obsolescence programmée.

+ +
+
+ +
+ +
+
+
+
+

+ raymond + · 31 octobre 2013 à 13 h 20 min +

+

ai vu votre vidéo et les explications pour la reparation de mon écran , apparemment le méme probléme l écran passe au noir apres quelque seconde , j ai vu un le condensateur en bas a gauche gonflé , je l ai fait changé (10€) les autre condensateur étant toujour bon d après la personne qui me l a changé , mais j ai toujour le méme probléme cela peut il venir de la carte video a gauche ?

+ +
+
+
    +
    + +
    +
    +
    +
    +

    + HugoPoi + · 20 décembre 2013 à 12 h 27 min +

    +

    Si la led bleu du bouton power s’éteint aussi c’est un problème d’alimentation sinon c’est plus compliqué et ça peut provenir de condensateurs sur la partie vidéo. Changé tous les plus gros condensateurs sur la partie alimentation pourrait être un bon début même si ils ne paraissent pas endommagé.

    + +
    +
    + +
+ +
+ +
+
+
+
+

+ damien + · 4 novembre 2013 à 0 h 29 min +

+

bonjour,

+

j’ai des crasses coincées entres l’écran et le truc juste derrière, est ce qu’on sais les enlever en démontant la dalle ?

+ +
+
+
    +
    + +
    +
    +
    +
    +

    + HugoPoi + · 20 décembre 2013 à 12 h 28 min +

    +

    Je ne sais si cette partie de la dalle est démontable, je penses que c’est collé mais vous pouvez essayer.

    + +
    +
    + +
+ +
+ +
+
+
+
+

+ mac + · 1 décembre 2013 à 17 h 30 min +

+

Merci HugoPoi, avec ces excellents conseils et tuto vidéo, mon écran est reparti pour une nouvelle vie.
+Pour les composants, si vous êtes sur Paris ou proche. La boutique RAM électroniques est une bonne adresse, 138 bd Diderot 75012 Paris (Place de la Nation).

+ +
+
+ +
+ +
+
+
+
+

+ Bouddhid + · 16 janvier 2014 à 19 h 21 min +

+

Merci beaucoup pour ces conseils ! J’étais à 2 doigts de jeter mon écran, le voilà comme neuf pour moins de 5€ ! Vive la bricole !

+ +
+
+ +
+ +
+
+
+
+

+ Vincent + · 17 mai 2014 à 16 h 45 min +

+

Alors là merci.

+

Pour ce post, les photos, la vidéo, tout y est.

+

J’ai démonté l’écran assez vite, enlevé la carte, regarder quel condensateurs étaient gonflés,(il y en avaient 4), un magasin d’électronique sur lyon et une heure de démontage, soudure, remontage plus tard, voilà, c’est tout beau.
+Ca ne clignote plus, ça s’allume comme avant, comme neuf.

+

Et dire que j’allais jeter cet écran et claquer 350 euros pour un neuf…

+

Coût de l’opération pour 4 condensateurs, du fil d’étain 7 euros.

+

Je précise que je n’avais jamais fais de soudure sur composant électronique auparavant.
+Comme quoi cette opération de réparation est à la portée de tous.

+ +
+
+ +
+ +
+
+
+
+

+ Julot + · 6 juillet 2014 à 13 h 49 min +

+

Site vraiment détaillé et très claire. J’ai pu dépanner mon écran avec succès. Merci beaucoup pour ces précieuses explications.

+ +
+
+ +
+ +
+
+
+
+

+ PaniK31 + · 29 juillet 2014 à 9 h 21 min +

+

Pas besoin d’une grosse puissance pour le fer, il faut au préalable gratter le vernis sur l’étain afin de pouvoir le faire fondre plus facilement

+ +
+
+ +
+ +
+
+
+
+

+ R211_IP-45130B + · 20 août 2014 à 14 h 04 min +

+

Bonjour à tous,

+

Une âme charitable peut-elle me communiquer ce qui est gravé sur la résistance CMS R211 de la carte d’alimentation/inverter IP-45130B qui équipe le SAMSUNG 2232BW ? Cette résistance a pris un coup de tournevis et je n’arrive pas à déterminer sa valeur de résistance car son marquage est effacé et comme le composant est abimé la mesure à l’ohmmètre indique l’infinie.

+

Merci par avance.

+ +
+
+ +
+ +
+
+
+
+

+ roger + · 24 octobre 2014 à 17 h 21 min +

+

Ca refonctionne après échange de 4 condensateurs :
+-un 330uf25v remplacé à l’identique.
+-trois 820uf25v remplacés par 1000uf25v.
+Le tout pour quelques €. Le plus dur était le dessoudage, la tresse n’était pas très efficace contrairement à la pompe.
+Grand merci à HugoPoi.

+ +
+
+ +
+ +
+
+
+
+

+ Max + · 26 février 2015 à 16 h 28 min +

+

ENORME MERCI!! J’ai réparé mon écran en 20mn pour 3,50€, il était à 2 doigts de partir à la déchetterie. Ca faisait des mois qu’il clignotait, et l’allumage mettait parfois plus d’une demi heure. J’ai changé 5 condos 820uf25v et 1 330uf25v, par exactement les mêmes en neuf, et là il démarre au quart de tour! Ca fait plaisir! :)

+ +
+
+
    +
    + +
    +
    +
    +
    +

    + rocco michelle + · 7 octobre 2015 à 10 h 16 min +

    +

    Bonjour je ne sais si vous verrez mon message mais je tente…je cherche quelqu’un qui accepterait de changer mes condensateurs sur mon samsung, les réparateurs me demandent 70 à 80 euros et encore ils n’ont pss envie de le faire et me disent d’acheter un nouvel écran. j’aurais bien tenter mais je n’ai pas de matériel et j’ai lu que les condo pouvaient être très dangereux s’ils avaient de la charge alors j’ai la trouille de bidouiller pq je n’y connais rien. si vous êtes de lyon acccepteriez vous de changer mes condensateurs pour 45 euros? merci de votre réponse.

    + +
    +
    + +
+ +
+ +
+
+
+
+

+ lecakeseb + · 27 juillet 2015 à 15 h 26 min +

+

Bonjour,

+

J’ai utilisé la vidéo pour démonter mon écran afin de le nettoyer de 4 bêtes d’orage infiltrés entre le premier écran (noir) et la dalle (blanche) de mon samsung SyncMaster 2232W

+

Petits conseils afin de modérer ce que j’ai pu voir dans cette vidéo :

+

0 : aspirez, nettoyez l’extérieur de l’écran avant de l’ouvrir et nettoyez la table qui vous servira d’atelier, pour éviter les poussières qui s’infiltreront forcément plus tard si vous ne le faites pas…
+1 : pour ouvrir, utilisez plutôt un couteau à enduire pour la première partie (le cadre). Vous n’abîmerez ainsi pas du tout l’écran. Soyez patients, ne forcez pas ! ça viendra doucement, mais ça viendra. Il m’a fallu à peine 10 minutes, sans détériorer l’écran, sans le griffer… Il est encore nickel !
+2 : attention à ne pas déconnecter les fils reliant le cadre à la carte. Inutile pour simplement nettoyer l’écran.
+3 : pour séparer les deux éléments de la dalle entre lesquels les bêtes se sont infiltrées, les doigts suffisent, pas besoin d’outils qui viendraient les endommager. La dalle blanche reste à l’horizontale, l’écran noir sera tenu à la verticale.
+4 : utiliser un chiffon doux ne peluchant pas pour enlever les bêtes (faites-vous aider de quelqu’un qui les enlèvera pendant que vous tenez l’écran extérieur en position verticale).
+5 : repositionnez la colle d’étanchéité qui aurait pu se déplacer, avant de repositionner les deux écrans.
+6 : commencer par refermer par le bas de l’écran (sinon les éléments de réglage situés au bas de l’écran – luminosité, contraste,…- ne se replaceront pas correctement).
+7 : Une fois l’écran refermé, j’ai appliqué un peu de « barrage aux insectes », avec un chiffon à l’arrière de mon écran en insistant surtout sur les bouches d’aération par lesquelles les maudites bestioles ont du s’infiltrer. En espérant ne pas avoir à ouvrir !

+

Bon courage à vous !

+ +
+
+ +
+ +
+
+
+
+

+ Michel Jousserandot + · 20 janvier 2017 à 20 h 41 min +

+

Merci pour les conseils au démontage.
+J’avais un problème un peu différent :l’écran ne s’allumait plus du tout. Avec un copain beaucoup plus malin que moi, on a détecté 2 fusibles dont l’un était fichu. On l’a remplacé par un petit fil de cuivre. Et tout a remarché comme avant.
+Il faut surtout faire attention quand on teste la partie haute tension
+Michel.

+ +
+
+ +
+ +
+
+
+
+

+ Crec + · 14 juillet 2017 à 10 h 20 min +

+

Bonjour. Très bons conseils avertis. Merci beaucoup.
+Peut-on avoir les mêmes conseils pour un écran BX2250.
+Merci par avance.
+Crec

+ +
+
+
    +
    + +
    +
    +
    +
    +

    + HugoPoi + · 6 août 2017 à 14 h 03 min +

    +

    J’ai pas de BX2250 donc dans le détails non mais si c’est les même symptômes ça doit la même procédure.

    + +
    +
    + +
+ +
+ +
+
+
+
+

+ Ferronnier + · 10 août 2017 à 17 h 42 min +

+

Un grand merci !
+J’ai changé tous les condensateurs de la partie alimentation de la carte, en déportant certains qui n’avaient pas le même format qu’à l’origine, et ça tourne nickel !

+ +
+
+ +
+ +
+
+
+
+

+ Nours + · 1 décembre 2017 à 15 h 17 min +

+

Ca fait des années que j’ai cet article enregistré dans un coin, en nourrissant l’espoir d’avoir un jour le courage de réparer ce foutu écran… Après plus de cinq ans c’est chose faite \o/
+Un giga, hypra, immense merci pour ce tutoriel tellement bien expliqué et facile d’accès (je n’avais pas touché à un fer à souder depuis… Oh boy 15 ans déjà).
+Après une longue pause, l’écran reprend du service… Jusqu’à la prochaine panne /o/

+ +
+
+ +
+ +
+
+
+
+

+ Alex + · 11 août 2018 à 13 h 28 min +

+

Quelqu’un sait qui pourrait me le faire svp j ai le même problème mais aucun matériel

+ +
+
+ +
+ +
+
+
+
+

+ David + · 5 février 2019 à 21 h 06 min +

+

Merci Hugo pour ce tuto qui m’a déjà servi en 2013 et qui va me resservir aujourd’hui car mon 2ème 2232bw commence à avoir les mêmes symptômes.

+ +
+
+ +
+ +
+
+
+
+

+ yvan + · 23 novembre 2019 à 17 h 14 min +

+

Bonjour
+j’ai tenté de changer le condensateur qui avait l’air naze mais ça n’a pas marché … toujours le bouton bleu allumé, l’écran est reconnu par Windows 10 même si l’écran est éteint
+grâce au service manuel de l’écran fourni plus haut, j’ai vérifié les tensions jusque sur la carte de la dalle et elles sont correctes, ainsi que sur la carte elle-même, tout est ok, donc je pense que ce n’est plus un problème de condensateur
+pour les fusibles, ils ressemblent plutôt à des composants qu’à de simple fusibles, mais comme j’ai les bonnes tension, je ne pense pas que ça vienne de là
+j’ai bien peur que ce soit la dalle qui soit naze ? quelqu’un a t il des idées supplémentaires avant que je le jette avec grand regret (c’est un 2032bw, mais c’est la même chose, même si ma carte électronique est un peu différente car plus récente
+merci d’avance pour vos conseils

+ +
+
+ +
+ +
+
+
+
+

+ yvan + · 24 novembre 2019 à 17 h 26 min +

+

finalement j’ai trouvé, c’est un petit fusible vert qui ressemble à une résistance mais tout vert avec écrit 4A LF qui assure l’alimentation de la dalle.
+En le shuntant, mon écran a retrouvé l’image.
+après enquête il s’agit d’un fusible pico de 4ampères de chez little fuse, pas du tout évident à trouver
+Résolu !

+ +
+
+ +
+
+

+ Reflow Dell 1546 | HugoPoi + · 22 août 2016 à 16 h 09 min +

+

[…] « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable de marque Dell un 1546 pour être précis. Encore […]

+ +
+
+ +
+
+

+ Reflow Dell Inspiron 1546 – HugoPoi + · 23 juin 2017 à 23 h 18 min +

+

[…] d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un […]

+ +
+
+ +
+
+
+

Répondre à roger Annuler la réponse

Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

+
+
+

+ +

+
+
+
+
+
+
+ +
+
+
+
+
+
+ + +
+ + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/0edb3b7bcc100818bc592fe19cb404616a2cd67e.00000231.html b/www/.content.EZtzwPjb/html/0edb3b7bcc100818bc592fe19cb404616a2cd67e.00000231.html new file mode 100644 index 0000000..f4aeea9 --- /dev/null +++ b/www/.content.EZtzwPjb/html/0edb3b7bcc100818bc592fe19cb404616a2cd67e.00000231.html @@ -0,0 +1,333 @@ + + + + + + + Screenshot_LinuxMint19-LXDE-x64-clone-secureboot-test_2018-11-18_19:06:26 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+
+
+
+
+ + + +

+
+
+
+
+

+ 0 commentaire

+
+
+
+

Laisser un commentaire

Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

+
+
+

+ +

+
+
+
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/0ede8d472a2221c179e98fd3d163425579f01dd6.00000636.css b/www/.content.EZtzwPjb/html/0ede8d472a2221c179e98fd3d163425579f01dd6.00000636.css new file mode 100644 index 0000000..8043bbf --- /dev/null +++ b/www/.content.EZtzwPjb/html/0ede8d472a2221c179e98fd3d163425579f01dd6.00000636.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;background:#fff;border:1px +solid #f00;font-size:10pt;width:280px;padding:2px}span.wpcf7-not-valid-tip-no-ajax{color:#f00;font-size:10pt;display:block}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/0ef56e53a9d65a4f3d5cc60585ca682b20eca785.00000290.html b/www/.content.EZtzwPjb/html/0ef56e53a9d65a4f3d5cc60585ca682b20eca785.00000290.html new file mode 100644 index 0000000..020b01c --- /dev/null +++ b/www/.content.EZtzwPjb/html/0ef56e53a9d65a4f3d5cc60585ca682b20eca785.00000290.html @@ -0,0 +1,364 @@ + + + + + + + IP v6 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+ +
+
+
+
+
+

IPv6 – Intro

Etant donné la proche pénurie d’adresse IP v4, plus que 5% seraient disponible sur le réseau public qu’est Internet, je vais faire un dossier qui parlera d’IP v6. Dans ce dossier, je vais vous faire des tutoriels, des RFC et des découvertes. (suite…)

+
+
+ +
+
+
+
+ +
+
+ + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/0f0563ec0ccbda1e41b9b392518521d7a9c313a8.00000629.css b/www/.content.EZtzwPjb/html/0f0563ec0ccbda1e41b9b392518521d7a9c313a8.00000629.css new file mode 100644 index 0000000..8043bbf --- /dev/null +++ b/www/.content.EZtzwPjb/html/0f0563ec0ccbda1e41b9b392518521d7a9c313a8.00000629.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;background:#fff;border:1px +solid #f00;font-size:10pt;width:280px;padding:2px}span.wpcf7-not-valid-tip-no-ajax{color:#f00;font-size:10pt;display:block}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/0f37947e4c28d81e6c410e8afa481db0168e9b15.00000128.html b/www/.content.EZtzwPjb/html/0f37947e4c28d81e6c410e8afa481db0168e9b15.00000128.html new file mode 100644 index 0000000..630b7cd --- /dev/null +++ b/www/.content.EZtzwPjb/html/0f37947e4c28d81e6c410e8afa481db0168e9b15.00000128.html @@ -0,0 +1,1370 @@ + + + + + + + + Réparations Samsung SyncMaster 2232BW – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+ +
+
+
+
+
+
+

Allô docteur on a un problème,

+

En ce dimanche calme avant la fin de mes partiels, mon écran Samsung SyncMaster 2232BW commençait à faire des siennes. Celui-ci depuis un mois ou deux clignotait de façon systématique au démarrage, au début pendant seulement quelques secondes, puis au fur et à mesure, de plus en plus jusqu’à devoir attendre 10 minutes pour que je puisse l’utiliser. Après 3 ans et 4 mois de bons et loyaux services, il voulait me quitter. J’ai tenté le support Samsung par email avec peu d’espoir car l’écran a dépassé sa garantie de 4 mois (oui oui les bâtards -> obsolescence programmée). Et donc j’ai eu le droit à un joli mail automatique me disant de contacter un numéro non surtaxé (mais avec combien de temps d’attente ?), ce que je n’ai pas fait car je n’avais pas envie de passer 30min au téléphone pour au final avoir un « On est désolé mais on ne peut rien faire pour vous car la garantie est dépassée, mais on peut envoyer votre écran en SAV pour faire un devis pour seulement 50 boules ». Concernant le support email de Samsung France, je leur donne une note de 0/20 puisque ce n’est pas un support mais une redirection vers le téléphone.

+

+

Symptômes

+

Clignotements de l’écran et de la LED power systématiques à chaque démarrage de l’écran. Je me suis tout de suite douté d’un problème d’alimentation et après quelques recherches sur google, confirmation du problème sur beaucoup d’écrans et téléviseurs. Dans 99% des cas ce clignotement est dû à des condensateurs défectueux qu’il faut simplement changer :-D

+

Démontage

+

Donc après avoir cerné le problème, j’ai ouvert l’écran pour chercher les condos défectueux. J’ai trouvé une petite vidéo pour mon écran :

+

+

Voici quelques photos en plus pour vous aider :

+

Les outils que j’ai utilisé pour le démontage

+

Position des clips

+

Carte d’alimentation dans son emplacement

+

Et voici les condensateurs qui posent problèmes. Comme vous pouvez le voir sur la photo, ils sont très facilement identifiable car ils sont bombés sur le dessus.

+

Condensateurs défectueux

+

Vous devez donc acheter des condensateurs de remplacement, par exemple sur Conrad.

+

Mes condensateurs suivant étaient endommagés:

+
    +
  • 1 de 330uF 25V remplacé par un 470uF 25V
  • +
  • 3 de 820uF 25V remplacé par des 1000uF 50V
  • +
+

Pour la réparation, il vous faut un fer à souder avec une panne pas trop grosse mais d’une grosse puissance car les soudures sont très solides (j’ai galéré avec un fer pro qui monte jusqu’à 400°).

+

Tout remarche nickel après remontage, plus de clignotement pour seulement quelques euros.

+

edit du 19 aout 2014 : j’ai trouvé le service manuel de l’écran si besoin samsung_2232bw_chassis_lpe22bs_sm

+ + +
+
+ +
+
+
+
+
+

+ 41 commentaires

+
+ +
+
+
+
+

+ c'est_moi + · 30 janvier 2012 à 18 h 57 min +

+

Mille mercis et mille félicitations pour cette fiche technique si pédagogue.

+

J’espère que le partiels se passent plus que parfait !!

+

J’ai gardé l’url de la page pour réparer mon écran dans un petit mois : j’espère que la page soit toujours là ;-)

+

Merci encore.

+ +
+
+ +
+ +
+
+
+
+

+ Maxime + · 5 mai 2012 à 12 h 31 min +

+

Bonjour HugoPoi!

+

Merci pour toutes vos infos et votre topic, je voulais avoir quelques précisions sur les condos à changer pour samsung 2232bw, je veux passer commande mais j’ai un problème avec les dimensions des condos, si vous pouvez m’informer de ce que je pourrais acheter car il y a trop de références. En vous remerciant A+ Maxime

+ +
+
+
    +
    + +
    +
    +
    +
    +

    + HugoPoi + · 14 juin 2012 à 22 h 56 min +

    +

    N’importe quel condensateur polarisé avec des caractéristiques proches devrait marché.

    + +
    +
    + +
+ +
+ +
+
+
+
+

+ gaubjezj + · 14 juin 2012 à 22 h 32 min +

+

Merci pour le tuto qui m’a bien aidé.
+J’ai utilisé un fer de 40 W avec une panne fine et
+une pompe à dessouder et j’ai retiré les condensateurs sans problème.
+Merci encore (3€40 pour le dépannage).

+ +
+
+ +
+ +
+
+
+
+

+ DragonTribal + · 2 juillet 2012 à 12 h 02 min +

+

super merci pour manifique tuto.
+Est-il possible de changer les 5 condensateurs 820uF 25V par des 1000uF 50V? car moi mes 5 condensateurs sont presque HS ;-)

+

Cordialement

+ +
+
+
    +
    + +
    +
    +
    +
    +

    + HugoPoi + · 2 juillet 2012 à 12 h 25 min +

    +

    Oui je penses que ça marchera étant donné que c’est des valeurs plus grandes.

    + +
    +
    + +
+ +
+ +
+
+
+
+

+ FRED + · 11 juillet 2012 à 19 h 11 min +

+

Bravo, MERCI.
+Je n’ai encore rien fait…mais j’ai le même problème, et tu me donnes la solution.
+Super.

+ +
+
+ +
+ +
+
+
+
+

+ daninpet + · 31 août 2012 à 10 h 10 min +

+

Merci mille fois!

+

J’avais ce problème, et j’ai emmener la photo des trucs a remplacer chez le réparateur du coin et voila!! Ça m’a coûté 7 Euros (mais j’habite en Thaïlande)

+ +
+
+ +
+ +
+
+
+
+

+ moi + · 15 novembre 2012 à 15 h 25 min +

+

super mon 2232bw vient de lâcher, les 3 + 1 condos sont gonflés j ai trouvé un 330 en 35v qui traîné sur un écran mort et j’ai commander 5 1000uf 35v sur ebay pour moins de 3 dollars, ca devrait le faire j’espere j’attend d’être livré merci! par contre j’ai qu’un gros pistolet a soudure et un gros fil d’étain, c’est pas évident mais bon ca le fait quand même =)

+ +
+
+
    +
    + +
    +
    +
    +
    +

    + moi + · 7 décembre 2012 à 9 h 33 min +

    +

    parfait je vient de recevoir les condos; j ai meuler la panne du fer a souder pour la tailler en mine de crayon et j ai reussi a les souder facilement ils étaient un peu plus gros mais ca passe tout juste, mais attention ne pas prendre des plus gros! l écran fonctionne nickel maintenant.

    + +
    +
    + +
+ +
+ +
+
+
+
+

+ Croco + · 19 janvier 2013 à 18 h 39 min +

+

Je souhaiterai savoir si tu as utilisé un fer à souder bien précis étant donné que la carte est une multi couche.
+Merci

+ +
+
+ + +
+ +
+
+
+
+

+ momo + · 10 juin 2013 à 13 h 15 min +

+

slut je voudrai savoir ou trouvé les condansateur a changer sur mon ecran qui clignote

+ +
+
+ + +
+ +
+
+
+
+

+ lokmane + · 5 juillet 2013 à 16 h 08 min +

+

merci j’avais un ecran rouge ! et c’etais la tresse qui relie mon ecran votre page m’a aider a l’ouvrir et a le reparer merci bien

+ +
+
+ +
+ +
+
+
+
+

+ ML + · 21 août 2013 à 19 h 11 min +

+

Merci ! Ecran réparé. Halte à l’obsolescence programmée.

+ +
+
+ +
+ +
+
+
+
+

+ raymond + · 31 octobre 2013 à 13 h 20 min +

+

ai vu votre vidéo et les explications pour la reparation de mon écran , apparemment le méme probléme l écran passe au noir apres quelque seconde , j ai vu un le condensateur en bas a gauche gonflé , je l ai fait changé (10€) les autre condensateur étant toujour bon d après la personne qui me l a changé , mais j ai toujour le méme probléme cela peut il venir de la carte video a gauche ?

+ +
+
+
    +
    + +
    +
    +
    +
    +

    + HugoPoi + · 20 décembre 2013 à 12 h 27 min +

    +

    Si la led bleu du bouton power s’éteint aussi c’est un problème d’alimentation sinon c’est plus compliqué et ça peut provenir de condensateurs sur la partie vidéo. Changé tous les plus gros condensateurs sur la partie alimentation pourrait être un bon début même si ils ne paraissent pas endommagé.

    + +
    +
    + +
+ +
+ +
+
+
+
+

+ damien + · 4 novembre 2013 à 0 h 29 min +

+

bonjour,

+

j’ai des crasses coincées entres l’écran et le truc juste derrière, est ce qu’on sais les enlever en démontant la dalle ?

+ +
+
+
    +
    + +
    +
    +
    +
    +

    + HugoPoi + · 20 décembre 2013 à 12 h 28 min +

    +

    Je ne sais si cette partie de la dalle est démontable, je penses que c’est collé mais vous pouvez essayer.

    + +
    +
    + +
+ +
+ +
+
+
+
+

+ mac + · 1 décembre 2013 à 17 h 30 min +

+

Merci HugoPoi, avec ces excellents conseils et tuto vidéo, mon écran est reparti pour une nouvelle vie.
+Pour les composants, si vous êtes sur Paris ou proche. La boutique RAM électroniques est une bonne adresse, 138 bd Diderot 75012 Paris (Place de la Nation).

+ +
+
+ +
+ +
+
+
+
+

+ Bouddhid + · 16 janvier 2014 à 19 h 21 min +

+

Merci beaucoup pour ces conseils ! J’étais à 2 doigts de jeter mon écran, le voilà comme neuf pour moins de 5€ ! Vive la bricole !

+ +
+
+ +
+ +
+
+
+
+

+ Vincent + · 17 mai 2014 à 16 h 45 min +

+

Alors là merci.

+

Pour ce post, les photos, la vidéo, tout y est.

+

J’ai démonté l’écran assez vite, enlevé la carte, regarder quel condensateurs étaient gonflés,(il y en avaient 4), un magasin d’électronique sur lyon et une heure de démontage, soudure, remontage plus tard, voilà, c’est tout beau.
+Ca ne clignote plus, ça s’allume comme avant, comme neuf.

+

Et dire que j’allais jeter cet écran et claquer 350 euros pour un neuf…

+

Coût de l’opération pour 4 condensateurs, du fil d’étain 7 euros.

+

Je précise que je n’avais jamais fais de soudure sur composant électronique auparavant.
+Comme quoi cette opération de réparation est à la portée de tous.

+ +
+
+ +
+ +
+
+
+
+

+ Julot + · 6 juillet 2014 à 13 h 49 min +

+

Site vraiment détaillé et très claire. J’ai pu dépanner mon écran avec succès. Merci beaucoup pour ces précieuses explications.

+ +
+
+ +
+ +
+
+
+
+

+ PaniK31 + · 29 juillet 2014 à 9 h 21 min +

+

Pas besoin d’une grosse puissance pour le fer, il faut au préalable gratter le vernis sur l’étain afin de pouvoir le faire fondre plus facilement

+ +
+
+ +
+ +
+
+
+
+

+ R211_IP-45130B + · 20 août 2014 à 14 h 04 min +

+

Bonjour à tous,

+

Une âme charitable peut-elle me communiquer ce qui est gravé sur la résistance CMS R211 de la carte d’alimentation/inverter IP-45130B qui équipe le SAMSUNG 2232BW ? Cette résistance a pris un coup de tournevis et je n’arrive pas à déterminer sa valeur de résistance car son marquage est effacé et comme le composant est abimé la mesure à l’ohmmètre indique l’infinie.

+

Merci par avance.

+ +
+
+ +
+ +
+
+
+
+

+ roger + · 24 octobre 2014 à 17 h 21 min +

+

Ca refonctionne après échange de 4 condensateurs :
+-un 330uf25v remplacé à l’identique.
+-trois 820uf25v remplacés par 1000uf25v.
+Le tout pour quelques €. Le plus dur était le dessoudage, la tresse n’était pas très efficace contrairement à la pompe.
+Grand merci à HugoPoi.

+ +
+
+ +
+ +
+
+
+
+

+ Max + · 26 février 2015 à 16 h 28 min +

+

ENORME MERCI!! J’ai réparé mon écran en 20mn pour 3,50€, il était à 2 doigts de partir à la déchetterie. Ca faisait des mois qu’il clignotait, et l’allumage mettait parfois plus d’une demi heure. J’ai changé 5 condos 820uf25v et 1 330uf25v, par exactement les mêmes en neuf, et là il démarre au quart de tour! Ca fait plaisir! :)

+ +
+
+
    +
    + +
    +
    +
    +
    +

    + rocco michelle + · 7 octobre 2015 à 10 h 16 min +

    +

    Bonjour je ne sais si vous verrez mon message mais je tente…je cherche quelqu’un qui accepterait de changer mes condensateurs sur mon samsung, les réparateurs me demandent 70 à 80 euros et encore ils n’ont pss envie de le faire et me disent d’acheter un nouvel écran. j’aurais bien tenter mais je n’ai pas de matériel et j’ai lu que les condo pouvaient être très dangereux s’ils avaient de la charge alors j’ai la trouille de bidouiller pq je n’y connais rien. si vous êtes de lyon acccepteriez vous de changer mes condensateurs pour 45 euros? merci de votre réponse.

    + +
    +
    + +
+ +
+ +
+
+
+
+

+ lecakeseb + · 27 juillet 2015 à 15 h 26 min +

+

Bonjour,

+

J’ai utilisé la vidéo pour démonter mon écran afin de le nettoyer de 4 bêtes d’orage infiltrés entre le premier écran (noir) et la dalle (blanche) de mon samsung SyncMaster 2232W

+

Petits conseils afin de modérer ce que j’ai pu voir dans cette vidéo :

+

0 : aspirez, nettoyez l’extérieur de l’écran avant de l’ouvrir et nettoyez la table qui vous servira d’atelier, pour éviter les poussières qui s’infiltreront forcément plus tard si vous ne le faites pas…
+1 : pour ouvrir, utilisez plutôt un couteau à enduire pour la première partie (le cadre). Vous n’abîmerez ainsi pas du tout l’écran. Soyez patients, ne forcez pas ! ça viendra doucement, mais ça viendra. Il m’a fallu à peine 10 minutes, sans détériorer l’écran, sans le griffer… Il est encore nickel !
+2 : attention à ne pas déconnecter les fils reliant le cadre à la carte. Inutile pour simplement nettoyer l’écran.
+3 : pour séparer les deux éléments de la dalle entre lesquels les bêtes se sont infiltrées, les doigts suffisent, pas besoin d’outils qui viendraient les endommager. La dalle blanche reste à l’horizontale, l’écran noir sera tenu à la verticale.
+4 : utiliser un chiffon doux ne peluchant pas pour enlever les bêtes (faites-vous aider de quelqu’un qui les enlèvera pendant que vous tenez l’écran extérieur en position verticale).
+5 : repositionnez la colle d’étanchéité qui aurait pu se déplacer, avant de repositionner les deux écrans.
+6 : commencer par refermer par le bas de l’écran (sinon les éléments de réglage situés au bas de l’écran – luminosité, contraste,…- ne se replaceront pas correctement).
+7 : Une fois l’écran refermé, j’ai appliqué un peu de « barrage aux insectes », avec un chiffon à l’arrière de mon écran en insistant surtout sur les bouches d’aération par lesquelles les maudites bestioles ont du s’infiltrer. En espérant ne pas avoir à ouvrir !

+

Bon courage à vous !

+ +
+
+ +
+ +
+
+
+
+

+ Michel Jousserandot + · 20 janvier 2017 à 20 h 41 min +

+

Merci pour les conseils au démontage.
+J’avais un problème un peu différent :l’écran ne s’allumait plus du tout. Avec un copain beaucoup plus malin que moi, on a détecté 2 fusibles dont l’un était fichu. On l’a remplacé par un petit fil de cuivre. Et tout a remarché comme avant.
+Il faut surtout faire attention quand on teste la partie haute tension
+Michel.

+ +
+
+ +
+ +
+
+
+
+

+ Crec + · 14 juillet 2017 à 10 h 20 min +

+

Bonjour. Très bons conseils avertis. Merci beaucoup.
+Peut-on avoir les mêmes conseils pour un écran BX2250.
+Merci par avance.
+Crec

+ +
+
+
    +
    + +
    +
    +
    +
    +

    + HugoPoi + · 6 août 2017 à 14 h 03 min +

    +

    J’ai pas de BX2250 donc dans le détails non mais si c’est les même symptômes ça doit la même procédure.

    + +
    +
    + +
+ +
+ +
+
+
+
+

+ Ferronnier + · 10 août 2017 à 17 h 42 min +

+

Un grand merci !
+J’ai changé tous les condensateurs de la partie alimentation de la carte, en déportant certains qui n’avaient pas le même format qu’à l’origine, et ça tourne nickel !

+ +
+
+ +
+ +
+
+
+
+

+ Nours + · 1 décembre 2017 à 15 h 17 min +

+

Ca fait des années que j’ai cet article enregistré dans un coin, en nourrissant l’espoir d’avoir un jour le courage de réparer ce foutu écran… Après plus de cinq ans c’est chose faite \o/
+Un giga, hypra, immense merci pour ce tutoriel tellement bien expliqué et facile d’accès (je n’avais pas touché à un fer à souder depuis… Oh boy 15 ans déjà).
+Après une longue pause, l’écran reprend du service… Jusqu’à la prochaine panne /o/

+ +
+
+ +
+ +
+
+
+
+

+ Alex + · 11 août 2018 à 13 h 28 min +

+

Quelqu’un sait qui pourrait me le faire svp j ai le même problème mais aucun matériel

+ +
+
+ +
+ +
+
+
+
+

+ David + · 5 février 2019 à 21 h 06 min +

+

Merci Hugo pour ce tuto qui m’a déjà servi en 2013 et qui va me resservir aujourd’hui car mon 2ème 2232bw commence à avoir les mêmes symptômes.

+ +
+
+ +
+ +
+
+
+
+

+ yvan + · 23 novembre 2019 à 17 h 14 min +

+

Bonjour
+j’ai tenté de changer le condensateur qui avait l’air naze mais ça n’a pas marché … toujours le bouton bleu allumé, l’écran est reconnu par Windows 10 même si l’écran est éteint
+grâce au service manuel de l’écran fourni plus haut, j’ai vérifié les tensions jusque sur la carte de la dalle et elles sont correctes, ainsi que sur la carte elle-même, tout est ok, donc je pense que ce n’est plus un problème de condensateur
+pour les fusibles, ils ressemblent plutôt à des composants qu’à de simple fusibles, mais comme j’ai les bonnes tension, je ne pense pas que ça vienne de là
+j’ai bien peur que ce soit la dalle qui soit naze ? quelqu’un a t il des idées supplémentaires avant que je le jette avec grand regret (c’est un 2032bw, mais c’est la même chose, même si ma carte électronique est un peu différente car plus récente
+merci d’avance pour vos conseils

+ +
+
+ +
+ +
+
+
+
+

+ yvan + · 24 novembre 2019 à 17 h 26 min +

+

finalement j’ai trouvé, c’est un petit fusible vert qui ressemble à une résistance mais tout vert avec écrit 4A LF qui assure l’alimentation de la dalle.
+En le shuntant, mon écran a retrouvé l’image.
+après enquête il s’agit d’un fusible pico de 4ampères de chez little fuse, pas du tout évident à trouver
+Résolu !

+ +
+
+ +
+
+

+ Reflow Dell 1546 | HugoPoi + · 22 août 2016 à 16 h 09 min +

+

[…] « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable de marque Dell un 1546 pour être précis. Encore […]

+ +
+
+ +
+
+

+ Reflow Dell Inspiron 1546 – HugoPoi + · 23 juin 2017 à 23 h 18 min +

+

[…] d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un […]

+ +
+
+ +
+
+
+

Répondre à Crec Annuler la réponse

Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

+
+
+

+ +

+
+
+
+
+
+
+ +
+
+
+
+
+
+ + +
+ + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/0f9d7b040b1ca13d28ab5184607683e4e273dd84.00001226.js b/www/.content.EZtzwPjb/html/0f9d7b040b1ca13d28ab5184607683e4e273dd84.00001226.js new file mode 100644 index 0000000..ac28859 --- /dev/null +++ b/www/.content.EZtzwPjb/html/0f9d7b040b1ca13d28ab5184607683e4e273dd84.00001226.js @@ -0,0 +1,12 @@ +/*! + * MediaElement.js + * http://www.mediaelementjs.com/ + * + * Wrapper that mimics native HTML5 MediaElement (audio and video) + * using a variety of technologies (pure JavaScript, Flash, iframe) + * + * Copyright 2010-2017, John Dyer (http://j.hn/) + * License: MIT + * + */ +!function r(a,s,l){function d(n,e){if(!s[n]){if(!a[n]){var t="function"==typeof require&&require;if(!e&&t)return t(n,!0);if(u)return u(n,!0);var o=new Error("Cannot find module '"+n+"'");throw o.code="MODULE_NOT_FOUND",o}var i=s[n]={exports:{}};a[n][0].call(i.exports,function(e){var t=a[n][1][e];return d(t||e)},i,i.exports,r,a,s,l)}return s[n].exports}for(var u="function"==typeof require&&require,e=0;e',o.addControlElement(t,"fullscreen"),t.addEventListener("click",function(){m.HAS_TRUE_NATIVE_FULLSCREEN&&m.IS_FULLSCREEN||n.isFullScreen?n.exitFullScreen():n.enterFullScreen()}),n.fullscreenBtn=t,o.options.keyActions.push({keys:[70],action:function(e,t,n,o){o.ctrlKey||void 0!==e.enterFullScreen&&(e.isFullScreen?e.exitFullScreen():e.enterFullScreen())}}),o.exitFullscreenCallback=function(e){var t=e.which||e.keyCode||0;o.options.enableKeyboard&&27===t&&(m.HAS_TRUE_NATIVE_FULLSCREEN&&m.IS_FULLSCREEN||o.isFullScreen)&&n.exitFullScreen()},o.globalBind("keydown",o.exitFullscreenCallback),o.normalHeight=0,o.normalWidth=0,m.HAS_TRUE_NATIVE_FULLSCREEN){n.globalBind(m.FULLSCREEN_EVENT_NAME,function(){n.isFullScreen&&(m.isFullScreen()?(n.isNativeFullScreen=!0,n.setControlsSize()):(n.isNativeFullScreen=!1,n.exitFullScreen()))})}}},cleanfullscreen:function(e){e.exitFullScreen(),e.globalUnbind("keydown",e.exitFullscreenCallback)},detectFullscreenMode:function(){var e=null!==this.media.rendererName&&/(native|html5)/i.test(this.media.rendererName),t="";return m.HAS_TRUE_NATIVE_FULLSCREEN&&e?t="native-native":m.HAS_TRUE_NATIVE_FULLSCREEN&&!e?t="plugin-native":this.usePluginFullScreen&&m.SUPPORT_POINTER_EVENTS&&(t="plugin-click"),this.fullscreenMode=t},enterFullScreen:function(){var o=this,e=null!==o.media.rendererName&&/(html5|native)/i.test(o.media.rendererName),t=getComputedStyle(o.getElement(o.container));if(o.isVideo)if(!1===o.options.useFakeFullscreen&&m.IS_IOS&&m.HAS_IOS_FULLSCREEN&&"function"==typeof o.media.originalNode.webkitEnterFullscreen&&o.media.originalNode.canPlayType((0,g.getTypeFromFile)(o.media.getSrc())))o.media.originalNode.webkitEnterFullscreen();else{if((0,v.addClass)(p.default.documentElement,o.options.classPrefix+"fullscreen"),(0,v.addClass)(o.getElement(o.container),o.options.classPrefix+"container-fullscreen"),o.normalHeight=parseFloat(t.height),o.normalWidth=parseFloat(t.width),"native-native"!==o.fullscreenMode&&"plugin-native"!==o.fullscreenMode||(m.requestFullScreen(o.getElement(o.container)),o.isInIframe&&setTimeout(function e(){if(o.isNativeFullScreen){var t=f.default.innerWidth||p.default.documentElement.clientWidth||p.default.body.clientWidth,n=screen.width;.002*n',l.addEventListener("click",function(){i.paused?i.play():i.pause()});var d=l.querySelector("button");function u(e){"play"===e?((0,m.removeClass)(l,i.options.classPrefix+"play"),(0,m.removeClass)(l,i.options.classPrefix+"replay"),(0,m.addClass)(l,i.options.classPrefix+"pause"),d.setAttribute("title",s),d.setAttribute("aria-label",s)):((0,m.removeClass)(l,i.options.classPrefix+"pause"),(0,m.removeClass)(l,i.options.classPrefix+"replay"),(0,m.addClass)(l,i.options.classPrefix+"play"),d.setAttribute("title",a),d.setAttribute("aria-label",a))}i.addControlElement(l,"playpause"),u("pse"),o.addEventListener("loadedmetadata",function(){-1===o.rendererName.indexOf("flash")&&u("pse")}),o.addEventListener("play",function(){u("play")}),o.addEventListener("playing",function(){u("play")}),o.addEventListener("pause",function(){u("pse")}),o.addEventListener("ended",function(){e.options.loop||((0,m.removeClass)(l,i.options.classPrefix+"pause"),(0,m.removeClass)(l,i.options.classPrefix+"play"),(0,m.addClass)(l,i.options.classPrefix+"replay"),d.setAttribute("title",a),d.setAttribute("aria-label",a))})}})},{16:16,2:2,26:26,27:27,5:5}],11:[function(e,t,n){"use strict";var p=r(e(2)),o=e(16),i=r(o),m=r(e(5)),y=e(25),E=e(30),b=e(26);function r(e){return e&&e.__esModule?e:{default:e}}Object.assign(o.config,{enableProgressTooltip:!0,useSmoothHover:!0,forceLive:!1}),Object.assign(i.default.prototype,{buildprogress:function(h,s,e,d){var u=0,v=!1,c=!1,g=this,t=h.options.autoRewind,n=h.options.enableProgressTooltip?'00:00':"",o=p.default.createElement("div");o.className=g.options.classPrefix+"time-rail",o.innerHTML=''+n+"",g.addControlElement(o,"progress"),g.options.keyActions.push({keys:[37,227],action:function(e){if(!isNaN(e.duration)&&0o+n.left&&(d=o+n.left),a=(l=d-n.left)/o,g.newTime=a*g.getDuration(),v&&null!==g.getCurrentTime()&&g.newTime.toFixed(4)!==g.getCurrentTime().toFixed(4)&&(g.setCurrentRailHandle(g.newTime),g.updateCurrent(g.newTime)),!y.IS_IOS&&!y.IS_ANDROID){if(l<0&&(l=0),g.options.useSmoothHover&&null!==r&&void 0!==window[r]){var u=new window[r](getComputedStyle(g.handle)[i]).m41,c=l/parseFloat(getComputedStyle(g.total).width)-u/parseFloat(getComputedStyle(g.total).width);g.hovered.style.left=u+"px",g.setTransformStyle(g.hovered,"scaleX("+c+")"),g.hovered.setAttribute("pos",l),0<=c?(0,b.removeClass)(g.hovered,"negative"):(0,b.addClass)(g.hovered,"negative")}if(g.timefloat){var f=g.timefloat.offsetWidth/2,p=mejs.Utils.offset(g.getElement(g.container)),m=getComputedStyle(g.timefloat);s=d-p.left=g.getElement(g.container).offsetWidth-f?g.total.offsetWidth-f:l,(0,b.hasClass)(g.getElement(g.container),g.options.classPrefix+"long-video")&&(s+=parseFloat(m.marginLeft)/2+g.timefloat.offsetWidth/2),g.timefloat.style.left=s+"px",g.timefloatcurrent.innerHTML=(0,E.secondsToTimeCode)(g.newTime,h.options.alwaysShowHours,h.options.showTimecodeFrameCount,h.options.framesPerSecond,h.options.secondsDecimalLength,h.options.timeFormat),g.timefloat.style.display="block"}}}else y.IS_IOS||y.IS_ANDROID||!g.timefloat||(s=g.timefloat.offsetWidth+o>=g.getElement(g.container).offsetWidth?g.timefloat.offsetWidth/2:0,g.timefloat.style.left=s+"px",g.timefloat.style.left=s+"px",g.timefloat.style.display="block")},f=function(){1e3<=new Date-u&&g.play()};g.slider.addEventListener("focus",function(){h.options.autoRewind=!1}),g.slider.addEventListener("blur",function(){h.options.autoRewind=t}),g.slider.addEventListener("keydown",function(e){if(1e3<=new Date-u&&(c=g.paused),g.options.enableKeyboard&&g.options.keyActions.length){var t=e.which||e.keyCode||0,n=g.getDuration(),o=h.options.defaultSeekForwardInterval(d),i=h.options.defaultSeekBackwardInterval(d),r=g.getCurrentTime(),a=g.getElement(g.container).querySelector("."+g.options.classPrefix+"volume-slider");if(38===t||40===t){a&&(a.style.display="block"),g.isVideo&&(g.showControls(),g.startControlsTimer());var s=38===t?Math.min(g.volume+.1,1):Math.max(g.volume-.1,0),l=s<=0;return g.setVolume(s),void g.setMuted(l)}switch(a&&(a.style.display="none"),t){case 37:g.getDuration()!==1/0&&(r-=i);break;case 39:g.getDuration()!==1/0&&(r+=o);break;case 36:r=0;break;case 35:r=n;break;case 13:case 32:return void(y.IS_FIREFOX&&(g.paused?g.play():g.pause()));default:return}r=r<0||isNaN(r)?0:n<=r?n:Math.floor(r),u=new Date,c||h.pause(),setTimeout(function(){g.setCurrentTime(r)},0),r | "}),Object.assign(i.default.prototype,{buildcurrent:function(e,t,n,o){var i=this,r=a.default.createElement("div");r.className=i.options.classPrefix+"time",r.setAttribute("role","timer"),r.setAttribute("aria-live","off"),r.innerHTML=''+(0,s.secondsToTimeCode)(0,e.options.alwaysShowHours,e.options.showTimecodeFrameCount,e.options.framesPerSecond,e.options.secondsDecimalLength,e.options.timeFormat)+"",i.addControlElement(r,"current"),e.updateCurrent(),i.updateTimeCallback=function(){i.controlsAreVisible&&e.updateCurrent()},o.addEventListener("timeupdate",i.updateTimeCallback)},cleancurrent:function(e,t,n,o){o.removeEventListener("timeupdate",e.updateTimeCallback)},buildduration:function(e,t,n,o){var i=this;if(t.lastChild.querySelector("."+i.options.classPrefix+"currenttime"))t.querySelector("."+i.options.classPrefix+"time").innerHTML+=i.options.timeAndDurationSeparator+''+(0,s.secondsToTimeCode)(i.options.duration,i.options.alwaysShowHours,i.options.showTimecodeFrameCount,i.options.framesPerSecond,i.options.secondsDecimalLength,i.options.timeFormat)+"";else{t.querySelector("."+i.options.classPrefix+"currenttime")&&(0,l.addClass)(t.querySelector("."+i.options.classPrefix+"currenttime").parentNode,i.options.classPrefix+"currenttime-container");var r=a.default.createElement("div");r.className=i.options.classPrefix+"time "+i.options.classPrefix+"duration-container",r.innerHTML=''+(0,s.secondsToTimeCode)(i.options.duration,i.options.alwaysShowHours,i.options.showTimecodeFrameCount,i.options.framesPerSecond,i.options.secondsDecimalLength,i.options.timeFormat)+"",i.addControlElement(r,"duration")}i.updateDurationCallback=function(){i.controlsAreVisible&&e.updateDuration()},o.addEventListener("timeupdate",i.updateDurationCallback)},cleanduration:function(e,t,n,o){o.removeEventListener("timeupdate",e.updateDurationCallback)},updateCurrent:function(){var e=this,t=e.getCurrentTime();isNaN(t)&&(t=0);var n=(0,s.secondsToTimeCode)(t,e.options.alwaysShowHours,e.options.showTimecodeFrameCount,e.options.framesPerSecond,e.options.secondsDecimalLength,e.options.timeFormat);5',o.captions.style.display="none",t.insertBefore(o.captions,t.firstChild),o.captionsText=o.captions.querySelector("."+i.options.classPrefix+"captions-text"),o.captionsButton=L.default.createElement("div"),o.captionsButton.className=i.options.classPrefix+"button "+i.options.classPrefix+"captions-button",o.captionsButton.innerHTML='
",i.addControlElement(o.captionsButton,"tracks"),o.captionsButton.querySelector("."+i.options.classPrefix+"captions-selector-input").disabled=!1,o.chaptersButton=L.default.createElement("div"),o.chaptersButton.className=i.options.classPrefix+"button "+i.options.classPrefix+"chapters-button",o.chaptersButton.innerHTML='
    ';for(var u=0,c=0;c"},checkForTracks:function(){var e=this,t=!1;if(e.options.hideCaptionsButtonWhenEmpty){for(var n=0,o=e.tracks.length;n";for(var o=r.chaptersButton.querySelectorAll('input[type="radio"]'),i=r.chaptersButton.querySelectorAll("."+r.options.classPrefix+"chapters-selector-label"),a=0,s=o.length;a>1].start,a=e[i].stop,r<=t&&t ((?:[0-9]{1,2}:)?[0-9]{2}:[0-9]{2}([,.][0-9]{3})?)(.*)$/,parse:function(e){for(var t=e.split(/\r?\n/),n=[],o=void 0,i=void 0,r=void 0,a=0,s=t.length;a$1"),n.push({identifier:r,start:0===(0,m.convertSMPTEtoSeconds)(o[1])?.2:(0,m.convertSMPTEtoSeconds)(o[1]),stop:(0,m.convertSMPTEtoSeconds)(o[3]),text:i,settings:o[5]})}r=""}return n}},dfxp:{parse:function(e){var t=(e=$(e).filter("tt")).firstChild,n=t.querySelectorAll("p"),o=e.getElementById(""+t.attr("style")),i=[],r=void 0;if(o.length){o.removeAttribute("id");var a=o.attributes;if(a.length){r={};for(var s=0,l=a.length;s$1"),i.push(f)}return i}}}},{16:16,2:2,26:26,27:27,30:30,5:5,7:7}],14:[function(e,t,n){"use strict";var x=r(e(2)),o=e(16),i=r(o),w=r(e(5)),P=e(25),T=e(27),C=e(26);function r(e){return e&&e.__esModule?e:{default:e}}Object.assign(o.config,{muteText:null,unmuteText:null,allyVolumeControlText:null,hideVolumeOnTouchDevices:!0,audioVolume:"horizontal",videoVolume:"vertical",startVolume:.8}),Object.assign(i.default.prototype,{buildvolume:function(e,t,n,o){if(!P.IS_ANDROID&&!P.IS_IOS||!this.options.hideVolumeOnTouchDevices){var a=this,s=a.isVideo?a.options.videoVolume:a.options.audioVolume,r=(0,T.isString)(a.options.muteText)?a.options.muteText:w.default.t("mejs.mute"),l=(0,T.isString)(a.options.unmuteText)?a.options.unmuteText:w.default.t("mejs.unmute"),i=(0,T.isString)(a.options.allyVolumeControlText)?a.options.allyVolumeControlText:w.default.t("mejs.volume-help-text"),d=x.default.createElement("div");if(d.className=a.options.classPrefix+"button "+a.options.classPrefix+"volume-button "+a.options.classPrefix+"mute",d.innerHTML="horizontal"===s?'':''+i+'
    ',a.addControlElement(d,"volume"),a.options.keyActions.push({keys:[38],action:function(e){var t=e.getElement(e.container).querySelector("."+a.options.classPrefix+"volume-slider");t&&t.matches(":focus")&&(t.style.display="block"),e.isVideo&&(e.showControls(),e.startControlsTimer());var n=Math.min(e.volume+.1,1);e.setVolume(n),0'+i+'
    ',d.parentNode.insertBefore(u,d.nextSibling)}var c=!1,f=!1,p=!1,m="vertical"===s?a.getElement(a.container).querySelector("."+a.options.classPrefix+"volume-slider"):a.getElement(a.container).querySelector("."+a.options.classPrefix+"horizontal-volume-slider"),h="vertical"===s?a.getElement(a.container).querySelector("."+a.options.classPrefix+"volume-total"):a.getElement(a.container).querySelector("."+a.options.classPrefix+"horizontal-volume-total"),v="vertical"===s?a.getElement(a.container).querySelector("."+a.options.classPrefix+"volume-current"):a.getElement(a.container).querySelector("."+a.options.classPrefix+"horizontal-volume-current"),g="vertical"===s?a.getElement(a.container).querySelector("."+a.options.classPrefix+"volume-handle"):a.getElement(a.container).querySelector("."+a.options.classPrefix+"horizontal-volume-handle"),y=function(e){if(null!==e&&!isNaN(e)&&void 0!==e){if(e=Math.max(0,e),0===(e=Math.min(e,1))){(0,C.removeClass)(d,a.options.classPrefix+"mute"),(0,C.addClass)(d,a.options.classPrefix+"unmute");var t=d.firstElementChild;t.setAttribute("title",l),t.setAttribute("aria-label",l)}else{(0,C.removeClass)(d,a.options.classPrefix+"unmute"),(0,C.addClass)(d,a.options.classPrefix+"mute");var n=d.firstElementChild;n.setAttribute("title",r),n.setAttribute("aria-label",r)}var o=100*e+"%",i=getComputedStyle(g);"vertical"===s?(v.style.bottom=0,v.style.height=o,g.style.bottom=o,g.style.marginBottom=-parseFloat(i.height)/2+"px"):(v.style.left=0,v.style.width=o,g.style.left=o,g.style.marginLeft=-parseFloat(i.width)/2+"px")}},E=function(e){var t=(0,C.offset)(h),n=getComputedStyle(h);p=!0;var o=null;if("vertical"===s){var i=parseFloat(n.height);if(o=(i-(e.pageY-t.top))/i,0===t.top||0===t.left)return}else{var r=parseFloat(n.width);o=(e.pageX-t.left)/r}o=Math.max(0,o),o=Math.min(o,1),y(o),a.setMuted(0===o),a.setVolume(o),e.preventDefault(),e.stopPropagation()},b=function(){a.muted?(y(0),(0,C.removeClass)(d,a.options.classPrefix+"mute"),(0,C.addClass)(d,a.options.classPrefix+"unmute")):(y(o.volume),(0,C.removeClass)(d,a.options.classPrefix+"unmute"),(0,C.addClass)(d,a.options.classPrefix+"mute"))};e.getElement(e.container).addEventListener("keydown",function(e){!!e.target.closest("."+a.options.classPrefix+"container")||"vertical"!==s||(m.style.display="none")}),d.addEventListener("mouseenter",function(e){e.target===d&&(m.style.display="block",f=!0,e.preventDefault(),e.stopPropagation())}),d.addEventListener("focusin",function(){m.style.display="block",f=!0}),d.addEventListener("focusout",function(e){e.relatedTarget&&(!e.relatedTarget||e.relatedTarget.matches("."+a.options.classPrefix+"volume-slider"))||"vertical"!==s||(m.style.display="none")}),d.addEventListener("mouseleave",function(){f=!1,c||"vertical"!==s||(m.style.display="none")}),d.addEventListener("focusout",function(){f=!1}),d.addEventListener("keydown",function(e){if(a.options.enableKeyboard&&a.options.keyActions.length){var t=e.which||e.keyCode||0,n=o.volume;switch(t){case 38:n=Math.min(n+.1,1);break;case 40:n=Math.max(0,n-.1);break;default:return!0}c=!1,y(n),o.setVolume(n),e.preventDefault(),e.stopPropagation()}}),d.querySelector("button").addEventListener("click",function(){o.setMuted(!o.muted);var e=(0,T.createEvent)("volumechange",o);o.dispatchEvent(e)}),m.addEventListener("dragstart",function(){return!1}),m.addEventListener("mouseover",function(){f=!0}),m.addEventListener("focusin",function(){m.style.display="block",f=!0}),m.addEventListener("focusout",function(){f=!1,c||"vertical"!==s||(m.style.display="none")}),m.addEventListener("mousedown",function(e){E(e),a.globalBind("mousemove.vol",function(e){var t=e.target;c&&(t===m||t.closest("vertical"===s?"."+a.options.classPrefix+"volume-slider":"."+a.options.classPrefix+"horizontal-volume-slider"))&&E(e)}),a.globalBind("mouseup.vol",function(){c=!1,f||"vertical"!==s||(m.style.display="none")}),c=!0,e.preventDefault(),e.stopPropagation()}),o.addEventListener("volumechange",function(e){var t;c||b(),t=Math.floor(100*o.volume),m.setAttribute("aria-valuenow",t),m.setAttribute("aria-valuetext",t+"%")});var S=!1;o.addEventListener("rendererready",function(){p||setTimeout(function(){S=!0,(0===e.options.startVolume||o.originalNode.muted)&&(o.setMuted(!0),e.options.startVolume=0),o.setVolume(e.options.startVolume),a.setControlsSize()},250)}),o.addEventListener("loadedmetadata",function(){setTimeout(function(){p||S||((0===e.options.startVolume||o.originalNode.muted)&&o.setMuted(!0),o.setVolume(e.options.startVolume),a.setControlsSize()),S=!1},250)}),(0===e.options.startVolume||o.originalNode.muted)&&(o.setMuted(!0),e.options.startVolume=0,b()),a.getElement(a.container).addEventListener("controlsresize",function(){b()})}}})},{16:16,2:2,25:25,26:26,27:27,5:5}],15:[function(e,t,n){"use strict";Object.defineProperty(n,"__esModule",{value:!0});n.EN={"mejs.plural-form":1,"mejs.download-file":"Download File","mejs.install-flash":"You are using a browser that does not have Flash player enabled or installed. Please turn on your Flash player plugin or download the latest version from https://get.adobe.com/flashplayer/","mejs.fullscreen":"Fullscreen","mejs.play":"Play","mejs.pause":"Pause","mejs.time-slider":"Time Slider","mejs.time-help-text":"Use Left/Right Arrow keys to advance one second, Up/Down arrows to advance ten seconds.","mejs.live-broadcast":"Live Broadcast","mejs.volume-help-text":"Use Up/Down Arrow keys to increase or decrease volume.","mejs.unmute":"Unmute","mejs.mute":"Mute","mejs.volume-slider":"Volume Slider","mejs.video-player":"Video Player","mejs.audio-player":"Audio Player","mejs.captions-subtitles":"Captions/Subtitles","mejs.captions-chapters":"Chapters","mejs.none":"None","mejs.afrikaans":"Afrikaans","mejs.albanian":"Albanian","mejs.arabic":"Arabic","mejs.belarusian":"Belarusian","mejs.bulgarian":"Bulgarian","mejs.catalan":"Catalan","mejs.chinese":"Chinese","mejs.chinese-simplified":"Chinese (Simplified)","mejs.chinese-traditional":"Chinese (Traditional)","mejs.croatian":"Croatian","mejs.czech":"Czech","mejs.danish":"Danish","mejs.dutch":"Dutch","mejs.english":"English","mejs.estonian":"Estonian","mejs.filipino":"Filipino","mejs.finnish":"Finnish","mejs.french":"French","mejs.galician":"Galician","mejs.german":"German","mejs.greek":"Greek","mejs.haitian-creole":"Haitian Creole","mejs.hebrew":"Hebrew","mejs.hindi":"Hindi","mejs.hungarian":"Hungarian","mejs.icelandic":"Icelandic","mejs.indonesian":"Indonesian","mejs.irish":"Irish","mejs.italian":"Italian","mejs.japanese":"Japanese","mejs.korean":"Korean","mejs.latvian":"Latvian","mejs.lithuanian":"Lithuanian","mejs.macedonian":"Macedonian","mejs.malay":"Malay","mejs.maltese":"Maltese","mejs.norwegian":"Norwegian","mejs.persian":"Persian","mejs.polish":"Polish","mejs.portuguese":"Portuguese","mejs.romanian":"Romanian","mejs.russian":"Russian","mejs.serbian":"Serbian","mejs.slovak":"Slovak","mejs.slovenian":"Slovenian","mejs.spanish":"Spanish","mejs.swahili":"Swahili","mejs.swedish":"Swedish","mejs.tagalog":"Tagalog","mejs.thai":"Thai","mejs.turkish":"Turkish","mejs.ukrainian":"Ukrainian","mejs.vietnamese":"Vietnamese","mejs.welsh":"Welsh","mejs.yiddish":"Yiddish"}},{}],16:[function(e,t,n){"use strict";Object.defineProperty(n,"__esModule",{value:!0}),n.config=void 0;var i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},o=function(){function o(e,t){for(var n=0;n
    ',n.getElement(n.container).addEventListener("focus",function(e){if(!n.controlsAreVisible&&!n.hasFocus&&n.controlsEnabled){n.showControls(!0);var t=(0,m.isNodeAfter)(e.relatedTarget,n.getElement(n.container))?"."+n.options.classPrefix+"controls ."+n.options.classPrefix+"button:last-child > button":"."+n.options.classPrefix+"playpause-button > button";n.getElement(n.container).querySelector(t).focus()}}),n.node.parentNode.insertBefore(n.getElement(n.container),n.node),n.options.features.length||n.options.useDefaultControls||(n.getElement(n.container).style.background="transparent",n.getElement(n.container).querySelector("."+n.options.classPrefix+"controls").style.display="none"),n.isVideo&&"fill"===n.options.stretching&&!P.hasClass(n.getElement(n.container).parentNode,n.options.classPrefix+"fill-container")){n.outerContainer=n.media.parentNode;var r=x.default.createElement("div");r.className=n.options.classPrefix+"fill-container",n.getElement(n.container).parentNode.insertBefore(r,n.getElement(n.container)),r.appendChild(n.getElement(n.container))}w.IS_ANDROID&&P.addClass(n.getElement(n.container),n.options.classPrefix+"android"),w.IS_IOS&&P.addClass(n.getElement(n.container),n.options.classPrefix+"ios"),w.IS_IPAD&&P.addClass(n.getElement(n.container),n.options.classPrefix+"ipad"),w.IS_IPHONE&&P.addClass(n.getElement(n.container),n.options.classPrefix+"iphone"),P.addClass(n.getElement(n.container),n.isVideo?n.options.classPrefix+"video":n.options.classPrefix+"audio"),n.getElement(n.container).querySelector("."+n.options.classPrefix+"mediaelement").appendChild(n.node),(n.media.player=n).controls=n.getElement(n.container).querySelector("."+n.options.classPrefix+"controls"),n.layers=n.getElement(n.container).querySelector("."+n.options.classPrefix+"layers");var a=n.isVideo?"video":"audio",s=a.substring(0,1).toUpperCase()+a.substring(1);0=n.width?n.width/n.height:n.height/n.width,n.setPlayerSize(n.width,n.height),e.pluginWidth=n.width,e.pluginHeight=n.height}if(f.default.MepDefaults=e,new d.default(n.media,e,n.mediaFiles),void 0!==n.getElement(n.container)&&n.options.features.length&&n.controlsAreVisible&&!n.options.hideVideoControlsOnLoad){var l=(0,m.createEvent)("controlsshown",n.getElement(n.container));n.getElement(n.container).dispatchEvent(l)}}},{key:"showControls",value:function(e){var i=this;if(e=void 0===e||e,!i.controlsAreVisible&&i.isVideo){if(e)!function(){P.fadeIn(i.getElement(i.controls),200,function(){P.removeClass(i.getElement(i.controls),i.options.classPrefix+"offscreen");var e=(0,m.createEvent)("controlsshown",i.getElement(i.container));i.getElement(i.container).dispatchEvent(e)});for(var n=i.getElement(i.container).querySelectorAll("."+i.options.classPrefix+"control"),e=function(e,t){P.fadeIn(n[e],200,function(){P.removeClass(n[e],i.options.classPrefix+"offscreen")})},t=0,o=n.length;t'),e.message&&(a="

    "+e.message+"

    "),e.urls)for(var d=0,u=e.urls.length;d'+f.default.i18n.t("mejs.download-file")+": "+c.src+""}}a&&o.getElement(o.layers).querySelector("."+o.options.classPrefix+"overlay-error")&&(r.innerHTML=a,o.getElement(o.layers).querySelector("."+o.options.classPrefix+"overlay-error").innerHTML=""+s+r.outerHTML,o.getElement(o.layers).querySelector("."+o.options.classPrefix+"overlay-error").parentNode.style.display="block"),o.controlsEnabled&&o.disableControls()}},{key:"setPlayerSize",value:function(e,t){var n=this;if(!n.options.setDimensions)return!1;switch(void 0!==e&&(n.width=e),void 0!==t&&(n.height=t),n.options.stretching){case"fill":n.isVideo?n.setFillMode():n.setDimensions(n.width,n.height);break;case"responsive":n.setResponsiveMode();break;case"none":n.setDimensions(n.width,n.height);break;default:!0===n.hasFluidMode()?n.setResponsiveMode():n.setDimensions(n.width,n.height)}}},{key:"hasFluidMode",value:function(){var e=this;return-1!==e.height.toString().indexOf("%")||e.node&&e.node.style.maxWidth&&"none"!==e.node.style.maxWidth&&e.node.style.maxWidth!==e.width||e.node&&e.node.currentStyle&&"100%"===e.node.currentStyle.maxWidth}},{key:"setResponsiveMode",value:function(){var e,o=this,t=function(){for(var t=void 0,n=o.getElement(o.container);n;){try{if(w.IS_FIREFOX&&"html"===n.tagName.toLowerCase()&&S.default.self!==S.default.top&&null!==S.default.frameElement)return S.default.frameElement;t=n.parentElement}catch(e){t=n.parentElement}if(t&&P.visible(t))return t;n=t}return null}(),n=t?getComputedStyle(t,null):getComputedStyle(x.default.body,null),i=o.isVideo?o.node.videoWidth&&0=o.width?o.node.videoWidth/o.node.videoHeight:o.node.videoHeight/o.node.videoWidth:o.initialAspectRatio,(isNaN(e)||e<.01||100=o.width?parseFloat(d/a,10):parseFloat(d*a,10):r,isNaN(l)&&(l=s),0img");a&&(a.style.display="");for(var s=e.getElement(e.container).querySelectorAll("object, embed, iframe, video"),l=e.height,d=e.width,u=i,c=l*i/d,f=d*r/l,p=r,m=i',n.appendChild(r),a.style.display="none",a.className=i.options.classPrefix+"overlay "+i.options.classPrefix+"layer",a.innerHTML='
    ',n.appendChild(a),s.className=i.options.classPrefix+"overlay "+i.options.classPrefix+"layer "+i.options.classPrefix+"overlay-play",s.innerHTML='
    ',s.addEventListener("click",function(){if(i.options.clickToPlayPause){var e=i.getElement(i.container).querySelector("."+i.options.classPrefix+"overlay-button"),t=e.getAttribute("aria-pressed");i.paused?i.play():i.pause(),e.setAttribute("aria-pressed",!!t),i.getElement(i.container).focus()}}),s.addEventListener("keydown",function(e){var t=e.keyCode||e.which||0;if(13===t||w.IS_FIREFOX&&32===t){var n=(0,m.createEvent)("click",s);return s.dispatchEvent(n),!1}}),n.appendChild(s),null!==i.media.rendererName&&(/(youtube|facebook)/i.test(i.media.rendererName)&&!(i.media.originalNode.getAttribute("poster")||t.options.poster||"function"==typeof i.media.renderer.getPosterUrl&&i.media.renderer.getPosterUrl())||w.IS_STOCK_ANDROID||i.media.originalNode.getAttribute("autoplay"))&&(s.style.display="none");var l=!1;o.addEventListener("play",function(){s.style.display="none",r.style.display="none",a.style.display="none",l=!1}),o.addEventListener("playing",function(){s.style.display="none",r.style.display="none",a.style.display="none",l=!1}),o.addEventListener("seeking",function(){s.style.display="none",r.style.display="",l=!1}),o.addEventListener("seeked",function(){s.style.display=i.paused&&!w.IS_STOCK_ANDROID?"":"none",r.style.display="none",l=!1}),o.addEventListener("pause",function(){r.style.display="none",w.IS_STOCK_ANDROID||l||(s.style.display=""),l=!1}),o.addEventListener("waiting",function(){r.style.display="",l=!1}),o.addEventListener("loadeddata",function(){r.style.display="",w.IS_ANDROID&&(o.canplayTimeout=setTimeout(function(){if(x.default.createEvent){var e=x.default.createEvent("HTMLEvents");return e.initEvent("canplay",!0,!0),o.dispatchEvent(e)}},300)),l=!1}),o.addEventListener("canplay",function(){r.style.display="none",clearTimeout(o.canplayTimeout),l=!1}),o.addEventListener("error",function(e){i._handleError(e,i.media,i.node),r.style.display="none",s.style.display="none",l=!0}),o.addEventListener("loadedmetadata",function(){i.controlsEnabled||i.enableControls()}),o.addEventListener("keydown",function(e){i.onkeydown(t,o,e),l=!1})}}},{key:"buildkeyboard",value:function(o,e,t,i){var r=this;r.getElement(r.container).addEventListener("keydown",function(){r.keyboardAction=!0}),r.globalKeydownCallback=function(e){var t=x.default.activeElement.closest("."+r.options.classPrefix+"container"),n=r.media.closest("."+r.options.classPrefix+"container");return r.hasFocus=!(!t||!n||t.id!==n.id),r.onkeydown(o,i,e)},r.globalClickCallback=function(e){r.hasFocus=!!e.target.closest("."+r.options.classPrefix+"container")},r.globalBind("keydown",r.globalKeydownCallback),r.globalBind("click",r.globalClickCallback)}},{key:"onkeydown",value:function(e,t,n){if(e.hasFocus&&e.options.enableKeyboard)for(var o=0,i=e.options.keyActions.length;oimg");(e&&l.node.setAttribute("poster",e.src),delete l.node.autoplay,l.node.setAttribute("src",""),""!==l.media.canPlayType((0,p.getTypeFromFile)(u))&&l.node.setAttribute("src",u),d&&-1t[0]||n[0]===t[0]&&n[1]>t[1]||n[0]===t[0]&&n[1]===t[1]&&n[2]>=t[2]},addPlugin:function(e,t,n,o,i){r.plugins[e]=r.detectPlugin(t,n,o,i)},detectPlugin:function(e,t,n,o){var i=[0,0,0],r=void 0,a=void 0;if(null!==F.NAV.plugins&&void 0!==F.NAV.plugins&&"object"===d(F.NAV.plugins[e])){if((r=F.NAV.plugins[e].description)&&(void 0===F.NAV.mimeTypes||!F.NAV.mimeTypes[t]||F.NAV.mimeTypes[t].enabledPlugin))for(var s=0,l=(i=r.replace(e,"").replace(/^\s+/,"").replace(/\sr/gi,".").split(".")).length;s
    '+N.default.t("mejs.install-flash")+"
    "}else x=['id="__'+r.id+'"','name="__'+r.id+'"','play="true"','loop="false"','quality="high"','bgcolor="#000000"','wmode="transparent"','allowScriptAccess="'+r.options.shimScriptAccess+'"','allowFullScreen="true"','type="application/x-shockwave-flash"','pluginspage="//www.macromedia.com/go/getflashplayer"','src="'+r.options.pluginPath+r.options.filename+'"','flashvars="'+y.join("&")+'"'],E?(x.push('width="'+S+'"'),x.push('height="'+b+'"')):x.push('style="position: fixed; left: -9999em; top: -9999em;"'),r.flashWrapper.innerHTML="";if(r.flashNode=r.flashWrapper.lastChild,r.hide=function(){o=!1,E&&(r.flashNode.style.display="none")},r.show=function(){o=!0,E&&(r.flashNode.style.display="")},r.setSize=function(e,t){r.flashNode.style.width=e+"px",r.flashNode.style.height=t+"px",null!==r.flashApi&&"function"==typeof r.flashApi.fire_setSize&&r.flashApi.fire_setSize(e,t)},r.destroy=function(){r.flashNode.remove()},n&&0":">",'"':"""};return e.replace(/[&<>"]/g,function(e){return t[e]})}function s(o,i){var r=this,a=arguments,s=2x',t.firstChild.href}function d(e){var t=1 + + Commentaires sur : SOPA, PIPA, pipeau et plein d’autre + + http://blog.hugopoi.net/2012/01/18/sopa-pipa-pipeau-et-plein-dautre/ + Internet, Hardware et Bidouille + Mon, 22 Aug 2016 14:09:10 +0000 + hourly + 1 + https://wordpress.org/?v=4.6.1 + + diff --git a/www/.content.EZtzwPjb/html/100e75a2aee2679357f26ca4307963e76e1b0914.00000646.css b/www/.content.EZtzwPjb/html/100e75a2aee2679357f26ca4307963e76e1b0914.00000646.css new file mode 100644 index 0000000..8043bbf --- /dev/null +++ b/www/.content.EZtzwPjb/html/100e75a2aee2679357f26ca4307963e76e1b0914.00000646.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;background:#fff;border:1px +solid #f00;font-size:10pt;width:280px;padding:2px}span.wpcf7-not-valid-tip-no-ajax{color:#f00;font-size:10pt;display:block}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/1013b28cd1eb1abdd429458e1dba1d48b9ed524e.00000112.html b/www/.content.EZtzwPjb/html/1013b28cd1eb1abdd429458e1dba1d48b9ed524e.00000112.html new file mode 100644 index 0000000..6a73dfc --- /dev/null +++ b/www/.content.EZtzwPjb/html/1013b28cd1eb1abdd429458e1dba1d48b9ed524e.00000112.html @@ -0,0 +1,1370 @@ + + + + + + + + Réparations Samsung SyncMaster 2232BW – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    + +
    +
    +
    +
    +
    +
    +

    Allô docteur on a un problème,

    +

    En ce dimanche calme avant la fin de mes partiels, mon écran Samsung SyncMaster 2232BW commençait à faire des siennes. Celui-ci depuis un mois ou deux clignotait de façon systématique au démarrage, au début pendant seulement quelques secondes, puis au fur et à mesure, de plus en plus jusqu’à devoir attendre 10 minutes pour que je puisse l’utiliser. Après 3 ans et 4 mois de bons et loyaux services, il voulait me quitter. J’ai tenté le support Samsung par email avec peu d’espoir car l’écran a dépassé sa garantie de 4 mois (oui oui les bâtards -> obsolescence programmée). Et donc j’ai eu le droit à un joli mail automatique me disant de contacter un numéro non surtaxé (mais avec combien de temps d’attente ?), ce que je n’ai pas fait car je n’avais pas envie de passer 30min au téléphone pour au final avoir un « On est désolé mais on ne peut rien faire pour vous car la garantie est dépassée, mais on peut envoyer votre écran en SAV pour faire un devis pour seulement 50 boules ». Concernant le support email de Samsung France, je leur donne une note de 0/20 puisque ce n’est pas un support mais une redirection vers le téléphone.

    +

    +

    Symptômes

    +

    Clignotements de l’écran et de la LED power systématiques à chaque démarrage de l’écran. Je me suis tout de suite douté d’un problème d’alimentation et après quelques recherches sur google, confirmation du problème sur beaucoup d’écrans et téléviseurs. Dans 99% des cas ce clignotement est dû à des condensateurs défectueux qu’il faut simplement changer :-D

    +

    Démontage

    +

    Donc après avoir cerné le problème, j’ai ouvert l’écran pour chercher les condos défectueux. J’ai trouvé une petite vidéo pour mon écran :

    +

    +

    Voici quelques photos en plus pour vous aider :

    +

    Les outils que j’ai utilisé pour le démontage

    +

    Position des clips

    +

    Carte d’alimentation dans son emplacement

    +

    Et voici les condensateurs qui posent problèmes. Comme vous pouvez le voir sur la photo, ils sont très facilement identifiable car ils sont bombés sur le dessus.

    +

    Condensateurs défectueux

    +

    Vous devez donc acheter des condensateurs de remplacement, par exemple sur Conrad.

    +

    Mes condensateurs suivant étaient endommagés:

    +
      +
    • 1 de 330uF 25V remplacé par un 470uF 25V
    • +
    • 3 de 820uF 25V remplacé par des 1000uF 50V
    • +
    +

    Pour la réparation, il vous faut un fer à souder avec une panne pas trop grosse mais d’une grosse puissance car les soudures sont très solides (j’ai galéré avec un fer pro qui monte jusqu’à 400°).

    +

    Tout remarche nickel après remontage, plus de clignotement pour seulement quelques euros.

    +

    edit du 19 aout 2014 : j’ai trouvé le service manuel de l’écran si besoin samsung_2232bw_chassis_lpe22bs_sm

    + + +
    +
    + +
    +
    +
    +
    +
    +

    + 41 commentaires

    +
    + +
    +
    +
    +
    +

    + c'est_moi + · 30 janvier 2012 à 18 h 57 min +

    +

    Mille mercis et mille félicitations pour cette fiche technique si pédagogue.

    +

    J’espère que le partiels se passent plus que parfait !!

    +

    J’ai gardé l’url de la page pour réparer mon écran dans un petit mois : j’espère que la page soit toujours là ;-)

    +

    Merci encore.

    + +
    +
    + +
    + +
    +
    +
    +
    +

    + Maxime + · 5 mai 2012 à 12 h 31 min +

    +

    Bonjour HugoPoi!

    +

    Merci pour toutes vos infos et votre topic, je voulais avoir quelques précisions sur les condos à changer pour samsung 2232bw, je veux passer commande mais j’ai un problème avec les dimensions des condos, si vous pouvez m’informer de ce que je pourrais acheter car il y a trop de références. En vous remerciant A+ Maxime

    + +
    +
    +
      +
      + +
      +
      +
      +
      +

      + HugoPoi + · 14 juin 2012 à 22 h 56 min +

      +

      N’importe quel condensateur polarisé avec des caractéristiques proches devrait marché.

      + +
      +
      + +
    + +
    + +
    +
    +
    +
    +

    + gaubjezj + · 14 juin 2012 à 22 h 32 min +

    +

    Merci pour le tuto qui m’a bien aidé.
    +J’ai utilisé un fer de 40 W avec une panne fine et
    +une pompe à dessouder et j’ai retiré les condensateurs sans problème.
    +Merci encore (3€40 pour le dépannage).

    + +
    +
    + +
    + +
    +
    +
    +
    +

    + DragonTribal + · 2 juillet 2012 à 12 h 02 min +

    +

    super merci pour manifique tuto.
    +Est-il possible de changer les 5 condensateurs 820uF 25V par des 1000uF 50V? car moi mes 5 condensateurs sont presque HS ;-)

    +

    Cordialement

    + +
    +
    +
      +
      + +
      +
      +
      +
      +

      + HugoPoi + · 2 juillet 2012 à 12 h 25 min +

      +

      Oui je penses que ça marchera étant donné que c’est des valeurs plus grandes.

      + +
      +
      + +
    + +
    + +
    +
    +
    +
    +

    + FRED + · 11 juillet 2012 à 19 h 11 min +

    +

    Bravo, MERCI.
    +Je n’ai encore rien fait…mais j’ai le même problème, et tu me donnes la solution.
    +Super.

    + +
    +
    + +
    + +
    +
    +
    +
    +

    + daninpet + · 31 août 2012 à 10 h 10 min +

    +

    Merci mille fois!

    +

    J’avais ce problème, et j’ai emmener la photo des trucs a remplacer chez le réparateur du coin et voila!! Ça m’a coûté 7 Euros (mais j’habite en Thaïlande)

    + +
    +
    + +
    + +
    +
    +
    +
    +

    + moi + · 15 novembre 2012 à 15 h 25 min +

    +

    super mon 2232bw vient de lâcher, les 3 + 1 condos sont gonflés j ai trouvé un 330 en 35v qui traîné sur un écran mort et j’ai commander 5 1000uf 35v sur ebay pour moins de 3 dollars, ca devrait le faire j’espere j’attend d’être livré merci! par contre j’ai qu’un gros pistolet a soudure et un gros fil d’étain, c’est pas évident mais bon ca le fait quand même =)

    + +
    +
    +
      +
      + +
      +
      +
      +
      +

      + moi + · 7 décembre 2012 à 9 h 33 min +

      +

      parfait je vient de recevoir les condos; j ai meuler la panne du fer a souder pour la tailler en mine de crayon et j ai reussi a les souder facilement ils étaient un peu plus gros mais ca passe tout juste, mais attention ne pas prendre des plus gros! l écran fonctionne nickel maintenant.

      + +
      +
      + +
    + +
    + +
    +
    +
    +
    +

    + Croco + · 19 janvier 2013 à 18 h 39 min +

    +

    Je souhaiterai savoir si tu as utilisé un fer à souder bien précis étant donné que la carte est une multi couche.
    +Merci

    + +
    +
    + + +
    + +
    +
    +
    +
    +

    + momo + · 10 juin 2013 à 13 h 15 min +

    +

    slut je voudrai savoir ou trouvé les condansateur a changer sur mon ecran qui clignote

    + +
    +
    + + +
    + +
    +
    +
    +
    +

    + lokmane + · 5 juillet 2013 à 16 h 08 min +

    +

    merci j’avais un ecran rouge ! et c’etais la tresse qui relie mon ecran votre page m’a aider a l’ouvrir et a le reparer merci bien

    + +
    +
    + +
    + +
    +
    +
    +
    +

    + ML + · 21 août 2013 à 19 h 11 min +

    +

    Merci ! Ecran réparé. Halte à l’obsolescence programmée.

    + +
    +
    + +
    + +
    +
    +
    +
    +

    + raymond + · 31 octobre 2013 à 13 h 20 min +

    +

    ai vu votre vidéo et les explications pour la reparation de mon écran , apparemment le méme probléme l écran passe au noir apres quelque seconde , j ai vu un le condensateur en bas a gauche gonflé , je l ai fait changé (10€) les autre condensateur étant toujour bon d après la personne qui me l a changé , mais j ai toujour le méme probléme cela peut il venir de la carte video a gauche ?

    + +
    +
    +
      +
      + +
      +
      +
      +
      +

      + HugoPoi + · 20 décembre 2013 à 12 h 27 min +

      +

      Si la led bleu du bouton power s’éteint aussi c’est un problème d’alimentation sinon c’est plus compliqué et ça peut provenir de condensateurs sur la partie vidéo. Changé tous les plus gros condensateurs sur la partie alimentation pourrait être un bon début même si ils ne paraissent pas endommagé.

      + +
      +
      + +
    + +
    + +
    +
    +
    +
    +

    + damien + · 4 novembre 2013 à 0 h 29 min +

    +

    bonjour,

    +

    j’ai des crasses coincées entres l’écran et le truc juste derrière, est ce qu’on sais les enlever en démontant la dalle ?

    + +
    +
    +
      +
      + +
      +
      +
      +
      +

      + HugoPoi + · 20 décembre 2013 à 12 h 28 min +

      +

      Je ne sais si cette partie de la dalle est démontable, je penses que c’est collé mais vous pouvez essayer.

      + +
      +
      + +
    + +
    + +
    +
    +
    +
    +

    + mac + · 1 décembre 2013 à 17 h 30 min +

    +

    Merci HugoPoi, avec ces excellents conseils et tuto vidéo, mon écran est reparti pour une nouvelle vie.
    +Pour les composants, si vous êtes sur Paris ou proche. La boutique RAM électroniques est une bonne adresse, 138 bd Diderot 75012 Paris (Place de la Nation).

    + +
    +
    + +
    + +
    +
    +
    +
    +

    + Bouddhid + · 16 janvier 2014 à 19 h 21 min +

    +

    Merci beaucoup pour ces conseils ! J’étais à 2 doigts de jeter mon écran, le voilà comme neuf pour moins de 5€ ! Vive la bricole !

    + +
    +
    + +
    + +
    +
    +
    +
    +

    + Vincent + · 17 mai 2014 à 16 h 45 min +

    +

    Alors là merci.

    +

    Pour ce post, les photos, la vidéo, tout y est.

    +

    J’ai démonté l’écran assez vite, enlevé la carte, regarder quel condensateurs étaient gonflés,(il y en avaient 4), un magasin d’électronique sur lyon et une heure de démontage, soudure, remontage plus tard, voilà, c’est tout beau.
    +Ca ne clignote plus, ça s’allume comme avant, comme neuf.

    +

    Et dire que j’allais jeter cet écran et claquer 350 euros pour un neuf…

    +

    Coût de l’opération pour 4 condensateurs, du fil d’étain 7 euros.

    +

    Je précise que je n’avais jamais fais de soudure sur composant électronique auparavant.
    +Comme quoi cette opération de réparation est à la portée de tous.

    + +
    +
    + +
    + +
    +
    +
    +
    +

    + Julot + · 6 juillet 2014 à 13 h 49 min +

    +

    Site vraiment détaillé et très claire. J’ai pu dépanner mon écran avec succès. Merci beaucoup pour ces précieuses explications.

    + +
    +
    + +
    + +
    +
    +
    +
    +

    + PaniK31 + · 29 juillet 2014 à 9 h 21 min +

    +

    Pas besoin d’une grosse puissance pour le fer, il faut au préalable gratter le vernis sur l’étain afin de pouvoir le faire fondre plus facilement

    + +
    +
    + +
    + +
    +
    +
    +
    +

    + R211_IP-45130B + · 20 août 2014 à 14 h 04 min +

    +

    Bonjour à tous,

    +

    Une âme charitable peut-elle me communiquer ce qui est gravé sur la résistance CMS R211 de la carte d’alimentation/inverter IP-45130B qui équipe le SAMSUNG 2232BW ? Cette résistance a pris un coup de tournevis et je n’arrive pas à déterminer sa valeur de résistance car son marquage est effacé et comme le composant est abimé la mesure à l’ohmmètre indique l’infinie.

    +

    Merci par avance.

    + +
    +
    + +
    + +
    +
    +
    +
    +

    + roger + · 24 octobre 2014 à 17 h 21 min +

    +

    Ca refonctionne après échange de 4 condensateurs :
    +-un 330uf25v remplacé à l’identique.
    +-trois 820uf25v remplacés par 1000uf25v.
    +Le tout pour quelques €. Le plus dur était le dessoudage, la tresse n’était pas très efficace contrairement à la pompe.
    +Grand merci à HugoPoi.

    + +
    +
    + +
    + +
    +
    +
    +
    +

    + Max + · 26 février 2015 à 16 h 28 min +

    +

    ENORME MERCI!! J’ai réparé mon écran en 20mn pour 3,50€, il était à 2 doigts de partir à la déchetterie. Ca faisait des mois qu’il clignotait, et l’allumage mettait parfois plus d’une demi heure. J’ai changé 5 condos 820uf25v et 1 330uf25v, par exactement les mêmes en neuf, et là il démarre au quart de tour! Ca fait plaisir! :)

    + +
    +
    +
      +
      + +
      +
      +
      +
      +

      + rocco michelle + · 7 octobre 2015 à 10 h 16 min +

      +

      Bonjour je ne sais si vous verrez mon message mais je tente…je cherche quelqu’un qui accepterait de changer mes condensateurs sur mon samsung, les réparateurs me demandent 70 à 80 euros et encore ils n’ont pss envie de le faire et me disent d’acheter un nouvel écran. j’aurais bien tenter mais je n’ai pas de matériel et j’ai lu que les condo pouvaient être très dangereux s’ils avaient de la charge alors j’ai la trouille de bidouiller pq je n’y connais rien. si vous êtes de lyon acccepteriez vous de changer mes condensateurs pour 45 euros? merci de votre réponse.

      + +
      +
      + +
    + +
    + +
    +
    +
    +
    +

    + lecakeseb + · 27 juillet 2015 à 15 h 26 min +

    +

    Bonjour,

    +

    J’ai utilisé la vidéo pour démonter mon écran afin de le nettoyer de 4 bêtes d’orage infiltrés entre le premier écran (noir) et la dalle (blanche) de mon samsung SyncMaster 2232W

    +

    Petits conseils afin de modérer ce que j’ai pu voir dans cette vidéo :

    +

    0 : aspirez, nettoyez l’extérieur de l’écran avant de l’ouvrir et nettoyez la table qui vous servira d’atelier, pour éviter les poussières qui s’infiltreront forcément plus tard si vous ne le faites pas…
    +1 : pour ouvrir, utilisez plutôt un couteau à enduire pour la première partie (le cadre). Vous n’abîmerez ainsi pas du tout l’écran. Soyez patients, ne forcez pas ! ça viendra doucement, mais ça viendra. Il m’a fallu à peine 10 minutes, sans détériorer l’écran, sans le griffer… Il est encore nickel !
    +2 : attention à ne pas déconnecter les fils reliant le cadre à la carte. Inutile pour simplement nettoyer l’écran.
    +3 : pour séparer les deux éléments de la dalle entre lesquels les bêtes se sont infiltrées, les doigts suffisent, pas besoin d’outils qui viendraient les endommager. La dalle blanche reste à l’horizontale, l’écran noir sera tenu à la verticale.
    +4 : utiliser un chiffon doux ne peluchant pas pour enlever les bêtes (faites-vous aider de quelqu’un qui les enlèvera pendant que vous tenez l’écran extérieur en position verticale).
    +5 : repositionnez la colle d’étanchéité qui aurait pu se déplacer, avant de repositionner les deux écrans.
    +6 : commencer par refermer par le bas de l’écran (sinon les éléments de réglage situés au bas de l’écran – luminosité, contraste,…- ne se replaceront pas correctement).
    +7 : Une fois l’écran refermé, j’ai appliqué un peu de « barrage aux insectes », avec un chiffon à l’arrière de mon écran en insistant surtout sur les bouches d’aération par lesquelles les maudites bestioles ont du s’infiltrer. En espérant ne pas avoir à ouvrir !

    +

    Bon courage à vous !

    + +
    +
    + +
    + +
    +
    +
    +
    +

    + Michel Jousserandot + · 20 janvier 2017 à 20 h 41 min +

    +

    Merci pour les conseils au démontage.
    +J’avais un problème un peu différent :l’écran ne s’allumait plus du tout. Avec un copain beaucoup plus malin que moi, on a détecté 2 fusibles dont l’un était fichu. On l’a remplacé par un petit fil de cuivre. Et tout a remarché comme avant.
    +Il faut surtout faire attention quand on teste la partie haute tension
    +Michel.

    + +
    +
    + +
    + +
    +
    +
    +
    +

    + Crec + · 14 juillet 2017 à 10 h 20 min +

    +

    Bonjour. Très bons conseils avertis. Merci beaucoup.
    +Peut-on avoir les mêmes conseils pour un écran BX2250.
    +Merci par avance.
    +Crec

    + +
    +
    +
      +
      + +
      +
      +
      +
      +

      + HugoPoi + · 6 août 2017 à 14 h 03 min +

      +

      J’ai pas de BX2250 donc dans le détails non mais si c’est les même symptômes ça doit la même procédure.

      + +
      +
      + +
    + +
    + +
    +
    +
    +
    +

    + Ferronnier + · 10 août 2017 à 17 h 42 min +

    +

    Un grand merci !
    +J’ai changé tous les condensateurs de la partie alimentation de la carte, en déportant certains qui n’avaient pas le même format qu’à l’origine, et ça tourne nickel !

    + +
    +
    + +
    + +
    +
    +
    +
    +

    + Nours + · 1 décembre 2017 à 15 h 17 min +

    +

    Ca fait des années que j’ai cet article enregistré dans un coin, en nourrissant l’espoir d’avoir un jour le courage de réparer ce foutu écran… Après plus de cinq ans c’est chose faite \o/
    +Un giga, hypra, immense merci pour ce tutoriel tellement bien expliqué et facile d’accès (je n’avais pas touché à un fer à souder depuis… Oh boy 15 ans déjà).
    +Après une longue pause, l’écran reprend du service… Jusqu’à la prochaine panne /o/

    + +
    +
    + +
    + +
    +
    +
    +
    +

    + Alex + · 11 août 2018 à 13 h 28 min +

    +

    Quelqu’un sait qui pourrait me le faire svp j ai le même problème mais aucun matériel

    + +
    +
    + +
    + +
    +
    +
    +
    +

    + David + · 5 février 2019 à 21 h 06 min +

    +

    Merci Hugo pour ce tuto qui m’a déjà servi en 2013 et qui va me resservir aujourd’hui car mon 2ème 2232bw commence à avoir les mêmes symptômes.

    + +
    +
    + +
    + +
    +
    +
    +
    +

    + yvan + · 23 novembre 2019 à 17 h 14 min +

    +

    Bonjour
    +j’ai tenté de changer le condensateur qui avait l’air naze mais ça n’a pas marché … toujours le bouton bleu allumé, l’écran est reconnu par Windows 10 même si l’écran est éteint
    +grâce au service manuel de l’écran fourni plus haut, j’ai vérifié les tensions jusque sur la carte de la dalle et elles sont correctes, ainsi que sur la carte elle-même, tout est ok, donc je pense que ce n’est plus un problème de condensateur
    +pour les fusibles, ils ressemblent plutôt à des composants qu’à de simple fusibles, mais comme j’ai les bonnes tension, je ne pense pas que ça vienne de là
    +j’ai bien peur que ce soit la dalle qui soit naze ? quelqu’un a t il des idées supplémentaires avant que je le jette avec grand regret (c’est un 2032bw, mais c’est la même chose, même si ma carte électronique est un peu différente car plus récente
    +merci d’avance pour vos conseils

    + +
    +
    + +
    + +
    +
    +
    +
    +

    + yvan + · 24 novembre 2019 à 17 h 26 min +

    +

    finalement j’ai trouvé, c’est un petit fusible vert qui ressemble à une résistance mais tout vert avec écrit 4A LF qui assure l’alimentation de la dalle.
    +En le shuntant, mon écran a retrouvé l’image.
    +après enquête il s’agit d’un fusible pico de 4ampères de chez little fuse, pas du tout évident à trouver
    +Résolu !

    + +
    +
    + +
    +
    +

    + Reflow Dell 1546 | HugoPoi + · 22 août 2016 à 16 h 09 min +

    +

    […] « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable de marque Dell un 1546 pour être précis. Encore […]

    + +
    +
    + +
    +
    +

    + Reflow Dell Inspiron 1546 – HugoPoi + · 23 juin 2017 à 23 h 18 min +

    +

    […] d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un […]

    + +
    +
    + +
    +
    +
    +

    Répondre à momo Annuler la réponse

    Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

    +
    +
    +

    + +

    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    +
    +
    + + +
    + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/10a0a37dd992a75f748826e134b460d21997a58b.00000382.html b/www/.content.EZtzwPjb/html/10a0a37dd992a75f748826e134b460d21997a58b.00000382.html new file mode 100644 index 0000000..81df348 --- /dev/null +++ b/www/.content.EZtzwPjb/html/10a0a37dd992a75f748826e134b460d21997a58b.00000382.html @@ -0,0 +1,371 @@ + + + + + + + Dell – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    + +
    +
    +
    +
    +
    +

    Reflow Dell Inspiron 1546

    +
    Les choses n’ont pas beaucoup changé en terme d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un cadeau empoisonné de la belle-famille « Essaye de faire ce que tu peux pour récupérer mes photos, j’en rachèterais un ». Le pc portable en question était dans un état de mort certain.
    + (suite…)
    +
    +
    Par HugoPoi, il y a

    Liste de Noël

    Bonjour cher Père Noël des Internets 2.0,

    +

    Alors je me permets de te déposer ma liste de noël sur mon blog car je suis sûr que tu as demandé à Google et Facebook de t’aider pour satisfaire tout le monde sur la terre(N’oublie pas les petits africains qui crèvent la dalle). Comme je suis égoïste un minimum humain et que je ne saurais dire ce que représente noël pour moi à part manger, boire, dormir, du sexe, avoir des cadeaux et en offrir, cela fait de bonnes raisons pour faire une liste de noël. (suite…)

    +
    Par HugoPoi, il y a
    +
    + +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/10e514b41df5cf1181876f7a5dc1b1b68f2ac72a.00000316.html b/www/.content.EZtzwPjb/html/10e514b41df5cf1181876f7a5dc1b1b68f2ac72a.00000316.html new file mode 100644 index 0000000..76f2f5e --- /dev/null +++ b/www/.content.EZtzwPjb/html/10e514b41df5cf1181876f7a5dc1b1b68f2ac72a.00000316.html @@ -0,0 +1,390 @@ + + + + + + + News – Page 4 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    + +
    +
    +
    +
    +
    +

    Trolling

    Apple New MacBook Air

    +

    J’avais envie de me défouler un peu donc je vais troller sur la sortie du nouveau MacBook Air. Alors oui il est beau, il est léger, la finition est nikel Chrome. Mais c’est du Apple donc c’est cher le prix d’entrée est de 999€ ouch ! pour la version 11 pouces … (suite…)

    +
    Par HugoPoi, il y a

    Présentation

    Un petit message pour remercier le créateur de ce blog de m’avoir intégré à son projet. Je suis là officiellement pour corriger les fautes d’orthographe, mais je vous annonce que j’en laisserais plusieurs par choix… officiellement ^^ Bonne lecture à tous et à bientôt !

    +
    Par Calcifer, il y a

    Hello World

    Bienvenue sur mon blog, voila c’est fait, je voulais depuis un petit moment ouvrir un blog pour m’ exprimer sur l’ actualité geek et raconter ma vie parler technique. Alors j’annonce les couleurs ici je vais pas parler coupe de cheveux ni sous-vêtement mais des sujets orientés internet, réseaux, développement et politique #hadopi #fail.

    +
    +
    +
    + +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/10f66958446fd2cf92f05a1f6b1255c84feeefc5.00000413.html b/www/.content.EZtzwPjb/html/10f66958446fd2cf92f05a1f6b1255c84feeefc5.00000413.html new file mode 100644 index 0000000..3340beb --- /dev/null +++ b/www/.content.EZtzwPjb/html/10f66958446fd2cf92f05a1f6b1255c84feeefc5.00000413.html @@ -0,0 +1,367 @@ + + + + + + + galaxy – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    + +
    +
    +
    +
    +
    +

    Test du Samsung Galaxy S

    C’est une petite révolution pour moi qui passe d’un HTC Touch à un Galaxy S. Le Touch était bien en son temps, smartphone de première génération, mais vite dépassé par les évènements et l’avènement du web sur mobile. (suite…)

    +
    Par HugoPoi, il y a
    +
    + +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/10ff84f2b65710931e3c89729a14313f900e026d.00000560.html b/www/.content.EZtzwPjb/html/10ff84f2b65710931e3c89729a14313f900e026d.00000560.html new file mode 100644 index 0000000..6c29d14 --- /dev/null +++ b/www/.content.EZtzwPjb/html/10ff84f2b65710931e3c89729a14313f900e026d.00000560.html @@ -0,0 +1,364 @@ + + + + + + + youtube – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    + +
    +
    + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/115ffefa77ce77052768c9d7452166178d963962.00001205.js b/www/.content.EZtzwPjb/html/115ffefa77ce77052768c9d7452166178d963962.00001205.js new file mode 100644 index 0000000..11af308 --- /dev/null +++ b/www/.content.EZtzwPjb/html/115ffefa77ce77052768c9d7452166178d963962.00001205.js @@ -0,0 +1 @@ +var addComment={moveForm:function(a,b,c,d){var e,f=this,g=f.I(a),h=f.I(c),i=f.I("cancel-comment-reply-link"),j=f.I("comment_parent"),k=f.I("comment_post_ID");if(g&&h&&i&&j){f.respondId=c,d=d||!1,f.I("wp-temp-form-div")||(e=document.createElement("div"),e.id="wp-temp-form-div",e.style.display="none",h.parentNode.insertBefore(e,h)),g.parentNode.insertBefore(h,g.nextSibling),k&&d&&(k.value=d),j.value=b,i.style.display="",i.onclick=function(){var a=addComment,b=a.I("wp-temp-form-div"),c=a.I(a.respondId);if(b&&c)return a.I("comment_parent").value="0",b.parentNode.insertBefore(c,b),b.parentNode.removeChild(b),this.style.display="none",this.onclick=null,!1};try{f.I("comment").focus()}catch(l){}return!1}},I:function(a){return document.getElementById(a)}}; \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/1188842d3d8e11c0531b9cff60b6e6bd4c5ee95c.00000296.xml b/www/.content.EZtzwPjb/html/1188842d3d8e11c0531b9cff60b6e6bd4c5ee95c.00000296.xml new file mode 100644 index 0000000..20b4a13 --- /dev/null +++ b/www/.content.EZtzwPjb/html/1188842d3d8e11c0531b9cff60b6e6bd4c5ee95c.00000296.xml @@ -0,0 +1,39 @@ + + + #FAIL – HugoPoi + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Sat, 11 Feb 2017 17:37:20 +0000 + fr-FR + hourly + 1 + https://wordpress.org/?v=4.7.2 + + Orange et consort, impossible d’obtenir le désimlockage + http://blog.hugopoi.net/2013/09/15/orange-et-consort-impossible-dobtenir-le-desimlockage/ + http://blog.hugopoi.net/2013/09/15/orange-et-consort-impossible-dobtenir-le-desimlockage/#comments + Sat, 14 Sep 2013 23:01:40 +0000 + + + + + + + + + + http://blog.hugopoi.net/?p=794 + Lire la suite »

    ]]>
    + http://blog.hugopoi.net/2013/09/15/orange-et-consort-impossible-dobtenir-le-desimlockage/feed/ + 1 +
    +
    +
    diff --git a/www/.content.EZtzwPjb/html/12874bce4b3866ba449ff5333898ec1f667c1efd.00001238.js b/www/.content.EZtzwPjb/html/12874bce4b3866ba449ff5333898ec1f667c1efd.00001238.js new file mode 100644 index 0000000..16e4c13 --- /dev/null +++ b/www/.content.EZtzwPjb/html/12874bce4b3866ba449ff5333898ec1f667c1efd.00001238.js @@ -0,0 +1,2 @@ +/*! This file is auto-generated */ +!function(c,d){"use strict";var e=!1,n=!1;if(d.querySelector)if(c.addEventListener)e=!0;if(c.wp=c.wp||{},!c.wp.receiveEmbedMessage)if(c.wp.receiveEmbedMessage=function(e){var t=e.data;if(t)if(t.secret||t.message||t.value)if(!/[^a-zA-Z0-9]/.test(t.secret)){for(var r,a,i,s=d.querySelectorAll('iframe[data-secret="'+t.secret+'"]'),n=d.querySelectorAll('blockquote[data-secret="'+t.secret+'"]'),o=0;o + + + + + + Contact – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +

      +
      +
      + + + + + + +
      +

      Votre nom (obligatoire)
      +

      +

      Votre email (obligatoire)
      +

      +

      Sujet
      +

      +

      Votre message
      +

      +

      +
      +
      +
      +
      +
      +
      + +
      +
      + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/12fdc11095ca100e0b7bee13a83718b5e5078ce6.00000648.css b/www/.content.EZtzwPjb/html/12fdc11095ca100e0b7bee13a83718b5e5078ce6.00000648.css new file mode 100644 index 0000000..8043bbf --- /dev/null +++ b/www/.content.EZtzwPjb/html/12fdc11095ca100e0b7bee13a83718b5e5078ce6.00000648.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;background:#fff;border:1px +solid #f00;font-size:10pt;width:280px;padding:2px}span.wpcf7-not-valid-tip-no-ajax{color:#f00;font-size:10pt;display:block}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/13583d87018db76c42e157188e32929612cfc10b.00001299.xml b/www/.content.EZtzwPjb/html/13583d87018db76c42e157188e32929612cfc10b.00001299.xml new file mode 100644 index 0000000..3876379 --- /dev/null +++ b/www/.content.EZtzwPjb/html/13583d87018db76c42e157188e32929612cfc10b.00001299.xml @@ -0,0 +1,7 @@ + +1.0HugoPoihttp://blog.hugopoi.netHugoPoihttp://blog.hugopoi.net/author/hugopoi/Liste de Noëlrich600338<blockquote class="wp-embedded-content"><a href="/2012/11/18/liste-de-noel-2/">Liste de Noël</a></blockquote> +<script type='text/javascript'> +<!--//--><![CDATA[//><!-- + !function(a,b){"use strict";function c(){if(!e){e=!0;var a,c,d,f,g=-1!==navigator.appVersion.indexOf("MSIE 10"),h=!!navigator.userAgent.match(/Trident.*rv:11\./),i=b.querySelectorAll("iframe.wp-embedded-content");for(c=0;c<i.length;c++)if(d=i[c],!d.getAttribute("data-secret")){if(f=Math.random().toString(36).substr(2,10),d.src+="#?secret="+f,d.setAttribute("data-secret",f),g||h)a=d.cloneNode(!0),a.removeAttribute("security"),d.parentNode.replaceChild(a,d)}else;}}var d=!1,e=!1;if(b.querySelector)if(a.addEventListener)d=!0;if(a.wp=a.wp||{},!a.wp.receiveEmbedMessage)if(a.wp.receiveEmbedMessage=function(c){var d=c.data;if(d.secret||d.message||d.value)if(!/[^a-zA-Z0-9]/.test(d.secret)){var e,f,g,h,i,j=b.querySelectorAll('iframe[data-secret="'+d.secret+'"]'),k=b.querySelectorAll('blockquote[data-secret="'+d.secret+'"]');for(e=0;e<k.length;e++)k[e].style.display="none";for(e=0;e<j.length;e++)if(f=j[e],c.source===f.contentWindow){if(f.removeAttribute("style"),"height"===d.message){if(g=parseInt(d.value,10),g>1e3)g=1e3;else if(~~g<200)g=200;f.height=g}if("link"===d.message)if(h=b.createElement("a"),i=b.createElement("a"),h.href=f.getAttribute("src"),i.href=d.value,i.host===h.host)if(b.activeElement===f)a.top.location.href=d.value}else;}},d)a.addEventListener("message",a.wp.receiveEmbedMessage,!1),b.addEventListener("DOMContentLoaded",c,!1),a.addEventListener("load",c,!1)}(window,document); +//--><!]]> +</script><iframe sandbox="allow-scripts" security="restricted" src="/2012/11/18/liste-de-noel-2/embed/" width="600" height="338" title="« Liste de Noël » — HugoPoi" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" class="wp-embedded-content"></iframe> diff --git a/www/.content.EZtzwPjb/html/1383fca6e1488e880b0fbbda67f13a2bb107dce2.00000225.html b/www/.content.EZtzwPjb/html/1383fca6e1488e880b0fbbda67f13a2bb107dce2.00000225.html new file mode 100644 index 0000000..358cb50 --- /dev/null +++ b/www/.content.EZtzwPjb/html/1383fca6e1488e880b0fbbda67f13a2bb107dce2.00000225.html @@ -0,0 +1,612 @@ + + + + + + + + Niquer les DRMs d’Amazon AKA convertir vos ebook vers EPUB sans DRM – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
      +
      +
      + +
      +
      +
      +
      +
      +
      +

      Comment j’en suis arrivé là

      +

      Un jour dans une contrée de la blogosphère version 0.666 d’Internet, je voulais acheter un livre  numérique car moins cher et puis ça pollue moins ça équivaut à un aller-retour Paris-Nice en BM de CO2 quand tu le télécharge. Aussi gros avantages du livre numérique vous pouvez l’avoir à plusieurs endroits en même temps, sur mon téléphone et sur mes ordinateurs et bien sûr il est possible de Ctrl+F. Maintenant j’aime bien garder ma vie privée et choisir quand et avec quoi je peux ouvrir mes livres numériques. Donc l’application Kindle Amazon qui envoie toute les minutes les pages que vous avez lues, ce que vous avez cherché & cie. Ça craint un max NO WAY. Deuxième truc chiant j’ai pas les services Google sur mon inteliphone et j’ai que des OS Unix libre sous la main et je n’ai pas non plus de Kindle. Donc les DRMs ça devient une galère.

      +

      Comment qu’on va faire ?

      +
        +
      • Utiliser l’application Windows Amazon Kindle dans un préfixe Wine avec PlayOnLinux pour pouvoir récupérer ses livres et vos clés de déchiffrement.
      • +
      • Utiliser Calibre avec le plugin DeDRM pour pouvoir lire vos livres et les convertir au format EPUB sans DRM.
      • +
      • La solution présenté ici devrait marcher sans problème sous Windows. (Sans PlayOnLinux/Wine)
      • +
      • Pour Mac OSX je ne sais si c’est aussi simple mais il y a moyen. (Avec Homebrew)
      • +
      +

      Niquer les DRM avec classe et Calibre

      +

      1. Pré-requis

      +

      Pour cette recette vous aurez besoin de :

      + +

      2. Installer Amazon Kindle avec wine

      +
        +
      • Ouvrir PlayOnLinux
      • +
      • Aller dans Outils / Gérer les versions de Wine
      • +
      • Installer la version 3.5 de Wine en x86 (32bits)
      • +
      • Installer un programme non-listé
      • +
      • Installer un programme dans un nouveau disque virtuel
      • +
      • Choisir un nom du genre `amazonkindle`
      • +
      • Cocher Utiliser une autre version de Wine
      • +
      • Sélectionner la version 3.5
      • +
      • Sélectionner Windows version 32bits
      • +
      • Cancel l’installation de mono et gecko il ne vous servirons pas
      • +
      • Sélectionner l’installateur de Amazon Kindle
      • +
      • Normalement à cette étape Amazon Kindle ce lance et vous demande de vous authentifiez avec votre compte Amazon, pensez à choisir le bon domaine Amazon en bas.
      • +
      • Une fois connecté dans Amazon Kindle, quitter l’application et finir l’installation dans PlayOnLinux
      • +
      • Re-lancer Amazon Kindle depuis PlayOnLinux puis téléchargé vos livres ( commencez par un pour tester)
      • +
      +

      3. Ajouter python 2.7 dans le préfixe Wine de Amazon Kindle

      +

      Cette étape va nous permettre d’exécuter correctement le script d’extraction de DeDRM des clés de déchiffrement dans le préfixe Wine contenant nos clés.

      +
        +
      • Allez dans Configurer/Divers de votre préfixe Amazon Kindle
      • +
      • Cliquer sur Exécuter un .exe dans ce disque virtuel
      • +
      • Choisir l’installateur de python 2.7 (le .msi préalablement téléchargé)
      • +
      • Installer python 2.7 en laissant tout par défaut
      • +
      +

      4. Configurer Calibre

      +
        +
      • Décompresser DeDRM_tools
      • +
      • Lancer Calibre
      • +
      • Aller dans Préférences / Extensions
      • +
      • Charger une extension à partir d’un fichier et choisir dans le dossier plugin calibre de DeDRM_tools DeDRM_plugin.zip
      • +
      • Maintenant FERMER Calibre
      • +
      +

      5. Importer vos clés de déchiffrement

      +

      Cette étape est l’astuce en carton du jour permettant que tout fonctionne.

      +
        +
      • Aller dans PlayOnLinux
      • +
      • Aller dans Configurer/Divers de votre préfixe Amazon Kindle
      • +
      • Cliquer sur Ouvrir un Shell
      • +
      • Lancer echo $WINEPREFIX
      • +
      • Vous devriez avoir un truc du genre : /home/vagrant/.PlayOnLinux//wineprefix/amazonkindle
      • +
      • Lancer echo $PATH
      • +
      • Vous devriez avoir un truc du genre : /home/vagrant/.PlayOnLinux//wine/linux-x86/3.5/bin/:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/usr/lib/wine
      • +
      • Garder ces 2 variables nous allons en avoir besoin
      • +
      • Maintenant ouvrez un terminal normal
      • +
      • Lancer PATH='/home/vagrant/.PlayOnLinux//wine/linux-x86/3.5/bin/:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/usr/lib/wine' wine --version
      • +
      • Vous devriez avoir wine-3.5 afficher ce qui veut dire que tout est bon et que c’est bien la version de wine installer pour le prefixe Amazon Kindle qui se lance
      • +
      • Lancer PATH='/home/vagrant/.PlayOnLinux//wine/linux-x86/3.5/bin/:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/usr/lib/wine' calibre
      • +
      • Cliquer sur Afficher uniquement les extensions installées par l’utilisateur, puis Sélectionner DeDRM, puis Personnaliser une extension
      • +
      • Cliquer sur Kindle for Mac/PC ebooks
      • +
      • Dans le champs WINEPREFIX mettez la valeur correspondante relevé plus haut chez moi /home/vagrant/.PlayOnLinux//wineprefix/amazonkindle
      • +
      • Puis cliquer sur le plus + en vert
      • +
      • Normalement si tout va bien vous avez le panneau Unique Key Name qui s’affiche vous pouvez le valider
      • +
      • Voilà vous avez importé une clé de déchiffrement
      • +
      +

      6. Importer vos livres puis les convertir

      +
        +
      • Cliquer sur Ajouter des livres
      • +
      • Aller chercher vos livres Kindle dans Documents/My Kindle Content
      • +
      • Si tout est bon vous pouvez ouvrir vos livres et les visualiser
      • +
      • Faites un clique droit Convertir sur un livre au format AZW3 puis vous pouvez lancer la conversion au format EPUB
      • +
      +

      Fin

      +

      Clairement j’en ai chier pour en arriver jusque là.

      +

      Beaucoup de choses sont automatisables dans Calibre une fois la récupérations des clés réussi.

      +

      Vous devez toujours repasser par l’application Amazon Kindle pour la partie téléchargement des livres je ne crois pas qu’il y est d’autre solutions pour le moment. (à part disposer d’un Kindle enregistré sur votre compte Amazon)

      +

      Calibre est parfait pour synchroniser vos E-readeuses.

      +

      PS : Faut pas le dire mais la technique montré ici marche aussi avec les livres empruntés dans le cadre de l’abonnement Kindle à 9€ par mois. Cependant je ne sais pas comment Amazon va calculer les redevances pour vos auteurs préférés car normalement il se base sur le pourcentage de lecture d’un livre. Dans notre cas ce sera 0% systématiquement …

      +

      Inspirations

      +
        +
      1. WineHQ Amazon Kindle https://appdb.winehq.org/objectManager.php?sClass=version&iId=35955&iTestingId=102115
      2. +
      3. Korben https://korben.info/comment-deproteger-un-livre-kindle-pour-le-preter-le-lire-sur-lordi-ou-lexporter-sous-un-autre-format-pdf-epub.html
      4. +
      +
      +
      + +
      +
      +
      +
      +
      +

      + 2 commentaires

      +
      + +
      +
      +
      +
      +

      + Romaric + · 3 mai 2019 à 18 h 19 min +

      +

      Juste dire un ENORME MERCI pour ce tutoriel, grâce auquel j’ai réussi à récupérer un livre acheté sur Amazon pour le lire sur une liseuse KOBO.

      + +
      +
      + +
      + +
      +
      +
      +
      +

      + Romaric + · 4 mai 2019 à 20 h 11 min +

      +

      Seule chose à penser à faire, sous peine sinon de ne pas réussir à relancer Kindle.
      +Une fois installée et lancée, dans l’appli Kindle, dans les réglages, désactiver l’installation automatique des mises à jour. Sinon au prochain lancement de Kindle par Playonlinux, il tombera sur l’installeur de nouvelle version et plantera.

      + +
      +
      + +
      +
      +
      +

      Répondre à Romaric Annuler la réponse

      Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

      +
      +
      +

      + +

      +
      +
      +
      +
      +
      +
      + +
      +
      +
      +
      +
      +
      + + +
      + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/13a0e9fd45fcf4eedcbf4d49b7499e1c1c49e161.00000375.html b/www/.content.EZtzwPjb/html/13a0e9fd45fcf4eedcbf4d49b7499e1c1c49e161.00000375.html new file mode 100644 index 0000000..747aabe --- /dev/null +++ b/www/.content.EZtzwPjb/html/13a0e9fd45fcf4eedcbf4d49b7499e1c1c49e161.00000375.html @@ -0,0 +1,364 @@ + + + + + + + D-Day – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
      +
      +
      +
      + +
      +
      +
      +
      +
      +

      Download-Day

      Bon voilà, je vais officialiser ma participation au D-Day organisé par LinuxManua, en date du 1er novembre 2010. Le but de l’opération étant de télécharger 20 Go et cela uniquement sur les réseaux Peer to Peer de préférence pas anonyme : Edonkey2000, Gnutella, Bitorrent, etc. Alors comme je suis joueur, je Lire la suite…

      +
      +
      + +
      +
      +
      +
      + +
      +
      + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/1435ec9ff9b60af8e9f25113d76e343c44e7d15e.00000220.html b/www/.content.EZtzwPjb/html/1435ec9ff9b60af8e9f25113d76e343c44e7d15e.00000220.html new file mode 100644 index 0000000..6050d38 --- /dev/null +++ b/www/.content.EZtzwPjb/html/1435ec9ff9b60af8e9f25113d76e343c44e7d15e.00000220.html @@ -0,0 +1,543 @@ + + + + + + + + Pourquoi je suis sous Linux bordel ! – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
      +
      +
      + +
      +
      +
      +
      +
      +
      +

      Début d’année 2017, 6 mois que j’ai pas écrit sur le blog ! Cette année j’ai pris une résolution un choix de merde je n’installerais plus Windaube que se soit pour moi ou pour la dépanne, les amis, la famille, mon chat … Bref pendant les fêtes j’avais de la maintenance à faire comme d’habitude fallait faire une réinstallation pour la famille « met moi Windows 7 ça me suffit et au moins il y tout qui marche dessus » ça faisait environ plus 1 an que j’avais pas installé de windaube. Je me dit que ça va me prendre une petite demi journée. J’ai mis plus d’une journée si on compte le temps de faire les mises à jour.

      +

      Une installation de Windows 7 dans le détails en vrai :

      +
        +
      1. 30 minutes pour faire une clé USB bootable avec MBR qui marche pour installer
      2. +
      3. La partie facile installer Windows, tu clic clic environ 30 minutes et tu as bureau qui marche
      4. +
      5. Après faut installer les pilotes donc là soit tu fais le tour du web à la recherche de pilotes soit tu utilise Snappy driver : 2 Go de drivers à télécharger tu en a pour 2 heure avec une connexion ADSL des compagnes de 5Mbits/s.
      6. +
      7. Après tout les pilotes sont OK, il te faut faire les mises à jour Windows la première passe bien dure environ 2 heures.
      8. +
      9. Après la recherche des mises à jour plante tu ne sais pas pourquoi donc tu ouvre le gestionnaire des tache pour t’apercevoir que le service WSU plante et bouffe 25%CPU et 1Go de mémoire (svchost.exe). Donc tu fais le tour du web des forums pour enfin trouver l’update qui résout le problème. Donc là tu as perdu 2 heures.
      10. +
      11. Une fois le problème de Windows Update réglé tu relance les mises à jour et encore 1Go de mise à jour à télécharger, soit encore environ 2 heures d’installation au total.
      12. +
      13. Donc la tu es bien, tu es à jour, donc t’installe un antivirus celui de Microsoft est pas trop mal ça te prends 10 minutes.
      14. +
      15. Après il te faut quelques applications genre LibreOffice et Thunderbird donc encore environ une petite demi-heure de téléchargement et installation.
      16. +
      17. Ensuite reste l’activation de Windows là tu te dit c’est simple tu prends la clé d’activation OEM qui est sur le PC et tu valide par internet. Et bah non ça marche pas car tu as changé le disque-dur donc tu change l’empreinte matériel de la machine donc faut faire une activation par téléphone en tapant 50 numéros. Ce que je n’ai pas fait pour finir par tout simplement utiliser un crack pour gagner 30 minutes à essayer de convaincre les gens du support Microsoft de te réactiver ta licence.
      18. +
      19. Voilà tu as une machine qui marche jusqu’à la prochaine mise à jour foireuse de Crosoft ou un malware de merde.
      20. +
      +

      Putain mais installer une distribution Linux type LinuxMint c’est tellement plus simple.

      +

      [Parce que moi aussi je peux écrire comme sur Topitapette et Facepalm]

      +

      Voilà mon top 10 des pourquoi je suis sous LINUX BORDEL

      +
        +
      1. Tu as le choix, la diversité
      2. +
      3. Je peux tout contrôler et aller voir sous le capot ce qui se passe
      4. +
      5. Je peux tout modifier comme je veux moi ! NAH !
      6. +
      7. Je peux refiler les modifications que j’ai faites à mes amis, mon chat et Poutine, si je veux
      8. +
      9. Du coup là, je suis en confiance
      10. +
      11. Moi aussi j’ai le droit d’avoir une vie privé
      12. +
      13. Car Linux c’est plus rapide que Windaube
      14. +
      15. Je peux même jouer au jeux vidéos avec.
      16. +
      17. La ligne de commande c’est la vie genre $ cat list1 list2 | sort | uniq -u > lestrucsquisontpasendouble
      18. +
      19. Contrôler son informatique en 2017, c’est contrôler ça vie
      20. +
      +

      [/Parce que moi aussi je peux écrire comme sur Topitapette et Facepalm]

      +

      IL EST GRAND TEMPS DE REPRENDRE LE CONTRÔLE SUR L’OUTIL INFORMATIQUE BORDEL.

      +
      +
      +
      +
      +
      Catégories : Aventure PCNews
      +
      +
      +
      + + + + + + + + + +
      +
      +
      +
      +
      +
      +
      +

      + 1 commentaire

      +
      + +
      +
      +
      +
      +

      + Victor + · 28 décembre 2019 à 0 h 22 min +

      +

      Salut

      +

      Pour moi, c’est exactement le contraire. Une install de Windows 7 (avec mises à jour intégrées) = 30 minuites chrono ! Et côté périphériques, presque tout est plug and play.

      +

      Avec Linux, c’est la galère assurée ! Y’a pas une distribution qui a les mêmes fonctionnalités et pas une qui ne fonctionne complètement du premier coup ! C’est pire qu’un jeu de Lego.
      +Y’a trop peu de périphériques qui sont pris en charge en natif.
      +Il faut perdre son temps à compiler les drivers pour faire fonctionner de simples périphériques de base.
      +Et tout ça, en ligne de commande bien sûr ! C’est gavant !
      +On est bientôt en 2020 quand même…

      + +
      +
      + +
      +
      +
      +

      Répondre à Victor Annuler la réponse

      Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

      +
      +
      +

      + +

      +
      +
      +
      +
      +
      +
      + +
      +
      +
      +
      +
      +
      + + +
      + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/14545f76496e52964cca36fb929bbdc1400fa926.00000084.html b/www/.content.EZtzwPjb/html/14545f76496e52964cca36fb929bbdc1400fa926.00000084.html new file mode 100644 index 0000000..0566593 --- /dev/null +++ b/www/.content.EZtzwPjb/html/14545f76496e52964cca36fb929bbdc1400fa926.00000084.html @@ -0,0 +1,497 @@ + + + + + + Démontage Asus U36 | HugoPoi + + + + + + + + + + + + + + + + + +
      + +
      +
      +

      Démontage Asus U36

      + +
      +
      + +

      J’ai acheté un petit SSD pour mettre dans mon U36 acheté il y a quelques mois, je n’ai pas trouvé de procédure de démontage sur Internet donc voici les photos de mon démontage.

      +

      1) Commencer par enlever toutes les vis et la trappe pour accéder à la RAM, puis déconnecter les deux connecteurs clavier et touchpad qui se situent juste à coté de la carte wifi.

      +

      2) Retourner le pc et à l’aide d’un petit tournevis plat, dé-clipser les petits clips sur tout le tour du pc. Vous pouvez maintenant enlever toute la partie supérieur.

      +

      +

      3) Démontage Terminé :D

      +

      4) Galerie

      + + +
      +
      +
      + + +
      + + +
        +
      1. +
        + +
        +

        Salut Hugo,

        +

        Comment as tu fait pour déconnecter les deux connecteurs clavier et touchpad qui se situent juste à coté de la carte wifi ?

        +

        Merci d’avance,
        +John

        +
        + +
        +
          +
        • +
          + +
          +

          Désolé pour l’attente,

          +

          Il faut prendre un petit tournevis plat et relever les petites languettes au dessus des nappes de façon à la mettre à 90° par rapport à la carte mère.

          +
          + +
          +
        • +
        +
      2. +
      3. +
        +
        + leboulanger + +
        +
        +

        bonjour,
        +super ton tuto ! j’ai la m idée que toi à savoir mettre un ssd mais est ce que tu sais si çest du SATA 1 ou 2 ? concernant les connecteurs je ne l’ai situe pas du tout. est ce que tu pourrais ajoutait une photo stp ?
        +merci en ts cas pour la contribution

        +
        + +
        +
          +
        • +
          + +
          +

          Salut,
          +Pour le mode SATA c’est du 2. Après j’ai pas d’autre photo mais le connecteur il est situé juste au bout du disque sur la gauche.

          +
          + +
          +
        • +
        +
      4. +
      5. +
        +
        + Asus U36 et OCZ Vertex 3 la suite | HugoPoi - pingback on 15 mai 2012 at 3 h 39 min +
        +
        +
      6. +
      7. +
        + +
        +

        J’ai aussi démonté le mien pour mettre un ssd et il n’a plus jamais redémarré (même avec le disque dur initial) …
        +Un conseil, soyez très prudents !

        +
        + +
        + +
      8. +
      9. +
        + +
        +

        Emiso tu es un boulet

        +
        + +
        + +
      10. +
      11. +
        + +
        +

        Mon U36 avec un SSD Crucial M4 et une carte Intel Centrino n-6230 à la place de la n-100… que du bonheur.

        +

        Merci pour le tuto bien utile.

        +
        + +
        +
      12. +
      13. +
        + +
        +

        merci pour ce tuto; a noter un truc pour ne pas perdre les vis et savoir où les replacer:

        +

        http://fr.slideshare.net/stepmond/remplacement-ecran-sony-vaio?ref=http://www.pcsoleil.fr/ecran-pc-portable-sony-vaio-casse/

        +

        3eme diapo

        +
        + +
        +
      14. +
      15. +
        + +
        +

        Can you send me a close up picture of both sides of the U36JC I/O board? It would be nice if you could give me also the resistor/capacitor values. I need to connect my SATA hard drive, but the board itself is very expensive. Do you think I can solder the SATA wires to a cable and plug that to the hard drive?

        +
        + +
        +
          +
        • +
          + +
          +

          I don’t want to reopen my laptop just for take picture. I don’t know if there are any out pins to solder a SATA connector but in Intel driver menu on Windows a port with no-connection appear.

          +
          + +
          +
        • +
        +
      16. +
      17. +
        + +
        +

        Hello , j’ai également cet Asus et comme tout le monde je pense, bien tenté de remplacer le disque dur de base par un ssd ^^.
        + Sur la première image de ton petit tuto, tu sembles montrer des emplacements vis sous les antidérapants.. ca me semble étrange ;p. Je voulais savoir si ceux si ne risquaient pas de s’abîmer (et du coup s’ils se remettaient également facilement).
        + Si tu passe par là, merci de la réponse!

        +
        + +
        +
          +
        • +
          + +
          +

          J’ai pu décoller et recoller sans problème les patins antidérapants. Mais à la rigueur prévoir du double-face pour remplacement.

          +
          + +
          +
        • +
        +
      18. +
      19. +
        + +
        +

        Oh my goodness! Incredible article dude! Thank
        +you so much, However I am going through issues with your RSS.
        +I don’t know why I am unable to subscribe to it. Is there anyone else getting the same RSS problems? Anybody who knows the answer will you kindly respond? Thanks!!

        +
        + +
        + +
      20. +
      + +
      +

      Répondre à David ¬
      Annuler la réponse

      +
      +

      + +

      +

      NOTE - Vous pouvez utiliser les éléments et attributs HTML tags and attributes:
      <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

      + + + +

      +

      +
      +
      +

      Trackbacks and Pingbacks:

      + +
      +
      +
      +
      + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/14672bac1da56bb010de3016ad2856d52eb2ee18.00000731.css b/www/.content.EZtzwPjb/html/14672bac1da56bb010de3016ad2856d52eb2ee18.00000731.css new file mode 100644 index 0000000..e06789b --- /dev/null +++ b/www/.content.EZtzwPjb/html/14672bac1da56bb010de3016ad2856d52eb2ee18.00000731.css @@ -0,0 +1,97 @@ +.wp_syntax { + color : #100; + background-color: #f9f9f9; + border : 1px solid silver; + margin : 0 0 1.5em 0; + overflow : auto; +} + +/* IE FIX */ +.wp_syntax { + overflow-x : auto; + overflow-y : hidden; + padding-bottom: expression(this.scrollWidth > this.offsetWidth ? 15 : 0); + width : 99%; +} + +.wp_syntax table { + border : none !important; + border-collapse: collapse !important; + margin : 0 !important; + padding : 0 !important; + width : 100% !important +} + +.wp_syntax caption { + margin : 0 !important; + padding : 2px 0 !important; + width : 100% !important; + background-color: #def !important; + text-align : left !important; + font-family : monospace !important; + font-size : 12px !important; + line-height : 1.2em !important; +} + +.wp_syntax caption a { + color : #1982d1 !important; + text-align : left !important; + font-family : monospace !important; + font-size : 12px !important; + line-height : 16px !important; + text-decoration: none !important; +} + +.wp_syntax caption a:hover { + color : #1982d1 !important; + text-decoration: underline !important; +} + +.wp_syntax div, .wp_syntax td { + border : none !important; + text-align : left !important; + padding : 0 !important; + vertical-align: top !important; +} + +.wp_syntax td.code{ + background-color: #EEE; + background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% ); + background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% ); + background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% ); + background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% ); + background-image: linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% ); + background-size : 1px 32px; + line-height : normal !important; + white-space : normal !important; + width : 100% !important; +} + +/* potential overrides for other styles */ +.wp_syntax pre { + background : transparent !important; + border : none !important; + margin : 0 !important; + width : auto !important; + float : none !important; + clear : none !important; + overflow : visible !important; + font-family : monospace !important; + font-size : 14px !important; + line-height : 16px !important; + padding : 0 4px !important; + white-space : pre !important; + -moz-box-shadow : 0 0 0 rgba(0, 0, 0, 0) !important; /* FF3.5+ */ + -webkit-box-shadow : 0 0 0 rgba(0, 0, 0, 0) !important; /* Saf3.0+, Chrome */ + box-shadow : 0 0 0 rgba(0, 0, 0, 0) !important; /* Opera 10.5, IE 9.0 */ + -webkit-border-radius: 0 !important; + -moz-border-radius : 0 !important; + border-radius : 0 !important; +} + +.wp_syntax td.line_numbers pre { + background-color: #def !important; + color : gray !important; + text-align : right !important; + min-width : 16px !important; +} diff --git a/www/.content.EZtzwPjb/html/14d731aae648fc7acc55d8beed36be0592899399.00000651.css b/www/.content.EZtzwPjb/html/14d731aae648fc7acc55d8beed36be0592899399.00000651.css new file mode 100644 index 0000000..8043bbf --- /dev/null +++ b/www/.content.EZtzwPjb/html/14d731aae648fc7acc55d8beed36be0592899399.00000651.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;background:#fff;border:1px +solid #f00;font-size:10pt;width:280px;padding:2px}span.wpcf7-not-valid-tip-no-ajax{color:#f00;font-size:10pt;display:block}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/1537c3a53a6a9438b6238da3cbd07db976f590c7.00000154.html b/www/.content.EZtzwPjb/html/1537c3a53a6a9438b6238da3cbd07db976f590c7.00000154.html new file mode 100644 index 0000000..184a00d --- /dev/null +++ b/www/.content.EZtzwPjb/html/1537c3a53a6a9438b6238da3cbd07db976f590c7.00000154.html @@ -0,0 +1,543 @@ + + + + + + + + Démonter un Switch Cisco 2950T – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
      +
      +
      + +
      +
      +
      +
      +
      +
      +

      Après avoir tout tenté sur le port console, le switch semblait mort donc démontage. J’ai donc ouvert ce petit switch 24 ports. C’est assez simple, il y a quelques vis à l’arrière ensuite faire coulisser le châssis.

      +

      Cisco 2950T-24

      +

      +

      Cisco 2950T

      +

      Après démontage rien de bien surprenant à part le fait qu’il n’y a aucun composant de marque Cisco présent au niveau hardware. Le contrôleur principale est un Broadcom BCM5618A1KTB, il se charge de la gestion matériel des 24 ports Ethernet 100Mb et les 2 ports 1Gb.

      +

      Cisco 2950T

      +

      Juste à coté de la mémoire vive dont 2 emplacements ne sont pas soudés donc ça prouverai que différents modèles de switch partagent la même carte mère.Cisco 2950T

      +

      Chaque groupe de 8 ports est gérer par un contrôleur Intel qui gère le niveau physique.

      +

      Cisco 2950T

      +

      La carte d’alimentation, j’ai pas fait de mesure mais ça doit fournir du courant continu type 12V et 5V.

      +

      Cisco 2950T

      +

      Vue d’ensemble

      +

      Cisco 2950T

      +

      Je n’avais pas d’oscilloscope sous la main donc pas possible de confirmer la panne mais vu que le port COM ne renvoyait aucun caractère dans le terminal j’en conclu que le convertisseur basse tension vers 12V série est cramé. J’ai aussi pu observer des trames type DHCP discover sur les interfaces réseau donc très bizarre pour un switch.

      +
      +
      +
      +
      +
      Catégories : Hardware
      +
      +
      +
      + + + + + + + + + +
      +
      +
      +
      +
      +
      +
      +

      + 3 commentaires

      +
      + +
      +
      +
      +
      +

      + watchix + · 11 février 2013 à 20 h 17 min +

      +

      Du dhcp discover pour un switch c’est pas si étrange lorsque on ne spécifie pas un « no ip addr » sur un Vlan ;)

      + +
      +
      + +
      + +
      +
      +
      +
      +

      + Barry + · 21 février 2015 à 14 h 51 min +

      +

      Slt HugoPoi , j’ai le meme switch à demonter pour un teardown, j’aimerais savoir si je peux avoir de l’aide pour le fonctionnement de certains circuits intégrés à l’interieur?

      + +
      +
      +
        +
        + +
        +
        +
        +
        +

        + HugoPoi + · 29 avril 2015 à 16 h 19 min +

        +

        Je ne connais pas le fonctionnement détaillé de ce genre de bestiole mais ça se rapproche d’un ordinateur classique.

        + +
        +
        + +
      + +
      +
      +
      +

      Laisser un commentaire

      Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

      +
      +
      +

      + +

      +
      +
      +
      +
      +
      +
      + +
      +
      +
      +
      +
      +
      + + +
      + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/154dcee85d51d354963bb744942de9fc3b2d9c9b.00000504.html b/www/.content.EZtzwPjb/html/154dcee85d51d354963bb744942de9fc3b2d9c9b.00000504.html new file mode 100644 index 0000000..57bdb52 --- /dev/null +++ b/www/.content.EZtzwPjb/html/154dcee85d51d354963bb744942de9fc3b2d9c9b.00000504.html @@ -0,0 +1,364 @@ + + + + + + + s3 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
      +
      +
      +
      + +
      +
      +
      +
      +
      +
      +
      + +
      +
      +
      +
      + +
      +
      + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/1593badede17f35fef6c1be8d5c93a29aa0fb0b3.00000186.html b/www/.content.EZtzwPjb/html/1593badede17f35fef6c1be8d5c93a29aa0fb0b3.00000186.html new file mode 100644 index 0000000..11d415d --- /dev/null +++ b/www/.content.EZtzwPjb/html/1593badede17f35fef6c1be8d5c93a29aa0fb0b3.00000186.html @@ -0,0 +1,318 @@ + + + + + + + + La table du salon 2 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
      +
      +
      +
      +
      +
      +
      + + + +

      +
      +
      +
      +
      +

      + 0 commentaire

      +
      +
      +
      +

      Laisser un commentaire

      Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

      +
      +
      +

      + +

      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      +
      + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/15a338e53fac4cab07b91cf8caafa38a5adbcc66.00000127.html b/www/.content.EZtzwPjb/html/15a338e53fac4cab07b91cf8caafa38a5adbcc66.00000127.html new file mode 100644 index 0000000..b670591 --- /dev/null +++ b/www/.content.EZtzwPjb/html/15a338e53fac4cab07b91cf8caafa38a5adbcc66.00000127.html @@ -0,0 +1,1370 @@ + + + + + + + + Réparations Samsung SyncMaster 2232BW – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
      +
      +
      + +
      +
      +
      +
      +
      +
      +

      Allô docteur on a un problème,

      +

      En ce dimanche calme avant la fin de mes partiels, mon écran Samsung SyncMaster 2232BW commençait à faire des siennes. Celui-ci depuis un mois ou deux clignotait de façon systématique au démarrage, au début pendant seulement quelques secondes, puis au fur et à mesure, de plus en plus jusqu’à devoir attendre 10 minutes pour que je puisse l’utiliser. Après 3 ans et 4 mois de bons et loyaux services, il voulait me quitter. J’ai tenté le support Samsung par email avec peu d’espoir car l’écran a dépassé sa garantie de 4 mois (oui oui les bâtards -> obsolescence programmée). Et donc j’ai eu le droit à un joli mail automatique me disant de contacter un numéro non surtaxé (mais avec combien de temps d’attente ?), ce que je n’ai pas fait car je n’avais pas envie de passer 30min au téléphone pour au final avoir un « On est désolé mais on ne peut rien faire pour vous car la garantie est dépassée, mais on peut envoyer votre écran en SAV pour faire un devis pour seulement 50 boules ». Concernant le support email de Samsung France, je leur donne une note de 0/20 puisque ce n’est pas un support mais une redirection vers le téléphone.

      +

      +

      Symptômes

      +

      Clignotements de l’écran et de la LED power systématiques à chaque démarrage de l’écran. Je me suis tout de suite douté d’un problème d’alimentation et après quelques recherches sur google, confirmation du problème sur beaucoup d’écrans et téléviseurs. Dans 99% des cas ce clignotement est dû à des condensateurs défectueux qu’il faut simplement changer :-D

      +

      Démontage

      +

      Donc après avoir cerné le problème, j’ai ouvert l’écran pour chercher les condos défectueux. J’ai trouvé une petite vidéo pour mon écran :

      +

      +

      Voici quelques photos en plus pour vous aider :

      +

      Les outils que j’ai utilisé pour le démontage

      +

      Position des clips

      +

      Carte d’alimentation dans son emplacement

      +

      Et voici les condensateurs qui posent problèmes. Comme vous pouvez le voir sur la photo, ils sont très facilement identifiable car ils sont bombés sur le dessus.

      +

      Condensateurs défectueux

      +

      Vous devez donc acheter des condensateurs de remplacement, par exemple sur Conrad.

      +

      Mes condensateurs suivant étaient endommagés:

      +
        +
      • 1 de 330uF 25V remplacé par un 470uF 25V
      • +
      • 3 de 820uF 25V remplacé par des 1000uF 50V
      • +
      +

      Pour la réparation, il vous faut un fer à souder avec une panne pas trop grosse mais d’une grosse puissance car les soudures sont très solides (j’ai galéré avec un fer pro qui monte jusqu’à 400°).

      +

      Tout remarche nickel après remontage, plus de clignotement pour seulement quelques euros.

      +

      edit du 19 aout 2014 : j’ai trouvé le service manuel de l’écran si besoin samsung_2232bw_chassis_lpe22bs_sm

      + + +
      +
      + +
      +
      +
      +
      +
      +

      + 41 commentaires

      +
      + +
      +
      +
      +
      +

      + c'est_moi + · 30 janvier 2012 à 18 h 57 min +

      +

      Mille mercis et mille félicitations pour cette fiche technique si pédagogue.

      +

      J’espère que le partiels se passent plus que parfait !!

      +

      J’ai gardé l’url de la page pour réparer mon écran dans un petit mois : j’espère que la page soit toujours là ;-)

      +

      Merci encore.

      + +
      +
      + +
      + +
      +
      +
      +
      +

      + Maxime + · 5 mai 2012 à 12 h 31 min +

      +

      Bonjour HugoPoi!

      +

      Merci pour toutes vos infos et votre topic, je voulais avoir quelques précisions sur les condos à changer pour samsung 2232bw, je veux passer commande mais j’ai un problème avec les dimensions des condos, si vous pouvez m’informer de ce que je pourrais acheter car il y a trop de références. En vous remerciant A+ Maxime

      + +
      +
      +
        +
        + +
        +
        +
        +
        +

        + HugoPoi + · 14 juin 2012 à 22 h 56 min +

        +

        N’importe quel condensateur polarisé avec des caractéristiques proches devrait marché.

        + +
        +
        + +
      + +
      + +
      +
      +
      +
      +

      + gaubjezj + · 14 juin 2012 à 22 h 32 min +

      +

      Merci pour le tuto qui m’a bien aidé.
      +J’ai utilisé un fer de 40 W avec une panne fine et
      +une pompe à dessouder et j’ai retiré les condensateurs sans problème.
      +Merci encore (3€40 pour le dépannage).

      + +
      +
      + +
      + +
      +
      +
      +
      +

      + DragonTribal + · 2 juillet 2012 à 12 h 02 min +

      +

      super merci pour manifique tuto.
      +Est-il possible de changer les 5 condensateurs 820uF 25V par des 1000uF 50V? car moi mes 5 condensateurs sont presque HS ;-)

      +

      Cordialement

      + +
      +
      +
        +
        + +
        +
        +
        +
        +

        + HugoPoi + · 2 juillet 2012 à 12 h 25 min +

        +

        Oui je penses que ça marchera étant donné que c’est des valeurs plus grandes.

        + +
        +
        + +
      + +
      + +
      +
      +
      +
      +

      + FRED + · 11 juillet 2012 à 19 h 11 min +

      +

      Bravo, MERCI.
      +Je n’ai encore rien fait…mais j’ai le même problème, et tu me donnes la solution.
      +Super.

      + +
      +
      + +
      + +
      +
      +
      +
      +

      + daninpet + · 31 août 2012 à 10 h 10 min +

      +

      Merci mille fois!

      +

      J’avais ce problème, et j’ai emmener la photo des trucs a remplacer chez le réparateur du coin et voila!! Ça m’a coûté 7 Euros (mais j’habite en Thaïlande)

      + +
      +
      + +
      + +
      +
      +
      +
      +

      + moi + · 15 novembre 2012 à 15 h 25 min +

      +

      super mon 2232bw vient de lâcher, les 3 + 1 condos sont gonflés j ai trouvé un 330 en 35v qui traîné sur un écran mort et j’ai commander 5 1000uf 35v sur ebay pour moins de 3 dollars, ca devrait le faire j’espere j’attend d’être livré merci! par contre j’ai qu’un gros pistolet a soudure et un gros fil d’étain, c’est pas évident mais bon ca le fait quand même =)

      + +
      +
      +
        +
        + +
        +
        +
        +
        +

        + moi + · 7 décembre 2012 à 9 h 33 min +

        +

        parfait je vient de recevoir les condos; j ai meuler la panne du fer a souder pour la tailler en mine de crayon et j ai reussi a les souder facilement ils étaient un peu plus gros mais ca passe tout juste, mais attention ne pas prendre des plus gros! l écran fonctionne nickel maintenant.

        + +
        +
        + +
      + +
      + +
      +
      +
      +
      +

      + Croco + · 19 janvier 2013 à 18 h 39 min +

      +

      Je souhaiterai savoir si tu as utilisé un fer à souder bien précis étant donné que la carte est une multi couche.
      +Merci

      + +
      +
      + + +
      + +
      +
      +
      +
      +

      + momo + · 10 juin 2013 à 13 h 15 min +

      +

      slut je voudrai savoir ou trouvé les condansateur a changer sur mon ecran qui clignote

      + +
      +
      + + +
      + +
      +
      +
      +
      +

      + lokmane + · 5 juillet 2013 à 16 h 08 min +

      +

      merci j’avais un ecran rouge ! et c’etais la tresse qui relie mon ecran votre page m’a aider a l’ouvrir et a le reparer merci bien

      + +
      +
      + +
      + +
      +
      +
      +
      +

      + ML + · 21 août 2013 à 19 h 11 min +

      +

      Merci ! Ecran réparé. Halte à l’obsolescence programmée.

      + +
      +
      + +
      + +
      +
      +
      +
      +

      + raymond + · 31 octobre 2013 à 13 h 20 min +

      +

      ai vu votre vidéo et les explications pour la reparation de mon écran , apparemment le méme probléme l écran passe au noir apres quelque seconde , j ai vu un le condensateur en bas a gauche gonflé , je l ai fait changé (10€) les autre condensateur étant toujour bon d après la personne qui me l a changé , mais j ai toujour le méme probléme cela peut il venir de la carte video a gauche ?

      + +
      +
      +
        +
        + +
        +
        +
        +
        +

        + HugoPoi + · 20 décembre 2013 à 12 h 27 min +

        +

        Si la led bleu du bouton power s’éteint aussi c’est un problème d’alimentation sinon c’est plus compliqué et ça peut provenir de condensateurs sur la partie vidéo. Changé tous les plus gros condensateurs sur la partie alimentation pourrait être un bon début même si ils ne paraissent pas endommagé.

        + +
        +
        + +
      + +
      + +
      +
      +
      +
      +

      + damien + · 4 novembre 2013 à 0 h 29 min +

      +

      bonjour,

      +

      j’ai des crasses coincées entres l’écran et le truc juste derrière, est ce qu’on sais les enlever en démontant la dalle ?

      + +
      +
      +
        +
        + +
        +
        +
        +
        +

        + HugoPoi + · 20 décembre 2013 à 12 h 28 min +

        +

        Je ne sais si cette partie de la dalle est démontable, je penses que c’est collé mais vous pouvez essayer.

        + +
        +
        + +
      + +
      + +
      +
      +
      +
      +

      + mac + · 1 décembre 2013 à 17 h 30 min +

      +

      Merci HugoPoi, avec ces excellents conseils et tuto vidéo, mon écran est reparti pour une nouvelle vie.
      +Pour les composants, si vous êtes sur Paris ou proche. La boutique RAM électroniques est une bonne adresse, 138 bd Diderot 75012 Paris (Place de la Nation).

      + +
      +
      + +
      + +
      +
      +
      +
      +

      + Bouddhid + · 16 janvier 2014 à 19 h 21 min +

      +

      Merci beaucoup pour ces conseils ! J’étais à 2 doigts de jeter mon écran, le voilà comme neuf pour moins de 5€ ! Vive la bricole !

      + +
      +
      + +
      + +
      +
      +
      +
      +

      + Vincent + · 17 mai 2014 à 16 h 45 min +

      +

      Alors là merci.

      +

      Pour ce post, les photos, la vidéo, tout y est.

      +

      J’ai démonté l’écran assez vite, enlevé la carte, regarder quel condensateurs étaient gonflés,(il y en avaient 4), un magasin d’électronique sur lyon et une heure de démontage, soudure, remontage plus tard, voilà, c’est tout beau.
      +Ca ne clignote plus, ça s’allume comme avant, comme neuf.

      +

      Et dire que j’allais jeter cet écran et claquer 350 euros pour un neuf…

      +

      Coût de l’opération pour 4 condensateurs, du fil d’étain 7 euros.

      +

      Je précise que je n’avais jamais fais de soudure sur composant électronique auparavant.
      +Comme quoi cette opération de réparation est à la portée de tous.

      + +
      +
      + +
      + +
      +
      +
      +
      +

      + Julot + · 6 juillet 2014 à 13 h 49 min +

      +

      Site vraiment détaillé et très claire. J’ai pu dépanner mon écran avec succès. Merci beaucoup pour ces précieuses explications.

      + +
      +
      + +
      + +
      +
      +
      +
      +

      + PaniK31 + · 29 juillet 2014 à 9 h 21 min +

      +

      Pas besoin d’une grosse puissance pour le fer, il faut au préalable gratter le vernis sur l’étain afin de pouvoir le faire fondre plus facilement

      + +
      +
      + +
      + +
      +
      +
      +
      +

      + R211_IP-45130B + · 20 août 2014 à 14 h 04 min +

      +

      Bonjour à tous,

      +

      Une âme charitable peut-elle me communiquer ce qui est gravé sur la résistance CMS R211 de la carte d’alimentation/inverter IP-45130B qui équipe le SAMSUNG 2232BW ? Cette résistance a pris un coup de tournevis et je n’arrive pas à déterminer sa valeur de résistance car son marquage est effacé et comme le composant est abimé la mesure à l’ohmmètre indique l’infinie.

      +

      Merci par avance.

      + +
      +
      + +
      + +
      +
      +
      +
      +

      + roger + · 24 octobre 2014 à 17 h 21 min +

      +

      Ca refonctionne après échange de 4 condensateurs :
      +-un 330uf25v remplacé à l’identique.
      +-trois 820uf25v remplacés par 1000uf25v.
      +Le tout pour quelques €. Le plus dur était le dessoudage, la tresse n’était pas très efficace contrairement à la pompe.
      +Grand merci à HugoPoi.

      + +
      +
      + +
      + +
      +
      +
      +
      +

      + Max + · 26 février 2015 à 16 h 28 min +

      +

      ENORME MERCI!! J’ai réparé mon écran en 20mn pour 3,50€, il était à 2 doigts de partir à la déchetterie. Ca faisait des mois qu’il clignotait, et l’allumage mettait parfois plus d’une demi heure. J’ai changé 5 condos 820uf25v et 1 330uf25v, par exactement les mêmes en neuf, et là il démarre au quart de tour! Ca fait plaisir! :)

      + +
      +
      +
        +
        + +
        +
        +
        +
        +

        + rocco michelle + · 7 octobre 2015 à 10 h 16 min +

        +

        Bonjour je ne sais si vous verrez mon message mais je tente…je cherche quelqu’un qui accepterait de changer mes condensateurs sur mon samsung, les réparateurs me demandent 70 à 80 euros et encore ils n’ont pss envie de le faire et me disent d’acheter un nouvel écran. j’aurais bien tenter mais je n’ai pas de matériel et j’ai lu que les condo pouvaient être très dangereux s’ils avaient de la charge alors j’ai la trouille de bidouiller pq je n’y connais rien. si vous êtes de lyon acccepteriez vous de changer mes condensateurs pour 45 euros? merci de votre réponse.

        + +
        +
        + +
      + +
      + +
      +
      +
      +
      +

      + lecakeseb + · 27 juillet 2015 à 15 h 26 min +

      +

      Bonjour,

      +

      J’ai utilisé la vidéo pour démonter mon écran afin de le nettoyer de 4 bêtes d’orage infiltrés entre le premier écran (noir) et la dalle (blanche) de mon samsung SyncMaster 2232W

      +

      Petits conseils afin de modérer ce que j’ai pu voir dans cette vidéo :

      +

      0 : aspirez, nettoyez l’extérieur de l’écran avant de l’ouvrir et nettoyez la table qui vous servira d’atelier, pour éviter les poussières qui s’infiltreront forcément plus tard si vous ne le faites pas…
      +1 : pour ouvrir, utilisez plutôt un couteau à enduire pour la première partie (le cadre). Vous n’abîmerez ainsi pas du tout l’écran. Soyez patients, ne forcez pas ! ça viendra doucement, mais ça viendra. Il m’a fallu à peine 10 minutes, sans détériorer l’écran, sans le griffer… Il est encore nickel !
      +2 : attention à ne pas déconnecter les fils reliant le cadre à la carte. Inutile pour simplement nettoyer l’écran.
      +3 : pour séparer les deux éléments de la dalle entre lesquels les bêtes se sont infiltrées, les doigts suffisent, pas besoin d’outils qui viendraient les endommager. La dalle blanche reste à l’horizontale, l’écran noir sera tenu à la verticale.
      +4 : utiliser un chiffon doux ne peluchant pas pour enlever les bêtes (faites-vous aider de quelqu’un qui les enlèvera pendant que vous tenez l’écran extérieur en position verticale).
      +5 : repositionnez la colle d’étanchéité qui aurait pu se déplacer, avant de repositionner les deux écrans.
      +6 : commencer par refermer par le bas de l’écran (sinon les éléments de réglage situés au bas de l’écran – luminosité, contraste,…- ne se replaceront pas correctement).
      +7 : Une fois l’écran refermé, j’ai appliqué un peu de « barrage aux insectes », avec un chiffon à l’arrière de mon écran en insistant surtout sur les bouches d’aération par lesquelles les maudites bestioles ont du s’infiltrer. En espérant ne pas avoir à ouvrir !

      +

      Bon courage à vous !

      + +
      +
      + +
      + +
      +
      +
      +
      +

      + Michel Jousserandot + · 20 janvier 2017 à 20 h 41 min +

      +

      Merci pour les conseils au démontage.
      +J’avais un problème un peu différent :l’écran ne s’allumait plus du tout. Avec un copain beaucoup plus malin que moi, on a détecté 2 fusibles dont l’un était fichu. On l’a remplacé par un petit fil de cuivre. Et tout a remarché comme avant.
      +Il faut surtout faire attention quand on teste la partie haute tension
      +Michel.

      + +
      +
      + +
      + +
      +
      +
      +
      +

      + Crec + · 14 juillet 2017 à 10 h 20 min +

      +

      Bonjour. Très bons conseils avertis. Merci beaucoup.
      +Peut-on avoir les mêmes conseils pour un écran BX2250.
      +Merci par avance.
      +Crec

      + +
      +
      +
        +
        + +
        +
        +
        +
        +

        + HugoPoi + · 6 août 2017 à 14 h 03 min +

        +

        J’ai pas de BX2250 donc dans le détails non mais si c’est les même symptômes ça doit la même procédure.

        + +
        +
        + +
      + +
      + +
      +
      +
      +
      +

      + Ferronnier + · 10 août 2017 à 17 h 42 min +

      +

      Un grand merci !
      +J’ai changé tous les condensateurs de la partie alimentation de la carte, en déportant certains qui n’avaient pas le même format qu’à l’origine, et ça tourne nickel !

      + +
      +
      + +
      + +
      +
      +
      +
      +

      + Nours + · 1 décembre 2017 à 15 h 17 min +

      +

      Ca fait des années que j’ai cet article enregistré dans un coin, en nourrissant l’espoir d’avoir un jour le courage de réparer ce foutu écran… Après plus de cinq ans c’est chose faite \o/
      +Un giga, hypra, immense merci pour ce tutoriel tellement bien expliqué et facile d’accès (je n’avais pas touché à un fer à souder depuis… Oh boy 15 ans déjà).
      +Après une longue pause, l’écran reprend du service… Jusqu’à la prochaine panne /o/

      + +
      +
      + +
      + +
      +
      +
      +
      +

      + Alex + · 11 août 2018 à 13 h 28 min +

      +

      Quelqu’un sait qui pourrait me le faire svp j ai le même problème mais aucun matériel

      + +
      +
      + +
      + +
      +
      +
      +
      +

      + David + · 5 février 2019 à 21 h 06 min +

      +

      Merci Hugo pour ce tuto qui m’a déjà servi en 2013 et qui va me resservir aujourd’hui car mon 2ème 2232bw commence à avoir les mêmes symptômes.

      + +
      +
      + +
      + +
      +
      +
      +
      +

      + yvan + · 23 novembre 2019 à 17 h 14 min +

      +

      Bonjour
      +j’ai tenté de changer le condensateur qui avait l’air naze mais ça n’a pas marché … toujours le bouton bleu allumé, l’écran est reconnu par Windows 10 même si l’écran est éteint
      +grâce au service manuel de l’écran fourni plus haut, j’ai vérifié les tensions jusque sur la carte de la dalle et elles sont correctes, ainsi que sur la carte elle-même, tout est ok, donc je pense que ce n’est plus un problème de condensateur
      +pour les fusibles, ils ressemblent plutôt à des composants qu’à de simple fusibles, mais comme j’ai les bonnes tension, je ne pense pas que ça vienne de là
      +j’ai bien peur que ce soit la dalle qui soit naze ? quelqu’un a t il des idées supplémentaires avant que je le jette avec grand regret (c’est un 2032bw, mais c’est la même chose, même si ma carte électronique est un peu différente car plus récente
      +merci d’avance pour vos conseils

      + +
      +
      + +
      + +
      +
      +
      +
      +

      + yvan + · 24 novembre 2019 à 17 h 26 min +

      +

      finalement j’ai trouvé, c’est un petit fusible vert qui ressemble à une résistance mais tout vert avec écrit 4A LF qui assure l’alimentation de la dalle.
      +En le shuntant, mon écran a retrouvé l’image.
      +après enquête il s’agit d’un fusible pico de 4ampères de chez little fuse, pas du tout évident à trouver
      +Résolu !

      + +
      +
      + +
      +
      +

      + Reflow Dell 1546 | HugoPoi + · 22 août 2016 à 16 h 09 min +

      +

      […] « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable de marque Dell un 1546 pour être précis. Encore […]

      + +
      +
      + +
      +
      +

      + Reflow Dell Inspiron 1546 – HugoPoi + · 23 juin 2017 à 23 h 18 min +

      +

      […] d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un […]

      + +
      +
      + +
      +
      +
      +

      Répondre à Reflow Dell Inspiron 1546 – HugoPoi Annuler la réponse

      Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

      +
      +
      +

      + +

      +
      +
      +
      +
      +
      +
      + +
      +
      +
      +
      +
      +
      + + +
      + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/15b5540b4e3670448bb2f46d60193fb547f1edd1.00000572.js b/www/.content.EZtzwPjb/html/15b5540b4e3670448bb2f46d60193fb547f1edd1.00000572.js new file mode 100644 index 0000000..3a5be8a --- /dev/null +++ b/www/.content.EZtzwPjb/html/15b5540b4e3670448bb2f46d60193fb547f1edd1.00000572.js @@ -0,0 +1,30 @@ +var ak_js = document.getElementById( "ak_js" ); + +if ( ! ak_js ) { + ak_js = document.createElement( 'input' ); + ak_js.setAttribute( 'id', 'ak_js' ); + ak_js.setAttribute( 'name', 'ak_js' ); + ak_js.setAttribute( 'type', 'hidden' ); +} +else { + ak_js.parentNode.removeChild( ak_js ); +} + +ak_js.setAttribute( 'value', ( new Date() ).getTime() ); + +var commentForm = document.getElementById( 'commentform' ); + +if ( commentForm ) { + commentForm.appendChild( ak_js ); +} +else { + var replyRowContainer = document.getElementById( 'replyrow' ); + + if ( replyRowContainer ) { + var children = replyRowContainer.getElementsByTagName( 'td' ); + + if ( children.length > 0 ) { + children[0].appendChild( ak_js ); + } + } +} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/15d04f7ad64dc0987539a49d34e10770a1429473.00000369.xml b/www/.content.EZtzwPjb/html/15d04f7ad64dc0987539a49d34e10770a1429473.00000369.xml new file mode 100644 index 0000000..34cd55e --- /dev/null +++ b/www/.content.EZtzwPjb/html/15d04f7ad64dc0987539a49d34e10770a1429473.00000369.xml @@ -0,0 +1,43 @@ + + + + HugoPoi » condensateur + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Sat, 14 Sep 2013 23:01:40 +0000 + fr-FR + hourly + 1 + http://wordpress.org/?v=3.6 + + Réparations Samsung SyncMaster 2232BW + http://blog.hugopoi.net/2012/01/15/reparations-samsung-syncmaster-2232bw/ + http://blog.hugopoi.net/2012/01/15/reparations-samsung-syncmaster-2232bw/#comments + Sun, 15 Jan 2012 16:00:25 +0000 + HugoPoi + + + + + + + + + + + + http://blog.hugopoi.net/?p=586 + Lire la suite »

      ]]>
      + http://blog.hugopoi.net/2012/01/15/reparations-samsung-syncmaster-2232bw/feed/ + 16 +
      +
      +
      diff --git a/www/.content.EZtzwPjb/html/16c3c15a0fd75f3684d7c7997110f5194a9bb73c.00000026.html b/www/.content.EZtzwPjb/html/16c3c15a0fd75f3684d7c7997110f5194a9bb73c.00000026.html new file mode 100644 index 0000000..fd1fe92 --- /dev/null +++ b/www/.content.EZtzwPjb/html/16c3c15a0fd75f3684d7c7997110f5194a9bb73c.00000026.html @@ -0,0 +1,590 @@ + + + + + + + + Liste de Noël – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +
      +
      +
      + +
      +
      +
      +
      +
      +
      +

      Comme presque tout le monde, je cède à la magie de noël, le plus grand coup marketing des deux derniers millénaires pour nous faire dépenser notre argent. Alors comme j’ai beaucoup de chance, je viens d’avoir un accident avec ma voiture, ça tombe à pique pour le mois de décembre. Heureusement, je vais pouvoir la réparer DIY pour pas trop chère. Je ne sais pas si des opérations de ce type sont en cours mais je me disais que l’on pourrais m’offrir une carte cadeau ou un bon d’achat dans une casse auto pour y acheter les pièces dont j’ai besoin (Je cherche : un capot violet, une traverse frontale et 2 phares complets pour Twingo 1gen). Après ce moment de rigolade déception je vous donne ci-dessous ma liste de noël. Elle est destinée à mes lecteurs généreux, ma famille, amis et autres donateurs qui sont les bienvenus. Je préviens c’est un peu plus qu’une liste de noël puisque je vais y mettre tous les truc fun, gadgets super high-tech dernier cri et super pc de la mort qui tue. Par contre il n’y aura pas d’objet Apple donc les fanboys de la pomme vous pouvez aller profiter de votre temps libre sur Apple.com.

      +

      Dans la catégorie téléphone j’ai nominé le HTC DHD ou Desire HD.

      +

      +

      Pour vous faire baver les spécifications.

      +

      Ensuite dans la catégorie PC ultra portable, le Asus U36 malheureusement pas encore disponible. Par contre le disque-dur ne semble pas facilement accessible sur ce modèle donc pour mettre un SDD dedans ça va être compromis.

      +

      +

      Alors coté Hardware on a :

      +

      Stockage : SSD OCZ Vertex et Agility 2 (285 Mo/s L et 275Mo/s E) avec un rapport performance prix très correct !

      +

      Processeur : je vous donne les deux extrêmes, AMD Phenom II X6 1055T et Intel Core i7 Extreme Edition 980X

      +

      Carte Graphique : [MonsterMod=On] PNY GeForce GTX 580 [MonsterMod=off] sinon une AMD Radeon HD6870 ou HD6850 suffiront en attendant les HD6900.

      +

      Boitier : Coup de coeur pour le Silverstone FT02 disponible ici.

      +

      Ventirad : Prolimatech Super Mega , ou du Noctua

      +

      Alimentation : Cooler Master Silent Pro Gold 600W pour 120€ du 80PLUS Gold soit 90% de rendement.

      +

      Pour les PC fixe prémontés ready to play : la société OriginPC fera votre bonheur en watercooling et XBOX360 integrated !

      +

      +

      Sinon pour m’amuser je prendrais bien un Kinect nu pour le brancher sur mon PC. Comme ça je pourrais vous développer des trucs funs et me faire la main sur OpenGL.

      +

      +

      EDIT : Pour faire plaisir à tous les geeks vous pouvez commander n’importe quel article sur le site ThinkGeek.com. Pour les grand enfants que nous sommes, j’avais oublié le jouet AR.Drone fabriqué par Parrot disponible à la Fnac près de chez vous pour 300€ (ouch!) et toujours pas d’application pour Android.

      +

      +

      Et pour finir voici ma wishlist ThinkGeek.com :

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Bluetooth Laser Virtual Keyboard
      Console Access Pro Tool Kit
      E-Ink Digital Display Watch – Poly Band
      Handheld Video Inspection Camera
      Pico USB Flash Drive – 8 Gig
      Puppy Tweets – Puppy Tweets Asst
      Retro NES USB Controller
      Team NES Hoodie – Red, XL
      There’s no place like 127.0.0.1 – Black, XL
      Wi-Fi Detector Shirt – Black, XL
      WTF? – Black
      +
      +
      +
      +
      +
      Catégories : HardwareNews
      +
      +
      +
      + + + + + + + + + +
      +
      +
      +
      +
      +
      +
      +

      + 3 commentaires

      +
      + +
      +
      +
      +
      +

      + xav + · 6 décembre 2010 à 1 h 01 min +

      +

      Je vote pour le Kinect. Pour tripé il doit être bien sympa ^^

      + +
      +
      + +
      + +
      +
      +
      +
      +

      + xav + · 12 décembre 2010 à 18 h 38 min +

      +

      Sa te va bien les tee-shirt !!! tu n’a même pas choisit celui avec enceinte intégré like big bang theory ??

      + +
      +
      +
        +
        + +
        +
        +
        +
        +

        + HugoPoi + · 12 décembre 2010 à 21 h 55 min +

        +

        Non, c’est un peu trop extravagant… sauf si tu veux avoir la classe dans les manifs

        + +
        +
        + +
      + +
      +
      +
      +

      Laisser un commentaire

      Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

      +
      +
      +

      + +

      +
      +
      +
      +
      +
      +
      + +
      +
      +
      +
      +
      +
      + + +
      + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/16ed77b9e691df9c25fceb55ff9d0aab015e05d7.00000602.js b/www/.content.EZtzwPjb/html/16ed77b9e691df9c25fceb55ff9d0aab015e05d7.00000602.js new file mode 100644 index 0000000..f8faddd --- /dev/null +++ b/www/.content.EZtzwPjb/html/16ed77b9e691df9c25fceb55ff9d0aab015e05d7.00000602.js @@ -0,0 +1,526 @@ +( function( $ ) { + + 'use strict'; + + if ( typeof wpcf7 === 'undefined' || wpcf7 === null ) { + return; + } + + wpcf7 = $.extend( { + cached: 0, + inputs: [] + }, wpcf7 ); + + $( function() { + wpcf7.supportHtml5 = ( function() { + var features = {}; + var input = document.createElement( 'input' ); + + features.placeholder = 'placeholder' in input; + + var inputTypes = [ 'email', 'url', 'tel', 'number', 'range', 'date' ]; + + $.each( inputTypes, function( index, value ) { + input.setAttribute( 'type', value ); + features[ value ] = input.type !== 'text'; + } ); + + return features; + } )(); + + $( 'div.wpcf7 > form' ).each( function() { + var $form = $( this ); + wpcf7.initForm( $form ); + + if ( wpcf7.cached ) { + wpcf7.refill( $form ); + } + } ); + } ); + + wpcf7.getId = function( form ) { + return parseInt( $( 'input[name="_wpcf7"]', form ).val(), 10 ); + }; + + wpcf7.initForm = function( form ) { + var $form = $( form ); + + $form.submit( function( event ) { + if ( ! wpcf7.supportHtml5.placeholder ) { + $( '[placeholder].placeheld', $form ).each( function( i, n ) { + $( n ).val( '' ).removeClass( 'placeheld' ); + } ); + } + + if ( typeof window.FormData === 'function' ) { + wpcf7.submit( $form ); + event.preventDefault(); + } + } ); + + $( '.wpcf7-submit', $form ).after( '' ); + + wpcf7.toggleSubmit( $form ); + + $form.on( 'click', '.wpcf7-acceptance', function() { + wpcf7.toggleSubmit( $form ); + } ); + + // Exclusive Checkbox + $( '.wpcf7-exclusive-checkbox', $form ).on( 'click', 'input:checkbox', function() { + var name = $( this ).attr( 'name' ); + $form.find( 'input:checkbox[name="' + name + '"]' ).not( this ).prop( 'checked', false ); + } ); + + // Free Text Option for Checkboxes and Radio Buttons + $( '.wpcf7-list-item.has-free-text', $form ).each( function() { + var $freetext = $( ':input.wpcf7-free-text', this ); + var $wrap = $( this ).closest( '.wpcf7-form-control' ); + + if ( $( ':checkbox, :radio', this ).is( ':checked' ) ) { + $freetext.prop( 'disabled', false ); + } else { + $freetext.prop( 'disabled', true ); + } + + $wrap.on( 'change', ':checkbox, :radio', function() { + var $cb = $( '.has-free-text', $wrap ).find( ':checkbox, :radio' ); + + if ( $cb.is( ':checked' ) ) { + $freetext.prop( 'disabled', false ).focus(); + } else { + $freetext.prop( 'disabled', true ); + } + } ); + } ); + + // Placeholder Fallback + if ( ! wpcf7.supportHtml5.placeholder ) { + $( '[placeholder]', $form ).each( function() { + $( this ).val( $( this ).attr( 'placeholder' ) ); + $( this ).addClass( 'placeheld' ); + + $( this ).focus( function() { + if ( $( this ).hasClass( 'placeheld' ) ) { + $( this ).val( '' ).removeClass( 'placeheld' ); + } + } ); + + $( this ).blur( function() { + if ( '' === $( this ).val() ) { + $( this ).val( $( this ).attr( 'placeholder' ) ); + $( this ).addClass( 'placeheld' ); + } + } ); + } ); + } + + if ( wpcf7.jqueryUi && ! wpcf7.supportHtml5.date ) { + $form.find( 'input.wpcf7-date[type="date"]' ).each( function() { + $( this ).datepicker( { + dateFormat: 'yy-mm-dd', + minDate: new Date( $( this ).attr( 'min' ) ), + maxDate: new Date( $( this ).attr( 'max' ) ) + } ); + } ); + } + + if ( wpcf7.jqueryUi && ! wpcf7.supportHtml5.number ) { + $form.find( 'input.wpcf7-number[type="number"]' ).each( function() { + $( this ).spinner( { + min: $( this ).attr( 'min' ), + max: $( this ).attr( 'max' ), + step: $( this ).attr( 'step' ) + } ); + } ); + } + + // Character Count + $( '.wpcf7-character-count', $form ).each( function() { + var $count = $( this ); + var name = $count.attr( 'data-target-name' ); + var down = $count.hasClass( 'down' ); + var starting = parseInt( $count.attr( 'data-starting-value' ), 10 ); + var maximum = parseInt( $count.attr( 'data-maximum-value' ), 10 ); + var minimum = parseInt( $count.attr( 'data-minimum-value' ), 10 ); + + var updateCount = function( target ) { + var $target = $( target ); + var length = $target.val().length; + var count = down ? starting - length : length; + $count.attr( 'data-current-value', count ); + $count.text( count ); + + if ( maximum && maximum < length ) { + $count.addClass( 'too-long' ); + } else { + $count.removeClass( 'too-long' ); + } + + if ( minimum && length < minimum ) { + $count.addClass( 'too-short' ); + } else { + $count.removeClass( 'too-short' ); + } + }; + + $( ':input[name="' + name + '"]', $form ).each( function() { + updateCount( this ); + + $( this ).keyup( function() { + updateCount( this ); + } ); + } ); + } ); + + // URL Input Correction + $form.on( 'change', '.wpcf7-validates-as-url', function() { + var val = $.trim( $( this ).val() ); + + if ( val + && ! val.match( /^[a-z][a-z0-9.+-]*:/i ) + && -1 !== val.indexOf( '.' ) ) { + val = val.replace( /^\/+/, '' ); + val = 'http://' + val; + } + + $( this ).val( val ); + } ); + }; + + wpcf7.submit = function( form ) { + if ( typeof window.FormData !== 'function' ) { + return; + } + + var $form = $( form ); + + $( '.ajax-loader', $form ).addClass( 'is-active' ); + + wpcf7.clearResponse( $form ); + + var formData = new FormData( $form.get( 0 ) ); + + var detail = { + id: $form.closest( 'div.wpcf7' ).attr( 'id' ), + status: 'init', + inputs: [], + formData: formData + }; + + $.each( $form.serializeArray(), function( i, field ) { + if ( '_wpcf7' == field.name ) { + detail.contactFormId = field.value; + } else if ( '_wpcf7_version' == field.name ) { + detail.pluginVersion = field.value; + } else if ( '_wpcf7_locale' == field.name ) { + detail.contactFormLocale = field.value; + } else if ( '_wpcf7_unit_tag' == field.name ) { + detail.unitTag = field.value; + } else if ( '_wpcf7_container_post' == field.name ) { + detail.containerPostId = field.value; + } else if ( field.name.match( /^_wpcf7_\w+_free_text_/ ) ) { + var owner = field.name.replace( /^_wpcf7_\w+_free_text_/, '' ); + detail.inputs.push( { + name: owner + '-free-text', + value: field.value + } ); + } else if ( field.name.match( /^_/ ) ) { + // do nothing + } else { + detail.inputs.push( field ); + } + } ); + + wpcf7.triggerEvent( $form.closest( 'div.wpcf7' ), 'beforesubmit', detail ); + + var ajaxSuccess = function( data, status, xhr, $form ) { + detail.id = $( data.into ).attr( 'id' ); + detail.status = data.status; + detail.apiResponse = data; + + var $message = $( '.wpcf7-response-output', $form ); + + switch ( data.status ) { + case 'validation_failed': + $.each( data.invalidFields, function( i, n ) { + $( n.into, $form ).each( function() { + wpcf7.notValidTip( this, n.message ); + $( '.wpcf7-form-control', this ).addClass( 'wpcf7-not-valid' ); + $( '[aria-invalid]', this ).attr( 'aria-invalid', 'true' ); + } ); + } ); + + $message.addClass( 'wpcf7-validation-errors' ); + $form.addClass( 'invalid' ); + + wpcf7.triggerEvent( data.into, 'invalid', detail ); + break; + case 'acceptance_missing': + $message.addClass( 'wpcf7-acceptance-missing' ); + $form.addClass( 'unaccepted' ); + + wpcf7.triggerEvent( data.into, 'unaccepted', detail ); + break; + case 'spam': + $message.addClass( 'wpcf7-spam-blocked' ); + $form.addClass( 'spam' ); + + wpcf7.triggerEvent( data.into, 'spam', detail ); + break; + case 'aborted': + $message.addClass( 'wpcf7-aborted' ); + $form.addClass( 'aborted' ); + + wpcf7.triggerEvent( data.into, 'aborted', detail ); + break; + case 'mail_sent': + $message.addClass( 'wpcf7-mail-sent-ok' ); + $form.addClass( 'sent' ); + + wpcf7.triggerEvent( data.into, 'mailsent', detail ); + break; + case 'mail_failed': + $message.addClass( 'wpcf7-mail-sent-ng' ); + $form.addClass( 'failed' ); + + wpcf7.triggerEvent( data.into, 'mailfailed', detail ); + break; + default: + var customStatusClass = 'custom-' + + data.status.replace( /[^0-9a-z]+/i, '-' ); + $message.addClass( 'wpcf7-' + customStatusClass ); + $form.addClass( customStatusClass ); + } + + wpcf7.refill( $form, data ); + + wpcf7.triggerEvent( data.into, 'submit', detail ); + + if ( 'mail_sent' == data.status ) { + $form.each( function() { + this.reset(); + } ); + + wpcf7.toggleSubmit( $form ); + } + + if ( ! wpcf7.supportHtml5.placeholder ) { + $form.find( '[placeholder].placeheld' ).each( function( i, n ) { + $( n ).val( $( n ).attr( 'placeholder' ) ); + } ); + } + + $message.html( '' ).append( data.message ).slideDown( 'fast' ); + $message.attr( 'role', 'alert' ); + + $( '.screen-reader-response', $form.closest( '.wpcf7' ) ).each( function() { + var $response = $( this ); + $response.html( '' ).attr( 'role', '' ).append( data.message ); + + if ( data.invalidFields ) { + var $invalids = $( '
        ' ); + + $.each( data.invalidFields, function( i, n ) { + if ( n.idref ) { + var $li = $( '
      • ' ).append( $( '' ).attr( 'href', '#' + n.idref ).append( n.message ) ); + } else { + var $li = $( '
      • ' ).append( n.message ); + } + + $invalids.append( $li ); + } ); + + $response.append( $invalids ); + } + + $response.attr( 'role', 'alert' ).focus(); + } ); + }; + + $.ajax( { + type: 'POST', + url: wpcf7.apiSettings.getRoute( + '/contact-forms/' + wpcf7.getId( $form ) + '/feedback' ), + data: formData, + dataType: 'json', + processData: false, + contentType: false + } ).done( function( data, status, xhr ) { + ajaxSuccess( data, status, xhr, $form ); + $( '.ajax-loader', $form ).removeClass( 'is-active' ); + } ).fail( function( xhr, status, error ) { + var $e = $( '
        ' ).text( error.message ); + $form.after( $e ); + } ); + }; + + wpcf7.triggerEvent = function( target, name, detail ) { + var $target = $( target ); + + /* DOM event */ + var event = new CustomEvent( 'wpcf7' + name, { + bubbles: true, + detail: detail + } ); + + $target.get( 0 ).dispatchEvent( event ); + + /* jQuery event */ + $target.trigger( 'wpcf7:' + name, detail ); + $target.trigger( name + '.wpcf7', detail ); // deprecated + }; + + wpcf7.toggleSubmit = function( form, state ) { + var $form = $( form ); + var $submit = $( 'input:submit', $form ); + + if ( typeof state !== 'undefined' ) { + $submit.prop( 'disabled', ! state ); + return; + } + + if ( $form.hasClass( 'wpcf7-acceptance-as-validation' ) ) { + return; + } + + $submit.prop( 'disabled', false ); + + $( '.wpcf7-acceptance', $form ).each( function() { + var $span = $( this ); + var $input = $( 'input:checkbox', $span ); + + if ( ! $span.hasClass( 'optional' ) ) { + if ( $span.hasClass( 'invert' ) && $input.is( ':checked' ) + || ! $span.hasClass( 'invert' ) && ! $input.is( ':checked' ) ) { + $submit.prop( 'disabled', true ); + return false; + } + } + } ); + }; + + wpcf7.notValidTip = function( target, message ) { + var $target = $( target ); + $( '.wpcf7-not-valid-tip', $target ).remove(); + $( '' ) + .text( message ).appendTo( $target ); + + if ( $target.is( '.use-floating-validation-tip *' ) ) { + var fadeOut = function( target ) { + $( target ).not( ':hidden' ).animate( { + opacity: 0 + }, 'fast', function() { + $( this ).css( { 'z-index': -100 } ); + } ); + }; + + $target.on( 'mouseover', '.wpcf7-not-valid-tip', function() { + fadeOut( this ); + } ); + + $target.on( 'focus', ':input', function() { + fadeOut( $( '.wpcf7-not-valid-tip', $target ) ); + } ); + } + }; + + wpcf7.refill = function( form, data ) { + var $form = $( form ); + + var refillCaptcha = function( $form, items ) { + $.each( items, function( i, n ) { + $form.find( ':input[name="' + i + '"]' ).val( '' ); + $form.find( 'img.wpcf7-captcha-' + i ).attr( 'src', n ); + var match = /([0-9]+)\.(png|gif|jpeg)$/.exec( n ); + $form.find( 'input:hidden[name="_wpcf7_captcha_challenge_' + i + '"]' ).attr( 'value', match[ 1 ] ); + } ); + }; + + var refillQuiz = function( $form, items ) { + $.each( items, function( i, n ) { + $form.find( ':input[name="' + i + '"]' ).val( '' ); + $form.find( ':input[name="' + i + '"]' ).siblings( 'span.wpcf7-quiz-label' ).text( n[ 0 ] ); + $form.find( 'input:hidden[name="_wpcf7_quiz_answer_' + i + '"]' ).attr( 'value', n[ 1 ] ); + } ); + }; + + if ( typeof data === 'undefined' ) { + $.ajax( { + type: 'GET', + url: wpcf7.apiSettings.getRoute( + '/contact-forms/' + wpcf7.getId( $form ) + '/refill' ), + beforeSend: function( xhr ) { + var nonce = $form.find( ':input[name="_wpnonce"]' ).val(); + + if ( nonce ) { + xhr.setRequestHeader( 'X-WP-Nonce', nonce ); + } + }, + dataType: 'json' + } ).done( function( data, status, xhr ) { + if ( data.captcha ) { + refillCaptcha( $form, data.captcha ); + } + + if ( data.quiz ) { + refillQuiz( $form, data.quiz ); + } + } ); + + } else { + if ( data.captcha ) { + refillCaptcha( $form, data.captcha ); + } + + if ( data.quiz ) { + refillQuiz( $form, data.quiz ); + } + } + }; + + wpcf7.clearResponse = function( form ) { + var $form = $( form ); + $form.removeClass( 'invalid spam sent failed' ); + $form.siblings( '.screen-reader-response' ).html( '' ).attr( 'role', '' ); + + $( '.wpcf7-not-valid-tip', $form ).remove(); + $( '[aria-invalid]', $form ).attr( 'aria-invalid', 'false' ); + $( '.wpcf7-form-control', $form ).removeClass( 'wpcf7-not-valid' ); + + $( '.wpcf7-response-output', $form ) + .hide().empty().removeAttr( 'role' ) + .removeClass( 'wpcf7-mail-sent-ok wpcf7-mail-sent-ng wpcf7-validation-errors wpcf7-spam-blocked' ); + }; + + wpcf7.apiSettings.getRoute = function( path ) { + var url = wpcf7.apiSettings.root; + + url = url.replace( + wpcf7.apiSettings.namespace, + wpcf7.apiSettings.namespace + path ); + + return url; + }; + +} )( jQuery ); + +/* + * Polyfill for Internet Explorer + * See https://developer.mozilla.org/en-US/docs/Web/API/CustomEvent/CustomEvent + */ +( function () { + if ( typeof window.CustomEvent === "function" ) return false; + + function CustomEvent ( event, params ) { + params = params || { bubbles: false, cancelable: false, detail: undefined }; + var evt = document.createEvent( 'CustomEvent' ); + evt.initCustomEvent( event, + params.bubbles, params.cancelable, params.detail ); + return evt; + } + + CustomEvent.prototype = window.Event.prototype; + + window.CustomEvent = CustomEvent; +} )(); diff --git a/www/.content.EZtzwPjb/html/1744c3f4e799ca92ffeba4c5eaa5ddb20c031283.00000462.html b/www/.content.EZtzwPjb/html/1744c3f4e799ca92ffeba4c5eaa5ddb20c031283.00000462.html new file mode 100644 index 0000000..19fd6a4 --- /dev/null +++ b/www/.content.EZtzwPjb/html/1744c3f4e799ca92ffeba4c5eaa5ddb20c031283.00000462.html @@ -0,0 +1,372 @@ + + + + + + + niresh – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        +
        +
        + +
        +
        +
        +
        +
        +

        Installer Mac OS X Mavericks avec VirtualBox

        Capture Installation Mac OS X MavericksComme Apple c’est des blaireaux et que j’avais besoin d’un environnement de développement pour iDaube. J’ai du me résoudre à installer un Mac OS X dans une machine virtuel.

        +

        Ce dont vous avez besoin :

        + +

        Moi je travail sous Linux Mint mais vous devriez réussir à faire les manipulations sous Windaube. (suite…)

        +
        Par HugoPoi, il y a
        +
        + +
        +
        +
        +
        + +
        +
        + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/174622b5fab11001618709ce3ff73f402b7e9acc.00000266.html b/www/.content.EZtzwPjb/html/174622b5fab11001618709ce3ff73f402b7e9acc.00000266.html new file mode 100644 index 0000000..2348b29 --- /dev/null +++ b/www/.content.EZtzwPjb/html/174622b5fab11001618709ce3ff73f402b7e9acc.00000266.html @@ -0,0 +1,649 @@ + + + + + + + + Do a wifi repeater with only one wifi card and Debian – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        +
        +
        + +
        +
        +
        +
        +
        +
        +

        Summary

        +

        I wanted to extend the range of an existing wifi access point without cables or changing the configuration. It’s a temporary installation, and I doesn’t want do buy more hardware and use what I have on hand.

        +

        Hardware

        +
          +
        • A Olimex Lime 2 board but anything running debian will work
        • +
        • An Atheros AR9271 or any wifi card that support concurrent mode operation
        • +
        +

        Wifi concurrent mode

        +

        The wifi concurrent mode is a feature implemented in some drivers for wifi chipset allowing multiple virtual wlan network cards. Those can works in different mode like client station « managed » mode and access point mode at the same time.
        +You can check about it with iw list | grep 'valid interface combinations' -A3.
        +The Atheros AR9271 is compatible, but it’s a very old chipset, and only 2.4Ghz with one antenna.
        +As reported in this VERY good blog post, Ralink only support multiple access point but not managed+ap, Realtek doesn’t support anything. So you have Atheros chipset and Intel ones that have been reported to work.

        +

        How to

        +

        0. Hardware drivers

        +

        You may need to install some close source firmware for your wifi adapter for better performance or even have your wifi card working.

        +

        For Atheros based cards apt install firmware-atheros is enought.

        +

        1. Setup virtuals adapters with a iw and a udev rule

        +

        Insert the following into /etc/udev/rules.d/70-persistent-net.rules

        +
        SUBSYSTEM=="ieee80211", ACTION=="add|change", ATTR{macaddress}=="00:11:22:33:44:55", KERNEL=="phy0", \
        +    RUN+="/sbin/iw dev wlan0 del", \
        +    RUN+="/sbin/iw phy phy0 interface add ap0 type __ap", \
        +    RUN+="/sbin/iw phy phy0 interface add sta0 type station", \
        +    RUN+="/bin/ip link set sta0 address 00:11:22:33:44:56"
        +
        +
          +
        • You need to replace 00:11:22:33:44:55 with the mac address of your wifi adapter, ip link command should help you we that.
        • +
        • You need to replace 00:11:22:33:44:56 with the mac address of your adapter +1, or something completely random as long as sta0 and ap0 will have different mac address.
        • +
        +

        2. The access point ap0 configuration

        +
          +
        • Will use hostapd started by ifup script
          +Create a file /etc/network/interfaces.d/ap0.conf with this content :
        • +
        +
        allow-hotplug ap0
        +iface ap0 inet manual
        +    hostapd /etc/hostapd/repeater.conf
        +
        +

        2.1 The HostAPd configuration file /etc/hostapd/repeater.conf

        +
        interface=ap0
        +hw_mode=g
        +ieee80211n=1
        +wmm_enabled=1
        +macaddr_acl=0
        +auth_algs=1
        +ignore_broadcast_ssid=0
        +# you need the same channel as the client side
        +channel=6
        +#bss=hotspot0
        +ssid=Your_SSID
        +wpa=2
        +wpa_passphrase=yourpassphrase
        +wpa_key_mgmt=WPA-PSK
        +wpa_pairwise=TKIP
        +rsn_pairwise=CCMP
        +
        +
          +
        • Your_SSID can be the same as your main access point.
        • +
        +

        3. The client station sta0 configuration

        +
          +
        • Fully handle by ifup
        • +
        • I explain all the commands just below
        • +
        +

        Create a file /etc/network/interfaces.d/sta0.conf with this content :

        +
        auto sta0
        +allow-hotplug sta0
        +iface sta0 inet dhcp
        +wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
        +  # 3.1 Setup the bridge between the two interfaces
        +  post-up /usr/sbin/parprouted ap0 sta0
        +  post-down /usr/bin/killall /usr/sbin/parprouted
        +  # clone the dhcp-allocated IP to eth0 so dhcp-helper will relay for the correct subnet
        +  post-up /sbin/ip addr add $(/sbin/ip addr show sta0 | perl -wne 'm|^\s+inet (.*)/| && print $1')/32 dev ap0
        +  post-down /sbin/ip addr del $(/sbin/ip addr show ap0 | perl -wne 'm|^\s+inet (.*)/| && print $1')/32 dev ap0
        +  # 3.22 bis DHCP Server in place of relay with `dnsmasq`
        +  # post-up /usr/sbin/dnsmasq --port=0 --interface=ap0 --dhcp-range=192.168.1.100,192.168.1.150 --dhcp-option=option:netmask,255.255.255.0 --dhcp-option=option:router,192.168.1.254 --dhcp-option=option:dns-server,80.67.169.12 --pid-file=/var/run/dnsmasq.pid
        +  # post-down /usr/bin/kill $(cat /var/run/dnsmasq.pid)
        +
        +

        You need a WPA supplicant config file in /etc/wpa_supplicant/wpa_supplicant.conf

        +
        ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
        +update_config=1
        +network={
        +  ssid="Main_SSID"
        +  psk="yourpassphrase"
        +}
        +
        +

        3.1 Setup the bridge between the two interfaces

        +
          +
        • We need to have the layer 2, bridged between sta0 and ap0
        • +
        • As reported in Debian wiki you can use ebtables for doing so. But you need to know each mac address and ip connected to ap0 and add manually the entry in ebtables. So I opt in for a more all-in-one approach and bridging network connections with Proxy ARP seems more easy to do.
        • +
        • Automating the process of bridging with arp proxy
        • +
        +

        You need to install parprouted with apt install parprouted.

        +

        So now the layer 2 is ok for unicast, but broadcast will not work for dhcp request so you need dhcp relay.

        +

        3.2 Dhcp Relay for Ip v4 with dhcp-helper

        +

        WARNING this will not work with some dhcp very regarding about source mac address which will be the same for multiple ip address. Like Freebox v5. So might try this but if it’s not working use the 3.22

        +

        Enable DHCP relay: /etc/default/dhcp-helper

        +
        # relay dhcp requests as broadcast to sta0
        +DHCPHELPER_OPTS="-b sta0"
        +
        +

        3.22 bis DHCP Server in place of relay with dnsmasq

        +

        If DHCP relay isn’t working, we just need to add a DHCP Server listening on ap0 to deliver some ips outside of the main range.
        +1. apt install dnsmasq
        +2. uncomment this 2 lines in /etc/network/interfaces.d/sta0.conf

        +
        post-up /usr/sbin/dnsmasq --port=0 --interface=ap0 --dhcp-range=192.168.1.100,192.168.1.150 --dhcp-option=option:netmask,255.255.255.0 --dhcp-option=option:router,192.168.1.254 --dhcp-option=option:dns-server,80.67.169.12 --pid-file=/var/run/dnsmasq.pid
        +post-down /usr/bin/kill $(cat /var/run/dnsmasq.pid)
        +
        +

        4. IPv6 support

        +
          +
        • I haven’t successfully made ipv6 work but I leave some clues here.
        • +
        • You need 2 things for ipv6 to work, a mean to deliver some address and a way to do arp for the layer 2 aka Neighbor Discovery Protocol.
        • +
        • I found this article very helpfull IPv6 NDP proxy
        • +
        +

        4.1 Radvd

        +
          +
        • First you can run radvdump to capture a starting configuration.
        • +
        • A lot of provider use SLAAC to allocate address in v6.
        • +
        +

        Example of SLAAC radvd configuration file

        +
        interface ap0
        +{
        +    AdvSendAdvert on;
        +    # Note: {Min,Max}RtrAdvInterval cannot be obtained with radvdump
        +    AdvManagedFlag off;
        +    AdvOtherConfigFlag off;
        +    AdvReachableTime 0;
        +    AdvRetransTimer 0;
        +    AdvCurHopLimit 64;
        +    AdvDefaultLifetime 1800;
        +    AdvHomeAgentFlag off;
        +    AdvDefaultPreference medium;
        +    AdvLinkMTU 1500;
        +    AdvSourceLLAddress on;
        +    prefix 2a01:xxxx:xxx:xxx::/64
        +    {
        +        AdvValidLifetime 86400;
        +        AdvPreferredLifetime 86400;
        +        AdvOnLink on;
        +        AdvAutonomous on;
        +        AdvRouterAddr off;
        +    }; # End of prefix definition
        +    RDNSS fd0f:ee:b0::1
        +    {
        +        AdvRDNSSLifetime 86400;
        +    }; # End of RDNSS definition
        +};
        +
        +
          +
        • Once radvd configured and started your clients on ap0 should obtain some ipv6 address.
        • +
        • But these will not work out of the box because the main router can’t know that these adress are used and reachable.
        • +
        +

        4.2 ndppd

        +
          +
        • ndppd daemon will forward Neighbor Solicitation messages to the clients. Then the cilents will respond with a Neighbor Advertisement for the router.
        • +
        +
        proxy sta0 {
        +    autowire yes # Not sure about this option
        +    rule 2a01:xxxx:xxxx:xxxx::/64 {
        +        iface ap0
        +    }
        +}
        +
        +
        +
        +
        +
        +
        Catégories : BidouilleInternetIP v6
        +
        +
        +
        + + + + + + + + + +
        +
        +
        +
        +
        +
        +
        +

        + 0 commentaire

        +
        +
        +
        +

        Laisser un commentaire

        Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

        +
        +
        +

        + +

        +
        +
        +
        +
        +
        +
        + +
        +
        +
        +
        +
        +
        + + +
        + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/177bd46efef049789e7bfc8fa893c7992532976e.00000499.html b/www/.content.EZtzwPjb/html/177bd46efef049789e7bfc8fa893c7992532976e.00000499.html new file mode 100644 index 0000000..ff81ebe --- /dev/null +++ b/www/.content.EZtzwPjb/html/177bd46efef049789e7bfc8fa893c7992532976e.00000499.html @@ -0,0 +1,373 @@ + + + + + + + réseau – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        +
        +
        + +
        +
        +
        +
        +
        +

        Démonter un Switch Cisco 2950T

        Après avoir tout tenté sur le port console, le switch semblait mort donc démontage. J’ai donc ouvert ce petit switch 24 ports. C’est assez simple, il y a quelques vis à l’arrière ensuite faire coulisser le châssis.

        +

        Cisco 2950T-24

        +

        (suite…)

        +
        Par HugoPoi, il y a
        +
        + +
        +
        +
        +
        + +
        +
        + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/17d548b24f9ad150ffc2b55186a4d8d6360963a3.00000419.xml b/www/.content.EZtzwPjb/html/17d548b24f9ad150ffc2b55186a4d8d6360963a3.00000419.xml new file mode 100644 index 0000000..76bdd75 --- /dev/null +++ b/www/.content.EZtzwPjb/html/17d548b24f9ad150ffc2b55186a4d8d6360963a3.00000419.xml @@ -0,0 +1,38 @@ + + + + HugoPoi » Grooveshark + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Sat, 14 Sep 2013 23:01:40 +0000 + fr-FR + hourly + 1 + http://wordpress.org/?v=3.6 + + Pascal Negre tu m’emmerdes + http://blog.hugopoi.net/2012/01/07/pascal-negre-tu-memmerdes/ + http://blog.hugopoi.net/2012/01/07/pascal-negre-tu-memmerdes/#comments + Sat, 07 Jan 2012 14:32:47 +0000 + HugoPoi + + + + + + + http://blog.hugopoi.net/?p=574 + Lire la suite »

        ]]>
        + http://blog.hugopoi.net/2012/01/07/pascal-negre-tu-memmerdes/feed/ + 4 +
        +
        +
        diff --git a/www/.content.EZtzwPjb/html/17e4c95a82e639e4aad6cab03328e01494bc6c3a.00000095.xml b/www/.content.EZtzwPjb/html/17e4c95a82e639e4aad6cab03328e01494bc6c3a.00000095.xml new file mode 100644 index 0000000..61e026f --- /dev/null +++ b/www/.content.EZtzwPjb/html/17e4c95a82e639e4aad6cab03328e01494bc6c3a.00000095.xml @@ -0,0 +1,61 @@ + + + Commentaires sur : Pascal Negre tu m’emmerdes + + http://blog.hugopoi.net/2012/01/07/pascal-negre-tu-memmerdes/ + Internet, Hardware et Bidouille + Mon, 22 Aug 2016 14:09:10 +0000 + hourly + 1 + https://wordpress.org/?v=4.6.1 + + Par : HugoPoi + http://blog.hugopoi.net/2012/01/07/pascal-negre-tu-memmerdes/#comment-81 + + Sun, 08 Jan 2012 20:49:32 +0000 + http://blog.hugopoi.net/?p=574#comment-81 + + Non tu ne dis pas de connerie bittorrent à besoin de l’ip public pour fonctionner, stocké au niveau du tracker. Le protocol bittorrent dispose déjà de chiffrement sur la partie pair à pair et aussi connexion au tracker qui peux se faire en SSL. Au niveau confidentialité, faire une plateforme uniquement avec client web ou bittorrent revient au même car le serveur peux stocké indéfiniment les ip qui s’y connectent dans les deux cas. Moi je suis pour les systèmes décentralisés qui sont la base d’Internet qui ont l’avantage de répartir la charge sur tous le réseau et pas provoqué d’engorgement. Appli bien lourde je ne sais pas, ça sera toujours moins lourd que iTunes lol

        +]]>
        +
        + + Par : Thibault + http://blog.hugopoi.net/2012/01/07/pascal-negre-tu-memmerdes/#comment-80 + + Sun, 08 Jan 2012 17:02:37 +0000 + http://blog.hugopoi.net/?p=574#comment-80 + + A moins de tout passer en full-encrypt et d’autres méthodes pour cacher l’ip du client vis à vis du tracker (je ne suis pas un pro-torrent donc je dis p’tet des conneries)
        +Dans ce cas bonjour l’appli bien lourde :)

        +]]>
        +
        + + Par : HugoPoi + http://blog.hugopoi.net/2012/01/07/pascal-negre-tu-memmerdes/#comment-79 + + Sat, 07 Jan 2012 18:57:49 +0000 + http://blog.hugopoi.net/?p=574#comment-79 + + Pourquoi ? si on stock la musique sur les serveurs, ça va représenter une bande passante énorme et en plus vu qu’il n’y aura que de la « contrefaçon ». Je serais obligé de fermer mon service si je veux pas vendre mes 2 bras.

        +]]>
        +
        + + Par : Thibault + http://blog.hugopoi.net/2012/01/07/pascal-negre-tu-memmerdes/#comment-78 + + Sat, 07 Jan 2012 18:50:19 +0000 + http://blog.hugopoi.net/?p=574#comment-78 + + Très bonne idée mais …
        +Le seul hic dans tes 2,3 idées c’est le stockage via BitTorrent je crois :)

        +]]>
        +
        +
        +
        diff --git a/www/.content.EZtzwPjb/html/17fbb0fc5ae7776f574262ac12d424ffd1f2be68.00000605.css b/www/.content.EZtzwPjb/html/17fbb0fc5ae7776f574262ac12d424ffd1f2be68.00000605.css new file mode 100644 index 0000000..42c1095 --- /dev/null +++ b/www/.content.EZtzwPjb/html/17fbb0fc5ae7776f574262ac12d424ffd1f2be68.00000605.css @@ -0,0 +1,64 @@ +/** + * wrapper + * IMPORTANT: Do NOT add _width_ here, they are defined dynmically by the plugin! + */ +#twitterwidget { + border: 0; + margin: 0; + padding: 0; +} +/* tweet wrapper */ +#twitterwidget div.tweet { + font-size: 12px; + color: #000; + margin-bottom: 10px; + background-color: #f7f7f7; + border-bottom: 1px dashed #ccc; +} +/* date */ +.twitterwidget-date { + font-weight: bold; +} +/* links */ +.twitterwidget-tweet-link { +/* color: #0000ff;*/ +} +.twitterwidget-link-link { +/* color: #0000ff;*/ +} +.twitterwidget-link-hashtag { +/* color: #0000ff !important;*/ +} +.twitterwidget-link-user { +/* color: #0000ff;*/ +} +/* follow me button */ +#twitterwidget strong { + display: block; + padding: 0; + text-align: center; +} +#twitterwidget strong a { + background: #fff url(../img/twitter.gif) left no-repeat; + padding-left: 24px !important; + font-family: Arial; + text-decoration: none; + text-transform: uppercase; + font-style: normal; + color: #666; + font-weight: bold; + font-size: 16px; +} +/* footer */ +.twitterwidget-footer, .twitterwidget-footer a:link, .twitterwidget-footer a:active, .twitterwidget-footer a:visited, .twitterwidget-footer a:hover { + text-decoration: none !important; + background: none !important; + color: #aaa !important; + border: 0; + padding: 0; + margin: 0; + text-align: center; + font-weight: normal; + text-decoration: none; + font-size: 9px; +} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/183ca214a8866cdf8ef3e278da00297dadc3e4e0.00000624.css b/www/.content.EZtzwPjb/html/183ca214a8866cdf8ef3e278da00297dadc3e4e0.00000624.css new file mode 100644 index 0000000..fe440fe --- /dev/null +++ b/www/.content.EZtzwPjb/html/183ca214a8866cdf8ef3e278da00297dadc3e4e0.00000624.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;background:#fff;border:1px +solid #f00;font-size:10pt;width:280px;padding:2px}span.wpcf7-not-valid-tip-no-ajax{color:#f00;font-size:10pt;display:block}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/185f0046bc1d4d6b07798c31cacd21b18fdf92c3.00000003.xml b/www/.content.EZtzwPjb/html/185f0046bc1d4d6b07798c31cacd21b18fdf92c3.00000003.xml new file mode 100644 index 0000000..5ada4a0 --- /dev/null +++ b/www/.content.EZtzwPjb/html/185f0046bc1d4d6b07798c31cacd21b18fdf92c3.00000003.xml @@ -0,0 +1,29 @@ + + + Commentaires sur : Hello World + + http://blog.hugopoi.net/2010/10/16/hello-world/ + Internet, Hardware et Bidouille + Mon, 22 Aug 2016 14:09:10 +0000 + hourly + 1 + https://wordpress.org/?v=4.6.1 + + Par : Calcifer + http://blog.hugopoi.net/2010/10/16/hello-world/#comment-5 + + Sun, 17 Oct 2010 12:27:31 +0000 + http://127.0.0.1/?p=1#comment-5 + + Cool de te voir ouvrir un blog, pour avoir vécu avec toi en coloc, je sais que ça sera très passionnant :)
        +See you !

        +]]>
        +
        +
        +
        diff --git a/www/.content.EZtzwPjb/html/1882ae1e9bfebd4df0ddb83afb45edaf31334d26.00000720.css b/www/.content.EZtzwPjb/html/1882ae1e9bfebd4df0ddb83afb45edaf31334d26.00000720.css new file mode 100644 index 0000000..fe9245c --- /dev/null +++ b/www/.content.EZtzwPjb/html/1882ae1e9bfebd4df0ddb83afb45edaf31334d26.00000720.css @@ -0,0 +1,28 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7 .screen-reader-response{position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);height:1px;width:1px;margin:0;padding:0;border:0}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{color:#f00;font-size:1em;display:block}.use-floating-validation-tip span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;border:1px +solid #f00;background:#fff;padding: .2em .8em}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wpcf7-recaptcha +iframe{margin-bottom:0}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/1899f073bc8f227b0ec6145dd729f555de0edcc7.00001295.xml b/www/.content.EZtzwPjb/html/1899f073bc8f227b0ec6145dd729f555de0edcc7.00001295.xml new file mode 100644 index 0000000..1b0d12f --- /dev/null +++ b/www/.content.EZtzwPjb/html/1899f073bc8f227b0ec6145dd729f555de0edcc7.00001295.xml @@ -0,0 +1,7 @@ + +1.0HugoPoihttp://blog.hugopoi.netHugoPoihttp://blog.hugopoi.net/author/hugopoi/SOPA, PIPA, pipeau et plein d'autrerich600338<blockquote class="wp-embedded-content"><a href="/2012/01/18/sopa-pipa-pipeau-et-plein-dautre/">SOPA, PIPA, pipeau et plein d’autre</a></blockquote> +<script type='text/javascript'> +<!--//--><![CDATA[//><!-- + !function(a,b){"use strict";function c(){if(!e){e=!0;var a,c,d,f,g=-1!==navigator.appVersion.indexOf("MSIE 10"),h=!!navigator.userAgent.match(/Trident.*rv:11\./),i=b.querySelectorAll("iframe.wp-embedded-content");for(c=0;c<i.length;c++)if(d=i[c],!d.getAttribute("data-secret")){if(f=Math.random().toString(36).substr(2,10),d.src+="#?secret="+f,d.setAttribute("data-secret",f),g||h)a=d.cloneNode(!0),a.removeAttribute("security"),d.parentNode.replaceChild(a,d)}else;}}var d=!1,e=!1;if(b.querySelector)if(a.addEventListener)d=!0;if(a.wp=a.wp||{},!a.wp.receiveEmbedMessage)if(a.wp.receiveEmbedMessage=function(c){var d=c.data;if(d.secret||d.message||d.value)if(!/[^a-zA-Z0-9]/.test(d.secret)){var e,f,g,h,i,j=b.querySelectorAll('iframe[data-secret="'+d.secret+'"]'),k=b.querySelectorAll('blockquote[data-secret="'+d.secret+'"]');for(e=0;e<k.length;e++)k[e].style.display="none";for(e=0;e<j.length;e++)if(f=j[e],c.source===f.contentWindow){if(f.removeAttribute("style"),"height"===d.message){if(g=parseInt(d.value,10),g>1e3)g=1e3;else if(~~g<200)g=200;f.height=g}if("link"===d.message)if(h=b.createElement("a"),i=b.createElement("a"),h.href=f.getAttribute("src"),i.href=d.value,i.host===h.host)if(b.activeElement===f)a.top.location.href=d.value}else;}},d)a.addEventListener("message",a.wp.receiveEmbedMessage,!1),b.addEventListener("DOMContentLoaded",c,!1),a.addEventListener("load",c,!1)}(window,document); +//--><!]]> +</script><iframe sandbox="allow-scripts" security="restricted" src="/2012/01/18/sopa-pipa-pipeau-et-plein-dautre/embed/" width="600" height="338" title="« SOPA, PIPA, pipeau et plein d’autre » — HugoPoi" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" class="wp-embedded-content"></iframe> diff --git a/www/.content.EZtzwPjb/html/18c19ae6beaa4a739c8a438baaf6f4158a99b584.00000515.html b/www/.content.EZtzwPjb/html/18c19ae6beaa4a739c8a438baaf6f4158a99b584.00000515.html new file mode 100644 index 0000000..ab2eccc --- /dev/null +++ b/www/.content.EZtzwPjb/html/18c19ae6beaa4a739c8a438baaf6f4158a99b584.00000515.html @@ -0,0 +1,368 @@ + + + + + + + Sony – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        +
        +
        + +
        +
        +
        +
        +
        +

        Test et démontage d’un Sony Multi Flip 15 SVF15N1C5E

        Longtemps que je n’avais pas posté ici, mais la je suis en vacances donc j’ai le temps. Voici donc mes retours sur ce pc portable Sony un peu atypique. J’ai choisit cette machine sur plusieurs critères qui m’avait convaincu pour les usages de ma chérie (c’est sa machine), elle fait du dessin vectoriel et de la retouche d’images principalement.
        + (suite…)

        +
        Par HugoPoi, il y a
        +
        + +
        +
        +
        +
        + +
        +
        + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/1937f18bcc35523e2cab847e5e871b41d2fbe159.00000374.xml b/www/.content.EZtzwPjb/html/1937f18bcc35523e2cab847e5e871b41d2fbe159.00000374.xml new file mode 100644 index 0000000..bc6f52b --- /dev/null +++ b/www/.content.EZtzwPjb/html/1937f18bcc35523e2cab847e5e871b41d2fbe159.00000374.xml @@ -0,0 +1,43 @@ + + + dash – HugoPoi + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Mon, 22 Aug 2016 14:10:26 +0000 + fr-FR + hourly + 1 + https://wordpress.org/?v=4.6.1 + + Et si on faisait sans Twitch et sans Youtube + http://blog.hugopoi.net/2015/10/24/et-si-on-faisait-sans-twitch-et-sans-youtube/ + http://blog.hugopoi.net/2015/10/24/et-si-on-faisait-sans-twitch-et-sans-youtube/#respond + Sat, 24 Oct 2015 13:07:55 +0000 + + + + + + + + + + + + + + http://blog.hugopoi.net/?p=909 + Lire la suite »

        ]]>
        + http://blog.hugopoi.net/2015/10/24/et-si-on-faisait-sans-twitch-et-sans-youtube/feed/ + 0 +
        +
        +
        diff --git a/www/.content.EZtzwPjb/html/198071c8a42a1f4fbd56009d05efa11ed81d99f4.00000373.html b/www/.content.EZtzwPjb/html/198071c8a42a1f4fbd56009d05efa11ed81d99f4.00000373.html new file mode 100644 index 0000000..6fe4170 --- /dev/null +++ b/www/.content.EZtzwPjb/html/198071c8a42a1f4fbd56009d05efa11ed81d99f4.00000373.html @@ -0,0 +1,364 @@ + + + + + + + dash – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        +
        +
        + +
        +
        +
        +
        +
        +
        +
        + +
        +
        +
        +
        + +
        +
        + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/1a33b1e60fdd87b85ce6931ed39239f97f896e90.00000109.html b/www/.content.EZtzwPjb/html/1a33b1e60fdd87b85ce6931ed39239f97f896e90.00000109.html new file mode 100644 index 0000000..7395223 --- /dev/null +++ b/www/.content.EZtzwPjb/html/1a33b1e60fdd87b85ce6931ed39239f97f896e90.00000109.html @@ -0,0 +1,1370 @@ + + + + + + + + Réparations Samsung SyncMaster 2232BW – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        +
        +
        + +
        +
        +
        +
        +
        +
        +

        Allô docteur on a un problème,

        +

        En ce dimanche calme avant la fin de mes partiels, mon écran Samsung SyncMaster 2232BW commençait à faire des siennes. Celui-ci depuis un mois ou deux clignotait de façon systématique au démarrage, au début pendant seulement quelques secondes, puis au fur et à mesure, de plus en plus jusqu’à devoir attendre 10 minutes pour que je puisse l’utiliser. Après 3 ans et 4 mois de bons et loyaux services, il voulait me quitter. J’ai tenté le support Samsung par email avec peu d’espoir car l’écran a dépassé sa garantie de 4 mois (oui oui les bâtards -> obsolescence programmée). Et donc j’ai eu le droit à un joli mail automatique me disant de contacter un numéro non surtaxé (mais avec combien de temps d’attente ?), ce que je n’ai pas fait car je n’avais pas envie de passer 30min au téléphone pour au final avoir un « On est désolé mais on ne peut rien faire pour vous car la garantie est dépassée, mais on peut envoyer votre écran en SAV pour faire un devis pour seulement 50 boules ». Concernant le support email de Samsung France, je leur donne une note de 0/20 puisque ce n’est pas un support mais une redirection vers le téléphone.

        +

        +

        Symptômes

        +

        Clignotements de l’écran et de la LED power systématiques à chaque démarrage de l’écran. Je me suis tout de suite douté d’un problème d’alimentation et après quelques recherches sur google, confirmation du problème sur beaucoup d’écrans et téléviseurs. Dans 99% des cas ce clignotement est dû à des condensateurs défectueux qu’il faut simplement changer :-D

        +

        Démontage

        +

        Donc après avoir cerné le problème, j’ai ouvert l’écran pour chercher les condos défectueux. J’ai trouvé une petite vidéo pour mon écran :

        +

        +

        Voici quelques photos en plus pour vous aider :

        +

        Les outils que j’ai utilisé pour le démontage

        +

        Position des clips

        +

        Carte d’alimentation dans son emplacement

        +

        Et voici les condensateurs qui posent problèmes. Comme vous pouvez le voir sur la photo, ils sont très facilement identifiable car ils sont bombés sur le dessus.

        +

        Condensateurs défectueux

        +

        Vous devez donc acheter des condensateurs de remplacement, par exemple sur Conrad.

        +

        Mes condensateurs suivant étaient endommagés:

        +
          +
        • 1 de 330uF 25V remplacé par un 470uF 25V
        • +
        • 3 de 820uF 25V remplacé par des 1000uF 50V
        • +
        +

        Pour la réparation, il vous faut un fer à souder avec une panne pas trop grosse mais d’une grosse puissance car les soudures sont très solides (j’ai galéré avec un fer pro qui monte jusqu’à 400°).

        +

        Tout remarche nickel après remontage, plus de clignotement pour seulement quelques euros.

        +

        edit du 19 aout 2014 : j’ai trouvé le service manuel de l’écran si besoin samsung_2232bw_chassis_lpe22bs_sm

        + + +
        +
        + +
        +
        +
        +
        +
        +

        + 41 commentaires

        +
        + +
        +
        +
        +
        +

        + c'est_moi + · 30 janvier 2012 à 18 h 57 min +

        +

        Mille mercis et mille félicitations pour cette fiche technique si pédagogue.

        +

        J’espère que le partiels se passent plus que parfait !!

        +

        J’ai gardé l’url de la page pour réparer mon écran dans un petit mois : j’espère que la page soit toujours là ;-)

        +

        Merci encore.

        + +
        +
        + +
        + +
        +
        +
        +
        +

        + Maxime + · 5 mai 2012 à 12 h 31 min +

        +

        Bonjour HugoPoi!

        +

        Merci pour toutes vos infos et votre topic, je voulais avoir quelques précisions sur les condos à changer pour samsung 2232bw, je veux passer commande mais j’ai un problème avec les dimensions des condos, si vous pouvez m’informer de ce que je pourrais acheter car il y a trop de références. En vous remerciant A+ Maxime

        + +
        +
        +
          +
          + +
          +
          +
          +
          +

          + HugoPoi + · 14 juin 2012 à 22 h 56 min +

          +

          N’importe quel condensateur polarisé avec des caractéristiques proches devrait marché.

          + +
          +
          + +
        + +
        + +
        +
        +
        +
        +

        + gaubjezj + · 14 juin 2012 à 22 h 32 min +

        +

        Merci pour le tuto qui m’a bien aidé.
        +J’ai utilisé un fer de 40 W avec une panne fine et
        +une pompe à dessouder et j’ai retiré les condensateurs sans problème.
        +Merci encore (3€40 pour le dépannage).

        + +
        +
        + +
        + +
        +
        +
        +
        +

        + DragonTribal + · 2 juillet 2012 à 12 h 02 min +

        +

        super merci pour manifique tuto.
        +Est-il possible de changer les 5 condensateurs 820uF 25V par des 1000uF 50V? car moi mes 5 condensateurs sont presque HS ;-)

        +

        Cordialement

        + +
        +
        +
          +
          + +
          +
          +
          +
          +

          + HugoPoi + · 2 juillet 2012 à 12 h 25 min +

          +

          Oui je penses que ça marchera étant donné que c’est des valeurs plus grandes.

          + +
          +
          + +
        + +
        + +
        +
        +
        +
        +

        + FRED + · 11 juillet 2012 à 19 h 11 min +

        +

        Bravo, MERCI.
        +Je n’ai encore rien fait…mais j’ai le même problème, et tu me donnes la solution.
        +Super.

        + +
        +
        + +
        + +
        +
        +
        +
        +

        + daninpet + · 31 août 2012 à 10 h 10 min +

        +

        Merci mille fois!

        +

        J’avais ce problème, et j’ai emmener la photo des trucs a remplacer chez le réparateur du coin et voila!! Ça m’a coûté 7 Euros (mais j’habite en Thaïlande)

        + +
        +
        + +
        + +
        +
        +
        +
        +

        + moi + · 15 novembre 2012 à 15 h 25 min +

        +

        super mon 2232bw vient de lâcher, les 3 + 1 condos sont gonflés j ai trouvé un 330 en 35v qui traîné sur un écran mort et j’ai commander 5 1000uf 35v sur ebay pour moins de 3 dollars, ca devrait le faire j’espere j’attend d’être livré merci! par contre j’ai qu’un gros pistolet a soudure et un gros fil d’étain, c’est pas évident mais bon ca le fait quand même =)

        + +
        +
        +
          +
          + +
          +
          +
          +
          +

          + moi + · 7 décembre 2012 à 9 h 33 min +

          +

          parfait je vient de recevoir les condos; j ai meuler la panne du fer a souder pour la tailler en mine de crayon et j ai reussi a les souder facilement ils étaient un peu plus gros mais ca passe tout juste, mais attention ne pas prendre des plus gros! l écran fonctionne nickel maintenant.

          + +
          +
          + +
        + +
        + +
        +
        +
        +
        +

        + Croco + · 19 janvier 2013 à 18 h 39 min +

        +

        Je souhaiterai savoir si tu as utilisé un fer à souder bien précis étant donné que la carte est une multi couche.
        +Merci

        + +
        +
        + + +
        + +
        +
        +
        +
        +

        + momo + · 10 juin 2013 à 13 h 15 min +

        +

        slut je voudrai savoir ou trouvé les condansateur a changer sur mon ecran qui clignote

        + +
        +
        + + +
        + +
        +
        +
        +
        +

        + lokmane + · 5 juillet 2013 à 16 h 08 min +

        +

        merci j’avais un ecran rouge ! et c’etais la tresse qui relie mon ecran votre page m’a aider a l’ouvrir et a le reparer merci bien

        + +
        +
        + +
        + +
        +
        +
        +
        +

        + ML + · 21 août 2013 à 19 h 11 min +

        +

        Merci ! Ecran réparé. Halte à l’obsolescence programmée.

        + +
        +
        + +
        + +
        +
        +
        +
        +

        + raymond + · 31 octobre 2013 à 13 h 20 min +

        +

        ai vu votre vidéo et les explications pour la reparation de mon écran , apparemment le méme probléme l écran passe au noir apres quelque seconde , j ai vu un le condensateur en bas a gauche gonflé , je l ai fait changé (10€) les autre condensateur étant toujour bon d après la personne qui me l a changé , mais j ai toujour le méme probléme cela peut il venir de la carte video a gauche ?

        + +
        +
        +
          +
          + +
          +
          +
          +
          +

          + HugoPoi + · 20 décembre 2013 à 12 h 27 min +

          +

          Si la led bleu du bouton power s’éteint aussi c’est un problème d’alimentation sinon c’est plus compliqué et ça peut provenir de condensateurs sur la partie vidéo. Changé tous les plus gros condensateurs sur la partie alimentation pourrait être un bon début même si ils ne paraissent pas endommagé.

          + +
          +
          + +
        + +
        + +
        +
        +
        +
        +

        + damien + · 4 novembre 2013 à 0 h 29 min +

        +

        bonjour,

        +

        j’ai des crasses coincées entres l’écran et le truc juste derrière, est ce qu’on sais les enlever en démontant la dalle ?

        + +
        +
        +
          +
          + +
          +
          +
          +
          +

          + HugoPoi + · 20 décembre 2013 à 12 h 28 min +

          +

          Je ne sais si cette partie de la dalle est démontable, je penses que c’est collé mais vous pouvez essayer.

          + +
          +
          + +
        + +
        + +
        +
        +
        +
        +

        + mac + · 1 décembre 2013 à 17 h 30 min +

        +

        Merci HugoPoi, avec ces excellents conseils et tuto vidéo, mon écran est reparti pour une nouvelle vie.
        +Pour les composants, si vous êtes sur Paris ou proche. La boutique RAM électroniques est une bonne adresse, 138 bd Diderot 75012 Paris (Place de la Nation).

        + +
        +
        + +
        + +
        +
        +
        +
        +

        + Bouddhid + · 16 janvier 2014 à 19 h 21 min +

        +

        Merci beaucoup pour ces conseils ! J’étais à 2 doigts de jeter mon écran, le voilà comme neuf pour moins de 5€ ! Vive la bricole !

        + +
        +
        + +
        + +
        +
        +
        +
        +

        + Vincent + · 17 mai 2014 à 16 h 45 min +

        +

        Alors là merci.

        +

        Pour ce post, les photos, la vidéo, tout y est.

        +

        J’ai démonté l’écran assez vite, enlevé la carte, regarder quel condensateurs étaient gonflés,(il y en avaient 4), un magasin d’électronique sur lyon et une heure de démontage, soudure, remontage plus tard, voilà, c’est tout beau.
        +Ca ne clignote plus, ça s’allume comme avant, comme neuf.

        +

        Et dire que j’allais jeter cet écran et claquer 350 euros pour un neuf…

        +

        Coût de l’opération pour 4 condensateurs, du fil d’étain 7 euros.

        +

        Je précise que je n’avais jamais fais de soudure sur composant électronique auparavant.
        +Comme quoi cette opération de réparation est à la portée de tous.

        + +
        +
        + +
        + +
        +
        +
        +
        +

        + Julot + · 6 juillet 2014 à 13 h 49 min +

        +

        Site vraiment détaillé et très claire. J’ai pu dépanner mon écran avec succès. Merci beaucoup pour ces précieuses explications.

        + +
        +
        + +
        + +
        +
        +
        +
        +

        + PaniK31 + · 29 juillet 2014 à 9 h 21 min +

        +

        Pas besoin d’une grosse puissance pour le fer, il faut au préalable gratter le vernis sur l’étain afin de pouvoir le faire fondre plus facilement

        + +
        +
        + +
        + +
        +
        +
        +
        +

        + R211_IP-45130B + · 20 août 2014 à 14 h 04 min +

        +

        Bonjour à tous,

        +

        Une âme charitable peut-elle me communiquer ce qui est gravé sur la résistance CMS R211 de la carte d’alimentation/inverter IP-45130B qui équipe le SAMSUNG 2232BW ? Cette résistance a pris un coup de tournevis et je n’arrive pas à déterminer sa valeur de résistance car son marquage est effacé et comme le composant est abimé la mesure à l’ohmmètre indique l’infinie.

        +

        Merci par avance.

        + +
        +
        + +
        + +
        +
        +
        +
        +

        + roger + · 24 octobre 2014 à 17 h 21 min +

        +

        Ca refonctionne après échange de 4 condensateurs :
        +-un 330uf25v remplacé à l’identique.
        +-trois 820uf25v remplacés par 1000uf25v.
        +Le tout pour quelques €. Le plus dur était le dessoudage, la tresse n’était pas très efficace contrairement à la pompe.
        +Grand merci à HugoPoi.

        + +
        +
        + +
        + +
        +
        +
        +
        +

        + Max + · 26 février 2015 à 16 h 28 min +

        +

        ENORME MERCI!! J’ai réparé mon écran en 20mn pour 3,50€, il était à 2 doigts de partir à la déchetterie. Ca faisait des mois qu’il clignotait, et l’allumage mettait parfois plus d’une demi heure. J’ai changé 5 condos 820uf25v et 1 330uf25v, par exactement les mêmes en neuf, et là il démarre au quart de tour! Ca fait plaisir! :)

        + +
        +
        +
          +
          + +
          +
          +
          +
          +

          + rocco michelle + · 7 octobre 2015 à 10 h 16 min +

          +

          Bonjour je ne sais si vous verrez mon message mais je tente…je cherche quelqu’un qui accepterait de changer mes condensateurs sur mon samsung, les réparateurs me demandent 70 à 80 euros et encore ils n’ont pss envie de le faire et me disent d’acheter un nouvel écran. j’aurais bien tenter mais je n’ai pas de matériel et j’ai lu que les condo pouvaient être très dangereux s’ils avaient de la charge alors j’ai la trouille de bidouiller pq je n’y connais rien. si vous êtes de lyon acccepteriez vous de changer mes condensateurs pour 45 euros? merci de votre réponse.

          + +
          +
          + +
        + +
        + +
        +
        +
        +
        +

        + lecakeseb + · 27 juillet 2015 à 15 h 26 min +

        +

        Bonjour,

        +

        J’ai utilisé la vidéo pour démonter mon écran afin de le nettoyer de 4 bêtes d’orage infiltrés entre le premier écran (noir) et la dalle (blanche) de mon samsung SyncMaster 2232W

        +

        Petits conseils afin de modérer ce que j’ai pu voir dans cette vidéo :

        +

        0 : aspirez, nettoyez l’extérieur de l’écran avant de l’ouvrir et nettoyez la table qui vous servira d’atelier, pour éviter les poussières qui s’infiltreront forcément plus tard si vous ne le faites pas…
        +1 : pour ouvrir, utilisez plutôt un couteau à enduire pour la première partie (le cadre). Vous n’abîmerez ainsi pas du tout l’écran. Soyez patients, ne forcez pas ! ça viendra doucement, mais ça viendra. Il m’a fallu à peine 10 minutes, sans détériorer l’écran, sans le griffer… Il est encore nickel !
        +2 : attention à ne pas déconnecter les fils reliant le cadre à la carte. Inutile pour simplement nettoyer l’écran.
        +3 : pour séparer les deux éléments de la dalle entre lesquels les bêtes se sont infiltrées, les doigts suffisent, pas besoin d’outils qui viendraient les endommager. La dalle blanche reste à l’horizontale, l’écran noir sera tenu à la verticale.
        +4 : utiliser un chiffon doux ne peluchant pas pour enlever les bêtes (faites-vous aider de quelqu’un qui les enlèvera pendant que vous tenez l’écran extérieur en position verticale).
        +5 : repositionnez la colle d’étanchéité qui aurait pu se déplacer, avant de repositionner les deux écrans.
        +6 : commencer par refermer par le bas de l’écran (sinon les éléments de réglage situés au bas de l’écran – luminosité, contraste,…- ne se replaceront pas correctement).
        +7 : Une fois l’écran refermé, j’ai appliqué un peu de « barrage aux insectes », avec un chiffon à l’arrière de mon écran en insistant surtout sur les bouches d’aération par lesquelles les maudites bestioles ont du s’infiltrer. En espérant ne pas avoir à ouvrir !

        +

        Bon courage à vous !

        + +
        +
        + +
        + +
        +
        +
        +
        +

        + Michel Jousserandot + · 20 janvier 2017 à 20 h 41 min +

        +

        Merci pour les conseils au démontage.
        +J’avais un problème un peu différent :l’écran ne s’allumait plus du tout. Avec un copain beaucoup plus malin que moi, on a détecté 2 fusibles dont l’un était fichu. On l’a remplacé par un petit fil de cuivre. Et tout a remarché comme avant.
        +Il faut surtout faire attention quand on teste la partie haute tension
        +Michel.

        + +
        +
        + +
        + +
        +
        +
        +
        +

        + Crec + · 14 juillet 2017 à 10 h 20 min +

        +

        Bonjour. Très bons conseils avertis. Merci beaucoup.
        +Peut-on avoir les mêmes conseils pour un écran BX2250.
        +Merci par avance.
        +Crec

        + +
        +
        +
          +
          + +
          +
          +
          +
          +

          + HugoPoi + · 6 août 2017 à 14 h 03 min +

          +

          J’ai pas de BX2250 donc dans le détails non mais si c’est les même symptômes ça doit la même procédure.

          + +
          +
          + +
        + +
        + +
        +
        +
        +
        +

        + Ferronnier + · 10 août 2017 à 17 h 42 min +

        +

        Un grand merci !
        +J’ai changé tous les condensateurs de la partie alimentation de la carte, en déportant certains qui n’avaient pas le même format qu’à l’origine, et ça tourne nickel !

        + +
        +
        + +
        + +
        +
        +
        +
        +

        + Nours + · 1 décembre 2017 à 15 h 17 min +

        +

        Ca fait des années que j’ai cet article enregistré dans un coin, en nourrissant l’espoir d’avoir un jour le courage de réparer ce foutu écran… Après plus de cinq ans c’est chose faite \o/
        +Un giga, hypra, immense merci pour ce tutoriel tellement bien expliqué et facile d’accès (je n’avais pas touché à un fer à souder depuis… Oh boy 15 ans déjà).
        +Après une longue pause, l’écran reprend du service… Jusqu’à la prochaine panne /o/

        + +
        +
        + +
        + +
        +
        +
        +
        +

        + Alex + · 11 août 2018 à 13 h 28 min +

        +

        Quelqu’un sait qui pourrait me le faire svp j ai le même problème mais aucun matériel

        + +
        +
        + +
        + +
        +
        +
        +
        +

        + David + · 5 février 2019 à 21 h 06 min +

        +

        Merci Hugo pour ce tuto qui m’a déjà servi en 2013 et qui va me resservir aujourd’hui car mon 2ème 2232bw commence à avoir les mêmes symptômes.

        + +
        +
        + +
        + +
        +
        +
        +
        +

        + yvan + · 23 novembre 2019 à 17 h 14 min +

        +

        Bonjour
        +j’ai tenté de changer le condensateur qui avait l’air naze mais ça n’a pas marché … toujours le bouton bleu allumé, l’écran est reconnu par Windows 10 même si l’écran est éteint
        +grâce au service manuel de l’écran fourni plus haut, j’ai vérifié les tensions jusque sur la carte de la dalle et elles sont correctes, ainsi que sur la carte elle-même, tout est ok, donc je pense que ce n’est plus un problème de condensateur
        +pour les fusibles, ils ressemblent plutôt à des composants qu’à de simple fusibles, mais comme j’ai les bonnes tension, je ne pense pas que ça vienne de là
        +j’ai bien peur que ce soit la dalle qui soit naze ? quelqu’un a t il des idées supplémentaires avant que je le jette avec grand regret (c’est un 2032bw, mais c’est la même chose, même si ma carte électronique est un peu différente car plus récente
        +merci d’avance pour vos conseils

        + +
        +
        + +
        + +
        +
        +
        +
        +

        + yvan + · 24 novembre 2019 à 17 h 26 min +

        +

        finalement j’ai trouvé, c’est un petit fusible vert qui ressemble à une résistance mais tout vert avec écrit 4A LF qui assure l’alimentation de la dalle.
        +En le shuntant, mon écran a retrouvé l’image.
        +après enquête il s’agit d’un fusible pico de 4ampères de chez little fuse, pas du tout évident à trouver
        +Résolu !

        + +
        +
        + +
        +
        +

        + Reflow Dell 1546 | HugoPoi + · 22 août 2016 à 16 h 09 min +

        +

        […] « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable de marque Dell un 1546 pour être précis. Encore […]

        + +
        +
        + +
        +
        +

        + Reflow Dell Inspiron 1546 – HugoPoi + · 23 juin 2017 à 23 h 18 min +

        +

        […] d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un […]

        + +
        +
        + +
        +
        +
        +

        Répondre à moi Annuler la réponse

        Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

        +
        +
        +

        + +

        +
        +
        +
        +
        +
        +
        + +
        +
        +
        +
        +
        +
        + + +
        + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/1ad2592880d31d6e1a8ff50ebfdb902772d7962a.00000738.css b/www/.content.EZtzwPjb/html/1ad2592880d31d6e1a8ff50ebfdb902772d7962a.00000738.css new file mode 100644 index 0000000..51f3e30 --- /dev/null +++ b/www/.content.EZtzwPjb/html/1ad2592880d31d6e1a8ff50ebfdb902772d7962a.00000738.css @@ -0,0 +1 @@ +html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:0.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace, monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff;}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:hover,a:focus{color:#23527c;text-decoration:underline}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive,.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role="button"]{cursor:pointer}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small{font-weight:normal;line-height:1;color:#777}h1,.h1,h2,.h2,h3,.h3{margin-top:20px;margin-bottom:10px}h1 small,.h1 small,h2 small,.h2 small,h3 small,.h3 small,h1 .small,.h1 .small,h2 .small,.h2 .small,h3 .small,.h3 .small{font-size:65%}h4,.h4,h5,.h5,h6,.h6{margin-top:10px;margin-bottom:10px}h4 small,.h4 small,h5 small,.h5 small,h6 small,.h6 small,h4 .small,.h4 .small,h5 .small,.h5 .small,h6 .small,.h6 .small{font-size:75%}h1,.h1{font-size:36px}h2,.h2{font-size:30px}h3,.h3{font-size:24px}h4,.h4{font-size:18px}h5,.h5{font-size:14px}h6,.h6{font-size:12px}p{margin:0 0 10px;}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}small,.small{font-size:85%}mark,.mark{background-color:#fcf8e3;padding:.2em}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:hover,a.text-primary:focus{color:#286090}.text-success{color:#3c763d}a.text-success:hover,a.text-success:focus{color:#2b542c}.text-info{color:#31708f}a.text-info:hover,a.text-info:focus{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover,a.text-warning:focus{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover,a.text-danger:focus{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:hover,a.bg-primary:focus{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:hover,a.bg-success:focus{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover,a.bg-info:focus{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover,a.bg-warning:focus{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover,a.bg-danger:focus{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none;margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-top:0;margin-bottom:20px}dt,dd{line-height:1.42857143;}dt{font-weight:bold}dd{margin-left:0}@media (min-width:769px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote footer:before,blockquote small:before,blockquote .small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}.blockquote-reverse footer:before,blockquote.pull-right footer:before,.blockquote-reverse small:before,blockquote.pull-right small:before,.blockquote-reverse .small:before,blockquote.pull-right .small:before{content:''}.blockquote-reverse footer:after,blockquote.pull-right footer:after,.blockquote-reverse small:after,blockquote.pull-right small:after,.blockquote-reverse .small:after,blockquote.pull-right .small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.25)}kbd kbd{padding:0;font-size:100%;font-weight:bold;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;word-break:break-all;word-wrap:break-word;color:#333;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.row{margin-left:-15px;margin-right:-15px;}.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%;}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*="col-"]{position:static;float:none;display:table-column}table td[class*="col-"],table th[class*="col-"]{position:static;float:none;display:table-cell}.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr.active:hover>th{background-color:#e8e8e8}.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{background-color:#dff0d8}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr.success:hover>th{background-color:#d0e9c6}.table>thead>tr>td.info,.table>tbody>tr>td.info,.table>tfoot>tr>td.info,.table>thead>tr>th.info,.table>tbody>tr>th.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>tbody>tr.info>td,.table>tfoot>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr.info>th,.table>tfoot>tr.info>th{background-color:#d9edf7}.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr.info:hover>th{background-color:#c4e3f3}.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr.warning:hover>th{background-color:#faf2cc}.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{background-color:#f2dede}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr.danger:hover>th{background-color:#ebcccc}.table-responsive{overflow-x:auto;min-height:0.01%}@media screen and (max-width:768px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{padding:0;margin:0;border:0;min-width:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:bold}input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type="file"]{display:block}input[type="range"]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{border:0;background-color:transparent}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type="search"]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type="date"].form-control,input[type="time"].form-control,input[type="datetime-local"].form-control,input[type="month"].form-control{line-height:34px}input[type="date"].input-sm,input[type="time"].input-sm,input[type="datetime-local"].input-sm,input[type="month"].input-sm,.input-group-sm input[type="date"],.input-group-sm input[type="time"],.input-group-sm input[type="datetime-local"],.input-group-sm input[type="month"]{line-height:30px}input[type="date"].input-lg,input[type="time"].input-lg,input[type="datetime-local"].input-lg,input[type="month"].input-lg,.input-group-lg input[type="date"],.input-group-lg input[type="time"],.input-group-lg input[type="datetime-local"],.input-group-lg input[type="month"]{line-height:46px}}.form-group{margin-bottom:15px}.radio,.checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}.radio label,.checkbox label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:normal;cursor:pointer}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{position:absolute;margin-left:-20px;margin-top:4px \9}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:normal;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"].disabled,input[type="checkbox"].disabled,fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"]{cursor:not-allowed}.radio-inline.disabled,.checkbox-inline.disabled,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.radio.disabled label,.checkbox.disabled label,fieldset[disabled] .radio label,fieldset[disabled] .checkbox label{cursor:not-allowed}.form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0;min-height:34px}.form-control-static.input-lg,.form-control-static.input-sm{padding-left:0;padding-right:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}textarea.input-sm,select[multiple].input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm textarea.form-control,.form-group-sm select[multiple].form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}textarea.input-lg,select[multiple].input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg textarea.form-control,.form-group-lg select[multiple].form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.input-lg+.form-control-feedback,.input-group-lg+.form-control-feedback,.form-group-lg .form-control+.form-control-feedback{width:46px;height:46px;line-height:46px}.input-sm+.form-control-feedback,.input-group-sm+.form-control-feedback,.form-group-sm .form-control+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline,.has-success.radio label,.has-success.checkbox label,.has-success.radio-inline label,.has-success.checkbox-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-success .form-control-feedback{color:#3c763d}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline,.has-warning.radio label,.has-warning.checkbox label,.has-warning.radio-inline label,.has-warning.checkbox-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline,.has-error.radio label,.has-error.checkbox label,.has-error.radio-inline label,.has-error.checkbox-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn,.form-inline .input-group .form-control{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .radio label,.form-inline .checkbox label{padding-left:0}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .radio,.form-horizontal .checkbox{min-height:27px}.form-horizontal .form-group{margin-left:-15px;margin-right:-15px}@media (min-width:768px){.form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:7px}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;margin-bottom:0;font-weight:normal;text-align:center;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn:focus,.btn:active:focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn.active.focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus,.btn.focus{color:#333;text-decoration:none}.btn:active,.btn.active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:focus,.btn-default.focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active:hover,.btn-default.active:hover,.open>.dropdown-toggle.btn-default:hover,.btn-default:active:focus,.btn-default.active:focus,.open>.dropdown-toggle.btn-default:focus,.btn-default:active.focus,.btn-default.active.focus,.open>.dropdown-toggle.btn-default.focus{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled.focus,.btn-default[disabled].focus,fieldset[disabled] .btn-default.focus{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary:focus,.btn-primary.focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary:active:hover,.btn-primary.active:hover,.open>.dropdown-toggle.btn-primary:hover,.btn-primary:active:focus,.btn-primary.active:focus,.open>.dropdown-toggle.btn-primary:focus,.btn-primary:active.focus,.btn-primary.active.focus,.open>.dropdown-toggle.btn-primary.focus{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled.focus,.btn-primary[disabled].focus,fieldset[disabled] .btn-primary.focus{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:focus,.btn-success.focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active:hover,.btn-success.active:hover,.open>.dropdown-toggle.btn-success:hover,.btn-success:active:focus,.btn-success.active:focus,.open>.dropdown-toggle.btn-success:focus,.btn-success:active.focus,.btn-success.active.focus,.open>.dropdown-toggle.btn-success.focus{color:#fff;background-color:#398439;border-color:#255625}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled.focus,.btn-success[disabled].focus,fieldset[disabled] .btn-success.focus{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:focus,.btn-info.focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info:active:hover,.btn-info.active:hover,.open>.dropdown-toggle.btn-info:hover,.btn-info:active:focus,.btn-info.active:focus,.open>.dropdown-toggle.btn-info:focus,.btn-info:active.focus,.btn-info.active.focus,.open>.dropdown-toggle.btn-info.focus{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled.focus,.btn-info[disabled].focus,fieldset[disabled] .btn-info.focus{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:focus,.btn-warning.focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning:active:hover,.btn-warning.active:hover,.open>.dropdown-toggle.btn-warning:hover,.btn-warning:active:focus,.btn-warning.active:focus,.open>.dropdown-toggle.btn-warning:focus,.btn-warning:active.focus,.btn-warning.active.focus,.open>.dropdown-toggle.btn-warning.focus{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled.focus,.btn-warning[disabled].focus,fieldset[disabled] .btn-warning.focus{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:focus,.btn-danger.focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active:hover,.btn-danger.active:hover,.open>.dropdown-toggle.btn-danger:hover,.btn-danger:active:focus,.btn-danger.active:focus,.open>.dropdown-toggle.btn-danger:focus,.btn-danger:active.focus,.btn-danger.active.focus,.open>.dropdown-toggle.btn-danger.focus{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled.focus,.btn-danger[disabled].focus,fieldset[disabled] .btn-danger.focus{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#337ab7;font-weight:normal;border-radius:0}.btn-link,.btn-link:active,.btn-link.active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#777;text-decoration:none}.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-property:height, visibility;-o-transition-property:height, visibility;transition-property:height, visibility;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid \9;border-right:4px solid transparent;border-left:4px solid transparent;}.dropup,.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;text-align:left;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);-webkit-background-clip:padding-box;background-clip:padding-box;}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none;color:#262626;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#337ab7}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#777}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px dashed;border-bottom:4px solid \9;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:769px){.navbar-right .dropdown-menu{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right:auto}}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav>li{position:relative;display:block;}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#777;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent;}@media (min-width:769px){.navbar{border-radius:4px}}@media (min-width:769px){.navbar-header{float:left}}.navbar-collapse{overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:769px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block !important;height:auto !important;padding-bottom:0;overflow:visible !important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-left:0;padding-right:0}}.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:200px}}.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:-15px;margin-left:-15px;}@media (min-width:769px){.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:769px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}@media (min-width:769px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:15px 15px;font-size:18px;line-height:20px;height:50px;}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:769px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;margin-right:5px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px;}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:769px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:768px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media (min-width:769px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left;}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{margin-left:-15px;margin-right:-15px;padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);margin-top:8px;margin-bottom:8px}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn,.navbar-form .input-group .form-control{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .radio label,.navbar-form .checkbox label{padding-left:0}.navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:768px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:769px){.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-right-radius:4px;border-top-left-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:769px){.navbar-text{float:left;margin-left:15px;margin-right:15px}}@media (min-width:769px){.navbar-left{float:left !important}.navbar-right{float:none;margin-right:-15px;text-align:right;}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}@media (max-width:768px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:hover,.navbar-default .btn-link:focus{color:#333}.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:hover,.navbar-default .btn-link[disabled]:focus,fieldset[disabled] .navbar-default .btn-link:focus{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{background-color:#080808;color:#fff}@media (max-width:768px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:hover,.navbar-inverse .btn-link:focus{color:#fff}.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:hover,.navbar-inverse .btn-link[disabled]:focus,fieldset[disabled] .navbar-inverse .btn-link:focus{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{content:"/\00a0";padding:0 5px;color:#ccc}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857143;text-decoration:none;color:#337ab7;background-color:#fff;border:1px solid #ddd;margin-left:-1px}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:4px;border-top-right-radius:4px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:3;color:#fff;background-color:#337ab7;border-color:#337ab7;cursor:default}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#777;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:6px;border-top-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:hover,a.label:focus{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:hover,.label-default[href]:focus{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:hover,.label-success[href]:focus{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:hover,.label-info[href]:focus{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c9302c}.modal-open{overflow:hidden}.modal{display:none;overflow:hidden;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transform:translate(0, -25%);-ms-transform:translate(0, -25%);-o-transform:translate(0, -25%);transform:translate(0, -25%);-webkit-transition:-webkit-transform 0.3s ease-out;-o-transition:-o-transform 0.3s ease-out;transition:transform 0.3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0, 0);-ms-transform:translate(0, 0);-o-transform:translate(0, 0);transform:translate(0, 0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,0.5);box-shadow:0 3px 9px rgba(0,0,0,0.5);-webkit-background-clip:padding-box;background-clip:padding-box;outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,0.5);box-shadow:0 5px 15px rgba(0,0,0,0.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:normal;letter-spacing:normal;line-break:auto;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:12px;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{bottom:0;right:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.carousel{position:relative}.carousel-inner{position:relative;overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform 0.6s ease-in-out;-o-transition:-o-transform 0.6s ease-in-out;transition:transform 0.6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.item.next,.carousel-inner>.item.active.right{-webkit-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0);left:0}.carousel-inner>.item.prev,.carousel-inner>.item.active.left{-webkit-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0);left:0}.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right,.carousel-inner>.item.active{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);left:0}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:.5;filter:alpha(opacity=50);font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6);background-color:rgba(0,0,0,0)}.carousel-control.left{background-image:-webkit-linear-gradient(left, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-image:-o-linear-gradient(left, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-image:-webkit-gradient(linear, left top, right top, color-stop(0, rgba(0,0,0,0.5)), to(rgba(0,0,0,0.0001)));background-image:linear-gradient(to right, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)}.carousel-control.right{left:auto;right:0;background-image:-webkit-linear-gradient(left, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-image:-o-linear-gradient(left, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-image:-webkit-gradient(linear, left top, right top, color-stop(0, rgba(0,0,0,0.0001)), to(rgba(0,0,0,0.5)));background-image:linear-gradient(to right, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)}.carousel-control:hover,.carousel-control:focus{outline:0;color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;margin-top:-10px;z-index:5;display:inline-block}.carousel-control .icon-prev,.carousel-control .glyphicon-chevron-left{left:50%;margin-left:-10px}.carousel-control .icon-next,.carousel-control .glyphicon-chevron-right{right:50%;margin-right:-10px}.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;line-height:1;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0)}.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{left:20%;right:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:before,.clearfix:after,.dl-horizontal dd:before,.dl-horizontal dd:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.form-horizontal .form-group:before,.form-horizontal .form-group:after,.nav:before,.nav:after,.navbar:before,.navbar:after,.navbar-header:before,.navbar-header:after,.navbar-collapse:before,.navbar-collapse:after,.modal-header:before,.modal-header:after,.modal-footer:before,.modal-footer:after{content:" ";display:table}.clearfix:after,.dl-horizontal dd:after,.container:after,.container-fluid:after,.row:after,.form-horizontal .form-group:after,.nav:after,.navbar:after,.navbar-header:after,.navbar-collapse:after,.modal-header:after,.modal-footer:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right !important}.pull-left{float:left !important}.hide{display:none !important}.show{display:block !important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none !important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none !important}.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block{display:none !important}@media (max-width:768px){.visible-xs{display:block !important}table.visible-xs{display:table !important}tr.visible-xs{display:table-row !important}th.visible-xs,td.visible-xs{display:table-cell !important}}@media (max-width:768px){.visible-xs-block{display:block !important}}@media (max-width:768px){.visible-xs-inline{display:inline !important}}@media (max-width:768px){.visible-xs-inline-block{display:inline-block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block !important}table.visible-sm{display:table !important}tr.visible-sm{display:table-row !important}th.visible-sm,td.visible-sm{display:table-cell !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block !important}table.visible-md{display:table !important}tr.visible-md{display:table-row !important}th.visible-md,td.visible-md{display:table-cell !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block !important}}@media (min-width:1200px){.visible-lg{display:block !important}table.visible-lg{display:table !important}tr.visible-lg{display:table-row !important}th.visible-lg,td.visible-lg{display:table-cell !important}}@media (min-width:1200px){.visible-lg-block{display:block !important}}@media (min-width:1200px){.visible-lg-inline{display:inline !important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block !important}}@media (max-width:768px){.hidden-xs{display:none !important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none !important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none !important}}@media (min-width:1200px){.hidden-lg{display:none !important}}.visible-print{display:none !important}@media print{.visible-print{display:block !important}table.visible-print{display:table !important}tr.visible-print{display:table-row !important}th.visible-print,td.visible-print{display:table-cell !important}}.visible-print-block{display:none !important}@media print{.visible-print-block{display:block !important}}.visible-print-inline{display:none !important}@media print{.visible-print-inline{display:inline !important}}.visible-print-inline-block{display:none !important}@media print{.visible-print-inline-block{display:inline-block !important}}@media print{.hidden-print{display:none !important}} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/1afd8ebd03c33e252d091e864f3598b0fee598a0.00001308.json b/www/.content.EZtzwPjb/html/1afd8ebd03c33e252d091e864f3598b0fee598a0.00001308.json new file mode 100644 index 0000000..14a6d6b --- /dev/null +++ b/www/.content.EZtzwPjb/html/1afd8ebd03c33e252d091e864f3598b0fee598a0.00001308.json @@ -0,0 +1 @@ +{"version":"1.0","provider_name":"HugoPoi","provider_url":"http:\/\/blog.hugopoi.net","author_name":"HugoPoi","author_url":"http:\/\/blog.hugopoi.net\/author\/hugopoi\/","title":"\u00c9cran miracul\u00e9 d'un Asus N53SN","type":"rich","width":600,"height":338,"html":"
        \u00c9cran miracul\u00e9 d’un Asus N53SN<\/a><\/blockquote>\n + + + + + + + + + + + + + + + + + +
        +
        +
        +
        + +
        +
        +
        +
        +
        +

        Reflow Dell Inspiron 1546

        +
        Les choses n’ont pas beaucoup changé en terme d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un cadeau empoisonné de la belle-famille « Essaye de faire ce que tu peux pour récupérer mes photos, j’en rachèterais un ». Le pc portable en question était dans un état de mort certain.
        + (suite…)
        +
        +
        Par HugoPoi, il y a
        +
        + +
        +
        +
        +
        + +
        +
        + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/1d04f4714dc6398aa6c24471428d9e2353d3bb87.00000171.html b/www/.content.EZtzwPjb/html/1d04f4714dc6398aa6c24471428d9e2353d3bb87.00000171.html new file mode 100644 index 0000000..f7864b3 --- /dev/null +++ b/www/.content.EZtzwPjb/html/1d04f4714dc6398aa6c24471428d9e2353d3bb87.00000171.html @@ -0,0 +1,869 @@ + + + + + + + + Réparer un Vidéoprojecteur Sony VPL-CX5 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        +
        +
        + +
        +
        +
        +
        +
        +
        +

        Bon les cocos, j’ai récupéré un vidéo projecteur Sony VPL-CX5 en état décédé. Comme je sais que c’est encore et toujours ce problème d’obsolescence programmée j’ai donc décidé de le réparer.

        +

        Sony VPL-CX5

        +

        Première étape, identifier la panne

        +

        Le vidéoprojecteur ne donnait aucun signe de vie, aucune led ne s’allume quand je l’ai branché rien du tout même pas un petit crépitement d’alimentation. Je pense a un problème d’alimentation mais rien est sur tant que je ne l’ai pas démonté. Mais avant le dévissage je vais quand même faire une recherche Google car le Internet il est grand et il est beau. J’ai trouvé un truc qui m’a mis la puce à l’oreille sans même avoir enlever la première visse, sur un forum quelconque que je n’arrive plus à retrouver, un mec dit qu’il a changé un composant (un certain MCZ3001) sur une des cartes d’alimentation, et le vidéoprojecteur remarchait.

        +

        Démontage

        +

        Sony VPL-CX5

        +

        J’ai donc commencé par enlever les quelques visses, puis démonter toutes les cartes une par une, une vrai galère. Pour m’aider j’ai trouvé le « manuel de service » (or Service Manual) que je mets a disposition ici même : sony_vpl-cx5_cs5_servicemanual. J’ai mis dans la suite les références des connecteurs pour les mesures.

        +

        1) Premier test vérifier le fusible sur la première carte d’alimentation GA, faire le test avec la carte débranché, j’ai utilisé un voltmètre sur la position test de résistance : test OK.

        +

        2) Deuxième test, vérifier la tension continu fournie par cette carte GA sur le connecteur de sortie CN2001 environ 380V DC, DONC FAIRE CECI AVEC PRÉCAUTION (je l’ai fait avec un voltmètre de merde à 5€) : test OK j’ai 380 Volt en sortie. Sur cette carte il y un gros condensateur de 400V donc faire TRÈS ATTENTION MÊME QUAND LA CARTE EST DÉBRANCHÉ DU SECTEUR.(j’ai vérifier le condensateur se décharge assez vite j’ai mesuré 4V 10 secondes après avoir débranché)

        +

        3) Maintenant test de la carte GB qui transforme le 400V continu en basse tension continu ici du 24V d’après le SM. Donc j’ai le point de mesure parfait, c’est le connecteur CN3201.

        +
        N'oubliez d'ouvrir le manuel de service ça donne des infos précieuses pour le dépannage

        N’oubliez d’ouvrir le manuel de service ça donne des infos précieuses pour le dépannage

        +

        Plusieurs points pour tester le plus pratique étant le petit connecteur blanc de 3 broches qui fournit la masse et VCC 24V. Après mesure sur ce connecteur j’ai une tension stable mais pas du 24VDC, les composants n’ont pas l’air endommagés donc je vérifie à l’entrée du fameux MCZ3001 il est bien alimenté correctement mais ne sort pas 24VDC. Pas de condensateurs chimiques endommagés.

        +

        Donc la panne est certainement dû à ce composant, achetons-le !

        +

        Trouver le composant de rechange

        +

        Au début j’ai cherché chez des e-commerçant d’électronique comme Farnell,Conrad, etc pas trouvé en france, puis j’ai fait les marchants Anglais et je l’ai trouvé mais à 30€ frais de port inclus. Et comme un con j’avais oublié de faire Ebay : encore un coup des chinois 4.27€ avec le support DIP et les frais de port inclus OMFG j’adore la mondialisation. J’en ai pris 2 pour mois de 10€ et comme les chinois ils sont trop fort j’ai tout reçu en moins de 2 semaines.

        +

        Capture-ebay-mcz3001

        +

        Dés-soudage

        +

        Bon j’avais des fer à souder de merde et du coup c’est le #FAIL, j’ai pas réussi à dés-souder proprement, j’ai donc été obligé d’investir dans une merde à 10€ :

        +

        Fer à souderEnsuite j’ai finalement réussi à dés-souder :

        +

        Carte GB MCZ3001 dés-soudéEt il me semble que sur cette photo j’avais nettoyer avec du dissolvant.

        +

        Remontage

        +

        Alors je suis désolé mais je n’ai pas de photos pour le MCZ soudé car j’avais déjà remonté le projecteur. Les étapes :

        +
          +
        1. Souder un support fourni (au cas ou ce fameux MCZ rendrais encore l’âme)
        2. +
        3. Placer un MCZ neuf dans le support
        4. +
        5. Relier la carte GA et GB ensemble
        6. +
        7. Brancher sur le 220V
        8. +
        9. Tester le 24VDC sur le connecteur CN3201
        10. +
        11. #WIN
        12. +
        13. Remonter le projecteur
        14. +
        15. Tester en vrai
        16. +
        17. #WIN2
        18. +
        +

        Conclusion

        +

        Oui c’est un WIN d’une valeur 4€ mais je tiens à préciser que ça représente environ 10 heures de travail continu. Entre les recherches Google et la lecture de la documentation, les heures passés au démontage, les quelques fois ou je me suis arraché les cheveux et risquer ma vie avec un voltmètre à 5€.

        +

        Mon banc de test

        +

        Banc de test chez HugoLa table du salon 2Les Tofs

        + + +
        +
        +
        + +
        +
        + + + + + + + + + +
        +
        +
        +
        +
        +
        +
        +

        + 16 commentaires

        +
        + +
        +
        +
        +
        +

        + Georg + · 30 janvier 2014 à 12 h 22 min +

        +

        Hello,
        +dear Hugo, at first: HAVE MANY THANKS FOR YOUR VERY INTERESTING BLOG!!!

        +

        I also have a cx5 and try to repair it.

        +

        It has the same problems like your projector…

        +

        I’ve measured the CN2001 but in my power supply there are only 320 V (stable).
        +Are you sure, that there have to be 380V?
        +In the service manual, I didn’t find a value (either 320V nor 380V)

        +

        Best Regards
        +Your Georg

        + +
        +
        +
          +
          + +
          +
          +
          +
          +

          + HugoPoi + · 21 février 2014 à 17 h 36 min +

          +

          Sorry to be so long to answer,
          +320V seems to be OK, I have extrapolated the value from the schema ~ 220Vxrootsquare(2) but this depends of the quality of your current source. I think 320 will not impact the power for the next card.

          +

          Good repair !
          +Thanks for the comment :-D

          + +
          +
          + +
        + +
        + +
        +
        +
        +
        +

        + henri moine + · 2 février 2014 à 20 h 43 min +

        +

        Bonsoir,
        +Merci beaucoup pour l’explication détaillée et les photos.
        +Je vais pas tarder de m’attaquer à mon SONY VPL CS7 bizarrement inerte depuis quelques semaines…
        +Bonne continuation !

        + +
        +
        +
          +
          + +
          +
          +
          +
          +

          + florian + · 21 avril 2014 à 9 h 09 min +

          +

          Bonjour,
          +Je possède également un sony VPL CS7, et depuis plusieurs mois il a quelques signes de faiblesses.

          +

          1) lorsque je le débranche du secteur et que je le rebranche, il faut que j’attende 24 à 48 h pour que le voyant on/off se mette à éclairer, donc je ne peux pas l’allumer pendant ce temps.

          +

          2) aujourd’hui j’ai beau le laisser brancher, aucun signe de vie plus rien ne s’allume.

          +

          As tu attaqué ton VPL, As tu trouvé quelque chose ?

          +

          Merci

          + +
          +
          +
            +
            + +
            +
            +
            +
            +

            + HugoPoi + · 9 mai 2014 à 17 h 50 min +

            +

            Le VPL que j’avais était en panne je l’ai réparé jusqu’à il y a 2 mois ou il retombé en panne. Ton problème d’allumage ressemble à un problème de condensateur cramé. tu peux regarder si tu en vois des gonflés en démontant.

            + +
            +
            + +
          + +
        + +
        + +
        +
        +
        +
        +

        + Ghent + · 21 septembre 2014 à 12 h 48 min +

        +

        Bonjour,

        +

        Déjà, super tuto.
        +Je rencontre un problème à priori similaire avec mon CX5: le bouton de mise sous tension n’est plus éclairé et il ne se passe rien quand j’appuie dessus.

        +

        Je me suis donc lancé, et j’ai démonté jusqu’à atteindre les cartes d’alimentation.
        +J’ai mesuré donc au niveau du CN3201, et là j’ai 22V continu stable.
        +D’où ma première question, ai-je le même problème que toi avec le MCZ3001, ou dois-je chercher autre part ?
        +Faut-il 24V exactement ?

        +

        Ensuite, j’ai essayé de me rapprocher du composant lui-même, mais je ne sais pas où mesurer. Le diagramme indique le VC1 sur la patte 8, mais je ne sais pas où prendre la masse.
        +Saurais-tu m’aider ?

        +

        J’ai enfin voulu tester la tension en sortie de la carte GB, le point 17V, mais même question, si je teste la patte 1 du connecteur, où prendre la masse pour vérifier qu’il y a bien 17V ?
        +Cette partie est-elle alimentée malgré que l’appareil soit éteint ?

        +

        Dans tous les cas, j’ai commandé le MCZ3001D, mais je voudrais m’assurer qu’il est bien le responsable avant de le changer.

        +

        Merci d’avance pour tes réponses, et encore une fois, merci de partager ton travail !

        + +
        +
        +
          +
          + +
          +
          +
          +
          +

          + HugoPoi + · 26 septembre 2014 à 15 h 01 min +

          +

          Je penses que si tu as 22V sur CN3201 le problème est sûrement ailleurs. Même si cela ne coûte rien de changer le MCZ3001D si tu as de quoi dessouder proprement. Regarde sur le service manuel pour tester les autres tensions qui sortent de la carte après les partie d’isolement, de mémoire il y a 3,3 V et du 5V.

          + +
          +
          +
            +
            + +
            +
            +
            +
            +

            + Neckron + · 12 décembre 2014 à 21 h 32 min +

            +

            Bonsoir, je déterre un peu ce vpl-cx5 que je possède et que je vends !!!
            +Je voie qu’il y a encore des personnes qui s’y intéresse.
            +Je précise juste que le mien est en excellent état de marche, il y a la télécommande et qu’il n’a servi QUE 220 Heures. Lampe d’origine. Je cherchais pendant un temps un moyen de l’upgrader pour l’image, mais finalement…. je change…

            + +
            +
            + +
          + +
        + +
        + +
        +
        +
        +
        +

        + Jean-Marie + · 31 décembre 2014 à 14 h 43 min +

        +

        Bonjour Hugo.
        +Merci pour ton partage d’expérience.
        +Moi aussi, j’ai un VPL-CS7 inerte comme tu dis. Pas la moindre led s’allume ou clignote quand je le branche.
        +Je l’ai complètement démonté. Je soupçonne un composant sur le bloc d’alim.
        +As-tu réparé le tien ?
        +Merci.
        +JM.

        + +
        +
        +
          +
          + +
          +
          +
          +
          +

          + HugoPoi + · 31 janvier 2015 à 15 h 13 min +

          +

          Moi j’ai bien réparé mon CX5 mais celui-ci est retombé en panne 6 mois plus tard. Cette fois-ci avec plus de composants endommagés :-(
          +Bon courage pour les réparations.

          + +
          +
          + +
        + +
        + +
        +
        +
        +
        +

        + Sorce + · 14 mars 2015 à 16 h 05 min +

        +

        Bonjour ,j’ai un vpl cs6 ,qui ne s’allume pas rien du tous j’ai suivi tes étape et sur le connecteur con 2001 et la 325v bizarre bon je relie la carte gb pour tester au borne du con 3201 et la 15v et sa retombe et sa remonte a 15v peut tu m aider cdt richard (pense tu que je doi changer le mcz)

        + +
        +
        +
          +
          + +
          +
          +
          +
          +

          + HugoPoi + · 29 avril 2015 à 16 h 18 min +

          +

          Vérifiez les autres tensions en sortie de la carte GB, de mémoire il doit y avoir 3,3 V du 5 V et du 15V. Si tout est OK, la carte-mère principale est peut-être endommagé et pas moyen de réparer sans changement.

          + +
          +
          + +
          + +
          +
          +
          +
          +

          + Gilles + · 16 juin 2018 à 13 h 44 min +

          +

          Même chose que vous ?
          +Avez-vous trouvé une solution ?
          +Est-ce que c’est normal cette tension non stable ?

          + +
          +
          + +
        + +
        + +
        +
        +
        +
        +

        + Daoud Yacoub + · 20 octobre 2015 à 9 h 54 min +

        +

        Je remercie beaucoup l’equipe

        + +
        +
        + +
        + +
        +
        +
        +
        +

        + Daoud Yacoub + · 20 octobre 2015 à 10 h 02 min +

        +

        Aidez moi à depanner mon vidéo projecteur le tout ne s’allume pas ;jai démonté et nettoyer toutes les plaques alimentation et logique me rien ne se passe mais en toute sincérité si je peux avoir le document technique de réparation m’est indispensable

        + +
        +
        +
          +
          + +
          +
          +
          +
          +

          + HugoPoi + · 24 octobre 2015 à 13 h 39 min +

          +

          Les commentaires n’ont pas pour vocation d’être un forum :-)

          + +
          +
          + +
        + +
        +
        +
        +

        Répondre à Jean-Marie Annuler la réponse

        Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

        +
        +
        +

        + +

        +
        +
        +
        +
        +
        +
        + +
        +
        +
        +
        +
        +
        + + +
        + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/1d6ec2c083e3f9f3be65967115398e3a543d20a6.00000563.html b/www/.content.EZtzwPjb/html/1d6ec2c083e3f9f3be65967115398e3a543d20a6.00000563.html new file mode 100644 index 0000000..ec5c694 --- /dev/null +++ b/www/.content.EZtzwPjb/html/1d6ec2c083e3f9f3be65967115398e3a543d20a6.00000563.html @@ -0,0 +1,364 @@ + + + + + + + zfs – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        +
        +
        + +
        +
        +
        +
        +
        +
        +
        + +
        +
        +
        +
        + +
        +
        + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/1da8605d374278bfb5dc31fac78b9f55a2467aee.00000471.html b/www/.content.EZtzwPjb/html/1da8605d374278bfb5dc31fac78b9f55a2467aee.00000471.html new file mode 100644 index 0000000..a67b366 --- /dev/null +++ b/www/.content.EZtzwPjb/html/1da8605d374278bfb5dc31fac78b9f55a2467aee.00000471.html @@ -0,0 +1,370 @@ + + + + + + + ntfsresize – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        +
        +
        + +
        +
        +
        +
        +
        +
        +
        + +
        +
        +
        +
        + +
        +
        + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/1df1fc6676f800facfa9fd5496c6e1dc176e226a.00001236.js b/www/.content.EZtzwPjb/html/1df1fc6676f800facfa9fd5496c6e1dc176e226a.00001236.js new file mode 100644 index 0000000..5db6356 --- /dev/null +++ b/www/.content.EZtzwPjb/html/1df1fc6676f800facfa9fd5496c6e1dc176e226a.00001236.js @@ -0,0 +1 @@ +!function(e,n){e.wp=e.wp||{},e.wp.mediaelement=new function(){var e={};return{initialize:function(){(e="undefined"!=typeof _wpmejsSettings?n.extend(!0,{},_wpmejsSettings):e).classPrefix="mejs-",e.success=e.success||function(e){var n,t;e.rendererName&&-1!==e.rendererName.indexOf("flash")&&(n=e.attributes.autoplay&&"false"!==e.attributes.autoplay,t=e.attributes.loop&&"false"!==e.attributes.loop,n&&e.addEventListener("canplay",function(){e.play()},!1),t&&e.addEventListener("ended",function(){e.play()},!1))},e.customError=function(e,n){if(-1!==e.rendererName.indexOf("flash")||-1!==e.rendererName.indexOf("flv"))return''+mejsL10n.strings["mejs.download-file"]+""},n(".wp-audio-shortcode, .wp-video-shortcode").not(".mejs-container").filter(function(){return!n(this).parent().hasClass("mejs-mediaelement")}).mediaelementplayer(e)}}},n(e.wp.mediaelement.initialize)}(window,jQuery); \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/1e438caadae0d2ce6bc3c95f5ba4683c66bfe1d7.00001261.json b/www/.content.EZtzwPjb/html/1e438caadae0d2ce6bc3c95f5ba4683c66bfe1d7.00001261.json new file mode 100644 index 0000000..9fa4806 --- /dev/null +++ b/www/.content.EZtzwPjb/html/1e438caadae0d2ce6bc3c95f5ba4683c66bfe1d7.00001261.json @@ -0,0 +1 @@ +{"version":"1.0","provider_name":"HugoPoi","provider_url":"http:\/\/blog.hugopoi.net","author_name":"HugoPoi","author_url":"http:\/\/blog.hugopoi.net\/author\/hugopoi\/","title":"Download-Day","type":"rich","width":600,"height":338,"html":"
        Download-Day<\/a><\/blockquote>\n + + + + + + + + + + + + + + + + + +
        +
        +
        +
        + +
        +
        +
        +
        +
        +

        Préparation Migration

        Après réception de ma freebox revolution et son switch gigabit il est temps de s’occuper de mon home serveur :

        +

        Windows est facile mais chiant pour certains trucs… Trop de contraintes pour un usage à la maison et oui je suis sûr que certain vont troller car chez moi j’ai un serveur avec comme OS Windows Server 2008 R2. Mais pourquoi Windows Server? Première raison, tous les postes à la maison sont sous windows 7 (pour jouer c’est mieux ;). Deuxième raison, j’avais envie de me faire la main sur 2008 avec son lot de nouveautés dont la gestion des machines virtuelles VM qui est très pratique. Mais c’est vraiment trop lourd comme OS, il faut 10 minutes pour installer un service style DNS et la majorité des services réseaux ont besoin de Active Directory pour fonctionner. Dès que j’ai installé AD, ça a foutu la merde partout sur les trucs déjà configurés donc je suis retourné en arrière. Aussi IIS c’est un peu la foire pour trouver un paramètre donc je préfère utiliser un Apache. (suite…)

        +
        Par HugoPoi, il y a
        +
        + +
        +
        +
        +
        + +
        +
        + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/1e8ae586dc767e5f29be82c6aba31ffc81e95b01.00000097.html b/www/.content.EZtzwPjb/html/1e8ae586dc767e5f29be82c6aba31ffc81e95b01.00000097.html new file mode 100644 index 0000000..48b4b81 --- /dev/null +++ b/www/.content.EZtzwPjb/html/1e8ae586dc767e5f29be82c6aba31ffc81e95b01.00000097.html @@ -0,0 +1,580 @@ + + + + + + + + Pascal Negre tu m’emmerdes – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        +
        +
        + +
        +
        +
        +
        +
        +
        +


        +
        Bon sérieux, Pascal Negre il commence à me les briser sec. Après Deezer qui est devenu une belle merde car il n’y a plus que les Black Eyed Peas, Justin et Britney, la plateforme est devenue complètement payante et cela reste cher au vu du catalogue proposé. Puis l’année dernière j’ai pris un abonnement téléphonique chez Orange avec la vente forcée d’un compte premium Deezer dont malheureusement je ne me sers pas.

        +

        +

        Peu de temps après, j’ai découvert Grooveshark, une plateforme un peu différente sur laquelle on peut ajouter sa musique perso. Vous cherchez un titre? Vous ne le trouvez pas ? Si vous l’avez dans votre ordinateur, vous pouvez l’envoyer sur la plateforme pour le rendre disponible à tous. Grooveshark se base sur un business model pub pour leur site web donc l’accès est gratuit et sans inscription. Pour l’accès depuis votre mobile, cela est payant via un abonnement mensuel de quelques euros. Mais après avoir fais mes premiers pas sur la plateforme, je me suis demandé comment Grooveshark pouvait obtenir les droits de diffusion pour tous les titres ajoutés par les utilisateurs. Cela est en faite impossible car il n’y a pas de catalogue unifié et donc chaque major et artiste fait valoir ses droits séparément. Donc au final, je me retrouve avec un Grooveshark qui se fait grignoter au fur et à mesure du temps, et qui va finir comme Deezer avec un catalogue incomplet et amputé. Et cela commence vraiment à m’emmerder car je n’ai pas envie de payer trois abonnements différents sur trois plateformes. En plus, ce sera vraiment pratique pour écouter de la musique en changeant d’application entre deux titres. Donc à moins que les majors se bougent la rondelle pour faire des vraies offres unifiées avec des tarifs raisonnables, je vais devoir monter ma plateforme musicale communautaire en ligne. Je pensais à un truc avec une interface simple style grooveshark, voici mes 2,3 idées :

        +
          +
        • Interface Web en HTML5
        • +
        • Application mobile Android Iphone et cie
        • +
        • Accès avec inscription, le tout gratuit (genre tracker privé)
        • +
        • Alors j’en ai rêvé la nuit dernière, pour stocker la musique, je pensais à un système décentralisé basé sur BitTorrent. Comme ça, impossible de fermer les serveurs qui hébergent la base de données contenant les infos sur chaque titre.
        • +
        • En gros, il faudrait un client lourd avec un protocole spécifiquement développé pour l’occasion
        • +
        • Au niveau de la qualité, il nous faut du Flac et du MP3 (minimum 320kbits/s)
        • +
        • Donc un système d’ajout à la BDD avec vérification de l’intégrité par les utilisateurs (proposition d’écoute pour savoir si le titre que l’on ajoute est déjà présent)
        • +
        • Chaque utilisateur stocke sa bibliothèque musicale, et en plus éventuellement un cache de redondance d’une partie de la bibliothèque totale
        • +
        • Complétition progressive de la BDD par les utilisateurs
        • +
        +
        Bref, je pense que je rêves à 15000km mais ce concept pourrait amener à construire la plus grosse base de  données musicales de l’Internet et faire chier les majors. Montrer que la culture et le partage sont plus important que la BMW de Pascal Negre et ses potes.
        +

         

        +
        +
        +
        +
        +
        Catégories : InternetNews
        +
        +
        +
        + + + + + + + + + +
        +
        +
        +
        +
        +
        +
        +

        + 4 commentaires

        +
        + +
        +
        +
        +
        +

        + Thibault + · 7 janvier 2012 à 19 h 50 min +

        +

        Très bonne idée mais …
        +Le seul hic dans tes 2,3 idées c’est le stockage via BitTorrent je crois :)

        + +
        +
        +
          +
          + +
          +
          +
          +
          +

          + HugoPoi + · 7 janvier 2012 à 19 h 57 min +

          +

          Pourquoi ? si on stock la musique sur les serveurs, ça va représenter une bande passante énorme et en plus vu qu’il n’y aura que de la « contrefaçon ». Je serais obligé de fermer mon service si je veux pas vendre mes 2 bras.

          + +
          +
          + +
        + +
        + +
        +
        +
        +
        +

        + Thibault + · 8 janvier 2012 à 18 h 02 min +

        +

        A moins de tout passer en full-encrypt et d’autres méthodes pour cacher l’ip du client vis à vis du tracker (je ne suis pas un pro-torrent donc je dis p’tet des conneries)
        +Dans ce cas bonjour l’appli bien lourde :)

        + +
        +
        +
          +
          + +
          +
          +
          +
          +

          + HugoPoi + · 8 janvier 2012 à 21 h 49 min +

          +

          Non tu ne dis pas de connerie bittorrent à besoin de l’ip public pour fonctionner, stocké au niveau du tracker. Le protocol bittorrent dispose déjà de chiffrement sur la partie pair à pair et aussi connexion au tracker qui peux se faire en SSL. Au niveau confidentialité, faire une plateforme uniquement avec client web ou bittorrent revient au même car le serveur peux stocké indéfiniment les ip qui s’y connectent dans les deux cas. Moi je suis pour les systèmes décentralisés qui sont la base d’Internet qui ont l’avantage de répartir la charge sur tous le réseau et pas provoqué d’engorgement. Appli bien lourde je ne sais pas, ça sera toujours moins lourd que iTunes lol

          + +
          +
          + +
        + +
        +
        +
        +

        Répondre à HugoPoi Annuler la réponse

        Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

        +
        +
        +

        + +

        +
        +
        +
        +
        +
        +
        + +
        +
        +
        +
        +
        +
        + + +
        + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/1eb18ea4242e447d3d38617ab869913d49b2b133.00001317.xml b/www/.content.EZtzwPjb/html/1eb18ea4242e447d3d38617ab869913d49b2b133.00001317.xml new file mode 100644 index 0000000..77d06fa --- /dev/null +++ b/www/.content.EZtzwPjb/html/1eb18ea4242e447d3d38617ab869913d49b2b133.00001317.xml @@ -0,0 +1,7 @@ + +1.0HugoPoihttp://blog.hugopoi.netHugoPoihttp://blog.hugopoi.net/author/hugopoi/Contactrich600338<blockquote class="wp-embedded-content"><a href="/contact/">Contact</a></blockquote> +<script type='text/javascript'> +<!--//--><![CDATA[//><!-- + !function(a,b){"use strict";function c(){if(!e){e=!0;var a,c,d,f,g=-1!==navigator.appVersion.indexOf("MSIE 10"),h=!!navigator.userAgent.match(/Trident.*rv:11\./),i=b.querySelectorAll("iframe.wp-embedded-content");for(c=0;c<i.length;c++){if(d=i[c],!d.getAttribute("data-secret"))f=Math.random().toString(36).substr(2,10),d.src+="#?secret="+f,d.setAttribute("data-secret",f);if(g||h)a=d.cloneNode(!0),a.removeAttribute("security"),d.parentNode.replaceChild(a,d)}}}var d=!1,e=!1;if(b.querySelector)if(a.addEventListener)d=!0;if(a.wp=a.wp||{},!a.wp.receiveEmbedMessage)if(a.wp.receiveEmbedMessage=function(c){var d=c.data;if(d.secret||d.message||d.value)if(!/[^a-zA-Z0-9]/.test(d.secret)){var e,f,g,h,i,j=b.querySelectorAll('iframe[data-secret="'+d.secret+'"]'),k=b.querySelectorAll('blockquote[data-secret="'+d.secret+'"]');for(e=0;e<k.length;e++)k[e].style.display="none";for(e=0;e<j.length;e++)if(f=j[e],c.source===f.contentWindow){if(f.removeAttribute("style"),"height"===d.message){if(g=parseInt(d.value,10),g>1e3)g=1e3;else if(~~g<200)g=200;f.height=g}if("link"===d.message)if(h=b.createElement("a"),i=b.createElement("a"),h.href=f.getAttribute("src"),i.href=d.value,i.host===h.host)if(b.activeElement===f)a.top.location.href=d.value}else;}},d)a.addEventListener("message",a.wp.receiveEmbedMessage,!1),b.addEventListener("DOMContentLoaded",c,!1),a.addEventListener("load",c,!1)}(window,document); +//--><!]]> +</script><iframe sandbox="allow-scripts" security="restricted" src="/contact/embed/" width="600" height="338" title="« Contact » — HugoPoi" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" class="wp-embedded-content"></iframe> diff --git a/www/.content.EZtzwPjb/html/1f1f64e085a9a82c809a88040a84968a86ba5bdb.00000687.css b/www/.content.EZtzwPjb/html/1f1f64e085a9a82c809a88040a84968a86ba5bdb.00000687.css new file mode 100644 index 0000000..20df2bb --- /dev/null +++ b/www/.content.EZtzwPjb/html/1f1f64e085a9a82c809a88040a84968a86ba5bdb.00000687.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7 .screen-reader-response{position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);height:1px;width:1px;margin:0;padding:0;border:0}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{color:#f00;font-size:1em;display:block}.use-floating-validation-tip span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;border:1px +solid #f00;background:#fff;padding: .2em .8em}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/1f4fffc56fb5608c8ea8733340472a57586c44f9.00000443.xml b/www/.content.EZtzwPjb/html/1f4fffc56fb5608c8ea8733340472a57586c44f9.00000443.xml new file mode 100644 index 0000000..17f916e --- /dev/null +++ b/www/.content.EZtzwPjb/html/1f4fffc56fb5608c8ea8733340472a57586c44f9.00000443.xml @@ -0,0 +1,38 @@ + + + mac os x – HugoPoi + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Mon, 22 Aug 2016 14:10:26 +0000 + fr-FR + hourly + 1 + https://wordpress.org/?v=4.6.1 + + Installer Mac OS X Mavericks avec VirtualBox + http://blog.hugopoi.net/2013/12/27/installer-mac-os-x-mavericks-avec-virtualbox/ + http://blog.hugopoi.net/2013/12/27/installer-mac-os-x-mavericks-avec-virtualbox/#comments + Fri, 27 Dec 2013 21:40:28 +0000 + + + + + + + + + http://blog.hugopoi.net/?p=802 + Lire la suite »

        ]]>
        + http://blog.hugopoi.net/2013/12/27/installer-mac-os-x-mavericks-avec-virtualbox/feed/ + 6 +
        +
        +
        diff --git a/www/.content.EZtzwPjb/html/1f798f6c4d9d6fbcee8404bf50c730e0fcb2f60b.00000706.css b/www/.content.EZtzwPjb/html/1f798f6c4d9d6fbcee8404bf50c730e0fcb2f60b.00000706.css new file mode 100644 index 0000000..20df2bb --- /dev/null +++ b/www/.content.EZtzwPjb/html/1f798f6c4d9d6fbcee8404bf50c730e0fcb2f60b.00000706.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7 .screen-reader-response{position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);height:1px;width:1px;margin:0;padding:0;border:0}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{color:#f00;font-size:1em;display:block}.use-floating-validation-tip span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;border:1px +solid #f00;background:#fff;padding: .2em .8em}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/1f809954131f7daffad243350e4d9736d75135aa.00000387.xml b/www/.content.EZtzwPjb/html/1f809954131f7daffad243350e4d9736d75135aa.00000387.xml new file mode 100644 index 0000000..35208cd --- /dev/null +++ b/www/.content.EZtzwPjb/html/1f809954131f7daffad243350e4d9736d75135aa.00000387.xml @@ -0,0 +1,87 @@ + + + + HugoPoi » demontage + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Sat, 14 Sep 2013 23:01:40 +0000 + fr-FR + hourly + 1 + http://wordpress.org/?v=3.6 + + Asus U36 et OCZ Vertex 3 la suite + http://blog.hugopoi.net/2012/03/30/asus-u36-et-ocz-vertex-3-la-suite/ + http://blog.hugopoi.net/2012/03/30/asus-u36-et-ocz-vertex-3-la-suite/#comments + Fri, 30 Mar 2012 10:29:27 +0000 + HugoPoi + + + + + + + + + + + + + + + http://blog.hugopoi.net/?p=635 + Lire la suite »

        ]]>
        + http://blog.hugopoi.net/2012/03/30/asus-u36-et-ocz-vertex-3-la-suite/feed/ + 1 +
        + + Réparations Samsung SyncMaster 2232BW + http://blog.hugopoi.net/2012/01/15/reparations-samsung-syncmaster-2232bw/ + http://blog.hugopoi.net/2012/01/15/reparations-samsung-syncmaster-2232bw/#comments + Sun, 15 Jan 2012 16:00:25 +0000 + HugoPoi + + + + + + + + + + + + http://blog.hugopoi.net/?p=586 + Lire la suite »

        ]]>
        + http://blog.hugopoi.net/2012/01/15/reparations-samsung-syncmaster-2232bw/feed/ + 16 +
        + + Démontage Asus U36 + http://blog.hugopoi.net/2011/07/30/demontage-asus-u36/ + http://blog.hugopoi.net/2011/07/30/demontage-asus-u36/#comments + Sat, 30 Jul 2011 13:19:08 +0000 + HugoPoi + + + + + + + + + http://blog.hugopoi.net/?p=495 + SSD MontéJ’ai acheté un petit SSD pour mettre dans mon U36 acheté il y a quelques mois, je n’ai pas trouvé de procédure de démontage sur Internet donc voici les photos de mon démontage. 1) Commencer par enlever toutes les vis …

        Lire la suite »

        ]]>
        + http://blog.hugopoi.net/2011/07/30/demontage-asus-u36/feed/ + 17 +
        +
        +
        diff --git a/www/.content.EZtzwPjb/html/1f9d19488bc686c2621d002f257fe84d440e0d4c.00000639.css b/www/.content.EZtzwPjb/html/1f9d19488bc686c2621d002f257fe84d440e0d4c.00000639.css new file mode 100644 index 0000000..8043bbf --- /dev/null +++ b/www/.content.EZtzwPjb/html/1f9d19488bc686c2621d002f257fe84d440e0d4c.00000639.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;background:#fff;border:1px +solid #f00;font-size:10pt;width:280px;padding:2px}span.wpcf7-not-valid-tip-no-ajax{color:#f00;font-size:10pt;display:block}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/1fc61c3d982051836d9767a14177ac66dd624cb1.00001239.js b/www/.content.EZtzwPjb/html/1fc61c3d982051836d9767a14177ac66dd624cb1.00001239.js new file mode 100644 index 0000000..6c4be09 --- /dev/null +++ b/www/.content.EZtzwPjb/html/1fc61c3d982051836d9767a14177ac66dd624cb1.00001239.js @@ -0,0 +1 @@ +!function(a,b){"use strict";function c(){if(!e){e=!0;var a,c,d,f,g=-1!==navigator.appVersion.indexOf("MSIE 10"),h=!!navigator.userAgent.match(/Trident.*rv:11\./),i=b.querySelectorAll("iframe.wp-embedded-content"),j=b.querySelectorAll("blockquote.wp-embedded-content");for(c=0;c1e3)g=1e3;else if(200>~~g)g=200;f.height=g}if("link"===d.message)if(h=b.createElement("a"),i=b.createElement("a"),h.href=f.getAttribute("src"),i.href=d.value,i.host===h.host)if(b.activeElement===f)a.top.location.href=d.value}else;}},d)a.addEventListener("message",a.wp.receiveEmbedMessage,!1),b.addEventListener("DOMContentLoaded",c,!1),a.addEventListener("load",c,!1)}(window,document); \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/1fcf7896564711d4083c327f341c424dcc6eafb6.00000684.css b/www/.content.EZtzwPjb/html/1fcf7896564711d4083c327f341c424dcc6eafb6.00000684.css new file mode 100644 index 0000000..20df2bb --- /dev/null +++ b/www/.content.EZtzwPjb/html/1fcf7896564711d4083c327f341c424dcc6eafb6.00000684.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7 .screen-reader-response{position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);height:1px;width:1px;margin:0;padding:0;border:0}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{color:#f00;font-size:1em;display:block}.use-floating-validation-tip span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;border:1px +solid #f00;background:#fff;padding: .2em .8em}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/200081029fd2a4c87f9ed3651b80a493066ad428.00000252.html b/www/.content.EZtzwPjb/html/200081029fd2a4c87f9ed3651b80a493066ad428.00000252.html new file mode 100644 index 0000000..ee09789 --- /dev/null +++ b/www/.content.EZtzwPjb/html/200081029fd2a4c87f9ed3651b80a493066ad428.00000252.html @@ -0,0 +1,817 @@ + + + + + + + + Install RancherOs on FreeNas 11.3 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        +
        +
        + +
        +
        +
        +
        +
        +
        +

        Install RancherOs on FreeNas 11.3

        +
          +
        • The automated RancherOs installation aka Docker VM has been removed in
          +11.3
        • +
        • RancherOs doesn’t support EFI boot out of the box
        • +
        • Thanks to MKinney howto
        • +
        • This howto is provided without warranty
        • +
        • TODO the proper way of doing it is somewhere here
        • +
        • Some stuff about losetup
        • +
        +

        1. Make a EFI bootable RancherOs image

        + +
          +
        1. wget https://releases.rancher.com/os/v1.5.5/rancheros.iso
        2. +
        3. wget http://releases.ubuntu.com/18.04/ubuntu-18.04.4-live-server-amd64.iso
        4. +
        5. mkdir tmpubuntu tmprancheros tmprancheros_dest
        6. +
        7. sudo mount ubuntuserverlive.iso tmpubuntu
        8. +
        9. sudo mount rancheros.iso tmprancheros
        10. +
        11. fallocate -l 150M rancheros.img
        12. +
        13. gdisk rancheros.img o,y,n,enter,enter,ef00,w,Y
        14. +
        15. sudo losetup --partscan --show --find rancheros.img
        16. +
        17. sudo mkfs.fat /dev/loop2p1
        18. +
        19. sudo mount /dev/loop2p1 rancheros_dest
        20. +
        21. sudo cp -r tmprancheros/* tmprancheros_dest/
        22. +
        23. sudo cp -r tmpubuntu/EFI tmprancheros_dest/
        24. +
        25. Replace the content of tmprancheros_dest/boot/grub/grub.cfg with:
        26. +
        +
        set timeout=5
        +menuentry "Install Rancher" {
        +    linux   /boot/vmlinuz-4.14.138-rancher rancher.autologin=tty1 rancher.autologin=ttyS0 rancher.autologin=ttyS1 console=tty1 console=ttyS0 console=ttyS1 printk.devkmsg=on panic=10 ---
        +    initrd  /boot/initrd-v1.5.5
        +}
        +
        +
          +
        1. sudo umount tmprancheros_dest
        2. +
        3. sudo losetup -d /dev/loop2
        4. +
        5. sudo umount tmpubuntu tmprancheros
        6. +
        +

        2. Installation in FreeNas as Vm

        +
          +
        1. Create a VM with EFI boot 2GB RAM choose virtio for all the driver
          +better performance with linux
        2. +
        3. Add a RAW device and select your rancheros.img
        4. +
        5. Start the VM
        6. +
        7. Go to serial and in the shell cu -l /dev/nmdmXX at this point you should
          +have a rancher shell
        8. +
        9. sudo fdisk /dev/vda then g,n,1,+200M,t,1,n,enter,enter,w you
          +should something like at the end
        10. +
        +
        Disk /dev/vda: 10 GiB, 10737418240 bytes, 20971520 sectors
        +Units: sectors of 1 * 512 = 512 bytes
        +Sector size (logical/physical): 512 bytes / 16384 bytes
        +I/O size (minimum/optimal): 16384 bytes / 16384 bytes
        +Disklabel type: gpt
        +Disk identifier: 2B56EE14-44BF-6443-A197-EF73723B715F
        +Device      Start      End  Sectors  Size Type
        +/dev/vda1    2048   411647   409600  200M EFI System
        +/dev/vda2  411648 20971486 20559839  9.8G Linux filesystem
        +
        +
          +
        1. Format the boot partition sudo mkdosfs -n RANCHER -F 32 /dev/vda1
        2. +
        3. Format the main filesystem sudo mkfs.ext4 -L RANCHER_STATE /dev/vda2
        4. +
        5. Create a cloud-config.yml see https://rancher.com/docs/os/v1.x/en/installation/running-rancheros/server/install-to-disk/ for minimum content
        6. +
        7. sudo mkdir /dev/sr0 for installer checking about iso mounted before
          +install
        8. +
        9. Install ros with sudo ros install -t gptsyslinux -c cloud-config.yml -d /dev/vda -p /dev/vda2
        10. +
        11. mkdir /mnt/efipart && sudo mount /dev/vda1 /mnt/efipart
        12. +
        13. mkdir /mnt/installer && sudo mount /dev/vdb1 /mnt/installer
        14. +
        15. sudo cp -r /mnt/installer/EFI /mnt/efipart
        16. +
        17. Add a grub.cfg in /mnt/efipart/EFI/BOOT/grub.cfg with in it:
          +You might want to add/remove autologin as you wish below

          +
            +
          • tty0 I think is VNC but I havent tested it
          • +
          • ttyS0 is serial (I have autologin enable in serial see below)
          • +
          +
        18. +
        +
        set timeout=1
        +menuentry "Rancher from GPT" {
        +    search --no-floppy --set=root --label RANCHER_STATE
        +    linux    /boot/vmlinuz-4.14.138-rancher printk.devkmsg=on rancher.state.dev=LABEL=RANCHER_STATE rancher.state.wait panic=10 console=tty0 console=ttyS0 rancher.autologin=ttyS0
        +    initrd    /boot/initrd-v1.5.5
        +}
        +
        +
          +
        1. sudo umount /mnt/*
        2. +
        3. sudo reboot
        4. +
        5. You are good to go
        6. +
        7. You can remove the RAW device in the VM config in FreeNas
        8. +
        +
        +
        + +
        +
        +
        +
        +
        +

        + 12 commentaires

        +
        + +
        +
        +
        +
        +

        + Rudi Pittman + · 18 mars 2020 à 17 h 46 min +

        +

        Can I or can I not use my existing rancher img that was previously being used by freenas? ie

        +

        -rw-r–r– 1 root wheel 21474836480 Mar 18 02:13 rancher.img_docker1

        +

        I have around 10 different docker containers defined inside and I really don’t want to have to redo all of them.

        + +
        +
        +
          +
          + +
          +
          +
          +
          +

          + HugoPoi + · 11 avril 2020 à 16 h 32 min +

          +

          If the image is a VM image like a zvol, I think it will work, but I’m not sure, it will only work if the 11.2 behavior is EFI compatible.
          +You may patch your existing image/snapshot by justing installing the efi bootloader aka grub in it.

          + +
          +
          + +
        + +
        + +
        +
        +
        +
        +

        + Rob RD + · 4 avril 2020 à 19 h 36 min +

        +

        Parfait – Merci Beaucoup! :)

        + +
        +
        + +
        + +
        +
        +
        +
        +

        + dario + · 12 avril 2020 à 14 h 07 min +

        +

        Thanks for this guide. I am stuck at Step 12:
        +> sudo mount /dev/vdb1 /mnt/installer
        +ther is no /dev/vdb1, regardingless if I choose to boot at step 10 or not

        + +
        +
        +
          +
          + +
          +
          +
          +
          +

          + HugoPoi + · 22 avril 2020 à 23 h 34 min +

          +

          Your installer may be on a different disk if you choose SCSI in place of virtio when you add the raw image device in Freenas, you can identified with

          +

          cat /proc/partitions

          +

          and

          +

          mount

          +

          it should be /dev/sda1 maybe

          + +
          +
          + +
        + +
        + +
        +
        +
        +
        +

        + somebody + · 19 avril 2020 à 13 h 07 min +

        +

        Thank you so much for the step by step guide, it was very helpful. With this I can finally transition from my old Docker VM inherited from FreeNAS 11.1.

        +

        Going to state the obvious (for some) and mention that when new version gets released and you run

        +

        sudo ros os upgrade

        +

        to upgrade you’ll also need to update initrd command in your grub.cfg file on EFI partition, otherwise you’re just going to boot into the same version.

        + +
        +
        +
          +
          + +
          +
          +
          +
          +

          + Rudi Pittman + · 1 juin 2020 à 1 h 58 min +

          +

          The problem I have is even though grub is specifying 4.14.138 and initird-v1.5.5 on reboot it tells me those don’t exist. Doing a grub edit and using autocomplete the files it ACTUALLY find are /boot/vmlinuz-4.14.73-rancher and /boot/initrd-v1.4.2. Where the heck are those coming from? When I look on /dev/vda2/boot I see the 4.14.138 and initrd-v1.5.5 as the grub reflects. /mnt/efipart/EFI/BOOT has:

          +

          -rwxr-xr-x 1 root root 1334816 May 30 15:13 BOOTx64.EFI
          +-rwxr-xr-x 1 root root 316 May 30 15:15 grub.cfg
          +-rwxr-xr-x 1 root root 1146744 May 30 15:13 grubx64.efi

          + +
          +
          + +
        + +
        + +
        +
        +
        +
        +

        + Max + · 3 mai 2020 à 16 h 40 min +

        +

        The image i downloaded does not start. Stuck at step4 in the bhyve shell. Any idea how to proceed from there?

        + +
        +
        +
          +
          + +
          +
          +
          +
          +

          + HugoPoi + · 10 mai 2020 à 14 h 53 min +

          +

          Try to change the device order to a lower or higher number to be sure it try to load the good bootloader.

          + +
          +
          + +
        + +
        + +
        +
        +
        +
        +

        + Rudi Pittman + · 1 juin 2020 à 18 h 28 min +

        +

        If you do a « ros os version » on your efi image it’s NOT v1.5.5. It’s v1.4.2 and running the command although it MAY download the files does nothing to actually make the grub.cfg FIND those new files. It’s still looking for vmlinuz-4.14.73 and initrd-v1.4.2.

        + +
        +
        +
          +
          + +
          +
          +
          +
          +

          + Johnny Z + · 25 juin 2020 à 8 h 49 min +

          +

          I found them. The guide doesn’t necessarily state where or when to get the files. You should be able to do this to find and copy the files

          +

          cd /mnt/installer/boot/
          +ls -asl
          +(here you will find the two files)
          +cp vmlinuz-4.14.138-rancher ../../efipart/efi/boot/
          +cp initrd-v1.5.5.5 ../../efipart/efi/boot

          +

          Double check my paths here but that should basically get you the files so the kernel can load proper

          + +
          +
          + +
        + +
        + +
        +
        +
        +
        +

        + Toohai + · 16 septembre 2020 à 8 h 18 min +

        +

        Missing step after 12 in part 1?

        +

        sudo cp -r tmpubuntu/boot/grub tmprancheros_dest/boot/

        + +
        +
        + +
        +
        +
        +

        Répondre à Max Annuler la réponse

        Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

        +
        +
        +

        + +

        +
        +
        +
        +
        +
        +
        + +
        +
        +
        +
        +
        +
        + + +
        + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/20ad28ba8de16b2d1bb348b517fd0035abaaf0bf.00000010.html b/www/.content.EZtzwPjb/html/20ad28ba8de16b2d1bb348b517fd0035abaaf0bf.00000010.html new file mode 100644 index 0000000..43d05b6 --- /dev/null +++ b/www/.content.EZtzwPjb/html/20ad28ba8de16b2d1bb348b517fd0035abaaf0bf.00000010.html @@ -0,0 +1,290 @@ + + + + + + Anonymat I2P, TOR et les VPN | HugoPoi + + + + + + + + + + + + + + + + + + + + + +
        +
        +
        +

        Anonymat I2P, TOR et les VPN

        + +
        +
        + +

        Intro

        +

        Mon Minitel à coté de (soon) mon Minitel 2.0

        +

        Suite aux articles de mon « confrère » Bluetouff, je voudrais apporter ma pierre à l’édifice anonymat sur internet. Cet article va donc parler de 2 concepts logiciels réseaux qui permettent de surfer de façon blindée sur Internet. Enfin pas tant que ça …

        +

        En premier lieu, je devais écrire cet article dans le but de vous donnez des conseils pour utiliser les réseaux anonymes, mais je suis rendu compte qu’il était urgent d’informer les gens sur les dangers que sont les VPN.

        +

        Suite à une conversation avec un ami (et même plusieurs), je leur disais que je téléchargeais sur le réseau Bitorrent. La grande question était : est-ce que tu utilises un VPN ? Je leur ai répondu que non. La première des raisons pour laquelle je n’utilise pas de VPN c’est que je n’ai pas d’argent. Aussi le fait que pour utiliser un VPN, il faut rediriger ses paquets ip, ils transitent donc par un tiers qui peut comme il le veut logger toutes vos connexions et trafics. Enfin si je suis une autorité qui veux écouter le trafic des gens (genre hadopi), bah j’ouvre un VPN « pas-hadopi.fr« , venez tous ici pour contourner hadopi, tout le monde il est beau, tout le monde il est gentil, voilà tous les pigeons dans mon filet. Pour dire aussi que le VPN c’est de l’anti-internet, cela revient à supprimer le plus grand intérêt d’internet, à savoir l’échange direct possible entre tous et publier, discuter de façon décentralisée. Ce qui m’inquiète le plus en ce moment, c’est cette nouvelle vague « cloud computing  » « web 3.0  » qui vient avec des périphériques qui ne servent à rien sans internet et des services hyper centralisés tel Facebook ou Youtube et Google. Je ne sais pas si les gens se rendent compte qu’ils mettent leurs vies entre les mains de sociétés privées dont ils n’ont que peu de contrôle.

        +

        Tor

        +

        The Onion Router, je vais pas écrire un roman sur le fonctionnement de ce système de routage anonymisant mais le principe est pas super compliqué. Au lieu de choisir d’acheminer votre trafic de façon la plus rapide et/ou la moins cher, ce réseau va acheminer votre trafic de façon aléatoire et cryptée. Attention le cryptage est présent qu’entre votre ordinateur et le dernier nœud, qui lui se connecte en clair sur le serveur que vous voulez atteindre. Donc il serait facile, comme tout le monde peut devenir nœud sur Tor, d’intercepter le trafic qui passe en clair quand on est le dernier maillon de la chaîne. Quand vous utilisez ce genre de service (TOR,I2P,VPN,Proxy,…) évitez d’aller vous connecter sur le site de votre banque. Et puis quel serait l’intérêt d’être anonyme si c’est pour vous identifier sur facebook, on marche sur la tête là non ?!

        +

        En surfant sur les pages du projet Tor, je suis tombé sur ça. Une page qui donne des retours d’expériences sur l’hébergement de nœuds relais pour Tor. Il est marrant de constater que les hébergeurs ne sont pas du tout fan de ce genre d’installation sur leur réseau. Cela montre que ce genre de système est suffisamment puissant pour faire peur, et permet d’effectuer sûrement des attaques ciblées de façon totalement anonyme.

        +

        I2P

        +

        Alors je vais être moins long sur l’explication du fonctionnement de I2P, ça rassemble beaucoup à Tor sauf que c’est plus orienté service et échange peer to peer. Vous pouvez lire cette page qui explique les différences entre les réseaux Tor et I2P.

        +
        + + +
        + + +
          +
        1. +
          + +
          +

          Yop Hugo, il est cool ton blog mais pour être tranquille avec HADOPI faut faire du wawa :)
          +Ca peut être une idée d’article :p

          +
          + +
          +
        2. +
        3. +
          + +
          +

          quote : « le VPN c’est de l’anti-internet, cela revient à supprimer le plus grand intérêt d’internet, à savoir l’échange direct possible entre tous »…
          +Un FTP sous SSL chez moi via mon VPN nordique va bien pour mes amis… Je ne comprends pas votre argument…
          +Une plus fine explication?
          +Merci.

          +
          + +
          + +
        4. +
        5. +
          + +
          +

          pour 4.90 euros par mois j utilise http://www.vpn-discount.com qui me procure une grande satisfaction au niveau fiabilite,securite,rapidite et surete….un super vpn

          +
          + +
          +
            +
          • +
            + +
            +

            tu ne peux pas vérifier si il log tes connexions … Mais bon si il est à l’étranger ça limite le traçage :)

            +
            + +
            +
          • +
          +
        6. +
        + +
        +

        Répondre à HugoPoi ¬
        Annuler la réponse

        +
        +

        + +

        +

        NOTE - Vous pouvez utiliser les éléments et attributs HTML tags and attributes:
        <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>

        +

        + +

        +
        +
        +
        +
        + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/20cf58bf037b02cda95e5e1b433467b97ddb0472.00000335.html b/www/.content.EZtzwPjb/html/20cf58bf037b02cda95e5e1b433467b97ddb0472.00000335.html new file mode 100644 index 0000000..cab25ce --- /dev/null +++ b/www/.content.EZtzwPjb/html/20cf58bf037b02cda95e5e1b433467b97ddb0472.00000335.html @@ -0,0 +1,371 @@ + + + + + + + Amazon – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        +
        +
        + +
        +
        +
        +
        +
        +
        +
        + +
        +
        +
        +
        + +
        +
        + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/21201681e125d4c67b594502db7dcb32a759f453.00000740.js b/www/.content.EZtzwPjb/html/21201681e125d4c67b594502db7dcb32a759f453.00000740.js new file mode 100644 index 0000000..e641506 --- /dev/null +++ b/www/.content.EZtzwPjb/html/21201681e125d4c67b594502db7dcb32a759f453.00000740.js @@ -0,0 +1 @@ +if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");!function(t){"use strict";var e=t.fn.jquery.split(" ")[0].split(".");if(e[0]<2&&e[1]<9||1==e[0]&&9==e[1]&&e[2]<1||e[0]>3)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher, but lower than version 4")}(jQuery),function(t){"use strict";var e=function(e,i){this.$element=t(e),this.$indicators=this.$element.find(".carousel-indicators"),this.options=i,this.paused=null,this.sliding=null,this.interval=null,this.$active=null,this.$items=null,this.options.keyboard&&this.$element.on("keydown.bs.carousel",t.proxy(this.keydown,this)),"hover"==this.options.pause&&!("ontouchstart"in document.documentElement)&&this.$element.on("mouseenter.bs.carousel",t.proxy(this.pause,this)).on("mouseleave.bs.carousel",t.proxy(this.cycle,this))};function i(i){return this.each(function(){var s=t(this),o=s.data("bs.carousel"),n=t.extend({},e.DEFAULTS,s.data(),"object"==typeof i&&i),a="string"==typeof i?i:n.slide;o||s.data("bs.carousel",o=new e(this,n)),"number"==typeof i?o.to(i):a?o[a]():n.interval&&o.pause().cycle()})}e.VERSION="3.3.7",e.TRANSITION_DURATION=600,e.DEFAULTS={interval:5e3,pause:"hover",wrap:!0,keyboard:!0},e.prototype.keydown=function(t){if(!/input|textarea/i.test(t.target.tagName)){switch(t.which){case 37:this.prev();break;case 39:this.next();break;default:return}t.preventDefault()}},e.prototype.cycle=function(e){return e||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(t.proxy(this.next,this),this.options.interval)),this},e.prototype.getItemIndex=function(t){return this.$items=t.parent().children(".item"),this.$items.index(t||this.$active)},e.prototype.getItemForDirection=function(t,e){var i=this.getItemIndex(e);if(("prev"==t&&0===i||"next"==t&&i==this.$items.length-1)&&!this.options.wrap)return e;var s=(i+("prev"==t?-1:1))%this.$items.length;return this.$items.eq(s)},e.prototype.to=function(t){var e=this,i=this.getItemIndex(this.$active=this.$element.find(".item.active"));if(!(t>this.$items.length-1||t<0))return this.sliding?this.$element.one("slid.bs.carousel",function(){e.to(t)}):i==t?this.pause().cycle():this.slide(t>i?"next":"prev",this.$items.eq(t))},e.prototype.pause=function(e){return e||(this.paused=!0),this.$element.find(".next, .prev").length&&t.support.transition&&(this.$element.trigger(t.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},e.prototype.next=function(){if(!this.sliding)return this.slide("next")},e.prototype.prev=function(){if(!this.sliding)return this.slide("prev")},e.prototype.slide=function(i,s){var o=this.$element.find(".item.active"),n=s||this.getItemForDirection(i,o),a=this.interval,r="next"==i?"left":"right",l=this;if(n.hasClass("active"))return this.sliding=!1;var h=n[0],d=t.Event("slide.bs.carousel",{relatedTarget:h,direction:r});if(this.$element.trigger(d),!d.isDefaultPrevented()){if(this.sliding=!0,a&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var p=t(this.$indicators.children()[this.getItemIndex(n)]);p&&p.addClass("active")}var c=t.Event("slid.bs.carousel",{relatedTarget:h,direction:r});return t.support.transition&&this.$element.hasClass("slide")?(n.addClass(i),n[0].offsetWidth,o.addClass(r),n.addClass(r),o.one("bsTransitionEnd",function(){n.removeClass([i,r].join(" ")).addClass("active"),o.removeClass(["active",r].join(" ")),l.sliding=!1,setTimeout(function(){l.$element.trigger(c)},0)}).emulateTransitionEnd(e.TRANSITION_DURATION)):(o.removeClass("active"),n.addClass("active"),this.sliding=!1,this.$element.trigger(c)),a&&this.cycle(),this}};var s=t.fn.carousel;t.fn.carousel=i,t.fn.carousel.Constructor=e,t.fn.carousel.noConflict=function(){return t.fn.carousel=s,this};var o=function(e){var s,o=t(this),n=t(o.attr("data-target")||(s=o.attr("href"))&&s.replace(/.*(?=#[^\s]+$)/,""));if(n.hasClass("carousel")){var a=t.extend({},n.data(),o.data()),r=o.attr("data-slide-to");r&&(a.interval=!1),i.call(n,a),r&&n.data("bs.carousel").to(r),e.preventDefault()}};t(document).on("click.bs.carousel.data-api","[data-slide]",o).on("click.bs.carousel.data-api","[data-slide-to]",o),t(window).on("load",function(){t('[data-ride="carousel"]').each(function(){var e=t(this);i.call(e,e.data())})})}(jQuery),function(t){"use strict";var e=function(e,i){this.options=i,this.$body=t(document.body),this.$element=t(e),this.$dialog=this.$element.find(".modal-dialog"),this.$backdrop=null,this.isShown=null,this.originalBodyPad=null,this.scrollbarWidth=0,this.ignoreBackdropClick=!1,this.options.remote&&this.$element.find(".modal-content").load(this.options.remote,t.proxy(function(){this.$element.trigger("loaded.bs.modal")},this))};function i(i,s){return this.each(function(){var o=t(this),n=o.data("bs.modal"),a=t.extend({},e.DEFAULTS,o.data(),"object"==typeof i&&i);n||o.data("bs.modal",n=new e(this,a)),"string"==typeof i?n[i](s):a.show&&n.show(s)})}e.VERSION="3.3.7",e.TRANSITION_DURATION=300,e.BACKDROP_TRANSITION_DURATION=150,e.DEFAULTS={backdrop:!0,keyboard:!0,show:!0},e.prototype.toggle=function(t){return this.isShown?this.hide():this.show(t)},e.prototype.show=function(i){var s=this,o=t.Event("show.bs.modal",{relatedTarget:i});this.$element.trigger(o),this.isShown||o.isDefaultPrevented()||(this.isShown=!0,this.checkScrollbar(),this.setScrollbar(),this.$body.addClass("modal-open"),this.escape(),this.resize(),this.$element.on("click.dismiss.bs.modal",'[data-dismiss="modal"]',t.proxy(this.hide,this)),this.$dialog.on("mousedown.dismiss.bs.modal",function(){s.$element.one("mouseup.dismiss.bs.modal",function(e){t(e.target).is(s.$element)&&(s.ignoreBackdropClick=!0)})}),this.backdrop(function(){var o=t.support.transition&&s.$element.hasClass("fade");s.$element.parent().length||s.$element.appendTo(s.$body),s.$element.show().scrollTop(0),s.adjustDialog(),o&&s.$element[0].offsetWidth,s.$element.addClass("in"),s.enforceFocus();var n=t.Event("shown.bs.modal",{relatedTarget:i});o?s.$dialog.one("bsTransitionEnd",function(){s.$element.trigger("focus").trigger(n)}).emulateTransitionEnd(e.TRANSITION_DURATION):s.$element.trigger("focus").trigger(n)}))},e.prototype.hide=function(i){i&&i.preventDefault(),i=t.Event("hide.bs.modal"),this.$element.trigger(i),this.isShown&&!i.isDefaultPrevented()&&(this.isShown=!1,this.escape(),this.resize(),t(document).off("focusin.bs.modal"),this.$element.removeClass("in").off("click.dismiss.bs.modal").off("mouseup.dismiss.bs.modal"),this.$dialog.off("mousedown.dismiss.bs.modal"),t.support.transition&&this.$element.hasClass("fade")?this.$element.one("bsTransitionEnd",t.proxy(this.hideModal,this)).emulateTransitionEnd(e.TRANSITION_DURATION):this.hideModal())},e.prototype.enforceFocus=function(){t(document).off("focusin.bs.modal").on("focusin.bs.modal",t.proxy(function(t){document===t.target||this.$element[0]===t.target||this.$element.has(t.target).length||this.$element.trigger("focus")},this))},e.prototype.escape=function(){this.isShown&&this.options.keyboard?this.$element.on("keydown.dismiss.bs.modal",t.proxy(function(t){27==t.which&&this.hide()},this)):this.isShown||this.$element.off("keydown.dismiss.bs.modal")},e.prototype.resize=function(){this.isShown?t(window).on("resize.bs.modal",t.proxy(this.handleUpdate,this)):t(window).off("resize.bs.modal")},e.prototype.hideModal=function(){var t=this;this.$element.hide(),this.backdrop(function(){t.$body.removeClass("modal-open"),t.resetAdjustments(),t.resetScrollbar(),t.$element.trigger("hidden.bs.modal")})},e.prototype.removeBackdrop=function(){this.$backdrop&&this.$backdrop.remove(),this.$backdrop=null},e.prototype.backdrop=function(i){var s=this,o=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var n=t.support.transition&&o;if(this.$backdrop=t(document.createElement("div")).addClass("modal-backdrop "+o).appendTo(this.$body),this.$element.on("click.dismiss.bs.modal",t.proxy(function(t){this.ignoreBackdropClick?this.ignoreBackdropClick=!1:t.target===t.currentTarget&&("static"==this.options.backdrop?this.$element[0].focus():this.hide())},this)),n&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),!i)return;n?this.$backdrop.one("bsTransitionEnd",i).emulateTransitionEnd(e.BACKDROP_TRANSITION_DURATION):i()}else if(!this.isShown&&this.$backdrop){this.$backdrop.removeClass("in");var a=function(){s.removeBackdrop(),i&&i()};t.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one("bsTransitionEnd",a).emulateTransitionEnd(e.BACKDROP_TRANSITION_DURATION):a()}else i&&i()},e.prototype.handleUpdate=function(){this.adjustDialog()},e.prototype.adjustDialog=function(){var t=this.$element[0].scrollHeight>document.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&t?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!t?this.scrollbarWidth:""})},e.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},e.prototype.checkScrollbar=function(){var t=window.innerWidth;if(!t){var e=document.documentElement.getBoundingClientRect();t=e.right-Math.abs(e.left)}this.bodyIsOverflowing=document.body.clientWidth
        ',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0}},e.prototype.init=function(e,i,s){if(this.enabled=!0,this.type=e,this.$element=t(i),this.options=this.getOptions(s),this.$viewport=this.options.viewport&&t(t.isFunction(this.options.viewport)?this.options.viewport.call(this,this.$element):this.options.viewport.selector||this.options.viewport),this.inState={click:!1,hover:!1,focus:!1},this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");for(var o=this.options.trigger.split(" "),n=o.length;n--;){var a=o[n];if("click"==a)this.$element.on("click."+this.type,this.options.selector,t.proxy(this.toggle,this));else if("manual"!=a){var r="hover"==a?"mouseenter":"focusin",l="hover"==a?"mouseleave":"focusout";this.$element.on(r+"."+this.type,this.options.selector,t.proxy(this.enter,this)),this.$element.on(l+"."+this.type,this.options.selector,t.proxy(this.leave,this))}}this.options.selector?this._options=t.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},e.prototype.getDefaults=function(){return e.DEFAULTS},e.prototype.getOptions=function(e){return(e=t.extend({},this.getDefaults(),this.$element.data(),e)).delay&&"number"==typeof e.delay&&(e.delay={show:e.delay,hide:e.delay}),e},e.prototype.getDelegateOptions=function(){var e={},i=this.getDefaults();return this._options&&t.each(this._options,function(t,s){i[t]!=s&&(e[t]=s)}),e},e.prototype.enter=function(e){var i=e instanceof this.constructor?e:t(e.currentTarget).data("bs."+this.type);if(i||(i=new this.constructor(e.currentTarget,this.getDelegateOptions()),t(e.currentTarget).data("bs."+this.type,i)),e instanceof t.Event&&(i.inState["focusin"==e.type?"focus":"hover"]=!0),i.tip().hasClass("in")||"in"==i.hoverState)i.hoverState="in";else{if(clearTimeout(i.timeout),i.hoverState="in",!i.options.delay||!i.options.delay.show)return i.show();i.timeout=setTimeout(function(){"in"==i.hoverState&&i.show()},i.options.delay.show)}},e.prototype.isInStateTrue=function(){for(var t in this.inState)if(this.inState[t])return!0;return!1},e.prototype.leave=function(e){var i=e instanceof this.constructor?e:t(e.currentTarget).data("bs."+this.type);if(i||(i=new this.constructor(e.currentTarget,this.getDelegateOptions()),t(e.currentTarget).data("bs."+this.type,i)),e instanceof t.Event&&(i.inState["focusout"==e.type?"focus":"hover"]=!1),!i.isInStateTrue()){if(clearTimeout(i.timeout),i.hoverState="out",!i.options.delay||!i.options.delay.hide)return i.hide();i.timeout=setTimeout(function(){"out"==i.hoverState&&i.hide()},i.options.delay.hide)}},e.prototype.show=function(){var i=t.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(i);var s=t.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(i.isDefaultPrevented()||!s)return;var o=this,n=this.tip(),a=this.getUID(this.type);this.setContent(),n.attr("id",a),this.$element.attr("aria-describedby",a),this.options.animation&&n.addClass("fade");var r="function"==typeof this.options.placement?this.options.placement.call(this,n[0],this.$element[0]):this.options.placement,l=/\s?auto?\s?/i,h=l.test(r);h&&(r=r.replace(l,"")||"top"),n.detach().css({top:0,left:0,display:"block"}).addClass(r).data("bs."+this.type,this),this.options.container?n.appendTo(this.options.container):n.insertAfter(this.$element),this.$element.trigger("inserted.bs."+this.type);var d=this.getPosition(),p=n[0].offsetWidth,c=n[0].offsetHeight;if(h){var u=r,f=this.getPosition(this.$viewport);r="bottom"==r&&d.bottom+c>f.bottom?"top":"top"==r&&d.top-cf.width?"left":"left"==r&&d.left-pa.top+a.height&&(o.top=a.top+a.height-l)}else{var h=e.left-n,d=e.left+n+i;ha.right&&(o.left=a.left+a.width-d)}return o},e.prototype.getTitle=function(){var t=this.$element,e=this.options;return t.attr("data-original-title")||("function"==typeof e.title?e.title.call(t[0]):e.title)},e.prototype.getUID=function(t){do{t+=~~(1e6*Math.random())}while(document.getElementById(t));return t},e.prototype.tip=function(){if(!this.$tip&&(this.$tip=t(this.options.template),1!=this.$tip.length))throw new Error(this.type+" `template` option must consist of exactly 1 top-level element!");return this.$tip},e.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},e.prototype.enable=function(){this.enabled=!0},e.prototype.disable=function(){this.enabled=!1},e.prototype.toggleEnabled=function(){this.enabled=!this.enabled},e.prototype.toggle=function(e){var i=this;e&&((i=t(e.currentTarget).data("bs."+this.type))||(i=new this.constructor(e.currentTarget,this.getDelegateOptions()),t(e.currentTarget).data("bs."+this.type,i))),e?(i.inState.click=!i.inState.click,i.isInStateTrue()?i.enter(i):i.leave(i)):i.tip().hasClass("in")?i.leave(i):i.enter(i)},e.prototype.destroy=function(){var t=this;clearTimeout(this.timeout),this.hide(function(){t.$element.off("."+t.type).removeData("bs."+t.type),t.$tip&&t.$tip.detach(),t.$tip=null,t.$arrow=null,t.$viewport=null,t.$element=null})};var i=t.fn.tooltip;t.fn.tooltip=function(i){return this.each(function(){var s=t(this),o=s.data("bs.tooltip"),n="object"==typeof i&&i;!o&&/destroy|hide/.test(i)||(o||s.data("bs.tooltip",o=new e(this,n)),"string"==typeof i&&o[i]())})},t.fn.tooltip.Constructor=e,t.fn.tooltip.noConflict=function(){return t.fn.tooltip=i,this}}(jQuery),function(t){"use strict";var e=function(i,s){this.$element=t(i),this.options=t.extend({},e.DEFAULTS,s),this.$trigger=t('[data-toggle="collapse"][href="#'+i.id+'"],[data-toggle="collapse"][data-target="#'+i.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};function i(e){var i,s=e.attr("data-target")||(i=e.attr("href"))&&i.replace(/.*(?=#[^\s]+$)/,"");return t(s)}function s(i){return this.each(function(){var s=t(this),o=s.data("bs.collapse"),n=t.extend({},e.DEFAULTS,s.data(),"object"==typeof i&&i);!o&&n.toggle&&/show|hide/.test(i)&&(n.toggle=!1),o||s.data("bs.collapse",o=new e(this,n)),"string"==typeof i&&o[i]()})}e.VERSION="3.3.7",e.TRANSITION_DURATION=350,e.DEFAULTS={toggle:!0},e.prototype.dimension=function(){return this.$element.hasClass("width")?"width":"height"},e.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var i,o=this.$parent&&this.$parent.children(".panel").children(".in, .collapsing");if(!(o&&o.length&&(i=o.data("bs.collapse"))&&i.transitioning)){var n=t.Event("show.bs.collapse");if(this.$element.trigger(n),!n.isDefaultPrevented()){o&&o.length&&(s.call(o,"hide"),i||o.data("bs.collapse",null));var a=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[a](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var r=function(){this.$element.removeClass("collapsing").addClass("collapse in")[a](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!t.support.transition)return r.call(this);var l=t.camelCase(["scroll",a].join("-"));this.$element.one("bsTransitionEnd",t.proxy(r,this)).emulateTransitionEnd(e.TRANSITION_DURATION)[a](this.$element[0][l])}}}},e.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var i=t.Event("hide.bs.collapse");if(this.$element.trigger(i),!i.isDefaultPrevented()){var s=this.dimension();this.$element[s](this.$element[s]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse in").attr("aria-expanded",!1),this.$trigger.addClass("collapsed").attr("aria-expanded",!1),this.transitioning=1;var o=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};if(!t.support.transition)return o.call(this);this.$element[s](0).one("bsTransitionEnd",t.proxy(o,this)).emulateTransitionEnd(e.TRANSITION_DURATION)}}},e.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},e.prototype.getParent=function(){return t(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(t.proxy(function(e,s){var o=t(s);this.addAriaAndCollapsedClass(i(o),o)},this)).end()},e.prototype.addAriaAndCollapsedClass=function(t,e){var i=t.hasClass("in");t.attr("aria-expanded",i),e.toggleClass("collapsed",!i).attr("aria-expanded",i)};var o=t.fn.collapse;t.fn.collapse=s,t.fn.collapse.Constructor=e,t.fn.collapse.noConflict=function(){return t.fn.collapse=o,this},t(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(e){var o=t(this);o.attr("data-target")||e.preventDefault();var n=i(o),a=n.data("bs.collapse")?"toggle":o.data();s.call(n,a)})}(jQuery),function(t){"use strict";t.fn.emulateTransitionEnd=function(e){var i=!1,s=this;t(this).one("bsTransitionEnd",function(){i=!0});return setTimeout(function(){i||t(s).trigger(t.support.transition.end)},e),this},t(function(){t.support.transition=function(){var t=document.createElement("bootstrap"),e={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var i in e)if(void 0!==t.style[i])return{end:e[i]};return!1}(),t.support.transition&&(t.event.special.bsTransitionEnd={bindType:t.support.transition.end,delegateType:t.support.transition.end,handle:function(e){if(t(e.target).is(this))return e.handleObj.handler.apply(this,arguments)}})})}(jQuery); \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/2138fe5afef329f09dab4f64e065657e229951c5.00000078.html b/www/.content.EZtzwPjb/html/2138fe5afef329f09dab4f64e065657e229951c5.00000078.html new file mode 100644 index 0000000..b3cde6a --- /dev/null +++ b/www/.content.EZtzwPjb/html/2138fe5afef329f09dab4f64e065657e229951c5.00000078.html @@ -0,0 +1,879 @@ + + + + + + + + Démontage Asus U36 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        +
        +
        + +
        +
        +
        +
        +
        +
        +

        J’ai acheté un petit SSD pour mettre dans mon U36 acheté il y a quelques mois, je n’ai pas trouvé de procédure de démontage sur Internet donc voici les photos de mon démontage.

        +

        1) Commencer par enlever toutes les vis et la trappe pour accéder à la RAM, puis déconnecter les deux connecteurs clavier et touchpad qui se situent juste à coté de la carte wifi.

        +

        2) Retourner le pc et à l’aide d’un petit tournevis plat, dé-clipser les petits clips sur tout le tour du pc. Vous pouvez maintenant enlever toute la partie supérieur.

        +

        +

        3) Démontage Terminé :D

        +

        4) Galerie

        + + +
        +
        + +
        +
        +
        +
        +
        +

        + 19 commentaires

        +
        + +
        +
        +
        +
        +

        + John + · 14 août 2011 à 23 h 48 min +

        +

        Salut Hugo,

        +

        Comment as tu fait pour déconnecter les deux connecteurs clavier et touchpad qui se situent juste à coté de la carte wifi ?

        +

        Merci d’avance,
        +John

        + +
        +
        +
          +
          + +
          +
          +
          +
          +

          + HugoPoi + · 1 septembre 2011 à 15 h 12 min +

          +

          Désolé pour l’attente,

          +

          Il faut prendre un petit tournevis plat et relever les petites languettes au dessus des nappes de façon à la mettre à 90° par rapport à la carte mère.

          + +
          +
          + +
        + +
        + +
        +
        +
        +
        +

        + leboulanger + · 12 janvier 2012 à 16 h 09 min +

        +

        bonjour,
        +super ton tuto ! j’ai la m idée que toi à savoir mettre un ssd mais est ce que tu sais si çest du SATA 1 ou 2 ? concernant les connecteurs je ne l’ai situe pas du tout. est ce que tu pourrais ajoutait une photo stp ?
        +merci en ts cas pour la contribution

        + +
        +
        +
          +
          + +
          +
          +
          +
          +

          + HugoPoi + · 12 janvier 2012 à 19 h 49 min +

          +

          Salut,
          +Pour le mode SATA c’est du 2. Après j’ai pas d’autre photo mais le connecteur il est situé juste au bout du disque sur la gauche.

          + +
          +
          + +
        + +
        + +
        +
        +
        +
        +

        + Emiso + · 27 mai 2012 à 22 h 41 min +

        +

        J’ai aussi démonté le mien pour mettre un ssd et il n’a plus jamais redémarré (même avec le disque dur initial) …
        +Un conseil, soyez très prudents !

        + +
        +
        +
          +
          + +
          +
          +
          +
          +

          + HugoPoi + · 14 juin 2012 à 22 h 59 min +

          +

          Très bizarre votre histoire soit mauvais remontage, soit portable défectueux.

          + +
          +
          + +
        + +
        + +
        +
        +
        +
        +

        + Alex + · 25 août 2012 à 17 h 59 min +

        +

        Emiso tu es un boulet

        + +
        +
        +
          +
          + +
          +
          +
          +
          +

          + HugoPoi + · 31 août 2012 à 12 h 50 min +

          +

          Je m’en doutais ;-)

          + +
          +
          + +
        + +
        + +
        +
        +
        +
        +

        + David + · 4 septembre 2012 à 12 h 04 min +

        +

        Mon U36 avec un SSD Crucial M4 et une carte Intel Centrino n-6230 à la place de la n-100… que du bonheur.

        +

        Merci pour le tuto bien utile.

        + +
        +
        + +
        + +
        +
        +
        +
        +

        + stepmond + · 20 septembre 2012 à 9 h 35 min +

        +

        merci pour ce tuto; a noter un truc pour ne pas perdre les vis et savoir où les replacer:

        +

        http://fr.slideshare.net/stepmond/remplacement-ecran-sony-vaio?ref=http://www.pcsoleil.fr/ecran-pc-portable-sony-vaio-casse/

        +

        3eme diapo

        + +
        +
        + +
        + +
        +
        +
        +
        +

        + Javen + · 11 février 2013 à 5 h 13 min +

        +

        Can you send me a close up picture of both sides of the U36JC I/O board? It would be nice if you could give me also the resistor/capacitor values. I need to connect my SATA hard drive, but the board itself is very expensive. Do you think I can solder the SATA wires to a cable and plug that to the hard drive?

        + +
        +
        +
          +
          + +
          +
          +
          +
          +

          + HugoPoi + · 12 février 2013 à 22 h 21 min +

          +

          I don’t want to reopen my laptop just for take picture. I don’t know if there are any out pins to solder a SATA connector but in Intel driver menu on Windows a port with no-connection appear.

          + +
          +
          + +
        + +
        + +
        +
        +
        +
        +

        + Mez + · 18 février 2013 à 22 h 37 min +

        +

        Hello , j’ai également cet Asus et comme tout le monde je pense, bien tenté de remplacer le disque dur de base par un ssd ^^.
        + Sur la première image de ton petit tuto, tu sembles montrer des emplacements vis sous les antidérapants.. ca me semble étrange ;p. Je voulais savoir si ceux si ne risquaient pas de s’abîmer (et du coup s’ils se remettaient également facilement).
        + Si tu passe par là, merci de la réponse!

        + +
        +
        +
          +
          + +
          +
          +
          +
          +

          + HugoPoi + · 13 mars 2013 à 14 h 19 min +

          +

          J’ai pu décoller et recoller sans problème les patins antidérapants. Mais à la rigueur prévoir du double-face pour remplacement.

          + +
          +
          + +
        + +
        + +
        +
        +
        +
        +

        + ramadan recipes + · 3 août 2013 à 19 h 40 min +

        +

        Oh my goodness! Incredible article dude! Thank
        +you so much, However I am going through issues with your RSS.
        +I don’t know why I am unable to subscribe to it. Is there anyone else getting the same RSS problems? Anybody who knows the answer will you kindly respond? Thanks!!

        + +
        +
        +
          +
          + +
          +
          +
          +
          +

          + HugoPoi + · 21 août 2013 à 11 h 49 min +

          +

          I check the RSS, it works fine. Can you give me more details or screenshot ?

          + +
          +
          + +
        + +
        + +
        +
        +
        +
        +

        + yann + · 30 juin 2014 à 11 h 26 min +

        +

        bonjour

        +

        j’ai changer mon disque par un ssd il y a deja quelques temps… mais j’ai la nappe du touchepad qui est HS.

        +

        auriez vous la référence que je puisse essayer d’en trouver une?
        +car en plus d’etre HS… j’ai perdu cette petite nappe…

        +

        merci a tous

        + +
        +
        +
          +
          + +
          +
          +
          +
          +

          + HugoPoi + · 24 juillet 2014 à 14 h 51 min +

          +

          Désolé mais j’ai pas la référence sous la main, mais tu peux chercher le service manuel ou demander à Asus la pièce …
          +(Si j’ouvre ma machine je penserais à toi)

          + +
          +
          + +
        + +
        +
        +

        + Asus U36 et OCZ Vertex 3 la suite | HugoPoi + · 15 mai 2012 à 3 h 39 min +

        +

        […] pour prendre des photos supplémentaires du démontage pour compléter mon précédent article : Démontage d’un Asus U36. Vous pouvez d’abord lire mon ancien article avant d’attaquer celui-ci, je ne ferai […]

        + +
        +
        + +
        +
        +
        +

        Laisser un commentaire

        Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

        +
        +
        +

        + +

        +
        +
        +
        +
        +
        +
        + +
        +
        +
        +
        +
        +
        + + +
        + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/2143ecbd93e24c982fe7850ccb807f822a28de53.00000424.html b/www/.content.EZtzwPjb/html/2143ecbd93e24c982fe7850ccb807f822a28de53.00000424.html new file mode 100644 index 0000000..38d7dd2 --- /dev/null +++ b/www/.content.EZtzwPjb/html/2143ecbd93e24c982fe7850ccb807f822a28de53.00000424.html @@ -0,0 +1,370 @@ + + + + + + + IGP – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + +
        +
        +
        +
        + +
        +
        +
        +
        +
        +

        Optimus vs Mégatron

        Je suis l’heureux acquéreur #oupas d’un pc portable avec technologie Optimus de Nvidia (voir Asus U36JC). Après quelques jours de recherches et de tests je vais essayer de vous faire un résumé complet sur le pourquoi de comment ça fonctionne. (suite…)

        +
        Par HugoPoi, il y a
        +
        + +
        +
        +
        +
        + +
        +
        + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/2145351cbd61e22d82acfcd33d06a0f534b9d85b.00000517.html b/www/.content.EZtzwPjb/html/2145351cbd61e22d82acfcd33d06a0f534b9d85b.00000517.html new file mode 100644 index 0000000..c80704c --- /dev/null +++ b/www/.content.EZtzwPjb/html/2145351cbd61e22d82acfcd33d06a0f534b9d85b.00000517.html @@ -0,0 +1,371 @@ + + + + + + + SSD OCZ Vertex 3 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        +
        +
        + +
        +
        +
        +
        +
        +

        Asus U36 et OCZ Vertex 3 la suite

        Après un mois d’attente auprès de Cdiscount, pour au final m’annoncer le remboursement de mon SSD Vertex 2 qui est mort subitement, j’ai donc décidé de commander un Vertex 3 qui va remplacer le mort au sein de mon Asus U36JC. Et pour ne pas l’ouvrir juste pour un banal remplacement de SSD j’ai décidé de remplacer par la même occasion la carte wifi, une Intel N-1000 par une Intel N-6320. Celle-ci disposant en plus du bluetooth. J’en ai donc profité pour prendre des photos supplémentaires du démontage pour compléter mon précédent article : Démontage d’un Asus U36. Vous pouvez d’abord lire mon ancien article avant d’attaquer celui-ci, je ne ferai qu’apporter des informations complémentaires pour le démontage. (suite…)

        +
        Par HugoPoi, il y a
        +
        + +
        +
        +
        +
        + +
        +
        + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/21f924152bbdd121df95606515e2357ca69acdd0.00000543.html b/www/.content.EZtzwPjb/html/21f924152bbdd121df95606515e2357ca69acdd0.00000543.html new file mode 100644 index 0000000..6b8f142 --- /dev/null +++ b/www/.content.EZtzwPjb/html/21f924152bbdd121df95606515e2357ca69acdd0.00000543.html @@ -0,0 +1,370 @@ + + + + + + + U36JC-RX260V – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        +
        +
        + +
        +
        +
        +
        +
        +

        Asus U36 et OCZ Vertex 3 la suite

        Après un mois d’attente auprès de Cdiscount, pour au final m’annoncer le remboursement de mon SSD Vertex 2 qui est mort subitement, j’ai donc décidé de commander un Vertex 3 qui va remplacer le mort au sein de mon Asus U36JC. Et pour ne pas l’ouvrir juste pour un banal remplacement de SSD j’ai décidé de remplacer par la même occasion la carte wifi, une Intel N-1000 par une Intel N-6320. Celle-ci disposant en plus du bluetooth. J’en ai donc profité pour prendre des photos supplémentaires du démontage pour compléter mon précédent article : Démontage d’un Asus U36. Vous pouvez d’abord lire mon ancien article avant d’attaquer celui-ci, je ne ferai qu’apporter des informations complémentaires pour le démontage. (suite…)

        +
        Par HugoPoi, il y a

        Asus U36JC-RX260V

        Depuis le temps que je voulais investir dans un pc portable, je l’ai enfin fait. Je cherchais une machine en complément de mon fixe avec comme premiers critères l’autonomie et un minimum de puissance. J’ai donc acheté un ultra-portable Asus, un chassie U36JC avec les caractéristiques suivantes : (suite…)

        +
        Par HugoPoi, il y a
        +
        + +
        +
        +
        +
        + +
        +
        + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/223b3fb1830ea519367cde4dd3cdaf7c8f0aa331.00000667.css b/www/.content.EZtzwPjb/html/223b3fb1830ea519367cde4dd3cdaf7c8f0aa331.00000667.css new file mode 100644 index 0000000..8043bbf --- /dev/null +++ b/www/.content.EZtzwPjb/html/223b3fb1830ea519367cde4dd3cdaf7c8f0aa331.00000667.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;background:#fff;border:1px +solid #f00;font-size:10pt;width:280px;padding:2px}span.wpcf7-not-valid-tip-no-ajax{color:#f00;font-size:10pt;display:block}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/2264436fb4f650a6b0fcb1a13ffa23fdd3019a01.00000364.html b/www/.content.EZtzwPjb/html/2264436fb4f650a6b0fcb1a13ffa23fdd3019a01.00000364.html new file mode 100644 index 0000000..8d219b7 --- /dev/null +++ b/www/.content.EZtzwPjb/html/2264436fb4f650a6b0fcb1a13ffa23fdd3019a01.00000364.html @@ -0,0 +1,373 @@ + + + + + + + cisco – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        +
        +
        + +
        +
        +
        +
        +
        +

        Démonter un Switch Cisco 2950T

        Après avoir tout tenté sur le port console, le switch semblait mort donc démontage. J’ai donc ouvert ce petit switch 24 ports. C’est assez simple, il y a quelques vis à l’arrière ensuite faire coulisser le châssis.

        +

        Cisco 2950T-24

        +

        (suite…)

        +
        Par HugoPoi, il y a
        +
        + +
        +
        +
        +
        + +
        +
        + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/22a938a32d9ff8870e4296cf2d78c5a5ea5a3105.00000192.html b/www/.content.EZtzwPjb/html/22a938a32d9ff8870e4296cf2d78c5a5ea5a3105.00000192.html new file mode 100644 index 0000000..ef973cb --- /dev/null +++ b/www/.content.EZtzwPjb/html/22a938a32d9ff8870e4296cf2d78c5a5ea5a3105.00000192.html @@ -0,0 +1,645 @@ + + + + + + + + Réparer et transformer une clé USB de 4Go en 8Go – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        +
        +
        + +
        +
        +
        +
        +
        +
        +

        J’étais en train de bosser sur un projet Java quand ma belle mère me demande si je peux regarder une clé USB Maxell 4GB qui ne marche plus.Clé USB Maxell

        +

        Je branche et la clé se connecte correctement mais pas de table des partitions et la clé indiquait 0 octet de disponible. Je tente un « diskpart.exe » celui-ci me dit « pas de media ». Autre symptôme la LED sur la clé restait continuellement allumé. Je commence à me dire que c’est mort puis comme d’habitude je fais une recherche Google et je tombe sur ça http://www.easytutoriel.com/flasher-reparer-cle-usb-memoire/(ce lien est à moitié mort la DB est cassée) . Donc je télécharge ChipGenius_v4_00_0022_RC3 et il reconnait ma clé il me dit que c’est un controleur Phison PS2251-67(PS2267) et une puce mémoire Toshiba de type TLC.ChipGenius4

        +

        Rien de bien exceptionnel je vais sur http://flashboot.ru/iflash/ je farfouille je trouve des noms de logiciels mais pas de lien téléchargement qui marche puis pour finir je vais sur http://dl.mydigit.net/special/up/phison.html, sans traduire je comprends vite que c’est une mine d’or ce site web, tout un tas de nom de logiciel récupérer chez les fabricants de puces en tout genre de quoi flasher n’importe quoi. J’arrive à ça http://rghost.net/39050058, je télécharge j’exécute GetInfo.exe  (sans les droits administrateur) qui me donne les même infos que ChipGenius.GetInfo V3.8.3.2

        +

        Après il y a deux soft MPALL_F1_8400_v360_0B.exe et MPALL_F2_v360_0B.exe . Au hasard je lance le premier (sans les droits administrateur) et je clic sur Update sans vraiment savoir ce que ça allait vraiment faire. Et la ça reconnait la clé dans la liste et surprise il me dit que la puce de mémoire est une 8Go au début je crois à une erreur.MPAll 8400 3.60.0B

        +

        N’ayant plus rien à perdre je clic sur Start et cela lance la procédure de flash du firmware du contrôleur, pas de documentation donc je peux pas vraiment savoir ce que ça fait réellement. DRAME ça affiche une erreur et un beau fail, je ne désespère pas je débranche rebranche la clé. Et c’est un ………………….WIN Windaube m’affiche le beau panneau voulez-vous formater cette merde. Deuxième WIN de taille, la clé est reconnu comme une clé de 8 Go LOL. Je mets plus de 4 Go de données dedans je fais un checksum des fichiers et ça marche !!!

        +

        L’erreur survenu à la fin du flash peu provenir du fait que je n’avais pas lancé l’exécutable avec des privilèges élevés donc le programme n’a pas pu effectuer le formatage.

        +

        Maintenant la grande question comment ce fait t’il que Maxell qui est l’assembleur de cet clé USB nous vend t’il des clé USB 4GB comme sont en réalité des clé de 8Go. J’ai trois début de réponse :

        +

        1) Soit Maxell se fout de notre gueule sur les prix et du coup au lieu d’acheter 4000 puces Toshiba de 4 Go et 4000 de puces de 8Go , Maxell achète 8000 puces de 8Go et bidouille les firmware des contrôleurs pour faire des clés USB de 4 et 8 Go.

        +

        2) Maxell utilise des puces 8Go qui ont des défauts d’usines et utilise uniquement une parti de la puce. Ce qui expliquerait les problèmes que j’ai rencontré avec cette clé au début.

        +

        3) Maxell utilise les 4 Go restant pour faire du over-provisioning pour les cellules de mémoire défectueuse en écriture étant donné que je penses que ce genre de mémoire n’a pas beaucoup de cycle d’écriture mais c’est très peu probable que ce type technologie propre aux SSD soit dans de vulgaire clé USB bas de gamme.

        +
        +
        +
        +
        +
        Catégories : BidouilleHardwareNews
        +
        +
        +
        + + + + + + + + + +
        +
        +
        +
        +
        +
        +
        +

        + 8 commentaires

        +
        + +
        +
        +
        +
        +

        + 2Pi informatique + · 16 mai 2013 à 9 h 01 min +

        +

        Je n’avais jamais entendu parler de ce genre de manip, et du gain potentiel de capacité.

        +

        C’est assez étonnant, et je me demande si tous les constructeurs « brident » la capacité des clés usb …

        + +
        +
        + +
        + +
        +
        +
        +
        +

        + Amedoumba + · 22 juillet 2013 à 14 h 15 min +

        +

        Hello !
        +Intéressant comme manip. J’ai une de mes clés USB avec le même genre de probleme. Je vais donc tester et voir si cela fonctionne. Je n’ai rien à perdre de toute façon.
        +Merci en tout cas.

        + +
        +
        + +
        + +
        +
        +
        +
        +

        + diop + · 14 novembre 2013 à 15 h 11 min +

        +

        pour répéré cle usb

        + +
        +
        + +
        + +
        +
        +
        +
        +

        + diop + · 14 novembre 2013 à 15 h 12 min +

        +

        salut pour ma cle usb

        + +
        +
        + +
        + +
        +
        +
        +
        +

        + watchix + · 28 décembre 2013 à 10 h 40 min +

        +

        « File is deleted » :-(

        + +
        +
        +
          +
          + +
          +
          +
          +
          +

          + HugoPoi + · 4 janvier 2014 à 12 h 38 min +

          +

          à moitié réparer ;-)

          + +
          +
          + +
        + +
        + +
        +
        +
        +
        +

        + Jean + · 22 avril 2015 à 20 h 18 min +

        +

        Je penche pour ma part pour les raisons 1 et 2.

        +

        La première raison car le coût de la flash est diminuée plus on en commande, et aussi ça évite d’avoir deux chaines d’assemblage pour le PCB de la clé.

        +

        La seconde raison car c’est ce qui est pratiqué par pas mal de fabricants du domaine du semi-conducteur pour « créer » une gamme : AMD n’hésitait pas à vendre en entrée de gamme des processeurs amputés de certains coeurs défectueux. Et si il manque des processeurs défectueux … et bien on désactive quand même des coeurs !

        +

        Il y a aussi un paramètre à prendre en compte : la redevance sur la copie privée. Elle est proportionnelle à la capacité du support de stockage (cf. http://www.culturecommunication.gouv.fr/Politiques-ministerielles/Propriete-litteraire-et-artistique/Commission-pour-la-remuneration-de-la-copie-privee/Questions-pratiques/Les-montants-de-la-Remuneration-pour-Copie-Privee). Elle est de 0,64€ pour une clé de 4 Go, et 1,04€ pour une clé de 8 Go.

        + +
        +
        + +
        + +
        +
        +
        +
        +

        + Pila + · 10 décembre 2015 à 21 h 45 min +

        +

        Salut,
        +Je pense qu’il s’agit de puce MLC ( je crois que c’est le terme ? ), qui ont de très bonne performances sur la première moitié de leur capacité, et des très mauvaises sur la seconde moitié, car celle-ci est obtenu par réécriture sur la première partie.

        +

        En tout cas merci pour les différentes infos que tu as glanées !

        + +
        +
        + +
        +
        +
        +

        Répondre à 2Pi informatique Annuler la réponse

        Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

        +
        +
        +

        + +

        +
        +
        +
        +
        +
        +
        + +
        +
        +
        +
        +
        +
        + + +
        + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/22f4ef33d5c6427d998b99c5c0975c8453d27a54.00000472.xml b/www/.content.EZtzwPjb/html/22f4ef33d5c6427d998b99c5c0975c8453d27a54.00000472.xml new file mode 100644 index 0000000..6d99360 --- /dev/null +++ b/www/.content.EZtzwPjb/html/22f4ef33d5c6427d998b99c5c0975c8453d27a54.00000472.xml @@ -0,0 +1,41 @@ + + + + HugoPoi » ntfsresize + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Sat, 14 Sep 2013 23:01:40 +0000 + fr-FR + hourly + 1 + http://wordpress.org/?v=3.6 + + Redimensionner une partition NTFS + http://blog.hugopoi.net/2012/12/23/redimensionner-une-partition-ntfs/ + http://blog.hugopoi.net/2012/12/23/redimensionner-une-partition-ntfs/#comments + Sun, 23 Dec 2012 17:56:48 +0000 + HugoPoi + + + + + + + + + + http://blog.hugopoi.net/?p=685 + Lire la suite »

        ]]>
        + http://blog.hugopoi.net/2012/12/23/redimensionner-une-partition-ntfs/feed/ + 0 +
        +
        +
        diff --git a/www/.content.EZtzwPjb/html/23237ab199e4277fbb5ca21be7fdbed206ec9938.00000207.html b/www/.content.EZtzwPjb/html/23237ab199e4277fbb5ca21be7fdbed206ec9938.00000207.html new file mode 100644 index 0000000..6ea3fde --- /dev/null +++ b/www/.content.EZtzwPjb/html/23237ab199e4277fbb5ca21be7fdbed206ec9938.00000207.html @@ -0,0 +1,680 @@ + + + + + + + + Installer Mac OS X Mavericks avec VirtualBox – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        +
        +
        + +
        +
        +
        +
        +
        +
        +

        Capture Installation Mac OS X MavericksComme Apple c’est des blaireaux et que j’avais besoin d’un environnement de développement pour iDaube. J’ai du me résoudre à installer un Mac OS X dans une machine virtuel.

        +

        Ce dont vous avez besoin :

        + +

        Moi je travail sous Linux Mint mais vous devriez réussir à faire les manipulations sous Windaube.

        +

        1) Préparer la clé pour pouvoir booter dans la VM

        +

        Au début j’ai essayer de convertir le .dmg en ISO avec un outil de conversion mais cela ne marche pas car l’opération doit endommager le système de boot mis en place par Niresh. Donc la seul solution que j’ai trouvé c’est de faire une clé USB comme indiqué par Niresh avec dd.

        +

        Sous Mint/ubuntu/debian :

        +

        Une façon simple sous Linux d’identifier votre clé usb c’est avec la commande « mount », cela va lister toutes les partitions monter avec les périphériques correspondants.

        +
        hugo@hugo-NB ~ $ mount
        +/dev/sda2 on /boot type ext3 (rw)
        +/dev/mapper/lmvg-home on /home type ext4 (rw)
        +/dev/mapper/lmvg-var on /var type ext4 (rw,errors=remount-ro)
        +/dev/sda1 on /boot/efi type vfat (rw)
        +binfmt_misc on /proc/sys/fs/binfmt_misc type binfmt_misc (rw,noexec,nosuid,nodev)
        +gvfsd-fuse on /run/user/hugo/gvfs type fuse.gvfsd-fuse (rw,nosuid,nodev,user=hugo)
        +/dev/mapper/lmvg-games on /media/hugo/90d3426d-d8b2-4ba4-a7df-98363b9b40d9 type ext4 (rw,nosuid,nodev,uhelper=udisks2)
        +/dev/sdb1 on /media/hugo/HugoKey type ext4
        +

        Moi ma clé usb c’est /dev/sdb. Donc après la commande pour balancer le dmg sur la clé :

        +

        ATTENTION LA COMMANDE DD ci-dessous peut casser votre système si vous le faites sur le mauvais périphérique.

        +
        hugo@hugo-NB ~ $ sudo umount /media/hugo/HugoKey
        +hugo@hugo-NB ~ $ sudo dd if=mavericks.dmg of=/dev/sdb bs=1M
        +

        Sous Windaube

        +

        Je ne vais pas détailler la procédure mais vous avez 2 solutions, soit vous utilisez la commande dd disponible avec MinGW dans les outils Msys. Ou vous utilisez Win32DiskImager (je vous recommande cette solution qui est la plus simple).

        +

        2) Configurer votre VM dans VirtualBox

        +

        Voilà les paramètres que j’ai utilisé pour installer:

        +
          +
        • OSType : Mac OSX 10.9 64bits
        • +
        • RAM : 2048Mo
        • +
        • Activer l’accélération Graphique 3D
        • +
        • Mémoire Vidéo : 128Mo
        • +
        • Désactiver l’EFI
        • +
        • VT activé
        • +
        • Pagination Imbriqué activé
        • +
        • IO-APIC activé
        • +
        • Horloge UTC désactivé
        • +
        • Son désactivé (uniquement pendant l’installation)
        • +
        • Réseau désactivé (uniquement pendant l’installation)
        • +
        • Un disque virtuel de 20 Go
        • +
        +

        3) Booter sur la clé USB dans VirtualBox

        +

        Je n’ai pas réussi à booter sur la clé avec l’ajout d’un filtre USB dans la VM, donc la solution que j’ai trouvé sur le net est de créer un fichier lien de disque physique. Pour le créer c’est relativement simple :

        +
        hugo@hugo-NB ~ $ vboxmanage internalcommands createrawvmdk -filename usb.vmdk -rawdisk /dev/sdb
        +

        Une fois votre fichier vmdk créé vous pouvez l’ajouter dans votre VM comme un disque virtuel existant, prenez soins de mettre ce disque sur le port SATA 0 car VirtualBox ce base sur l’ordre des disques pour le boot. Moi j’ai eu des problèmes de droits avec mes périphériques USB donc j’ai exécuté la commande vboxmanage avec sudo puis j’ai aussi lancé virtualbox avec sudo.

        +

        Pour Windows la procédure plus en détaille est disponible sur ce blog.

        +

        4) Lancer l’installation dans VirtualBox

        +

        Vous lancez la vm et ça boot. Si vous avez une erreur du type Fatal impossible de trouver de quoi booter, vérifiez que vous avez bien mis la clé USB en disque SATA sur le port 0 et le disque virtuel sur le 1 ou plus. Moi ça été un peu long avant d’afficher le choix de la langue environ 60 secondes, cela doit être dû à la vérification de l’image d’installation. Au moment de choisir la partition d’installation, vous devez lancer l’outil de disque pour créer une partition sur le disque virtuel (dans le menu en haut), ensuite vous le fermez et l’installateur continu.

        +

        Pour information ma vm ne s’arrête pas correctement au niveau de l’affichage, je penses qu’il y a un problème de driver mais j’y connais que dalle en iDaube OSX. Une fois l’installation finit vous pouvez passer la connexion iCloud et laisser le script finir l’installation. Ensuite vous devez créer un utilisateur administrateur pour ne pas utiliser le compte root. Et je n’ai pas encore réussi à avoir du son peut-être en laissant activé pendant l’installation mais je sais que ça peut poser problème.

        +

        Les identifiants de connexion sont :

        +
          +
        • login : root
        • +
        • mot de passe : niresh
        • +
        +

        5) Configurer pour avoir une résolution correcte

        +

        Pour cela il faut éditer le fichier /Extra/com.chameleon.Boot.plist dans votre OS X fraichement installé et rajouter/éditer les balises suivantes :

        +
        <key>GraphicsEnabler</key>
        +<string>y</string>
        +<key>Graphics Mode</key>
        +<string>1366x768x32</string>
        +<key>Kernel Flags</key>
        +<string>"Graphics Mode"="1366x768x32"</string>
        +

        Dans la balise string Kernel Flags, des flags sont surement déjà présent donc moi je les ai laissé, j’ai rajouter « Graphics Mode »= »1366x768x32 » à la fin.

        +

        Ensuite vous devez éditer votre fichier de configuration vbox avec les commandes suivantes :

        +
        hugo@hugo-NB ~ $ vboxmanage setextradata "MAC OS X" "CustomVideoMode1" "1366x768x32"
        +hugo@hugo-NB ~ $ vboxmanage setextradata "MAC OS X" "GUI/CustomVideoMode1" "1366x768x32"
        +

        Voilà après c’est sans garantie de fonctionnement …

        +
        +
        + +
        +
        +
        +
        +
        +

        + 6 commentaires

        +
        + +
        +
        +
        +
        +

        + sc + · 2 mars 2014 à 23 h 44 min +

        +

        Merci, excellent tuto ! En suivant les étapes ça passe tout seul.

        + +
        +
        + +
        + +
        +
        +
        +
        +

        + Djow + · 5 mars 2014 à 16 h 50 min +

        +

        Salut et merci pour le tuto , je suis bloqué a l instal « missing bluetooth controller transport » tester différente manip mais rien y fais . Une idée?

        + +
        +
        + + +
        + +
        +
        +
        +
        +

        + LeKingduWar + · 7 mars 2014 à 10 h 22 min +

        +

        Hugo stp il me demande un controlleur bluetooth.

        + +
        +
        + +
        + +
        +
        +
        +
        +

        + mac + · 7 mars 2014 à 14 h 03 min +

        +

        Thanks, I’m installing it right now. The usb key step wasnt necessary however, you can convert it directly from dmg to vdi with: « VBoxManage convertdd yourdmgfile.dmg yournewvdiimage.vdi ». Then boot from the converted .vdi file. Worked for me on Ubuntu 12.04 with Virtualbox 4.3.6.

        + +
        +
        + +
        + +
        +
        +
        +
        +

        + Niamor + · 16 avril 2014 à 10 h 30 min +

        +

        Bonjour à tous,
        +Effectivement, l’étape avec la clé USB n’est pas nécessaire.
        +Il est tout à fait possible d’installer l’OS directement en bootant sur l’iso qui sera préalablement monté via le lecteur virtuel.
        +En tout cas, merci pour le tuto et les sources.
        +Bonne continuation

        + +
        +
        + +
        +
        +
        +

        Répondre à mac Annuler la réponse

        Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

        +
        +
        +

        + +

        +
        +
        +
        +
        +
        +
        + +
        +
        +
        +
        +
        +
        + + +
        + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/232d0928bf769ba6ed9d77a0675fddc21d52a9a9.00000041.html b/www/.content.EZtzwPjb/html/232d0928bf769ba6ed9d77a0675fddc21d52a9a9.00000041.html new file mode 100644 index 0000000..72365bd --- /dev/null +++ b/www/.content.EZtzwPjb/html/232d0928bf769ba6ed9d77a0675fddc21d52a9a9.00000041.html @@ -0,0 +1,536 @@ + + + + + + + + IPv6 – Intro – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        +
        +
        + +
        +
        +
        +
        +
        +
        +

        Etant donné la proche pénurie d’adresse IP v4, plus que 5% seraient disponible sur le réseau public qu’est Internet, je vais faire un dossier qui parlera d’IP v6. Dans ce dossier, je vais vous faire des tutoriels, des RFC et des découvertes.

        +

        Comme je vais écrire sur un sujet très technique et pas simple à comprendre je risque de faire des erreurs, vu que je ne suis pas un expert en IP v6. Dans les faits cette suite d’articles et de brèves sera un bon moyen pour vous « lecteurs » et pour moi de comprendre et apprendre sur ce sujet.

        +

        Question 1 : Qu’est-ce que c’est une IP v6 ? ou plutôt le protocole IP v6 ?

        +

        C’est la nouvelle version du protocole IP qui succède à IP v4. Celui-ci sert à faire communiquer plusieurs machines ou « devices » ensemble à l’aide d’un adressage spécifique pour savoir qui est qui. Et aussi à faire plein d’autres trucs fun ‘trouver des exemples’. Il se place jusqu’à la couche 3 du modèle OSI mais apporte des fonctionnalités sur les niveaux supérieurs.

        +

        Une adresse IP v4 c’était par exemple ça : 88.129.34.17 (32bits)

        +

        Une IP v6 c’est ça : 2001:0db8:0000:85a3:0000:0000:ac1f:8001 (128bits)

        +

        Question 2 : Pourquoi faut-il utiliser IP v6 ?

        +

        C’est vrai que c’est bien le petit confort qu’apporte l’IP v4, c’est lisible, court et facile à retenir. Mais le problème c’est que sur internet on est très nombreux, et on va incessamment sous peu être à court d’ adresse. IP v4 c’est 4 294 967 296 d’adresses, c’est moins d’une adresse par personne sur terre donc pas assez au vu de l’expansion actuelle du Web. IP v6 permet de disposer de 10^25 adresses au mètre carré sur terre de quoi installer un paquet de VM.

        +

        Question 3 : Pourquoi je vous en parle ?

        +

        Comme j’ai un peu de temps libre et que IPv6 c’est l’avenir, c’est le moment pour monter en compétence sur ce type de technologie. Parce que devenir expert en routage et firewalling IPv6 à mon avis c’est pas coton.

        +

        A lire pour comprendre les bases :

        +

        http://www.grm94.polymtl.ca/~lepage/IPv6/

        +

        http://fr.wikipedia.org/wiki/IPv6

        +

        J’ai rajouté un petit widget sur le coté pour vous indiquer quand il n’y aura plus d’adresses v4 et que ça sera la fin du monde …

        +
        +
        +
        +
        +
        Catégories : DossiersIP v6
        +
        +
        +
        + + + + + + + + + +
        +
        +
        +
        +
        +
        +
        +

        + 2 commentaires

        +
        + +
        +
        +
        +
        +

        + Samy DINDANE + · 26 décembre 2010 à 12 h 06 min +

        +

        Article intéressant, qui le sera encore plus si tu parles des solutions de « transition ». :)

        + +
        +
        + + +
        +
        +
        +

        Répondre à Kldint Annuler la réponse

        Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

        +
        +
        +

        + +

        +
        +
        +
        +
        +
        +
        + +
        +
        +
        +
        +
        +
        + + +
        + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/23cc5f3567592b442e3afa79e6c72f98a13c51d2.00000065.html b/www/.content.EZtzwPjb/html/23cc5f3567592b442e3afa79e6c72f98a13c51d2.00000065.html new file mode 100644 index 0000000..7bada9d --- /dev/null +++ b/www/.content.EZtzwPjb/html/23cc5f3567592b442e3afa79e6c72f98a13c51d2.00000065.html @@ -0,0 +1,589 @@ + + + + + + + + Asus U36JC-RX260V – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        +
        +
        + +
        +
        +
        +
        +
        +
        +

        Depuis le temps que je voulais investir dans un pc portable, je l’ai enfin fait. Je cherchais une machine en complément de mon fixe avec comme premiers critères l’autonomie et un minimum de puissance. J’ai donc acheté un ultra-portable Asus, un chassie U36JC avec les caractéristiques suivantes :

        +
          +
        • Ecran 13,3″ 1366×768
        • +
        • Processeur Intel Core I5-480M
        • +
        • 4Go de Ram
        • +
        • Carte Graphique Intel HD2000 et Nvidia Geforce 310M (Optimus)
        • +
        • Batterie 8 cellules
        • +
        • Dimension 32.2 x 23.2 x 1.90 cm Poids 1,6 Kg avec batterie
        • +
        +

        Déballage

        +

        L’emballage est petit et contient le strict minimum, le pc et l’alimentation. Alors au niveau de l’équipement on a pour ce prix :

        +
          +
        • Wifi Intel AGN
        • +
        • Un disque-dur 640 Go Western Digital Scorpio Blue
        • +
        • Un port USB 3.0
        • +
        • et déception pas de bluetooth
        • +
        +

        L’écran est rétro-éclairé par LED, la luminosité minimum est très forte c’est un bon point par contre je trouve que les contrastes sont pâles et le rendu est un peu blanchâtre. La finition extérieure est bonne sans être excellente. L’autonomie est d’un peu moins de 5 heures en utilisation bureautique intensive web.

        +

        Optimus

        +

        Ce modèle dispose de la technologie Nvidia Optimus qui permet de switcher l’affichage entre le chipset graphique interne au processeur Intel et la carte Nvidia qui est sur le port PCI-Express de la carte mère. Cela permet en théorie de gagner en autonomie en utilisant le chip intel pour la bureautique et la carte Nvidia pour faire un peu de  jeux vidéo quand le pc est branché. J’ai testé et j’ai trouvé plusieurs points noirs concernant cette techno :

        +
          +
        • Ne fonctionne que sous Windows car le système est conçu à partir de cet OS
        • +
        • Quand je switch d’un chip à l’autre je ne peux pas savoir quel carte est réellement active #lol ou j’ai loupé un truc ?
        • +
        • Pour switcher il faut utiliser le logiciel Power4Gear d’Asus enfin je suppose car c’est uniquement par ce biais que j’ai réussi …
        • +
        +

        Je vais essayer de vous pondre un billet si je trouve des astuces permettant d’exploiter cette techno qui pour l’instant est un peu merdique. J’ai aussi remarqué un truc. Quand je suis sur le chip Intel, la carte Nvidia reste alimentée et monte en charge à environ 2-3%… bizarre !

        +

        Software

        +

        Un grand bravo à tout les éditeurs qui ont un partenariat avec Asus pour pré-installer toutes leur merdes sur les machines neuves. Cela me conforte dans l’idée que Windows est un OS poubelle, ou du moins les éditeurs font tout pour que ça le reste. Et tout ces pauvres gens qui subissent Microsoft et tout ces éditeurs. Bientôt on ne pourra plus choisir l’antivirus que l’on veut à moins de formater sa machine neuve. J’ai du passer environ deux bonnes heures pour dégager toutes les merdes qui étaient pré-installées.

        +

        Un petit merci à Asus pour tous ces logiciels avec des supers nom geek « fast boot », « Power4Gear », « virtual camera » mais dont la moitié est super impossible à utiliser ou même au début c’est tellement transparent qu’on ne sait pas vraiment à quoi ils servent vraiment. C’est l’impression que j’en ai eu.

        +

        L’aventure Cdiscount

        +

        J’ai eu de la « chance » et j’ai trouvé sur Cdiscount le modèle RX260V au prix de 680€ donc une affaire. C’était la première fois que je commandais chez Cdiscount, je soupçonnes des méthodes pas très catholique pour manipuler leurs clients. Sur la page du produit qui était une vente flash, il y avait le stock affiché en temps réel, et le nombre d’articles disponible est passé de 7 à 30 vers minuit le samedi du week-end durant lequel j’ai commandé. Je doute qu’il y ait eu un réapprovisionnement un samedi soir. Le délai de livraison est moyen, une semaine avec le mode de transport le moins cher. Et malgré avoir décoché les cases « recevoir nos offres promotionnelles » et compagnie, elles se sont re-cochées après la création de mon compte. J’ai reçu des mails assez intrusifs, car le site s’est rendu compte que je traquais un article, et m’ a envoyé plusieurs mails pour me dire « achetez, achetez, il y en aura plus après. »

        +

        Comme j’ai commandé avant le 14 mars j’étais éligible à l’offre promotionnelle -25% remboursé sur le rayon informatique. j’ai donc rempli le formulaire en ligne puis renvoyé le code barre de mon Asus. Cdiscount m’a confirmé (le 07/04/2011) seulement deux semaines après qu’il avait reçu mon dossier(reçu 24/03/2011), très réactif, pour me dire en plus que je recevrais mes bons d’achats dans un délai de 3 semaines ! (les emails c’est pire que la poste …) Donc 7+3*7=28, j’aurais 2 jours pour utiliser mon bon d’achat, c’est limite comme pratique non ?

        +

        Conclusion

        +

        Après relecture, mon article n’est pas très positif mais j’ai gardé le meilleur pour la fin. C’est mon premier PC portable, j’avais un peu peur qu’il soit plus lent que mon fixe mais il s’avère que non. En utilisation bureautique donc bon point, rapide à démarrer, sortir de veille. L’autonomie de 5h est un minimum, et pour 700 €, on a l’équivalent d’un netbook mais avec la puissance d’un notebook de base. L’équipement est complet pour ce niveau de prix mais j’aurais aimé avoir un port e-sata et du bluetooth pour qu’il soit top ! Sinon si on compare avec un Macbook air :

        +
          +
        1. Le processeur Core i5-480M vs Core 2 Duo Asus Win !
        2. +
        3. Carte Graphique Nvidia Geforce 310M vs 320M Apple Win :(
        4. +
        5. Poids 1,6 Kg vs 1,32 kg mais impossible de trouver le poids avec équipement comparable ? so ==
        6. +
        7. Taille 1.90 cm vs 1,7 cm Apple Win
        8. +
        9. Equipement USB3/VGA-HDMI/Eth1Gb vs 2USB/DP Apple FAIL
        10. +
        11. Easy Upgrade Batterie/Disque-dur/RAM vs ???? Asus Win
        12. +
        13. Et pour finir le prix 700€ sans SSD vs 1400€ donc même si je rajoute un putain de SSD à 300€ Asus MegaWin
        14. +
        +

        En résumé, ça fait  4 à 2, donc Apple peut aller se rhabiller avec ses MacBook air même pas foutu d’avoir un port Ethernet (et celui qui est vendu en option est 10/100 )

        +

         

        +

        Mince je me suis trompé d’image :

        +

        c'est pas un RX260V ...??...

        +
        +
        +
        +
        +
        Catégories : HardwareLogicielsTest
        +
        +
        +
        + + + + + + + + + +
        +
        +
        +
        +
        +
        +
        +

        + 4 commentaires

        +
        + +
        +
        +
        +
        +

        + Mikky + · 1 mai 2011 à 20 h 51 min +

        +

        Yop Hugo,
        +sache que lorsqu’on achète un pc portable faut le réinstaller comme ça tu peux dégager tout les merdes pré-installés car on peut choisir ceux qu’on veut intaller ;)

        +

        Bisous =)

        + +
        +
        + +
        + +
        +
        +
        +
        +

        + darkneo + · 28 mai 2011 à 17 h 21 min +

        +

        Par contre sur ce modèle je crois que l’accès au disque n’est pas possible sans ouvrir toute la coque!

        + +
        +
        + +
        +
        +

        + Optimus vs Mégatron | HugoPoi + · 5 mai 2011 à 2 h 00 min +

        +

        […] l’heureux acquéreur #oupas d’un pc portable avec technologie Optimus de Nvidia (voir Asus U36JC). Après quelques jours de recherches et de tests je vais essayer de vous faire un résumé […]

        + +
        +
        + +
        +
        +

        + Démontage Asus U36 | HugoPoi + · 31 juillet 2011 à 2 h 00 min +

        +

        […] acheté un petit SSD pour mettre dans mon U36 acheté il y a quelques mois, je n’ai pas trouvé de procédure de démontage sur Internet donc voici les photos de mon […]

        + +
        +
        + +
        +
        +
        +

        Laisser un commentaire

        Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

        +
        +
        +

        + +

        +
        +
        +
        +
        +
        +
        + +
        +
        +
        +
        +
        +
        + + +
        + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/23d58cbd3c19357836a29ade993d59fa692de79a.00000223.html b/www/.content.EZtzwPjb/html/23d58cbd3c19357836a29ade993d59fa692de79a.00000223.html new file mode 100644 index 0000000..cf17604 --- /dev/null +++ b/www/.content.EZtzwPjb/html/23d58cbd3c19357836a29ade993d59fa692de79a.00000223.html @@ -0,0 +1,579 @@ + + + + + + + + L’homme du milieu avec DD-WRT – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        +
        +
        +
        + +
        +
        +
        +
        +
        +
        +

        J’avais besoin de faire un MITM entre un ONT et la box SFR NB6 pour pouvoir capturer les identifiants PPP pour le tunnel ipv6. Je n’avais pas de hub ou de machine avec 2 interfaces Ethernet pour pouvoir le faire de façon passive sans faire du spoofing ARP. Et je n’avais pas envie d’envoyer des trames ARP sur l’infrastructure réseau SFR. J’avais un Netgear WNR3500Lv1 dans un coin, je me suis dit qu’il y avais moyen d’utiliser ce genre de routeur pour faire du tapping passif.

        +

        +

        Installer DD-WRT

        +

        Première étape avoir un routeur sous DD-WRT qui marche. Netgear font les choses bien, la majorité de leurs routeurs sont compatibles avec les « openfirmwares ». J’ai ma préférence pour DD-WRT qui est vraiment orienté réseau. Pendant le setup, j’ai quand même réussi à briquer une fois mon routeur, je n’ai pas trouvé la raison.
        +1) Aller récupérer le firmware qui va bien .chk depuis dd-wrt.com
        +2) Flasher depuis l’interface web
        +3) Re-flasher avec un dd-wrt complet qui marche, j’ai utilisé le mod de kong qui est un dd-wrt modifié qui est plus stable. (le ssh marchait pas sur l’autre firmware)
        +4) Penser à configurer le service SSH depuis l’interface web.
        +5) DESACTIVER LES SERVER ET CLIENT DHCP mettez toutes les ips en statiques

        +

        Installer TCPDUMP

        +

        Une fois dd-wrt fonctionnel sur la bête, je me suis dit que j’allais utiliser tcpdump pour capturer directe sur les interfaces du routeur. Évidemment le paquet ipkg ne marchait pas mais j’ai appris qu’on pouvait les installer en manuel.

        +
        wget http://downloads.openwrt.org/attitude_adjustment/12.09/brcm47xx/generic/packages/libpcap_1.1.1-2_brcm47xx.ipk
        +tar -zxvf libpcap_1.1.1-2_brcm47xx.ipk
        +rm control.tar.gz
        +rm debian-binary
        +rm libpcap_1.1.1-2_brcm47xx.ipk
        +tar -zxvf data.tar.gz
        +rm data.tar.gz
        +wget http://downloads.openwrt.org/attitude_adjustment/12.09/brcm47xx/generic/packages/tcpdump_4.2.1-3_brcm47xx.ipk
        +tar -zxvf tcpdump_4.2.1-3_brcm47xx.ipk
        +rm control.tar.gz
        +rm debian-binary
        +rm tcpdump_4.2.1-3_brcm47xx.ipk
        +tar -zxvf data.tar.gz
        +rm data.tar.gz
        +

        Vous pouvez lancer ce script sur votre machine puis ensuite copier le répertoire usr dans /tmp/root qui est un ram disk car l’espace jffs ne faisait que 600ko sur mon routeur donc pas suffisant pour la libpcap + tcpdump. Il y a 64 Mo de RAM sur mon routeur versus 8Mo flash aller comprendre …

        +

        Donc au début je me suis dit c’est tout bon j’ai plus qu’à lancer tcpdump depuis ssh sur la bonne interface et c’est du tout cuit.

        +
        ssh root@192.168.2.1 "LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/tmp/root/usr/lib /tmp/root/usr/sbin/tcpdump -i vlan1 -U -s0 -w -" | wireshark -i -
        +

        Notez ici l’option -U qui permet de flush dans le pipe ssh rapidement les données capturées très utile quand vous avez peu de paquets sur l’interface sinon votre wireshark ne reçoit rien tant que le buffer n’est pas plein.

        +
        Schema MITM Neufbox v6 DD-WRT

        Schéma MITM Neufbox v6 DD-WRT

        +

        ET J’AVAIS TORT

        +

        J’avais oublié un détail hardware qui m’a pété les couilles, les 4 ports du switch sont géré en hardware via une puce dédié ici un BCM53115. Problème impossible d’écouter le trafic entre les ports car le BCM53115 gère en interne sa table ARP qui n’est pas configurable, donc impossible de capturer le moindre paquet utile à part les broadcast et multicast.

        +

        Solution 2

        +

        Après avoir creusé la question, j’ai évidement commencer par regarder la documentation du BCM53115 qui est une belle boite noire dont les seules choses que l’on peut configurer sont les vlan par port et le tagging. Je devais donc me passer de cet élément pour faire ma capture. La solution la plus simple qui m’est venu c’est d’utiliser le port WAN qui est séparé du switch au niveau logique et je peux le bridger en software via le kernel linux. Cependant cette solution n’est pas vraiment satisfaisante pour moi dans la mesure ou je pouvais pas isoler de façon sûr le pc d’écoute. (Genre éviter les broadcast ipv6 et mdns sur le réseau SFR)

        +

        1) Couper le routage sur l’interface web, onglet setup
        +2) Coché la case mettre le port WAN dans le switch ( il sera bridgé dans le vlan1)
        +3) Configurer iptables sur la machine d’écoute pour éviter les merdes (J’ai tout bloqué sauf le ssh sortant)

        +
        *filter
        +:INPUT DROP [49:3210]
        +:FORWARD DROP [0:0]
        +:OUTPUT DROP [0:0]
        +-A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT
        +-A INPUT -i lo -j ACCEPT
        +-A OUTPUT -m state --state RELATED,ESTABLISHED -j ACCEPT
        +-A OUTPUT -p tcp -m tcp --dport 22 -j ACCEPT
        +-A OUTPUT -o lo -j ACCEPT
        +COMMIT
        +

        Donc au final on se retrouve avec tout le merdier dans le même vlan mais seul les données entre les ports du switch et le port WAN sont écoutables dans notre cas c’est pas un problème.

        +
        Schéma MITM neufbox ddwrt solution 2

        Schéma MITM neufbox ddwrt solution 2

        +

        J’ai cependant trouvé une autre solution pour faire des écoutes entre potentiellement tout les ports du switch en utilisant les vlan ! J’ai pas encore testé mais l’idée est la suivante :

        +
          +
        1. placer les 4 ports du switch dans 4 vlan différents (5 6 7 8 par exemple)
        2. +
        3. Ensuite on bridge les vlan avec le kernel ( brctl addbr test && brctl addif test vlan5 && brctl addif test vlan6 && brctl addif test vlan7 && brctl addif test vlan8 )
        4. +
        5. Vous pouvez lancer tcpdump sur l’interface bridge-test sûrement br2
        6. +
        +

        Cette dernière solution serait encore mieux car la machine d’écoute est vraiment isoler du reste, et ça permet d’écouter 4 devices en même temps ce qui peut servir.

        +
        +
        +
        + +
        +
        + + + + + + + + + +
        +
        +
        +
        +
        +
        +
        +

        + 1 commentaire

        +
        + +
        +
        +
        +
        +

        + Rudy + · 24 juin 2017 à 11 h 55 min +

        +

        « sa » et non « ça » :)

        + +
        +
        + +
        +
        +
        +

        Répondre à Rudy Annuler la réponse

        Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

        +
        +
        +

        + +

        +
        +
        +
        +
        +
        +
        + +
        +
        +
        +
        +
        +
        + + +
        + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/23dce8ca2987b4e5033de32aa59319aff6f19465.00000596.js b/www/.content.EZtzwPjb/html/23dce8ca2987b4e5033de32aa59319aff6f19465.00000596.js new file mode 100644 index 0000000..a3f6dd6 --- /dev/null +++ b/www/.content.EZtzwPjb/html/23dce8ca2987b4e5033de32aa59319aff6f19465.00000596.js @@ -0,0 +1,438 @@ +(function($) { + + if (typeof _wpcf7 == 'undefined' || _wpcf7 === null) { + _wpcf7 = {}; + } + + _wpcf7 = $.extend({ + cached: 0 + }, _wpcf7); + + $.fn.wpcf7InitForm = function() { + this.ajaxForm({ + beforeSubmit: function(arr, $form, options) { + $form.wpcf7ClearResponseOutput(); + $form.find('[aria-invalid]').attr('aria-invalid', 'false'); + $form.find('img.ajax-loader').css({ visibility: 'visible' }); + return true; + }, + beforeSerialize: function($form, options) { + $form.find('[placeholder].placeheld').each(function(i, n) { + $(n).val(''); + }); + return true; + }, + data: { '_wpcf7_is_ajax_call': 1 }, + dataType: 'json', + success: $.wpcf7AjaxSuccess, + error: function(xhr, status, error, $form) { + var e = $('
        ').text(error.message); + $form.after(e); + } + }); + + if (_wpcf7.cached) { + this.wpcf7OnloadRefill(); + } + + this.wpcf7ToggleSubmit(); + + this.find('.wpcf7-submit').wpcf7AjaxLoader(); + + this.find('.wpcf7-acceptance').click(function() { + $(this).closest('form').wpcf7ToggleSubmit(); + }); + + this.find('.wpcf7-exclusive-checkbox').wpcf7ExclusiveCheckbox(); + + this.find('.wpcf7-list-item.has-free-text').wpcf7ToggleCheckboxFreetext(); + + this.find('[placeholder]').wpcf7Placeholder(); + + if (_wpcf7.jqueryUi && ! _wpcf7.supportHtml5.date) { + this.find('input.wpcf7-date[type="date"]').each(function() { + $(this).datepicker({ + dateFormat: 'yy-mm-dd', + minDate: new Date($(this).attr('min')), + maxDate: new Date($(this).attr('max')) + }); + }); + } + + if (_wpcf7.jqueryUi && ! _wpcf7.supportHtml5.number) { + this.find('input.wpcf7-number[type="number"]').each(function() { + $(this).spinner({ + min: $(this).attr('min'), + max: $(this).attr('max'), + step: $(this).attr('step') + }); + }); + } + + this.find('.wpcf7-character-count').wpcf7CharacterCount(); + + this.find('.wpcf7-validates-as-url').change(function() { + $(this).wpcf7NormalizeUrl(); + }); + }; + + $.wpcf7AjaxSuccess = function(data, status, xhr, $form) { + if (! $.isPlainObject(data) || $.isEmptyObject(data)) { + return; + } + + var $responseOutput = $form.find('div.wpcf7-response-output'); + + $form.wpcf7ClearResponseOutput(); + + $form.find('.wpcf7-form-control').removeClass('wpcf7-not-valid'); + $form.removeClass('invalid spam sent failed'); + + if (data.captcha) { + $form.wpcf7RefillCaptcha(data.captcha); + } + + if (data.quiz) { + $form.wpcf7RefillQuiz(data.quiz); + } + + if (data.invalids) { + $.each(data.invalids, function(i, n) { + $form.find(n.into).wpcf7NotValidTip(n.message); + $form.find(n.into).find('.wpcf7-form-control').addClass('wpcf7-not-valid'); + $form.find(n.into).find('[aria-invalid]').attr('aria-invalid', 'true'); + }); + + $responseOutput.addClass('wpcf7-validation-errors'); + $form.addClass('invalid'); + + $(data.into).trigger('wpcf7:invalid'); + $(data.into).trigger('invalid.wpcf7'); // deprecated + + } else if (1 == data.spam) { + $responseOutput.addClass('wpcf7-spam-blocked'); + $form.addClass('spam'); + + $(data.into).trigger('wpcf7:spam'); + $(data.into).trigger('spam.wpcf7'); // deprecated + + } else if (1 == data.mailSent) { + $responseOutput.addClass('wpcf7-mail-sent-ok'); + $form.addClass('sent'); + + if (data.onSentOk) { + $.each(data.onSentOk, function(i, n) { eval(n) }); + } + + $(data.into).trigger('wpcf7:mailsent'); + $(data.into).trigger('mailsent.wpcf7'); // deprecated + + } else { + $responseOutput.addClass('wpcf7-mail-sent-ng'); + $form.addClass('failed'); + + $(data.into).trigger('wpcf7:mailfailed'); + $(data.into).trigger('mailfailed.wpcf7'); // deprecated + } + + if (data.onSubmit) { + $.each(data.onSubmit, function(i, n) { eval(n) }); + } + + $(data.into).trigger('wpcf7:submit'); + $(data.into).trigger('submit.wpcf7'); // deprecated + + if (1 == data.mailSent) { + $form.resetForm(); + } + + $form.find('[placeholder].placeheld').each(function(i, n) { + $(n).val($(n).attr('placeholder')); + }); + + $responseOutput.append(data.message).slideDown('fast'); + $responseOutput.attr('role', 'alert'); + + $.wpcf7UpdateScreenReaderResponse($form, data); + }; + + $.fn.wpcf7ExclusiveCheckbox = function() { + return this.find('input:checkbox').click(function() { + var name = $(this).attr('name'); + $(this).closest('form').find('input:checkbox[name="' + name + '"]').not(this).prop('checked', false); + }); + }; + + $.fn.wpcf7Placeholder = function() { + if (_wpcf7.supportHtml5.placeholder) { + return this; + } + + return this.each(function() { + $(this).val($(this).attr('placeholder')); + $(this).addClass('placeheld'); + + $(this).focus(function() { + if ($(this).hasClass('placeheld')) + $(this).val('').removeClass('placeheld'); + }); + + $(this).blur(function() { + if ('' == $(this).val()) { + $(this).val($(this).attr('placeholder')); + $(this).addClass('placeheld'); + } + }); + }); + }; + + $.fn.wpcf7AjaxLoader = function() { + return this.each(function() { + var loader = $('') + .attr({ src: _wpcf7.loaderUrl, alt: _wpcf7.sending }) + .css('visibility', 'hidden'); + + $(this).after(loader); + }); + }; + + $.fn.wpcf7ToggleSubmit = function() { + return this.each(function() { + var form = $(this); + + if (this.tagName.toLowerCase() != 'form') { + form = $(this).find('form').first(); + } + + if (form.hasClass('wpcf7-acceptance-as-validation')) { + return; + } + + var submit = form.find('input:submit'); + if (! submit.length) return; + + var acceptances = form.find('input:checkbox.wpcf7-acceptance'); + if (! acceptances.length) return; + + submit.removeAttr('disabled'); + acceptances.each(function(i, n) { + n = $(n); + if (n.hasClass('wpcf7-invert') && n.is(':checked') + || ! n.hasClass('wpcf7-invert') && ! n.is(':checked')) { + submit.attr('disabled', 'disabled'); + } + }); + }); + }; + + $.fn.wpcf7ToggleCheckboxFreetext = function() { + return this.each(function() { + var $wrap = $(this).closest('.wpcf7-form-control'); + + if ($(this).find(':checkbox, :radio').is(':checked')) { + $(this).find(':input.wpcf7-free-text').prop('disabled', false); + } else { + $(this).find(':input.wpcf7-free-text').prop('disabled', true); + } + + $wrap.find(':checkbox, :radio').change(function() { + var $cb = $('.has-free-text', $wrap).find(':checkbox, :radio'); + var $freetext = $(':input.wpcf7-free-text', $wrap); + + if ($cb.is(':checked')) { + $freetext.prop('disabled', false).focus(); + } else { + $freetext.prop('disabled', true); + } + }); + }); + }; + + $.fn.wpcf7CharacterCount = function() { + return this.each(function() { + var $count = $(this); + var name = $count.attr('data-target-name'); + var down = $count.hasClass('down'); + var starting = parseInt($count.attr('data-starting-value'), 10); + var maximum = parseInt($count.attr('data-maximum-value'), 10); + var minimum = parseInt($count.attr('data-minimum-value'), 10); + + var updateCount = function($target) { + var length = $target.val().length; + var count = down ? starting - length : length; + $count.attr('data-current-value', count); + $count.text(count); + + if (maximum && maximum < length) { + $count.addClass('too-long'); + } else { + $count.removeClass('too-long'); + } + + if (minimum && length < minimum) { + $count.addClass('too-short'); + } else { + $count.removeClass('too-short'); + } + }; + + $count.closest('form').find(':input[name="' + name + '"]').each(function() { + updateCount($(this)); + + $(this).keyup(function() { + updateCount($(this)); + }); + }); + }); + }; + + $.fn.wpcf7NormalizeUrl = function() { + return this.each(function() { + var val = $.trim($(this).val()); + + if (val && ! val.match(/^[a-z][a-z0-9.+-]*:/i)) { // check the scheme part + val = val.replace(/^\/+/, ''); + val = 'http://' + val; + } + + $(this).val(val); + }); + }; + + $.fn.wpcf7NotValidTip = function(message) { + return this.each(function() { + var $into = $(this); + + $into.find('span.wpcf7-not-valid-tip').remove(); + $into.append('' + message + ''); + + if ($into.is('.use-floating-validation-tip *')) { + $('.wpcf7-not-valid-tip', $into).mouseover(function() { + $(this).wpcf7FadeOut(); + }); + + $(':input', $into).focus(function() { + $('.wpcf7-not-valid-tip', $into).not(':hidden').wpcf7FadeOut(); + }); + } + }); + }; + + $.fn.wpcf7FadeOut = function() { + return this.each(function() { + $(this).animate({ + opacity: 0 + }, 'fast', function() { + $(this).css({'z-index': -100}); + }); + }); + }; + + $.fn.wpcf7OnloadRefill = function() { + return this.each(function() { + var url = $(this).attr('action'); + + if (0 < url.indexOf('#')) { + url = url.substr(0, url.indexOf('#')); + } + + var id = $(this).find('input[name="_wpcf7"]').val(); + var unitTag = $(this).find('input[name="_wpcf7_unit_tag"]').val(); + + $.getJSON(url, + { _wpcf7_is_ajax_call: 1, _wpcf7: id, _wpcf7_request_ver: $.now() }, + function(data) { + if (data && data.captcha) { + $('#' + unitTag).wpcf7RefillCaptcha(data.captcha); + } + + if (data && data.quiz) { + $('#' + unitTag).wpcf7RefillQuiz(data.quiz); + } + } + ); + }); + }; + + $.fn.wpcf7RefillCaptcha = function(captcha) { + return this.each(function() { + var form = $(this); + + $.each(captcha, function(i, n) { + form.find(':input[name="' + i + '"]').clearFields(); + form.find('img.wpcf7-captcha-' + i).attr('src', n); + var match = /([0-9]+)\.(png|gif|jpeg)$/.exec(n); + form.find('input:hidden[name="_wpcf7_captcha_challenge_' + i + '"]').attr('value', match[1]); + }); + }); + }; + + $.fn.wpcf7RefillQuiz = function(quiz) { + return this.each(function() { + var form = $(this); + + $.each(quiz, function(i, n) { + form.find(':input[name="' + i + '"]').clearFields(); + form.find(':input[name="' + i + '"]').siblings('span.wpcf7-quiz-label').text(n[0]); + form.find('input:hidden[name="_wpcf7_quiz_answer_' + i + '"]').attr('value', n[1]); + }); + }); + }; + + $.fn.wpcf7ClearResponseOutput = function() { + return this.each(function() { + $(this).find('div.wpcf7-response-output').hide().empty().removeClass('wpcf7-mail-sent-ok wpcf7-mail-sent-ng wpcf7-validation-errors wpcf7-spam-blocked').removeAttr('role'); + $(this).find('span.wpcf7-not-valid-tip').remove(); + $(this).find('img.ajax-loader').css({ visibility: 'hidden' }); + }); + }; + + $.wpcf7UpdateScreenReaderResponse = function($form, data) { + $('.wpcf7 .screen-reader-response').html('').attr('role', ''); + + if (data.message) { + var $response = $form.siblings('.screen-reader-response').first(); + $response.append(data.message); + + if (data.invalids) { + var $invalids = $('
          '); + + $.each(data.invalids, function(i, n) { + if (n.idref) { + var $li = $('
        • ').append($('').attr('href', '#' + n.idref).append(n.message)); + } else { + var $li = $('
        • ').append(n.message); + } + + $invalids.append($li); + }); + + $response.append($invalids); + } + + $response.attr('role', 'alert').focus(); + } + }; + + $.wpcf7SupportHtml5 = function() { + var features = {}; + var input = document.createElement('input'); + + features.placeholder = 'placeholder' in input; + + var inputTypes = ['email', 'url', 'tel', 'number', 'range', 'date']; + + $.each(inputTypes, function(index, value) { + input.setAttribute('type', value); + features[value] = input.type !== 'text'; + }); + + return features; + }; + + $(function() { + _wpcf7.supportHtml5 = $.wpcf7SupportHtml5(); + $('div.wpcf7 > form').wpcf7InitForm(); + }); + +})(jQuery); diff --git a/www/.content.EZtzwPjb/html/23e4ff9c1742d5437a0ac57109267e5bea355718.00000118.html b/www/.content.EZtzwPjb/html/23e4ff9c1742d5437a0ac57109267e5bea355718.00000118.html new file mode 100644 index 0000000..cb22c7e --- /dev/null +++ b/www/.content.EZtzwPjb/html/23e4ff9c1742d5437a0ac57109267e5bea355718.00000118.html @@ -0,0 +1,1370 @@ + + + + + + + + Réparations Samsung SyncMaster 2232BW – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
          +
          +
          + +
          +
          +
          +
          +
          +
          +

          Allô docteur on a un problème,

          +

          En ce dimanche calme avant la fin de mes partiels, mon écran Samsung SyncMaster 2232BW commençait à faire des siennes. Celui-ci depuis un mois ou deux clignotait de façon systématique au démarrage, au début pendant seulement quelques secondes, puis au fur et à mesure, de plus en plus jusqu’à devoir attendre 10 minutes pour que je puisse l’utiliser. Après 3 ans et 4 mois de bons et loyaux services, il voulait me quitter. J’ai tenté le support Samsung par email avec peu d’espoir car l’écran a dépassé sa garantie de 4 mois (oui oui les bâtards -> obsolescence programmée). Et donc j’ai eu le droit à un joli mail automatique me disant de contacter un numéro non surtaxé (mais avec combien de temps d’attente ?), ce que je n’ai pas fait car je n’avais pas envie de passer 30min au téléphone pour au final avoir un « On est désolé mais on ne peut rien faire pour vous car la garantie est dépassée, mais on peut envoyer votre écran en SAV pour faire un devis pour seulement 50 boules ». Concernant le support email de Samsung France, je leur donne une note de 0/20 puisque ce n’est pas un support mais une redirection vers le téléphone.

          +

          +

          Symptômes

          +

          Clignotements de l’écran et de la LED power systématiques à chaque démarrage de l’écran. Je me suis tout de suite douté d’un problème d’alimentation et après quelques recherches sur google, confirmation du problème sur beaucoup d’écrans et téléviseurs. Dans 99% des cas ce clignotement est dû à des condensateurs défectueux qu’il faut simplement changer :-D

          +

          Démontage

          +

          Donc après avoir cerné le problème, j’ai ouvert l’écran pour chercher les condos défectueux. J’ai trouvé une petite vidéo pour mon écran :

          +

          +

          Voici quelques photos en plus pour vous aider :

          +

          Les outils que j’ai utilisé pour le démontage

          +

          Position des clips

          +

          Carte d’alimentation dans son emplacement

          +

          Et voici les condensateurs qui posent problèmes. Comme vous pouvez le voir sur la photo, ils sont très facilement identifiable car ils sont bombés sur le dessus.

          +

          Condensateurs défectueux

          +

          Vous devez donc acheter des condensateurs de remplacement, par exemple sur Conrad.

          +

          Mes condensateurs suivant étaient endommagés:

          +
            +
          • 1 de 330uF 25V remplacé par un 470uF 25V
          • +
          • 3 de 820uF 25V remplacé par des 1000uF 50V
          • +
          +

          Pour la réparation, il vous faut un fer à souder avec une panne pas trop grosse mais d’une grosse puissance car les soudures sont très solides (j’ai galéré avec un fer pro qui monte jusqu’à 400°).

          +

          Tout remarche nickel après remontage, plus de clignotement pour seulement quelques euros.

          +

          edit du 19 aout 2014 : j’ai trouvé le service manuel de l’écran si besoin samsung_2232bw_chassis_lpe22bs_sm

          + + +
          +
          + +
          +
          +
          +
          +
          +

          + 41 commentaires

          +
          + +
          +
          +
          +
          +

          + c'est_moi + · 30 janvier 2012 à 18 h 57 min +

          +

          Mille mercis et mille félicitations pour cette fiche technique si pédagogue.

          +

          J’espère que le partiels se passent plus que parfait !!

          +

          J’ai gardé l’url de la page pour réparer mon écran dans un petit mois : j’espère que la page soit toujours là ;-)

          +

          Merci encore.

          + +
          +
          + +
          + +
          +
          +
          +
          +

          + Maxime + · 5 mai 2012 à 12 h 31 min +

          +

          Bonjour HugoPoi!

          +

          Merci pour toutes vos infos et votre topic, je voulais avoir quelques précisions sur les condos à changer pour samsung 2232bw, je veux passer commande mais j’ai un problème avec les dimensions des condos, si vous pouvez m’informer de ce que je pourrais acheter car il y a trop de références. En vous remerciant A+ Maxime

          + +
          +
          +
            +
            + +
            +
            +
            +
            +

            + HugoPoi + · 14 juin 2012 à 22 h 56 min +

            +

            N’importe quel condensateur polarisé avec des caractéristiques proches devrait marché.

            + +
            +
            + +
          + +
          + +
          +
          +
          +
          +

          + gaubjezj + · 14 juin 2012 à 22 h 32 min +

          +

          Merci pour le tuto qui m’a bien aidé.
          +J’ai utilisé un fer de 40 W avec une panne fine et
          +une pompe à dessouder et j’ai retiré les condensateurs sans problème.
          +Merci encore (3€40 pour le dépannage).

          + +
          +
          + +
          + +
          +
          +
          +
          +

          + DragonTribal + · 2 juillet 2012 à 12 h 02 min +

          +

          super merci pour manifique tuto.
          +Est-il possible de changer les 5 condensateurs 820uF 25V par des 1000uF 50V? car moi mes 5 condensateurs sont presque HS ;-)

          +

          Cordialement

          + +
          +
          +
            +
            + +
            +
            +
            +
            +

            + HugoPoi + · 2 juillet 2012 à 12 h 25 min +

            +

            Oui je penses que ça marchera étant donné que c’est des valeurs plus grandes.

            + +
            +
            + +
          + +
          + +
          +
          +
          +
          +

          + FRED + · 11 juillet 2012 à 19 h 11 min +

          +

          Bravo, MERCI.
          +Je n’ai encore rien fait…mais j’ai le même problème, et tu me donnes la solution.
          +Super.

          + +
          +
          + +
          + +
          +
          +
          +
          +

          + daninpet + · 31 août 2012 à 10 h 10 min +

          +

          Merci mille fois!

          +

          J’avais ce problème, et j’ai emmener la photo des trucs a remplacer chez le réparateur du coin et voila!! Ça m’a coûté 7 Euros (mais j’habite en Thaïlande)

          + +
          +
          + +
          + +
          +
          +
          +
          +

          + moi + · 15 novembre 2012 à 15 h 25 min +

          +

          super mon 2232bw vient de lâcher, les 3 + 1 condos sont gonflés j ai trouvé un 330 en 35v qui traîné sur un écran mort et j’ai commander 5 1000uf 35v sur ebay pour moins de 3 dollars, ca devrait le faire j’espere j’attend d’être livré merci! par contre j’ai qu’un gros pistolet a soudure et un gros fil d’étain, c’est pas évident mais bon ca le fait quand même =)

          + +
          +
          +
            +
            + +
            +
            +
            +
            +

            + moi + · 7 décembre 2012 à 9 h 33 min +

            +

            parfait je vient de recevoir les condos; j ai meuler la panne du fer a souder pour la tailler en mine de crayon et j ai reussi a les souder facilement ils étaient un peu plus gros mais ca passe tout juste, mais attention ne pas prendre des plus gros! l écran fonctionne nickel maintenant.

            + +
            +
            + +
          + +
          + +
          +
          +
          +
          +

          + Croco + · 19 janvier 2013 à 18 h 39 min +

          +

          Je souhaiterai savoir si tu as utilisé un fer à souder bien précis étant donné que la carte est une multi couche.
          +Merci

          + +
          +
          + + +
          + +
          +
          +
          +
          +

          + momo + · 10 juin 2013 à 13 h 15 min +

          +

          slut je voudrai savoir ou trouvé les condansateur a changer sur mon ecran qui clignote

          + +
          +
          + + +
          + +
          +
          +
          +
          +

          + lokmane + · 5 juillet 2013 à 16 h 08 min +

          +

          merci j’avais un ecran rouge ! et c’etais la tresse qui relie mon ecran votre page m’a aider a l’ouvrir et a le reparer merci bien

          + +
          +
          + +
          + +
          +
          +
          +
          +

          + ML + · 21 août 2013 à 19 h 11 min +

          +

          Merci ! Ecran réparé. Halte à l’obsolescence programmée.

          + +
          +
          + +
          + +
          +
          +
          +
          +

          + raymond + · 31 octobre 2013 à 13 h 20 min +

          +

          ai vu votre vidéo et les explications pour la reparation de mon écran , apparemment le méme probléme l écran passe au noir apres quelque seconde , j ai vu un le condensateur en bas a gauche gonflé , je l ai fait changé (10€) les autre condensateur étant toujour bon d après la personne qui me l a changé , mais j ai toujour le méme probléme cela peut il venir de la carte video a gauche ?

          + +
          +
          +
            +
            + +
            +
            +
            +
            +

            + HugoPoi + · 20 décembre 2013 à 12 h 27 min +

            +

            Si la led bleu du bouton power s’éteint aussi c’est un problème d’alimentation sinon c’est plus compliqué et ça peut provenir de condensateurs sur la partie vidéo. Changé tous les plus gros condensateurs sur la partie alimentation pourrait être un bon début même si ils ne paraissent pas endommagé.

            + +
            +
            + +
          + +
          + +
          +
          +
          +
          +

          + damien + · 4 novembre 2013 à 0 h 29 min +

          +

          bonjour,

          +

          j’ai des crasses coincées entres l’écran et le truc juste derrière, est ce qu’on sais les enlever en démontant la dalle ?

          + +
          +
          +
            +
            + +
            +
            +
            +
            +

            + HugoPoi + · 20 décembre 2013 à 12 h 28 min +

            +

            Je ne sais si cette partie de la dalle est démontable, je penses que c’est collé mais vous pouvez essayer.

            + +
            +
            + +
          + +
          + +
          +
          +
          +
          +

          + mac + · 1 décembre 2013 à 17 h 30 min +

          +

          Merci HugoPoi, avec ces excellents conseils et tuto vidéo, mon écran est reparti pour une nouvelle vie.
          +Pour les composants, si vous êtes sur Paris ou proche. La boutique RAM électroniques est une bonne adresse, 138 bd Diderot 75012 Paris (Place de la Nation).

          + +
          +
          + +
          + +
          +
          +
          +
          +

          + Bouddhid + · 16 janvier 2014 à 19 h 21 min +

          +

          Merci beaucoup pour ces conseils ! J’étais à 2 doigts de jeter mon écran, le voilà comme neuf pour moins de 5€ ! Vive la bricole !

          + +
          +
          + +
          + +
          +
          +
          +
          +

          + Vincent + · 17 mai 2014 à 16 h 45 min +

          +

          Alors là merci.

          +

          Pour ce post, les photos, la vidéo, tout y est.

          +

          J’ai démonté l’écran assez vite, enlevé la carte, regarder quel condensateurs étaient gonflés,(il y en avaient 4), un magasin d’électronique sur lyon et une heure de démontage, soudure, remontage plus tard, voilà, c’est tout beau.
          +Ca ne clignote plus, ça s’allume comme avant, comme neuf.

          +

          Et dire que j’allais jeter cet écran et claquer 350 euros pour un neuf…

          +

          Coût de l’opération pour 4 condensateurs, du fil d’étain 7 euros.

          +

          Je précise que je n’avais jamais fais de soudure sur composant électronique auparavant.
          +Comme quoi cette opération de réparation est à la portée de tous.

          + +
          +
          + +
          + +
          +
          +
          +
          +

          + Julot + · 6 juillet 2014 à 13 h 49 min +

          +

          Site vraiment détaillé et très claire. J’ai pu dépanner mon écran avec succès. Merci beaucoup pour ces précieuses explications.

          + +
          +
          + +
          + +
          +
          +
          +
          +

          + PaniK31 + · 29 juillet 2014 à 9 h 21 min +

          +

          Pas besoin d’une grosse puissance pour le fer, il faut au préalable gratter le vernis sur l’étain afin de pouvoir le faire fondre plus facilement

          + +
          +
          + +
          + +
          +
          +
          +
          +

          + R211_IP-45130B + · 20 août 2014 à 14 h 04 min +

          +

          Bonjour à tous,

          +

          Une âme charitable peut-elle me communiquer ce qui est gravé sur la résistance CMS R211 de la carte d’alimentation/inverter IP-45130B qui équipe le SAMSUNG 2232BW ? Cette résistance a pris un coup de tournevis et je n’arrive pas à déterminer sa valeur de résistance car son marquage est effacé et comme le composant est abimé la mesure à l’ohmmètre indique l’infinie.

          +

          Merci par avance.

          + +
          +
          + +
          + +
          +
          +
          +
          +

          + roger + · 24 octobre 2014 à 17 h 21 min +

          +

          Ca refonctionne après échange de 4 condensateurs :
          +-un 330uf25v remplacé à l’identique.
          +-trois 820uf25v remplacés par 1000uf25v.
          +Le tout pour quelques €. Le plus dur était le dessoudage, la tresse n’était pas très efficace contrairement à la pompe.
          +Grand merci à HugoPoi.

          + +
          +
          + +
          + +
          +
          +
          +
          +

          + Max + · 26 février 2015 à 16 h 28 min +

          +

          ENORME MERCI!! J’ai réparé mon écran en 20mn pour 3,50€, il était à 2 doigts de partir à la déchetterie. Ca faisait des mois qu’il clignotait, et l’allumage mettait parfois plus d’une demi heure. J’ai changé 5 condos 820uf25v et 1 330uf25v, par exactement les mêmes en neuf, et là il démarre au quart de tour! Ca fait plaisir! :)

          + +
          +
          +
            +
            + +
            +
            +
            +
            +

            + rocco michelle + · 7 octobre 2015 à 10 h 16 min +

            +

            Bonjour je ne sais si vous verrez mon message mais je tente…je cherche quelqu’un qui accepterait de changer mes condensateurs sur mon samsung, les réparateurs me demandent 70 à 80 euros et encore ils n’ont pss envie de le faire et me disent d’acheter un nouvel écran. j’aurais bien tenter mais je n’ai pas de matériel et j’ai lu que les condo pouvaient être très dangereux s’ils avaient de la charge alors j’ai la trouille de bidouiller pq je n’y connais rien. si vous êtes de lyon acccepteriez vous de changer mes condensateurs pour 45 euros? merci de votre réponse.

            + +
            +
            + +
          + +
          + +
          +
          +
          +
          +

          + lecakeseb + · 27 juillet 2015 à 15 h 26 min +

          +

          Bonjour,

          +

          J’ai utilisé la vidéo pour démonter mon écran afin de le nettoyer de 4 bêtes d’orage infiltrés entre le premier écran (noir) et la dalle (blanche) de mon samsung SyncMaster 2232W

          +

          Petits conseils afin de modérer ce que j’ai pu voir dans cette vidéo :

          +

          0 : aspirez, nettoyez l’extérieur de l’écran avant de l’ouvrir et nettoyez la table qui vous servira d’atelier, pour éviter les poussières qui s’infiltreront forcément plus tard si vous ne le faites pas…
          +1 : pour ouvrir, utilisez plutôt un couteau à enduire pour la première partie (le cadre). Vous n’abîmerez ainsi pas du tout l’écran. Soyez patients, ne forcez pas ! ça viendra doucement, mais ça viendra. Il m’a fallu à peine 10 minutes, sans détériorer l’écran, sans le griffer… Il est encore nickel !
          +2 : attention à ne pas déconnecter les fils reliant le cadre à la carte. Inutile pour simplement nettoyer l’écran.
          +3 : pour séparer les deux éléments de la dalle entre lesquels les bêtes se sont infiltrées, les doigts suffisent, pas besoin d’outils qui viendraient les endommager. La dalle blanche reste à l’horizontale, l’écran noir sera tenu à la verticale.
          +4 : utiliser un chiffon doux ne peluchant pas pour enlever les bêtes (faites-vous aider de quelqu’un qui les enlèvera pendant que vous tenez l’écran extérieur en position verticale).
          +5 : repositionnez la colle d’étanchéité qui aurait pu se déplacer, avant de repositionner les deux écrans.
          +6 : commencer par refermer par le bas de l’écran (sinon les éléments de réglage situés au bas de l’écran – luminosité, contraste,…- ne se replaceront pas correctement).
          +7 : Une fois l’écran refermé, j’ai appliqué un peu de « barrage aux insectes », avec un chiffon à l’arrière de mon écran en insistant surtout sur les bouches d’aération par lesquelles les maudites bestioles ont du s’infiltrer. En espérant ne pas avoir à ouvrir !

          +

          Bon courage à vous !

          + +
          +
          + +
          + +
          +
          +
          +
          +

          + Michel Jousserandot + · 20 janvier 2017 à 20 h 41 min +

          +

          Merci pour les conseils au démontage.
          +J’avais un problème un peu différent :l’écran ne s’allumait plus du tout. Avec un copain beaucoup plus malin que moi, on a détecté 2 fusibles dont l’un était fichu. On l’a remplacé par un petit fil de cuivre. Et tout a remarché comme avant.
          +Il faut surtout faire attention quand on teste la partie haute tension
          +Michel.

          + +
          +
          + +
          + +
          +
          +
          +
          +

          + Crec + · 14 juillet 2017 à 10 h 20 min +

          +

          Bonjour. Très bons conseils avertis. Merci beaucoup.
          +Peut-on avoir les mêmes conseils pour un écran BX2250.
          +Merci par avance.
          +Crec

          + +
          +
          +
            +
            + +
            +
            +
            +
            +

            + HugoPoi + · 6 août 2017 à 14 h 03 min +

            +

            J’ai pas de BX2250 donc dans le détails non mais si c’est les même symptômes ça doit la même procédure.

            + +
            +
            + +
          + +
          + +
          +
          +
          +
          +

          + Ferronnier + · 10 août 2017 à 17 h 42 min +

          +

          Un grand merci !
          +J’ai changé tous les condensateurs de la partie alimentation de la carte, en déportant certains qui n’avaient pas le même format qu’à l’origine, et ça tourne nickel !

          + +
          +
          + +
          + +
          +
          +
          +
          +

          + Nours + · 1 décembre 2017 à 15 h 17 min +

          +

          Ca fait des années que j’ai cet article enregistré dans un coin, en nourrissant l’espoir d’avoir un jour le courage de réparer ce foutu écran… Après plus de cinq ans c’est chose faite \o/
          +Un giga, hypra, immense merci pour ce tutoriel tellement bien expliqué et facile d’accès (je n’avais pas touché à un fer à souder depuis… Oh boy 15 ans déjà).
          +Après une longue pause, l’écran reprend du service… Jusqu’à la prochaine panne /o/

          + +
          +
          + +
          + +
          +
          +
          +
          +

          + Alex + · 11 août 2018 à 13 h 28 min +

          +

          Quelqu’un sait qui pourrait me le faire svp j ai le même problème mais aucun matériel

          + +
          +
          + +
          + +
          +
          +
          +
          +

          + David + · 5 février 2019 à 21 h 06 min +

          +

          Merci Hugo pour ce tuto qui m’a déjà servi en 2013 et qui va me resservir aujourd’hui car mon 2ème 2232bw commence à avoir les mêmes symptômes.

          + +
          +
          + +
          + +
          +
          +
          +
          +

          + yvan + · 23 novembre 2019 à 17 h 14 min +

          +

          Bonjour
          +j’ai tenté de changer le condensateur qui avait l’air naze mais ça n’a pas marché … toujours le bouton bleu allumé, l’écran est reconnu par Windows 10 même si l’écran est éteint
          +grâce au service manuel de l’écran fourni plus haut, j’ai vérifié les tensions jusque sur la carte de la dalle et elles sont correctes, ainsi que sur la carte elle-même, tout est ok, donc je pense que ce n’est plus un problème de condensateur
          +pour les fusibles, ils ressemblent plutôt à des composants qu’à de simple fusibles, mais comme j’ai les bonnes tension, je ne pense pas que ça vienne de là
          +j’ai bien peur que ce soit la dalle qui soit naze ? quelqu’un a t il des idées supplémentaires avant que je le jette avec grand regret (c’est un 2032bw, mais c’est la même chose, même si ma carte électronique est un peu différente car plus récente
          +merci d’avance pour vos conseils

          + +
          +
          + +
          + +
          +
          +
          +
          +

          + yvan + · 24 novembre 2019 à 17 h 26 min +

          +

          finalement j’ai trouvé, c’est un petit fusible vert qui ressemble à une résistance mais tout vert avec écrit 4A LF qui assure l’alimentation de la dalle.
          +En le shuntant, mon écran a retrouvé l’image.
          +après enquête il s’agit d’un fusible pico de 4ampères de chez little fuse, pas du tout évident à trouver
          +Résolu !

          + +
          +
          + +
          +
          +

          + Reflow Dell 1546 | HugoPoi + · 22 août 2016 à 16 h 09 min +

          +

          […] « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable de marque Dell un 1546 pour être précis. Encore […]

          + +
          +
          + +
          +
          +

          + Reflow Dell Inspiron 1546 – HugoPoi + · 23 juin 2017 à 23 h 18 min +

          +

          […] d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un […]

          + +
          +
          + +
          +
          +
          +

          Répondre à damien Annuler la réponse

          Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

          +
          +
          +

          + +

          +
          +
          +
          +
          +
          +
          + +
          +
          +
          +
          +
          +
          + + +
          + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/23f14a16129e61bbce8b9719d572e93710f61b1e.00000603.js b/www/.content.EZtzwPjb/html/23f14a16129e61bbce8b9719d572e93710f61b1e.00000603.js new file mode 100644 index 0000000..060fc0e --- /dev/null +++ b/www/.content.EZtzwPjb/html/23f14a16129e61bbce8b9719d572e93710f61b1e.00000603.js @@ -0,0 +1,527 @@ +( function( $ ) { + + 'use strict'; + + if ( typeof wpcf7 === 'undefined' || wpcf7 === null ) { + return; + } + + wpcf7 = $.extend( { + cached: 0, + inputs: [] + }, wpcf7 ); + + $( function() { + wpcf7.supportHtml5 = ( function() { + var features = {}; + var input = document.createElement( 'input' ); + + features.placeholder = 'placeholder' in input; + + var inputTypes = [ 'email', 'url', 'tel', 'number', 'range', 'date' ]; + + $.each( inputTypes, function( index, value ) { + input.setAttribute( 'type', value ); + features[ value ] = input.type !== 'text'; + } ); + + return features; + } )(); + + $( 'div.wpcf7 > form' ).each( function() { + var $form = $( this ); + wpcf7.initForm( $form ); + + if ( wpcf7.cached ) { + wpcf7.refill( $form ); + } + } ); + } ); + + wpcf7.getId = function( form ) { + return parseInt( $( 'input[name="_wpcf7"]', form ).val(), 10 ); + }; + + wpcf7.initForm = function( form ) { + var $form = $( form ); + + wpcf7.setStatus( $form, 'init' ); + + $form.submit( function( event ) { + if ( ! wpcf7.supportHtml5.placeholder ) { + $( '[placeholder].placeheld', $form ).each( function( i, n ) { + $( n ).val( '' ).removeClass( 'placeheld' ); + } ); + } + + if ( typeof window.FormData === 'function' ) { + wpcf7.submit( $form ); + event.preventDefault(); + } + } ); + + $( '.wpcf7-submit', $form ).after( '' ); + + wpcf7.toggleSubmit( $form ); + + $form.on( 'click', '.wpcf7-acceptance', function() { + wpcf7.toggleSubmit( $form ); + } ); + + // Exclusive Checkbox + $( '.wpcf7-exclusive-checkbox', $form ).on( 'click', 'input:checkbox', function() { + var name = $( this ).attr( 'name' ); + $form.find( 'input:checkbox[name="' + name + '"]' ).not( this ).prop( 'checked', false ); + } ); + + // Free Text Option for Checkboxes and Radio Buttons + $( '.wpcf7-list-item.has-free-text', $form ).each( function() { + var $freetext = $( ':input.wpcf7-free-text', this ); + var $wrap = $( this ).closest( '.wpcf7-form-control' ); + + if ( $( ':checkbox, :radio', this ).is( ':checked' ) ) { + $freetext.prop( 'disabled', false ); + } else { + $freetext.prop( 'disabled', true ); + } + + $wrap.on( 'change', ':checkbox, :radio', function() { + var $cb = $( '.has-free-text', $wrap ).find( ':checkbox, :radio' ); + + if ( $cb.is( ':checked' ) ) { + $freetext.prop( 'disabled', false ).focus(); + } else { + $freetext.prop( 'disabled', true ); + } + } ); + } ); + + // Placeholder Fallback + if ( ! wpcf7.supportHtml5.placeholder ) { + $( '[placeholder]', $form ).each( function() { + $( this ).val( $( this ).attr( 'placeholder' ) ); + $( this ).addClass( 'placeheld' ); + + $( this ).focus( function() { + if ( $( this ).hasClass( 'placeheld' ) ) { + $( this ).val( '' ).removeClass( 'placeheld' ); + } + } ); + + $( this ).blur( function() { + if ( '' === $( this ).val() ) { + $( this ).val( $( this ).attr( 'placeholder' ) ); + $( this ).addClass( 'placeheld' ); + } + } ); + } ); + } + + if ( wpcf7.jqueryUi && ! wpcf7.supportHtml5.date ) { + $form.find( 'input.wpcf7-date[type="date"]' ).each( function() { + $( this ).datepicker( { + dateFormat: 'yy-mm-dd', + minDate: new Date( $( this ).attr( 'min' ) ), + maxDate: new Date( $( this ).attr( 'max' ) ) + } ); + } ); + } + + if ( wpcf7.jqueryUi && ! wpcf7.supportHtml5.number ) { + $form.find( 'input.wpcf7-number[type="number"]' ).each( function() { + $( this ).spinner( { + min: $( this ).attr( 'min' ), + max: $( this ).attr( 'max' ), + step: $( this ).attr( 'step' ) + } ); + } ); + } + + // Character Count + wpcf7.resetCounter( $form ); + + // URL Input Correction + $form.on( 'change', '.wpcf7-validates-as-url', function() { + var val = $.trim( $( this ).val() ); + + if ( val + && ! val.match( /^[a-z][a-z0-9.+-]*:/i ) + && -1 !== val.indexOf( '.' ) ) { + val = val.replace( /^\/+/, '' ); + val = 'http://' + val; + } + + $( this ).val( val ); + } ); + }; + + wpcf7.submit = function( form ) { + if ( typeof window.FormData !== 'function' ) { + return; + } + + var $form = $( form ); + + $( '.ajax-loader', $form ).addClass( 'is-active' ); + wpcf7.clearResponse( $form ); + + var formData = new FormData( $form.get( 0 ) ); + + var detail = { + id: $form.closest( 'div.wpcf7' ).attr( 'id' ), + status: 'init', + inputs: [], + formData: formData + }; + + $.each( $form.serializeArray(), function( i, field ) { + if ( '_wpcf7' == field.name ) { + detail.contactFormId = field.value; + } else if ( '_wpcf7_version' == field.name ) { + detail.pluginVersion = field.value; + } else if ( '_wpcf7_locale' == field.name ) { + detail.contactFormLocale = field.value; + } else if ( '_wpcf7_unit_tag' == field.name ) { + detail.unitTag = field.value; + } else if ( '_wpcf7_container_post' == field.name ) { + detail.containerPostId = field.value; + } else if ( field.name.match( /^_/ ) ) { + // do nothing + } else { + detail.inputs.push( field ); + } + } ); + + wpcf7.triggerEvent( $form.closest( 'div.wpcf7' ), 'beforesubmit', detail ); + + var ajaxSuccess = function( data, status, xhr, $form ) { + detail.id = $( data.into ).attr( 'id' ); + detail.status = data.status; + detail.apiResponse = data; + + switch ( data.status ) { + case 'init': + wpcf7.setStatus( $form, 'init' ); + break; + case 'validation_failed': + $.each( data.invalid_fields, function( i, n ) { + $( n.into, $form ).each( function() { + wpcf7.notValidTip( this, n.message ); + $( '.wpcf7-form-control', this ).addClass( 'wpcf7-not-valid' ); + $( '[aria-invalid]', this ).attr( 'aria-invalid', 'true' ); + } ); + } ); + + wpcf7.setStatus( $form, 'invalid' ); + wpcf7.triggerEvent( data.into, 'invalid', detail ); + break; + case 'acceptance_missing': + wpcf7.setStatus( $form, 'unaccepted' ); + wpcf7.triggerEvent( data.into, 'unaccepted', detail ); + break; + case 'spam': + wpcf7.setStatus( $form, 'spam' ); + wpcf7.triggerEvent( data.into, 'spam', detail ); + break; + case 'aborted': + wpcf7.setStatus( $form, 'aborted' ); + wpcf7.triggerEvent( data.into, 'aborted', detail ); + break; + case 'mail_sent': + wpcf7.setStatus( $form, 'sent' ); + wpcf7.triggerEvent( data.into, 'mailsent', detail ); + break; + case 'mail_failed': + wpcf7.setStatus( $form, 'failed' ); + wpcf7.triggerEvent( data.into, 'mailfailed', detail ); + break; + default: + wpcf7.setStatus( $form, + 'custom-' + data.status.replace( /[^0-9a-z]+/i, '-' ) + ); + } + + wpcf7.refill( $form, data ); + + wpcf7.triggerEvent( data.into, 'submit', detail ); + + if ( 'mail_sent' == data.status ) { + $form.each( function() { + this.reset(); + } ); + + wpcf7.toggleSubmit( $form ); + wpcf7.resetCounter( $form ); + } + + if ( ! wpcf7.supportHtml5.placeholder ) { + $form.find( '[placeholder].placeheld' ).each( function( i, n ) { + $( n ).val( $( n ).attr( 'placeholder' ) ); + } ); + } + + $( '.wpcf7-response-output', $form ) + .html( '' ).append( data.message ).slideDown( 'fast' ); + + $( '.screen-reader-response', $form.closest( '.wpcf7' ) ).each( function() { + var $response = $( this ); + $response.html( '' ).append( data.message ); + + if ( data.invalid_fields ) { + var $invalids = $( '
            ' ); + + $.each( data.invalid_fields, function( i, n ) { + if ( n.idref ) { + var $li = $( '
          • ' ).append( $( '' ).attr( 'href', '#' + n.idref ).append( n.message ) ); + } else { + var $li = $( '
          • ' ).append( n.message ); + } + + $invalids.append( $li ); + } ); + + $response.append( $invalids ); + } + + $response.focus(); + } ); + + if ( data.posted_data_hash ) { + $form.find( 'input[name="_wpcf7_posted_data_hash"]' ).first() + .val( data.posted_data_hash ); + } + }; + + $.ajax( { + type: 'POST', + url: wpcf7.apiSettings.getRoute( + '/contact-forms/' + wpcf7.getId( $form ) + '/feedback' ), + data: formData, + dataType: 'json', + processData: false, + contentType: false + } ).done( function( data, status, xhr ) { + ajaxSuccess( data, status, xhr, $form ); + $( '.ajax-loader', $form ).removeClass( 'is-active' ); + } ).fail( function( xhr, status, error ) { + var $e = $( '
            ' ).text( error.message ); + $form.after( $e ); + } ); + }; + + wpcf7.triggerEvent = function( target, name, detail ) { + var event = new CustomEvent( 'wpcf7' + name, { + bubbles: true, + detail: detail + } ); + + $( target ).get( 0 ).dispatchEvent( event ); + }; + + wpcf7.setStatus = function( form, status ) { + var $form = $( form ); + var prevStatus = $form.data( 'status' ); + + $form.data( 'status', status ); + $form.addClass( status ); + + if ( prevStatus && prevStatus !== status ) { + $form.removeClass( prevStatus ); + } + } + + wpcf7.toggleSubmit = function( form, state ) { + var $form = $( form ); + var $submit = $( 'input:submit', $form ); + + if ( typeof state !== 'undefined' ) { + $submit.prop( 'disabled', ! state ); + return; + } + + if ( $form.hasClass( 'wpcf7-acceptance-as-validation' ) ) { + return; + } + + $submit.prop( 'disabled', false ); + + $( '.wpcf7-acceptance', $form ).each( function() { + var $span = $( this ); + var $input = $( 'input:checkbox', $span ); + + if ( ! $span.hasClass( 'optional' ) ) { + if ( $span.hasClass( 'invert' ) && $input.is( ':checked' ) + || ! $span.hasClass( 'invert' ) && ! $input.is( ':checked' ) ) { + $submit.prop( 'disabled', true ); + return false; + } + } + } ); + }; + + wpcf7.resetCounter = function( form ) { + var $form = $( form ); + + $( '.wpcf7-character-count', $form ).each( function() { + var $count = $( this ); + var name = $count.attr( 'data-target-name' ); + var down = $count.hasClass( 'down' ); + var starting = parseInt( $count.attr( 'data-starting-value' ), 10 ); + var maximum = parseInt( $count.attr( 'data-maximum-value' ), 10 ); + var minimum = parseInt( $count.attr( 'data-minimum-value' ), 10 ); + + var updateCount = function( target ) { + var $target = $( target ); + var length = $target.val().length; + var count = down ? starting - length : length; + $count.attr( 'data-current-value', count ); + $count.text( count ); + + if ( maximum && maximum < length ) { + $count.addClass( 'too-long' ); + } else { + $count.removeClass( 'too-long' ); + } + + if ( minimum && length < minimum ) { + $count.addClass( 'too-short' ); + } else { + $count.removeClass( 'too-short' ); + } + }; + + $( ':input[name="' + name + '"]', $form ).each( function() { + updateCount( this ); + + $( this ).keyup( function() { + updateCount( this ); + } ); + } ); + } ); + }; + + wpcf7.notValidTip = function( target, message ) { + var $target = $( target ); + $( '.wpcf7-not-valid-tip', $target ).remove(); + + $( '' ).attr( { + 'class': 'wpcf7-not-valid-tip', + 'role': 'alert', + 'aria-hidden': 'true', + } ).text( message ).appendTo( $target ); + + if ( $target.is( '.use-floating-validation-tip *' ) ) { + var fadeOut = function( target ) { + $( target ).not( ':hidden' ).animate( { + opacity: 0 + }, 'fast', function() { + $( this ).css( { 'z-index': -100 } ); + } ); + }; + + $target.on( 'mouseover', '.wpcf7-not-valid-tip', function() { + fadeOut( this ); + } ); + + $target.on( 'focus', ':input', function() { + fadeOut( $( '.wpcf7-not-valid-tip', $target ) ); + } ); + } + }; + + wpcf7.refill = function( form, data ) { + var $form = $( form ); + + var refillCaptcha = function( $form, items ) { + $.each( items, function( i, n ) { + $form.find( ':input[name="' + i + '"]' ).val( '' ); + $form.find( 'img.wpcf7-captcha-' + i ).attr( 'src', n ); + var match = /([0-9]+)\.(png|gif|jpeg)$/.exec( n ); + $form.find( 'input:hidden[name="_wpcf7_captcha_challenge_' + i + '"]' ).attr( 'value', match[ 1 ] ); + } ); + }; + + var refillQuiz = function( $form, items ) { + $.each( items, function( i, n ) { + $form.find( ':input[name="' + i + '"]' ).val( '' ); + $form.find( ':input[name="' + i + '"]' ).siblings( 'span.wpcf7-quiz-label' ).text( n[ 0 ] ); + $form.find( 'input:hidden[name="_wpcf7_quiz_answer_' + i + '"]' ).attr( 'value', n[ 1 ] ); + } ); + }; + + if ( typeof data === 'undefined' ) { + $.ajax( { + type: 'GET', + url: wpcf7.apiSettings.getRoute( + '/contact-forms/' + wpcf7.getId( $form ) + '/refill' ), + beforeSend: function( xhr ) { + var nonce = $form.find( ':input[name="_wpnonce"]' ).val(); + + if ( nonce ) { + xhr.setRequestHeader( 'X-WP-Nonce', nonce ); + } + }, + dataType: 'json' + } ).done( function( data, status, xhr ) { + if ( data.captcha ) { + refillCaptcha( $form, data.captcha ); + } + + if ( data.quiz ) { + refillQuiz( $form, data.quiz ); + } + } ); + + } else { + if ( data.captcha ) { + refillCaptcha( $form, data.captcha ); + } + + if ( data.quiz ) { + refillQuiz( $form, data.quiz ); + } + } + }; + + wpcf7.clearResponse = function( form ) { + var $form = $( form ); + $form.siblings( '.screen-reader-response' ).html( '' ); + + $( '.wpcf7-not-valid-tip', $form ).remove(); + $( '[aria-invalid]', $form ).attr( 'aria-invalid', 'false' ); + $( '.wpcf7-form-control', $form ).removeClass( 'wpcf7-not-valid' ); + + $( '.wpcf7-response-output', $form ).hide().empty(); + }; + + wpcf7.apiSettings.getRoute = function( path ) { + var url = wpcf7.apiSettings.root; + + url = url.replace( + wpcf7.apiSettings.namespace, + wpcf7.apiSettings.namespace + path ); + + return url; + }; + +} )( jQuery ); + +/* + * Polyfill for Internet Explorer + * See https://developer.mozilla.org/en-US/docs/Web/API/CustomEvent/CustomEvent + */ +( function () { + if ( typeof window.CustomEvent === "function" ) return false; + + function CustomEvent ( event, params ) { + params = params || { bubbles: false, cancelable: false, detail: undefined }; + var evt = document.createEvent( 'CustomEvent' ); + evt.initCustomEvent( event, + params.bubbles, params.cancelable, params.detail ); + return evt; + } + + CustomEvent.prototype = window.Event.prototype; + + window.CustomEvent = CustomEvent; +} )(); diff --git a/www/.content.EZtzwPjb/html/246a230230b409367a510980b5e4b0d308ca1bc4.00000073.html b/www/.content.EZtzwPjb/html/246a230230b409367a510980b5e4b0d308ca1bc4.00000073.html new file mode 100644 index 0000000..dc76106 --- /dev/null +++ b/www/.content.EZtzwPjb/html/246a230230b409367a510980b5e4b0d308ca1bc4.00000073.html @@ -0,0 +1,568 @@ + + + + + + + + Optimus vs Mégatron – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
            +
            +
            +
            + +
            +
            +
            +
            +
            +
            +

            Je suis l’heureux acquéreur #oupas d’un pc portable avec technologie Optimus de Nvidia (voir Asus U36JC). Après quelques jours de recherches et de tests je vais essayer de vous faire un résumé complet sur le pourquoi de comment ça fonctionne.

            +

            Présentation et marketing

            +

            Petite introduction sur Optimus pour vous mettre dans l’ambiance. Cette technologie permet de profiter de deux cartes graphique au sein d’un pc portable, plus précisément d’une carte vidéo Nvidia et du chipset graphique intégré au processeur Intel (= IGP). Cette technologie, d’après la plaquette marketing, remplacerait une techno plus ancienne appelée « switchable graphics » très peu connue. Optimus permet de rallier autonomie et performance sur notebook. En effet, quand vous êtes en vadrouille, sans courant, et que vous faites de la bureautique, vous utilisez l’IGP Intel. Mais quand vous avez besoin de jouer à Crysis ou bosser avec 3DS max, vous pouvez basculer sur la carte Nvidia qui est plus performante. J’ai une Nvidia 310M elle est déjà deux fois plus rapide que l’IGP pour le travail 3D. J’ai remarqué bizarrement que Optimus n’était pas utilisé sur les machines avec des cartes Nvidia de gros gabarit. Cela briderait-il les performances ? j’en suis presque sûr …

            +

            La partie matériel

            +

            Concrètement comment fait-on pour basculer d’une carte à l’autre au niveau matos? comment est-ce câblé ? vous allez me répondre comme ça :

            +

            Les sorties vidéos de l’IGP et de la carte Nvidia sont câblées sur l’entrée du moniteur et les sorties VGA et DisplayPort ou HDMI. Pour pouvoir basculer de l’un à l’autre on utilise des petits switchs (Mux sur le shéma) avec 2 entrées et une sortie qui font basculer la sortie vidéo sur l’IGP ou la carte Nvidia. Cette solution N’EST PAS celle choisie pour la technologie Optimus mais celle utilisée par « switchable graphics ». Nvidia explique que cette solution n’est pas viable pour plusieurs raisons. La première est que le temps de bascule est super long car il faut basculer les sorties puis dire au système de changer de driver d’affichage donc un temps de 5 à 10 secondes de bascule. Deuxième raison, le système n’est pas automatique, l’utilisateur doit sélectionner la carte voulue avant de lancer le jeux (perso, je préfère cette façon de faire, au moins on est maître de notre matos #geekpowa). Et la dernière qui n’est pas des moindres, le design de la carte mère se complique puisque l’on doit avoir un double câblage pour chaque sortie vidéo, sans compter les fils de commandes pour les switchs. Cela entraîne un coût supplémentaire pour les constructeurs.

            +

            Mais alors comment est fait Optimus ?

            +

            Avec Optimus, il n’y a pas de liaison entre la carte Nvidia et l’écran ou les sorties vidéos. L’image de sortie transite via le bus PCI-Express, puis elle est transmise à l’IGP Intel qui se charge uniquement de l’affichage. Au niveau hardware, la carte Nvidia est uniquement connectée au PCI-Express et rien d’autre.

            +

            Cela permet de ne pas avoir à faire de câblage supplémentaire pour la carte Nvidia, cela facilite donc l’intégration de ce composant pour les constructeurs. Nvidia vend ainsi des GPU Nvidia sur la plateforme Intel Core iX, des machines qui n’en ont pas forcement besoin. Les PC équipés de Optimus se voient badgés d’un super logo et d’une carte graphique plus performante que l’IGP Intel, le consommateur (moi) tombe dans le piège et se dit pourquoi pas ?

            +

            La partie logiciel

            +

            Mais alors comment le GPU Nvidia est-il utilisé ? Optimus fonctionne via des drivers un peu spéciaux qui sont différents de ceux que vous pouvez installer d’habitude quand vous utilisez une carte graphique classique, que ce soit sur un portable ou un fixe. Dans le cas classique, le driver est chargé par l’OS qui envoie les traitements à faire puis le GPU fait le traitement et renvoie tout le rendu sur l’écran. Pour Optimus il n’y a plus l’intervention d’une seule carte, donc d’un driver, mais deux cartes, donc deux drivers, celui de Intel et celui de Nvidia. Quand vous êtes en utilisation bureautique vous n’avez pas besoin d’une carte puissante donc l’IGP peut s’en charger tout seul, ici grâce à Optimus la carte Nvidia est complètement éteinte. Maintenant vous lancez un jeux vidéo, l’IGP Intel est toujours actif et continu à gérer l’écran mais c’est là qu’intervient Optimus. Il réveille la carte Nvidia et c’est elle qui va gérer le rendu du jeux video. C’est là que ça devient drôle, le driver bidouillé Optimus va détecter via une liste d’application prédéfinie par Nvidia (que l’on peut modifier) le jeux que vous venez de lancer. Ensuite, avec une super bidouille de l’API Microsoft DirectX, le jeux va tourner sur la carte Nvidia et les images de sortie seront copiées/collées via le bus pci-express dans le framebuffer de l’IGP Intel qui se chargera uniquement de les afficher. Optimus s’appuie entièrement sur DirectX et la couche Windows pour gérer l’execution des programmes 3D car il faut gérer une « session » DirectX dans chaque GPU. L’utilisation de la carte Nvidia sur un OS Linux ou BSD est donc pour l’instant impossible car Nvidia ne fournit pas de driver Optimus. Et plus grave, cela est dû au fait que l’environnement Xorg ne permet pas de charger deux drivers différents en même temps. La solution possible serait d’utiliser Wayland à la place de Xorg, c’est le cas de la version 11.04 de Ubuntu(en beta). Il faudrait alors développer un driver se basant sur OpenGL gérant IGP et le GPU Nvidia.

            +

            Sur la partie gauche du schéma, c’est le cas où le GPU est complètement éteint, le gain en autonomie est donc important. L’autre phase active le GPU Nvidia qui va traiter la 3D d’une application, mais l’IGP Intel reste actif pour permettre l’affichage sur l’écran.

            +

            Performance et fiabilité

            +

            Pour ce qui est des performances graphiques dans un environnement jeux vidéo j’ai essayé d’utiliser 3DMark Vantage, pourquoi je vous dis essayer car il m’a été impossible de réaliser une passe de test complet avec l’IGP Intel. Dans tous les cas, j’ai 3DMark qui plantait même après avoir mis à jour les drivers. J’avais l’erreur « Device Removed » à chaque fois, en somme crash du driver. En utilisant la carte Nvidia, j’ai réussi à faire une passe et j’ai eu un résultat de 822 points, ce qui est dans la moyenne pour une 310M. Le site NotebookCheck.com donne des résultats similaires pour la carte Nvidia, et pour l’IGP Intel HD Graphics, il indique un score de 200 points en moyenne, donc lorsque la carte Nvidia est activée, le calcul 3D sera en moyenne quatre fois plus rapide. Comme je le supposais plus haut vu l’écart peu important entre mes résultats et ceux fournit par NotebookCheck, il est impossible de savoir si la latence induite par la recopie via le bus PCI-Express impacte les performances. Pour le prouver, il faudrait prendre une machine avec une carte plus puissante puis faire des tests dans des conditions identiques pour comparer avec une autre machine sans Optimus ayant la même carte.

            +

            Versions des drivers pendant mes tests :

            +
              +
            • version intel 8.15.10.2202 puis MAJ en 8.15.10.2342 depuis Intel Download Center
            • +
            • version nvidia 8.17.12.5964 pilote 259.64 puis MAJ en 8.17.12.7061 pilote 270.61 depuis Nvidia
            • +
            +

            Après certains tests impossibles à réaliser, je me suis rendu compte qu’Optimus posait problème. Mais cela ne s’arrête pas là, et j’ai eu quelques surprises avec des petits utilitaires que j’ai pour habitude d’utiliser pour faire du monitoring. Ma panoplie est constituée de CPU-Z, OCCT, GPU-Z, NvidiaInspector et des gadgets GPUObserver et IntelCoreSeries. Je n’ai pas démonté toutes ces applications, mais elles utilisent toutes l’API du driver Nvidia pour aller récupérer différentes informations tel que la température, les fréquences, les tensions, l’occupation mémoire et la vitesse de ventilation. Avec Optimus, quand la carte Nvidia est inutilisée, elle est complètement éteinte, donc comment faire pour récupérer la température ? Je pensais que l’API du driver allait le gérer et renvoyer une température bidon style 0°C ou alors renvoyer une exception particulière. Mais pas du tout, l’API est toute pourrie et quand on lui demande quelque chose elle le fait, concrètement quand un gadget ou une application de monitoring demande la température, l’api réveille la carte Nvidia, récupère la temp et éteint le GPU. Cette opération est répétée toutes les 5 secondes environ en fonction des softs et gadget. J’ai mis un certain temps avant de comprendre car il faillait trouver le moyen de connaitre l’état réel du GPU Nvidia. Pour cela, j’ai trouvé les outils presse de Nvidia(j’ai bien galéré pour les trouver). GPUObserver est donc inutilisable car cela réveille le GPU pour rien, donc vous perdez en autonomie. Pour GPU-Z, il plante lamentablement si la carte Nvidia est éteinte. Pour OCCT, il y a un bug d’affichage: l’animation ne s’affiche pas, et reste figée, j’ai l’impression que l’histoire de copie de framebuffer merde.

            +

            Nvidia explique que son driver choisit, lorsqu’une application est lancée, si la carte Nvidia est activée, grâce à une liste, celle-ci étant mis à jour via internet de façon automatique. Cela marche plutôt bien pour tout ce qui est jeux vidéos et applications 3D mais on peut toujours éditer les profils depuis le panel Nvidia. Certains profils sont un peu inutile, par défaut Flash Player déclenche la carte Nvidia ainsi que la lecture de vidéo HD alors que le chipset Intel en est parfaitement capable.

            +

            Il y a aussi un manque de sécurité car quand une application tourne sur la carte Nvidia, si on désactive celle-ci via le gestionnaire de périphériques, il n’y a pas de message d’erreur. L’application plante lamentablement.

            +

            Autonomie

            +

            Je vais enfin pouvoir parler des quelques points positifs de la technologie Optimus. Le gain en autonomie est juste impressionnant, il est presque doublé quand la carte Nvidia est inactive (state OFF), j’atteins 7 heures en utilisation bureautique. La transparence d’utilisation de la carte Nvidia est plutôt bien gérée et c’est instantané. La carte Nvidia est vraiment complètement éteinte quand elle n’est pas utilisée. J’ai remarqué un truc fun à ne pas faire, ne pas désactiver ou désinstaller la carte Nvidia depuis le gestionnaire de périphérique Windows car sinon la carte repasse sous gestion BIOS et celui-ci la réactive et la laisse dans un état indéterminé (mon autonomie est divisée par 2).

            +

            Astuces

            +
              +
            • Pour savoir si la carte Nvidia est utilisée par une application vous pouvez activer une icône spéciale dans la zone de notification. Pour cela ouvrir le control panel Nvidia puis dans le menu déroulant « Bureau » cocher « Afficher l’icône d’activité du processeur graphique (…) ».
            • +
            • Quand vous voulez lancer une application de monitoring ou d’information système qui plante quand la carte Nvidia est off, il suffit de lancer une application qui va la réveiller, un jeux vidéo par exemple puis ensuite de lancer le logiciel en question.
            • +
            • Quand vous cliquez droit sur une application, vous pouvez choisir dans le menu contextuel quelle carte va être utilisée. (Option à activer dans « Bureau »)
            • +
            • Désactiver complètement la carte Nvidia sous Linux.
            • +
            +

            Conclusion

            +

            Après plusieurs jours de tests, lectures et recherches de documentations, ainsi que quelques échanges peu intéressant avec @NvidiaOptimus. Je déconseille fortement les pc badgés optimus car la carte Nvidia est actuellement INUTILISABLE sous linux ou BSD sauf quelques exceptions qui disposent en plus de la technologie Switchable Graphics. J’ai lu au passage le test de Pc Inpact qui donne une bonne note. Je ne sais pas s’ils ont pris en compte le non support total sous linux et tous les petits problèmes de bord. Cela place Optimus au rang de technologie en beta test, pourtant présente depuis presque 2 ans sur le marché. Au final, c’est nous les gentils clients qui sommes beta-testeurs. Si vous cherchez à acheter un pc portable avec une carte graphique potable je vous recommande de prendre une Radeon puisque AMD a ouvert ses spécifications technique à la communauté.

            +

            +
            +
            +
            +
            +
            Catégories : HardwareLogiciels
            +
            +
            +
            + + + + + + + + + +
            +
            +
            +
            +
            +
            +
            +

            + 3 commentaires

            +
            + +
            +
            +
            +
            +

            + Calcifer + · 4 mai 2011 à 16 h 05 min +

            +

            Tu m’en aura donné du fil à retordre pour corriger ton article :P

            +

            Article très intéressant, merci pour les informations ;)

            + +
            +
            + +
            + +
            +
            +
            +
            +

            + Randall Flagg + · 12 août 2011 à 12 h 15 min +

            +

            salut hugo, j’avais pas vu ton site et cet article est vraiment bien foutu, et très informatif :)
            +GG!

            + +
            +
            +
              +
              + +
              +
              +
              +
              +

              + HugoPoi + · 13 août 2011 à 23 h 25 min +

              +

              Merci, j’espère continuer comme ça ;)

              + +
              +
              + +
            + +
            +
            +
            +

            Répondre à Calcifer Annuler la réponse

            Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

            +
            +
            +

            + +

            +
            +
            +
            +
            +
            +
            + +
            +
            +
            +
            +
            +
            + + +
            + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/24a5c0f2a28bafee305b9df2cf4b5e2fe6213aaa.00000839.html b/www/.content.EZtzwPjb/html/24a5c0f2a28bafee305b9df2cf4b5e2fe6213aaa.00000839.html new file mode 100644 index 0000000..ad0138e --- /dev/null +++ b/www/.content.EZtzwPjb/html/24a5c0f2a28bafee305b9df2cf4b5e2fe6213aaa.00000839.html @@ -0,0 +1,55 @@ + + + +Script + + + + \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/24f9075cd43b44ac2a5902826a707dc643c34178.00000294.html b/www/.content.EZtzwPjb/html/24f9075cd43b44ac2a5902826a707dc643c34178.00000294.html new file mode 100644 index 0000000..f276b24 --- /dev/null +++ b/www/.content.EZtzwPjb/html/24f9075cd43b44ac2a5902826a707dc643c34178.00000294.html @@ -0,0 +1,379 @@ + + + + + + + Dossiers – Page 4 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
            +
            +
            +
            + +
            +
            +
            +
            +
            +

            Préparation Migration

            Après réception de ma freebox revolution et son switch gigabit il est temps de s’occuper de mon home serveur :

            +

            Windows est facile mais chiant pour certains trucs… Trop de contraintes pour un usage à la maison et oui je suis sûr que certain vont troller car chez moi j’ai un serveur avec comme OS Windows Server 2008 R2. Mais pourquoi Windows Server? Première raison, tous les postes à la maison sont sous windows 7 (pour jouer c’est mieux ;). Deuxième raison, j’avais envie de me faire la main sur 2008 avec son lot de nouveautés dont la gestion des machines virtuelles VM qui est très pratique. Mais c’est vraiment trop lourd comme OS, il faut 10 minutes pour installer un service style DNS et la majorité des services réseaux ont besoin de Active Directory pour fonctionner. Dès que j’ai installé AD, ça a foutu la merde partout sur les trucs déjà configurés donc je suis retourné en arrière. Aussi IIS c’est un peu la foire pour trouver un paramètre donc je préfère utiliser un Apache. (suite…)

            +
            Par HugoPoi, il y a

            IPv6 – Intro

            Etant donné la proche pénurie d’adresse IP v4, plus que 5% seraient disponible sur le réseau public qu’est Internet, je vais faire un dossier qui parlera d’IP v6. Dans ce dossier, je vais vous faire des tutoriels, des RFC et des découvertes. (suite…)

            +
            +
            +
            + +
            +
            +
            +
            + +
            +
            + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/252026af601631ff3e63d0240ca99a02ca943126.00000051.html b/www/.content.EZtzwPjb/html/252026af601631ff3e63d0240ca99a02ca943126.00000051.html new file mode 100644 index 0000000..b72528e --- /dev/null +++ b/www/.content.EZtzwPjb/html/252026af601631ff3e63d0240ca99a02ca943126.00000051.html @@ -0,0 +1,532 @@ + + + + + + + + Stockage numérique pour tous – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
            +
            +
            +
            + +
            +
            +
            +
            +
            +
            +

            Ce blog parle très technique comme en témoigne mon dernier article mais aujourd’hui je vais faire un petit topo sur les disques-dur ou plutôt le stockage de vos données numériques en général. Dans cet article je vais m’adresser à tout le monde de papi-geek à tante-photo et pas uniquement à tous les geeks.

            +

            Je me suis aperçu, dans mon entourage proche mais aussi sur des forums ou je traîne parfois, que beaucoup n’ont aucune notion sur comment est stockée l’information sur nos ordinateurs et ce qu’il y a dans un disque USB que l’on achète à la Fnac pour ne citer que ces abrutis.

            +

            Retour en arrière, le fameux disque-dur que tout le monde utilise (peut-être sans le savoir) a été inventé en 1953 par IBM. Les premiers modèles avaient une capacité de quelques mégaoctets pour un prix de 10 000$. Aujourd’hui, il existe des modèles allant jusqu’à plus de 2 Téraoctets de capacité soit un million de fois plus.

            +

            Le disque-dur stocke les informations de façon magnétique sur des plateaux qui ressemblent à des CDs qui sont en rotation. Des petits bras viennent se positionner au dessus des disques pour écrire/lire les informations. ça ressemble à cela :

            +

            +

            et l’intérieur c’est comme cela :

            +

            +

            Mais comment est branché ce truc ?

            +

            Par deux connecteurs: l’alimentation(à droite) et le câble de données (à gauche).

            +

            +

            Vos photos de famille, vos documents textuels, de la musique et des vidéos, tous ces fichiers sont stockés sur votre disque-dur qui lui est connecté à votre ordinateur grâce à une interface qui se nomme SATA ou Serial ATA (si votre ordinateur a moins de 5 ans sinon c’est de l’IDE). Le disque qui est dans votre ordinateur est le même que celui dans vos disques-dur externes USB, c’est juste que le disque externe contient une petite carte qui convertit le signal SATA en USB.

            +

            Qui utilise ça ?

            +

            Tout le monde, vous lecteurs, l’ordinateur que vous êtes en train d’utiliser pour lire cet article a de très grandes chance d’utiliser un disque-dur pour stocker les informations dont il a besoin pour fonctionner. Votre système d’exploitation Windows, Mac OSX ou encore Ubuntu, Debian mais aussi vos programmes comme le navigateur internet que vous utilisez Mozilla Firefox, Internet Explorer, Safari, Chrome ; et pour finir vos données personnelles.

            +

            Mais aussi les sociétés comme Google et Facebook, pour stocker vos profils grâce à des armoire à disques SAN (Storage Area Network).

            +

            +

            La majorité des données d’Internet sont stockées sur des millions de disques-dur ! C’est pour ça que l’expression Cloud Computing me fait bien marrer parce qu’un nuage ça produit pas de CO2, à comparer avec un petit milliard de disques-dur pour héberger le « cloud ».

            +

            Acheter un disque-dur externe en france :

            +

            Alors vous ne le savez peut-être pas, mais quand vous achetez un disque-dur externe dans le commerce, vous payez une taxe spéciale dessus, la taxe de copie privée. En résumé, c’est une taxe qui vous donne le droit de mettre le mp3 que vous achetez sur votre baladeur. Cette taxe est reversée à certains artistes et surtout aux majors ( Sacem et compagnie), elle représente 20€ pour un disque-dur externe de 1 To. Le montant total reversé aux ayants droits a été de 762 Million d’ euros pour 2009. Pour éviter de payer cette taxe de merde suivez le guide ci-dessous.

            +

            Faire son disque dur externe soit même, c’est pas dur !

            +

            Eh oui le gros #fail de la taxe pour copie privée c’est qu’elle se base sur un prix par Go donc pas applicable sur des boitiers sans disque. Donc comme les disques-dur nus ne sont pas concernés par cette taxe, vous pouvez acheter un boitier externe sans disque et le disque de la capacité que vous voulez à part. Vous assemblez les deux avec vos mains et un tournevis #DIY. Pour acheter un boitier externe sans disque il y en a sur ldlc.com pour tous les prix et aussi multimedia. Les critères sont la connectique (USB 3.0, e-SATA, HDMI, …) prenez systématiquement de l’interface SATA interne et vous pouvez faire une petite recherche sur internet pour trouver un petit test du boitier (ex : « ICY BOX IB-290STUS-B test« ). Pour le disque-dur il y a plein de références sur ldlc.com . Préférez les modèles de dernières génération qui auront de bien meilleures performances. Attention au format du disque puisque qu’il y a deux tailles différentes: les 3.5 pouces qui sont pour PC fixe et les 2.5 pouces pour ordinateurs portables. Voilà vous êtes près pour acheter ! Si vous voulez des conseils : commentaires, twitter, facebook … ;)

            +

            What is Next ?

            +

            Maintenant que vous savez presque tout sur les disques-dur, il va falloir oublier puis se pencher sur les nouvelles technologies qui vont le remplacer. Cette nouvelle techno, c’est le SSD ou Solid State Disk en gros c’est de la mémoire flash, celle qu’il y a dans vos petites clés USB ou cartes mémoires, sauf que celle-ci est plus rapide et de plus grande capacité. Et c’est déjà en vente sur internet depuis 2 ans environ, c’est maintenant disponible à des tarifs accessibles, et je vous parie que ça va faire fureur dans les prochains arrivages de la Fnac dans quelques mois.

            +
            +
            +
            + +
            +
            + + + + + + + + + +
            +
            +
            +
            +
            +
            +
            +

            + 2 commentaires

            +
            +
            +

            + Tweets that mention Stockage numérique pour tous | HugoPoi -- Topsy.com + · 26 janvier 2011 à 23 h 58 min +

            +

            […] This post was mentioned on Twitter by HugoPoi, HugoPoi. HugoPoi said: [blog] Stockage numérique http://bim.im/wN […]

            + +
            +
            + +
            +
            +

            + Vos données sauvegardées | HugoPoi + · 10 décembre 2011 à 1 h 00 min +

            +

            […] même le faire, vous pouvez récupérer les disques-dur que vous possédez déjà, vous pouvez démonter vos disques-dur externes et les placer dans un NAS.(Le Netgear Stora est trouvable pour 70€) Moi, j’ai opté pour […]

            + +
            +
            + +
            +
            +
            +

            Laisser un commentaire

            Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

            +
            +
            +

            + +

            +
            +
            +
            +
            +
            +
            + +
            +
            +
            +
            +
            +
            + + +
            + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/255390c69aa589883990577d8bd3a67ca1836c78.00000356.html b/www/.content.EZtzwPjb/html/255390c69aa589883990577d8bd3a67ca1836c78.00000356.html new file mode 100644 index 0000000..79ecf7f --- /dev/null +++ b/www/.content.EZtzwPjb/html/255390c69aa589883990577d8bd3a67ca1836c78.00000356.html @@ -0,0 +1,371 @@ + + + + + + + cadeau – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
            +
            +
            +
            + +
            +
            +
            +
            +
            +

            Liste de Noël

            Comme presque tout le monde, je cède à la magie de noël, le plus grand coup marketing des deux derniers millénaires pour nous faire dépenser notre argent. Alors comme j’ai beaucoup de chance, je viens d’avoir un accident avec ma voiture, ça tombe à pique pour le mois de décembre. Heureusement, je vais pouvoir la réparer DIY pour pas trop chère. Je ne sais pas si des opérations de ce type sont en cours mais je me disais que l’on pourrais m’offrir une carte cadeau ou un bon d’achat dans une casse auto pour y acheter les pièces dont j’ai besoin (Je cherche : un capot violet, une traverse frontale et 2 phares complets pour Twingo 1gen). Après ce moment de rigolade déception je vous donne ci-dessous ma liste de noël. Elle est destinée à mes lecteurs généreux, ma famille, amis et autres donateurs qui sont les bienvenus. Je préviens c’est un peu plus qu’une liste de noël puisque je vais y mettre tous les truc fun, gadgets super high-tech dernier cri et super pc de la mort qui tue. Par contre il n’y aura pas d’objet Apple donc les fanboys de la pomme vous pouvez aller profiter de votre temps libre sur Apple.com. (suite…)

            +
            +
            + +
            +
            +
            +
            + +
            +
            + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/2565fb63d7170d6744d2a2e5d4f1391d60a9a0c6.00000276.html b/www/.content.EZtzwPjb/html/2565fb63d7170d6744d2a2e5d4f1391d60a9a0c6.00000276.html new file mode 100644 index 0000000..3922c2f --- /dev/null +++ b/www/.content.EZtzwPjb/html/2565fb63d7170d6744d2a2e5d4f1391d60a9a0c6.00000276.html @@ -0,0 +1,410 @@ + + + + + + + HugoPoi – Page 9 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
            +
            +
            +
            + +
            +
            +
            +
            +
            +

            Plugin WordPress

            Cela va faire plus d’un mois que j’ai ouvert mon blog, j’ai donc pu prendre en main le CMS WordPress. Alors je vais faire un petit retour sur les plugins que j’ai trouvés et plus particulièrement ceux que j’utilise.

            +

            Dans la catégorie Décoration j’ai adopté :

            +

            TweetMeme Retweet Button

            +

            Ajoute un joli bouton TweetMeme pour RT mes articles.

            +

            TwitterWidget

            +

            Ajoute un Widget qui permet d’afficher ma Timeline Twitter sur la sidebar du blog.

            +

            Contact Form 7

            +

            Permet de créer des formulaires de contact, c’est simple et sobre. Je l’ai utilisé pour ma page contact.

            +

            Dans la catégorie Administration et Maintenance :

            +

            WP Maintenance Mode

            +

            Cette extension permet de passer le blog en mode maintenance, avec la possibilité de personnaliser la page affichée et elle dispose d’un compte à rebours.

            +

            (suite…)

            +
            Par HugoPoi, il y a

            Cloud Computing

            Dans les nouvelles TPME, PME et autres entreprises un peu plus grandes, il y a un nouveau phénomène qui se met doucement en place: le Cloud Computing. C’est quoi ce truc ? C’est une nouvelle façon de gérer son infrastructure de S.I. en entreprise. Avant, quand on voulait avoir un Lire la suite…

            +

            Download-Day

            Bon voilà, je vais officialiser ma participation au D-Day organisé par LinuxManua, en date du 1er novembre 2010. Le but de l’opération étant de télécharger 20 Go et cela uniquement sur les réseaux Peer to Peer de préférence pas anonyme : Edonkey2000, Gnutella, Bitorrent, etc. Alors comme je suis joueur, je Lire la suite…

            +

            Trolling

            Apple New MacBook Air

            +

            J’avais envie de me défouler un peu donc je vais troller sur la sortie du nouveau MacBook Air. Alors oui il est beau, il est léger, la finition est nikel Chrome. Mais c’est du Apple donc c’est cher le prix d’entrée est de 999€ ouch ! pour la version 11 pouces … (suite…)

            +
            Par HugoPoi, il y a
            +
            +
            + +
            +
            +
            +
            + +
            +
            + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/25d316291efbcdb4d90ea78e0aa589d6680096fe.00000184.html b/www/.content.EZtzwPjb/html/25d316291efbcdb4d90ea78e0aa589d6680096fe.00000184.html new file mode 100644 index 0000000..15a2c62 --- /dev/null +++ b/www/.content.EZtzwPjb/html/25d316291efbcdb4d90ea78e0aa589d6680096fe.00000184.html @@ -0,0 +1,318 @@ + + + + + + + + Sony VPL-CX5 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
            +
            +
            +
            +
            +
            +
            +
            + + + +

            +
            +
            +
            +
            +

            + 0 commentaire

            +
            +
            +
            +

            Laisser un commentaire

            Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

            +
            +
            +

            + +

            +
            +
            +
            +
            +
            +
            +
            +
            +
            +
            +
            +
            +
            + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/2670a62651d409b6f44ede009dc27f90175fb39e.00000749.css b/www/.content.EZtzwPjb/html/2670a62651d409b6f44ede009dc27f90175fb39e.00000749.css new file mode 100644 index 0000000..cc58ce7 --- /dev/null +++ b/www/.content.EZtzwPjb/html/2670a62651d409b6f44ede009dc27f90175fb39e.00000749.css @@ -0,0 +1 @@ +.carousel .hestia-title{font-size:67px}.carousel span.sub-title{font-size:18px}@media (max-width:768px){.carousel .hestia-title,h1.hestia-title{font-size:36px}.page-header.header-small .hestia-title,.page-header.header-small .title{font-size:26px}}h2.hestia-title,h2.title{font-size:37px}@media (max-width:768px){h2.hestia-title,h2.title{font-size:24px}}.woocommerce .exclusive-products h2,.woocommerce .related.products h2,.woocommerce div.product .product_title{font-size:32px}@media (max-width:768px){.woocommerce .exclusive-products h2,.woocommerce .related.products h2,.woocommerce div.product .product_title{font-size:24px}}#comments .hestia-title,.subscribe-line h3.hestia-title,.woocommerce .comment-reply-title,.woocommerce-cart .blog-post h1.hestia-title,.woocommerce-checkout .blog-post h1.hestia-title{font-size:27px}h5.description,h5.subscribe-description{font-size:18px}.subscribe-line .description{font-size:14px}.woocommerce-cart .blog-post h1.hestia-title,.woocommerce-checkout .blog-post h1.hestia-title{font-size:27px}.hestia-work .card-title,.woocommerce .cart-collaterals h2,.woocommerce .cross-sells h2,.woocommerce-checkout .blog-post .section form.woocommerce-checkout h3:not(#ship-to-different-address),.woocommerce.single-product .summary .price{font-size:23px}.footer .widget h5,.hestia-info h4.info-title,h4.card-title,section.contactus h4.hestia-title{font-size:18px}.archive .card-blog .card-title,.blog .card-blog .card-title,.blog .hestia-blog-featured-card .card-title{font-size:25px}h6.category{font-size:12px}.card-description,.woocommerce .product .card-product .card-description p,.woocommerce.single-product .woocommerce-product-details__short-description,section.pricing p.text-gray{font-size:14px}.hestia-features .hestia-info p{font-size:16px}.hestia-title.title-in-content,.page-content-wrap h1,.single-post-wrap h1,h1{font-size:42px}@media (max-width:768px){.hestia-title.title-in-content{font-size:36px}}.page-content-wrap h2,.single-post-wrap h2,h2{font-size:37px}.page-content-wrap h3,.single-post-wrap h3,h3{font-size:32px}.page-content-wrap h4,.single-post-wrap h4,h4{font-size:27px}.page-content-wrap h5,.single-post-wrap h5,h5{font-size:23px}.page-content-wrap h6,.single-post-wrap h6,h6{font-size:18px}@media (max-width:768px){.page-content-wrap h1,.page-template-template-fullwidth article h1,.single-post-wrap h1,h1{font-size:30px}.page-content-wrap h2,.page-template-template-fullwidth article h2,.single-post-wrap h2,h2{font-size:28px}.page-content-wrap h3,.page-template-template-fullwidth article h3,.single-post-wrap h3,h3{font-size:24px}.page-content-wrap h4,.page-template-template-fullwidth article h4,.single-post-wrap h4,h4{font-size:22px}.page-content-wrap h5,.page-template-template-fullwidth article h5,.single-post-wrap h5,h5{font-size:20px}.page-content-wrap h6,.page-template-template-fullwidth article h6,.single-post-wrap h6,h6{font-size:18px}}.page-content-wrap,.page-content-wrap dl,.page-content-wrap ol,.page-content-wrap table,.page-content-wrap ul,.page-template-template-fullwidth article,.page-template-template-fullwidth article dl,.page-template-template-fullwidth article ol,.page-template-template-fullwidth article table,.page-template-template-fullwidth article ul,.single-post-wrap,.single-post-wrap dl,.single-post-wrap ol,.single-post-wrap table,.single-post-wrap ul{font-size:18px}@media (max-width:768px){.page-content-wrap,.page-content-wrap dl,.page-content-wrap ol,.page-content-wrap table,.page-content-wrap ul,.page-template-template-fullwidth article,.page-template-template-fullwidth article dl,.page-template-template-fullwidth article ol,.page-template-template-fullwidth article table,.page-template-template-fullwidth article ul,.single-post-wrap,.single-post-wrap dl,.single-post-wrap ol,.single-post-wrap table,.single-post-wrap ul{font-size:16px}}body{font-size:14px}.navbar a{font-size:12px} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/267558b1ec8c35cd06a3553633a9266f466ce9b1.00000428.html b/www/.content.EZtzwPjb/html/267558b1ec8c35cd06a3553633a9266f466ce9b1.00000428.html new file mode 100644 index 0000000..2116818 --- /dev/null +++ b/www/.content.EZtzwPjb/html/267558b1ec8c35cd06a3553633a9266f466ce9b1.00000428.html @@ -0,0 +1,369 @@ + + + + + + + internet – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
            +
            +
            +
            + +
            +
            +
            +
            +
            +
            +
            + +
            +
            +
            +
            + +
            +
            + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/26e8e344a3024ff003e7b2155f31dc86f5f3f619.00000216.xml b/www/.content.EZtzwPjb/html/26e8e344a3024ff003e7b2155f31dc86f5f3f619.00000216.xml new file mode 100644 index 0000000..488294b --- /dev/null +++ b/www/.content.EZtzwPjb/html/26e8e344a3024ff003e7b2155f31dc86f5f3f619.00000216.xml @@ -0,0 +1,17 @@ + + + Commentaires sur : Et si on faisait sans Twitch et sans Youtube + + http://blog.hugopoi.net/2015/10/24/et-si-on-faisait-sans-twitch-et-sans-youtube/ + Internet, Hardware et Bidouille + Fri, 20 Jan 2017 19:41:43 +0000 + hourly + 1 + https://wordpress.org/?v=4.7.2 + + diff --git a/www/.content.EZtzwPjb/html/273eec5213b5c80d6e8fe3c8486379a2cb3485da.00000354.html b/www/.content.EZtzwPjb/html/273eec5213b5c80d6e8fe3c8486379a2cb3485da.00000354.html new file mode 100644 index 0000000..8202c49 --- /dev/null +++ b/www/.content.EZtzwPjb/html/273eec5213b5c80d6e8fe3c8486379a2cb3485da.00000354.html @@ -0,0 +1,364 @@ + + + + + + + Bouygues – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
            +
            +
            +
            + +
            +
            +
            +
            +
            +
            +
            + +
            +
            +
            +
            + +
            +
            + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/27e026340aafa0e76b70b5221940d9e779661f3e.00000694.css b/www/.content.EZtzwPjb/html/27e026340aafa0e76b70b5221940d9e779661f3e.00000694.css new file mode 100644 index 0000000..20df2bb --- /dev/null +++ b/www/.content.EZtzwPjb/html/27e026340aafa0e76b70b5221940d9e779661f3e.00000694.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7 .screen-reader-response{position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);height:1px;width:1px;margin:0;padding:0;border:0}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{color:#f00;font-size:1em;display:block}.use-floating-validation-tip span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;border:1px +solid #f00;background:#fff;padding: .2em .8em}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/27efa97549f1c2807bcb3b6e618bbef863e76974.00000346.html b/www/.content.EZtzwPjb/html/27efa97549f1c2807bcb3b6e618bbef863e76974.00000346.html new file mode 100644 index 0000000..d0af372 --- /dev/null +++ b/www/.content.EZtzwPjb/html/27efa97549f1c2807bcb3b6e618bbef863e76974.00000346.html @@ -0,0 +1,364 @@ + + + + + + + backup – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
            +
            +
            +
            + +
            +
            +
            +
            +
            +
            +
            + +
            +
            +
            +
            + +
            +
            + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/282a6f22cf3204c5fbbb978cd519ba730064049a.00000378.xml b/www/.content.EZtzwPjb/html/282a6f22cf3204c5fbbb978cd519ba730064049a.00000378.xml new file mode 100644 index 0000000..2553182 --- /dev/null +++ b/www/.content.EZtzwPjb/html/282a6f22cf3204c5fbbb978cd519ba730064049a.00000378.xml @@ -0,0 +1,58 @@ + + + + HugoPoi » Debian + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Sat, 14 Sep 2013 23:01:40 +0000 + fr-FR + hourly + 1 + http://wordpress.org/?v=3.6 + + Redimensionner une partition NTFS + http://blog.hugopoi.net/2012/12/23/redimensionner-une-partition-ntfs/ + http://blog.hugopoi.net/2012/12/23/redimensionner-une-partition-ntfs/#comments + Sun, 23 Dec 2012 17:56:48 +0000 + HugoPoi + + + + + + + + + + http://blog.hugopoi.net/?p=685 + Lire la suite »

            ]]>
            + http://blog.hugopoi.net/2012/12/23/redimensionner-une-partition-ntfs/feed/ + 0 +
            + + Préparation Migration + http://blog.hugopoi.net/2011/02/16/preparation-migration/ + http://blog.hugopoi.net/2011/02/16/preparation-migration/#comments + Wed, 16 Feb 2011 17:38:39 +0000 + HugoPoi + + + + + + + http://blog.hugopoi.net/?p=321 + Lire la suite »

            ]]>
            + http://blog.hugopoi.net/2011/02/16/preparation-migration/feed/ + 0 +
            +
            +
            diff --git a/www/.content.EZtzwPjb/html/28ea5eecd856cf2c633ee93d78cb7724e72cae1b.00000580.css b/www/.content.EZtzwPjb/html/28ea5eecd856cf2c633ee93d78cb7724e72cae1b.00000580.css new file mode 100644 index 0000000..010b99c --- /dev/null +++ b/www/.content.EZtzwPjb/html/28ea5eecd856cf2c633ee93d78cb7724e72cae1b.00000580.css @@ -0,0 +1,111 @@ +div.wpcf7 .screen-reader-response { + position: absolute; + overflow: hidden; + clip: rect(1px, 1px, 1px, 1px); + height: 1px; + width: 1px; + margin: 0; + padding: 0; + border: 0; +} + +div.wpcf7-response-output { + margin: 2em 0.5em 1em; + padding: 0.2em 1em; + border: 2px solid #ff0000; +} + +div.wpcf7-mail-sent-ok { + border: 2px solid #398f14; +} + +div.wpcf7-mail-sent-ng, +div.wpcf7-aborted { + border: 2px solid #ff0000; +} + +div.wpcf7-spam-blocked { + border: 2px solid #ffa500; +} + +div.wpcf7-validation-errors, +div.wpcf7-acceptance-missing { + border: 2px solid #f7e700; +} + +.wpcf7-form-control-wrap { + position: relative; +} + +span.wpcf7-not-valid-tip { + color: #f00; + font-size: 1em; + font-weight: normal; + display: block; +} + +.use-floating-validation-tip span.wpcf7-not-valid-tip { + position: absolute; + top: 20%; + left: 20%; + z-index: 100; + border: 1px solid #ff0000; + background: #fff; + padding: .2em .8em; +} + +span.wpcf7-list-item { + display: inline-block; + margin: 0 0 0 1em; +} + +span.wpcf7-list-item-label::before, +span.wpcf7-list-item-label::after { + content: " "; +} + +.wpcf7-display-none { + display: none; +} + +div.wpcf7 .ajax-loader { + visibility: hidden; + display: inline-block; + background-image: url('../../images/ajax-loader.gif'); + width: 16px; + height: 16px; + border: none; + padding: 0; + margin: 0 0 0 4px; + vertical-align: middle; +} + +div.wpcf7 .ajax-loader.is-active { + visibility: visible; +} + +div.wpcf7 div.ajax-error { + display: none; +} + +div.wpcf7 .placeheld { + color: #888; +} + +div.wpcf7 input[type="file"] { + cursor: pointer; +} + +div.wpcf7 input[type="file"]:disabled { + cursor: default; +} + +div.wpcf7 .wpcf7-submit:disabled { + cursor: not-allowed; +} + +.wpcf7 input[type="url"], +.wpcf7 input[type="email"], +.wpcf7 input[type="tel"] { + direction: ltr; +} diff --git a/www/.content.EZtzwPjb/html/28fb36be56cdea193278be4e77e25d283cbdcdc4.00000070.html b/www/.content.EZtzwPjb/html/28fb36be56cdea193278be4e77e25d283cbdcdc4.00000070.html new file mode 100644 index 0000000..866249b --- /dev/null +++ b/www/.content.EZtzwPjb/html/28fb36be56cdea193278be4e77e25d283cbdcdc4.00000070.html @@ -0,0 +1,590 @@ + + + + + + + + Asus U36JC-RX260V – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
            +
            +
            +
            + +
            +
            +
            +
            +
            +
            +

            Depuis le temps que je voulais investir dans un pc portable, je l’ai enfin fait. Je cherchais une machine en complément de mon fixe avec comme premiers critères l’autonomie et un minimum de puissance. J’ai donc acheté un ultra-portable Asus, un chassie U36JC avec les caractéristiques suivantes :

            +
              +
            • Ecran 13,3″ 1366×768
            • +
            • Processeur Intel Core I5-480M
            • +
            • 4Go de Ram
            • +
            • Carte Graphique Intel HD2000 et Nvidia Geforce 310M (Optimus)
            • +
            • Batterie 8 cellules
            • +
            • Dimension 32.2 x 23.2 x 1.90 cm Poids 1,6 Kg avec batterie
            • +
            +

            Déballage

            +

            L’emballage est petit et contient le strict minimum, le pc et l’alimentation. Alors au niveau de l’équipement on a pour ce prix :

            +
              +
            • Wifi Intel AGN
            • +
            • Un disque-dur 640 Go Western Digital Scorpio Blue
            • +
            • Un port USB 3.0
            • +
            • et déception pas de bluetooth
            • +
            +

            L’écran est rétro-éclairé par LED, la luminosité minimum est très forte c’est un bon point par contre je trouve que les contrastes sont pâles et le rendu est un peu blanchâtre. La finition extérieure est bonne sans être excellente. L’autonomie est d’un peu moins de 5 heures en utilisation bureautique intensive web.

            +

            Optimus

            +

            Ce modèle dispose de la technologie Nvidia Optimus qui permet de switcher l’affichage entre le chipset graphique interne au processeur Intel et la carte Nvidia qui est sur le port PCI-Express de la carte mère. Cela permet en théorie de gagner en autonomie en utilisant le chip intel pour la bureautique et la carte Nvidia pour faire un peu de  jeux vidéo quand le pc est branché. J’ai testé et j’ai trouvé plusieurs points noirs concernant cette techno :

            +
              +
            • Ne fonctionne que sous Windows car le système est conçu à partir de cet OS
            • +
            • Quand je switch d’un chip à l’autre je ne peux pas savoir quel carte est réellement active #lol ou j’ai loupé un truc ?
            • +
            • Pour switcher il faut utiliser le logiciel Power4Gear d’Asus enfin je suppose car c’est uniquement par ce biais que j’ai réussi …
            • +
            +

            Je vais essayer de vous pondre un billet si je trouve des astuces permettant d’exploiter cette techno qui pour l’instant est un peu merdique. J’ai aussi remarqué un truc. Quand je suis sur le chip Intel, la carte Nvidia reste alimentée et monte en charge à environ 2-3%… bizarre !

            +

            Software

            +

            Un grand bravo à tout les éditeurs qui ont un partenariat avec Asus pour pré-installer toutes leur merdes sur les machines neuves. Cela me conforte dans l’idée que Windows est un OS poubelle, ou du moins les éditeurs font tout pour que ça le reste. Et tout ces pauvres gens qui subissent Microsoft et tout ces éditeurs. Bientôt on ne pourra plus choisir l’antivirus que l’on veut à moins de formater sa machine neuve. J’ai du passer environ deux bonnes heures pour dégager toutes les merdes qui étaient pré-installées.

            +

            Un petit merci à Asus pour tous ces logiciels avec des supers nom geek « fast boot », « Power4Gear », « virtual camera » mais dont la moitié est super impossible à utiliser ou même au début c’est tellement transparent qu’on ne sait pas vraiment à quoi ils servent vraiment. C’est l’impression que j’en ai eu.

            +

            L’aventure Cdiscount

            +

            J’ai eu de la « chance » et j’ai trouvé sur Cdiscount le modèle RX260V au prix de 680€ donc une affaire. C’était la première fois que je commandais chez Cdiscount, je soupçonnes des méthodes pas très catholique pour manipuler leurs clients. Sur la page du produit qui était une vente flash, il y avait le stock affiché en temps réel, et le nombre d’articles disponible est passé de 7 à 30 vers minuit le samedi du week-end durant lequel j’ai commandé. Je doute qu’il y ait eu un réapprovisionnement un samedi soir. Le délai de livraison est moyen, une semaine avec le mode de transport le moins cher. Et malgré avoir décoché les cases « recevoir nos offres promotionnelles » et compagnie, elles se sont re-cochées après la création de mon compte. J’ai reçu des mails assez intrusifs, car le site s’est rendu compte que je traquais un article, et m’ a envoyé plusieurs mails pour me dire « achetez, achetez, il y en aura plus après. »

            +

            Comme j’ai commandé avant le 14 mars j’étais éligible à l’offre promotionnelle -25% remboursé sur le rayon informatique. j’ai donc rempli le formulaire en ligne puis renvoyé le code barre de mon Asus. Cdiscount m’a confirmé (le 07/04/2011) seulement deux semaines après qu’il avait reçu mon dossier(reçu 24/03/2011), très réactif, pour me dire en plus que je recevrais mes bons d’achats dans un délai de 3 semaines ! (les emails c’est pire que la poste …) Donc 7+3*7=28, j’aurais 2 jours pour utiliser mon bon d’achat, c’est limite comme pratique non ?

            +

            Conclusion

            +

            Après relecture, mon article n’est pas très positif mais j’ai gardé le meilleur pour la fin. C’est mon premier PC portable, j’avais un peu peur qu’il soit plus lent que mon fixe mais il s’avère que non. En utilisation bureautique donc bon point, rapide à démarrer, sortir de veille. L’autonomie de 5h est un minimum, et pour 700 €, on a l’équivalent d’un netbook mais avec la puissance d’un notebook de base. L’équipement est complet pour ce niveau de prix mais j’aurais aimé avoir un port e-sata et du bluetooth pour qu’il soit top ! Sinon si on compare avec un Macbook air :

            +
              +
            1. Le processeur Core i5-480M vs Core 2 Duo Asus Win !
            2. +
            3. Carte Graphique Nvidia Geforce 310M vs 320M Apple Win :(
            4. +
            5. Poids 1,6 Kg vs 1,32 kg mais impossible de trouver le poids avec équipement comparable ? so ==
            6. +
            7. Taille 1.90 cm vs 1,7 cm Apple Win
            8. +
            9. Equipement USB3/VGA-HDMI/Eth1Gb vs 2USB/DP Apple FAIL
            10. +
            11. Easy Upgrade Batterie/Disque-dur/RAM vs ???? Asus Win
            12. +
            13. Et pour finir le prix 700€ sans SSD vs 1400€ donc même si je rajoute un putain de SSD à 300€ Asus MegaWin
            14. +
            +

            En résumé, ça fait  4 à 2, donc Apple peut aller se rhabiller avec ses MacBook air même pas foutu d’avoir un port Ethernet (et celui qui est vendu en option est 10/100 )

            +

             

            +

            Mince je me suis trompé d’image :

            +

            c'est pas un RX260V ...??...

            +
            +
            +
            +
            +
            Catégories : HardwareLogicielsTest
            +
            +
            +
            + + + + + + + + + +
            +
            +
            +
            +
            +
            +
            +

            + 4 commentaires

            +
            + +
            +
            +
            +
            +

            + Mikky + · 1 mai 2011 à 20 h 51 min +

            +

            Yop Hugo,
            +sache que lorsqu’on achète un pc portable faut le réinstaller comme ça tu peux dégager tout les merdes pré-installés car on peut choisir ceux qu’on veut intaller ;)

            +

            Bisous =)

            + +
            +
            + +
            + +
            +
            +
            +
            +

            + darkneo + · 28 mai 2011 à 17 h 21 min +

            +

            Par contre sur ce modèle je crois que l’accès au disque n’est pas possible sans ouvrir toute la coque!

            + +
            +
            + +
            +
            +

            + Optimus vs Mégatron | HugoPoi + · 5 mai 2011 à 2 h 00 min +

            +

            […] l’heureux acquéreur #oupas d’un pc portable avec technologie Optimus de Nvidia (voir Asus U36JC). Après quelques jours de recherches et de tests je vais essayer de vous faire un résumé […]

            + +
            +
            + +
            +
            +

            + Démontage Asus U36 | HugoPoi + · 31 juillet 2011 à 2 h 00 min +

            +

            […] acheté un petit SSD pour mettre dans mon U36 acheté il y a quelques mois, je n’ai pas trouvé de procédure de démontage sur Internet donc voici les photos de mon […]

            + +
            +
            + +
            +
            +
            +

            Répondre à Démontage Asus U36 | HugoPoi Annuler la réponse

            Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

            +
            +
            +

            + +

            +
            +
            +
            +
            +
            +
            + +
            +
            +
            +
            +
            +
            + + +
            + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/292b70ce8c30644a261e1a386dbcd75d4bd011ac.00000269.html b/www/.content.EZtzwPjb/html/292b70ce8c30644a261e1a386dbcd75d4bd011ac.00000269.html new file mode 100644 index 0000000..e7301ab --- /dev/null +++ b/www/.content.EZtzwPjb/html/292b70ce8c30644a261e1a386dbcd75d4bd011ac.00000269.html @@ -0,0 +1,371 @@ + + + + + + + Calcifer – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
            +
            +
            +
            + +
            +
            +
            +
            +
            +

            Présentation

            Un petit message pour remercier le créateur de ce blog de m’avoir intégré à son projet. Je suis là officiellement pour corriger les fautes d’orthographe, mais je vous annonce que j’en laisserais plusieurs par choix… officiellement ^^ Bonne lecture à tous et à bientôt !

            +
            Par Calcifer, il y a
            +
            + +
            +
            +
            +
            + +
            +
            + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/293b0274a34e770cfa803cd82da8b440891620f9.00000013.html b/www/.content.EZtzwPjb/html/293b0274a34e770cfa803cd82da8b440891620f9.00000013.html new file mode 100644 index 0000000..ce0f409 --- /dev/null +++ b/www/.content.EZtzwPjb/html/293b0274a34e770cfa803cd82da8b440891620f9.00000013.html @@ -0,0 +1,290 @@ + + + + + + Anonymat I2P, TOR et les VPN | HugoPoi + + + + + + + + + + + + + + + + + + + + + +
            +
            +
            +

            Anonymat I2P, TOR et les VPN

            + +
            +
            + +

            Intro

            +

            Mon Minitel à coté de (soon) mon Minitel 2.0

            +

            Suite aux articles de mon « confrère » Bluetouff, je voudrais apporter ma pierre à l’édifice anonymat sur internet. Cet article va donc parler de 2 concepts logiciels réseaux qui permettent de surfer de façon blindée sur Internet. Enfin pas tant que ça …

            +

            En premier lieu, je devais écrire cet article dans le but de vous donnez des conseils pour utiliser les réseaux anonymes, mais je suis rendu compte qu’il était urgent d’informer les gens sur les dangers que sont les VPN.

            +

            Suite à une conversation avec un ami (et même plusieurs), je leur disais que je téléchargeais sur le réseau Bitorrent. La grande question était : est-ce que tu utilises un VPN ? Je leur ai répondu que non. La première des raisons pour laquelle je n’utilise pas de VPN c’est que je n’ai pas d’argent. Aussi le fait que pour utiliser un VPN, il faut rediriger ses paquets ip, ils transitent donc par un tiers qui peut comme il le veut logger toutes vos connexions et trafics. Enfin si je suis une autorité qui veux écouter le trafic des gens (genre hadopi), bah j’ouvre un VPN « pas-hadopi.fr« , venez tous ici pour contourner hadopi, tout le monde il est beau, tout le monde il est gentil, voilà tous les pigeons dans mon filet. Pour dire aussi que le VPN c’est de l’anti-internet, cela revient à supprimer le plus grand intérêt d’internet, à savoir l’échange direct possible entre tous et publier, discuter de façon décentralisée. Ce qui m’inquiète le plus en ce moment, c’est cette nouvelle vague « cloud computing  » « web 3.0  » qui vient avec des périphériques qui ne servent à rien sans internet et des services hyper centralisés tel Facebook ou Youtube et Google. Je ne sais pas si les gens se rendent compte qu’ils mettent leurs vies entre les mains de sociétés privées dont ils n’ont que peu de contrôle.

            +

            Tor

            +

            The Onion Router, je vais pas écrire un roman sur le fonctionnement de ce système de routage anonymisant mais le principe est pas super compliqué. Au lieu de choisir d’acheminer votre trafic de façon la plus rapide et/ou la moins cher, ce réseau va acheminer votre trafic de façon aléatoire et cryptée. Attention le cryptage est présent qu’entre votre ordinateur et le dernier nœud, qui lui se connecte en clair sur le serveur que vous voulez atteindre. Donc il serait facile, comme tout le monde peut devenir nœud sur Tor, d’intercepter le trafic qui passe en clair quand on est le dernier maillon de la chaîne. Quand vous utilisez ce genre de service (TOR,I2P,VPN,Proxy,…) évitez d’aller vous connecter sur le site de votre banque. Et puis quel serait l’intérêt d’être anonyme si c’est pour vous identifier sur facebook, on marche sur la tête là non ?!

            +

            En surfant sur les pages du projet Tor, je suis tombé sur ça. Une page qui donne des retours d’expériences sur l’hébergement de nœuds relais pour Tor. Il est marrant de constater que les hébergeurs ne sont pas du tout fan de ce genre d’installation sur leur réseau. Cela montre que ce genre de système est suffisamment puissant pour faire peur, et permet d’effectuer sûrement des attaques ciblées de façon totalement anonyme.

            +

            I2P

            +

            Alors je vais être moins long sur l’explication du fonctionnement de I2P, ça rassemble beaucoup à Tor sauf que c’est plus orienté service et échange peer to peer. Vous pouvez lire cette page qui explique les différences entre les réseaux Tor et I2P.

            +
            + + +
            + + +
              +
            1. +
              + +
              +

              Yop Hugo, il est cool ton blog mais pour être tranquille avec HADOPI faut faire du wawa :)
              +Ca peut être une idée d’article :p

              +
              + +
              +
            2. +
            3. +
              + +
              +

              quote : « le VPN c’est de l’anti-internet, cela revient à supprimer le plus grand intérêt d’internet, à savoir l’échange direct possible entre tous »…
              +Un FTP sous SSL chez moi via mon VPN nordique va bien pour mes amis… Je ne comprends pas votre argument…
              +Une plus fine explication?
              +Merci.

              +
              + +
              + +
            4. +
            5. +
              + +
              +

              pour 4.90 euros par mois j utilise http://www.vpn-discount.com qui me procure une grande satisfaction au niveau fiabilite,securite,rapidite et surete….un super vpn

              +
              + +
              +
                +
              • +
                + +
                +

                tu ne peux pas vérifier si il log tes connexions … Mais bon si il est à l’étranger ça limite le traçage :)

                +
                + +
                +
              • +
              +
            6. +
            + +
            +

            Répondre à Mickael ¬
            Annuler la réponse

            +
            +

            + +

            +

            NOTE - Vous pouvez utiliser les éléments et attributs HTML tags and attributes:
            <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>

            +

            + +

            +
            +
            +
            +
            + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/29cd2218ae80b6a5244f986933f7b435b6397e86.00000028.xml b/www/.content.EZtzwPjb/html/29cd2218ae80b6a5244f986933f7b435b6397e86.00000028.xml new file mode 100644 index 0000000..ee14eac --- /dev/null +++ b/www/.content.EZtzwPjb/html/29cd2218ae80b6a5244f986933f7b435b6397e86.00000028.xml @@ -0,0 +1,123 @@ + + + Commentaires sur : GET to POST + + http://blog.hugopoi.net/2010/12/07/get-to-post/ + Internet, Hardware et Bidouille + Mon, 22 Aug 2016 14:09:10 +0000 + hourly + 1 + https://wordpress.org/?v=4.6.1 + + Par : Gab Wink + http://blog.hugopoi.net/2010/12/07/get-to-post/#comment-7326 + + Thu, 12 Feb 2015 23:06:15 +0000 + http://blog.hugopoi.net/?p=197#comment-7326 + + Merci, ceci m’a été utile (et c’est toujours cool de le dire).

            +]]>
            +
            + + Par : HugoPoi + http://blog.hugopoi.net/2010/12/07/get-to-post/#comment-272 + + Fri, 09 May 2014 16:12:33 +0000 + http://blog.hugopoi.net/?p=197#comment-272 + + Le lien n’est pas mort mais le script se lance même sans paramètres valide donc tu es redirigé quand tu clic.
            +Fait un clic droit enregistrer sous.

            +]]>
            +
            + + Par : Geolocalise Ip + http://blog.hugopoi.net/2010/12/07/get-to-post/#comment-266 + + Fri, 25 Apr 2014 08:42:32 +0000 + http://blog.hugopoi.net/?p=197#comment-266 + + Bonjour,
            +Merci beaucoup pour l’idée, mais ta page : http://blog.hugopoi.net/wp-content/uploads/2010/12/script.html est morte …

            +

            Quant à « houhou », il est formidable, je prendrai bien son adresse IP à celui là pour voir de quel pays il vient !!!! Grrr ….
            +Bon c’était en 2012, il a dû changer de métiers depuis !

            +]]>
            +
            + + Par : Alexandre + http://blog.hugopoi.net/2010/12/07/get-to-post/#comment-122 + + Thu, 03 Jan 2013 13:25:39 +0000 + http://blog.hugopoi.net/?p=197#comment-122 + + Tu t’es cru sur http://www.je_nutilise_pas_mon_cerveau_mais_des_esclaves.com ?

            +]]>
            +
            + + Par : HugoPoi + http://blog.hugopoi.net/2010/12/07/get-to-post/#comment-109 + + Mon, 30 Jul 2012 10:25:17 +0000 + http://blog.hugopoi.net/?p=197#comment-109 + + Je ne développe pas sur commande et encore moins quand je vois : ‘c’est urgent,merci!!!’, Ce blog n’est pas un forum qui fournit du tout cuit pour le premier venu. Si vous souhaitez en savoir plus sur les technos JavaScript je vous invite à consulter le site du zéro.

            +

            Bonne Journée

            +]]>
            +
            + + Par : houhou + http://blog.hugopoi.net/2010/12/07/get-to-post/#comment-107 + + Tue, 10 Jul 2012 07:29:41 +0000 + http://blog.hugopoi.net/?p=197#comment-107 + + Bonjour HugoPoi;
            +j’ai besoin du script pour récupérer le contenu d’une div généré en js,l’envoyer à une autre page de traitement pour le convertir en pdf.c’est urgent,merci!!!

            +]]>
            +
            + + Par : HugoPoi + http://blog.hugopoi.net/2010/12/07/get-to-post/#comment-104 + + Thu, 14 Jun 2012 21:00:49 +0000 + http://blog.hugopoi.net/?p=197#comment-104 + + la source est dans le fichier HTML.

            +]]>
            +
            + + Par : mou7a + http://blog.hugopoi.net/2010/12/07/get-to-post/#comment-99 + + Fri, 25 May 2012 11:01:23 +0000 + http://blog.hugopoi.net/?p=197#comment-99 + + bonjour, Je sais que l’article date un peu mais je n’arrive pas à récupérer la source elle n’est plus disponible merci!!!

            +]]>
            +
            + + Par : watchix + http://blog.hugopoi.net/2010/12/07/get-to-post/#comment-68 + + Tue, 12 Jul 2011 15:50:25 +0000 + http://blog.hugopoi.net/?p=197#comment-68 + + Merci mon bon Hugo :-)
            +J’étais en train de chercher ce genre de script lorsque je suis tombé sur le blog de Camille Descombes, puis ensuite sur ton commentaire :-)
            +Internet est petit dans le monde des développeurs ^^

            +]]>
            +
            +
            +
            diff --git a/www/.content.EZtzwPjb/html/29f1f3846fcbdcbe8408eb5e393a74d21dc3bc0f.00000340.html b/www/.content.EZtzwPjb/html/29f1f3846fcbdcbe8408eb5e393a74d21dc3bc0f.00000340.html new file mode 100644 index 0000000..ef04d5c --- /dev/null +++ b/www/.content.EZtzwPjb/html/29f1f3846fcbdcbe8408eb5e393a74d21dc3bc0f.00000340.html @@ -0,0 +1,372 @@ + + + + + + + Apple – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
            +
            +
            +
            + +
            +
            +
            +
            +
            +

            Trolling

            Apple New MacBook Air

            +

            J’avais envie de me défouler un peu donc je vais troller sur la sortie du nouveau MacBook Air. Alors oui il est beau, il est léger, la finition est nikel Chrome. Mais c’est du Apple donc c’est cher le prix d’entrée est de 999€ ouch ! pour la version 11 pouces … (suite…)

            +
            Par HugoPoi, il y a
            +
            + +
            +
            +
            +
            + +
            +
            + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/2a2fdc4d1a065e0b20fe7e072d71a8bb989dd75a.00000539.html b/www/.content.EZtzwPjb/html/2a2fdc4d1a065e0b20fe7e072d71a8bb989dd75a.00000539.html new file mode 100644 index 0000000..2b24e83 --- /dev/null +++ b/www/.content.EZtzwPjb/html/2a2fdc4d1a065e0b20fe7e072d71a8bb989dd75a.00000539.html @@ -0,0 +1,365 @@ + + + + + + + U2713HM – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
            +
            +
            +
            + +
            +
            +
            +
            +
            +

            Liste de Noël

            Bonjour cher Père Noël des Internets 2.0,

            +

            Alors je me permets de te déposer ma liste de noël sur mon blog car je suis sûr que tu as demandé à Google et Facebook de t’aider pour satisfaire tout le monde sur la terre(N’oublie pas les petits africains qui crèvent la dalle). Comme je suis égoïste un minimum humain et que je ne saurais dire ce que représente noël pour moi à part manger, boire, dormir, du sexe, avoir des cadeaux et en offrir, cela fait de bonnes raisons pour faire une liste de noël. (suite…)

            +
            Par HugoPoi, il y a
            +
            + +
            +
            +
            +
            + +
            +
            + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/2a3fd8ba015cac658b214d3b77b5e9359beac0f7.00000780.js b/www/.content.EZtzwPjb/html/2a3fd8ba015cac658b214d3b77b5e9359beac0f7.00000780.js new file mode 100644 index 0000000..e1e810c --- /dev/null +++ b/www/.content.EZtzwPjb/html/2a3fd8ba015cac658b214d3b77b5e9359beac0f7.00000780.js @@ -0,0 +1,348 @@ +/* Credits: https://github.com/FezVrasta/bootstrap-material-design */ +jQuery(document).ready(function($) { + // Selector to select only not already processed elements + $.expr[':'].notmdproc = function(obj) { + if ($(obj).data('mdproc')) { + return false; + } else { + return true; + } + }; + + function _isChar(evt) { + if (typeof evt.which === 'undefined') { + return true; + } else if (typeof evt.which === 'number' && evt.which > 0) { + return (!evt.ctrlKey && + !evt.metaKey && + !evt.altKey && + evt.which !== 8 && // backspace + evt.which !== 9 && // tab + evt.which !== 13 && // enter + evt.which !== 16 && // shift + evt.which !== 17 && // ctrl + evt.which !== 20 && // caps lock + evt.which !== 27 // escape + ); + } + return false; + } + + function _addFormGroupFocus(element) { + var $element = $(element); + if (!$element.prop('disabled')) { // this is showing as undefined on chrome but works fine on firefox?? + $element.closest('.form-group').addClass('is-focused'); + } + } + + function _toggleDisabledState($element, state) { + var $target; + if ($element.hasClass('checkbox-inline') || $element.hasClass('radio-inline')) { + $target = $element; + } else { + $target = $element.closest('.checkbox').length ? $element.closest('.checkbox') : $element.closest('.radio'); + } + return $target.toggleClass('disabled', state); + } + + function _toggleTypeFocus($input) { + var disabledToggleType = false; + if ($input.is($.material.options.checkboxElements) || $input.is($.material.options.radioElements)) { + disabledToggleType = true; + } + $input.closest('label').hover(function() { + var $i = $(this).find('input'); + var isDisabled = $i.prop('disabled'); // hack because the _addFormGroupFocus() wasn't identifying the property on chrome + if (disabledToggleType) { + _toggleDisabledState($(this), isDisabled); + } + if (!isDisabled) { + _addFormGroupFocus($i); // need to find the input so we can check disablement + } + }, + function() { + _removeFormGroupFocus($(this).find('input')); + }); + } + + function _removeFormGroupFocus(element) { + $(element).closest('.form-group').removeClass('is-focused'); // remove class from form-group + } + + $.material = { + 'options': { + // These options set what will be started by $.material.init() + 'validate': true, + 'input': true, + 'ripples': true, + 'checkbox': true, + 'togglebutton': true, + 'radio': true, + 'arrive': true, + 'autofill': false, + + 'withRipples': [ + '.btn:not(.btn-link)', + '.card-image', + '.navbar a:not(.withoutripple)', + '.dropdown-menu a', + '.nav-tabs a:not(.withoutripple)', + '.withripple', + '.pagination li:not(.active):not(.disabled) a:not(.withoutripple)' + ].join(','), + 'inputElements': 'input.form-control, textarea.form-control, select.form-control', + 'checkboxElements': '.checkbox > label > input[type=checkbox], label.checkbox-inline > input[type=checkbox]', + 'togglebuttonElements': '.togglebutton > label > input[type=checkbox]', + 'radioElements': '.radio > label > input[type=radio], label.radio-inline > input[type=radio]' + }, + 'checkbox': function(selector) { + // Add fake-checkbox to material checkboxes + var $input = $((selector) ? selector : this.options.checkboxElements) + .filter(':notmdproc') + .data('mdproc', true) + .after(''); + + _toggleTypeFocus($input); + }, + 'togglebutton': function(selector) { + // Add fake-checkbox to material checkboxes + var $input = $((selector) ? selector : this.options.togglebuttonElements) + .filter(':notmdproc') + .data('mdproc', true) + .after(''); + + _toggleTypeFocus($input); + }, + 'radio': function(selector) { + // Add fake-radio to material radios + var $input = $((selector) ? selector : this.options.radioElements) + .filter(':notmdproc') + .data('mdproc', true) + .after(''); + + _toggleTypeFocus($input); + }, + 'input': function(selector) { + $((selector) ? selector : this.options.inputElements) + .filter(':notmdproc') + .data('mdproc', true) + .each(function() { + var $input = $(this); + + // Requires form-group standard markup (will add it if necessary) + var $formGroup = $input.closest('.form-group'); // note that form-group may be grandparent in the case of an input-group + if ($formGroup.length === 0 && $input.attr('type') !== 'hidden' && !$input.attr('hidden')) { + $input.wrap('
            '); + $formGroup = $input.closest('.form-group'); // find node after attached (otherwise additional attachments don't work) + } + + // Legacy - Add hint label if using the old shorthand data-hint attribute on the input + if ($input.attr('data-hint')) { + $input.after('

            ' + $input.attr('data-hint') + '

            '); + $input.removeAttr('data-hint'); + } + + // Legacy - Change input-sm/lg to form-group-sm/lg instead (preferred standard and simpler css/less variants) + var legacySizes = { + 'input-lg': 'form-group-lg', + 'input-sm': 'form-group-sm' + }; + $.each(legacySizes, function(legacySize, standardSize) { + if ($input.hasClass(legacySize)) { + $input.removeClass(legacySize); + $formGroup.addClass(standardSize); + } + }); + + // Legacy - Add label-floating if using old shorthand + if ($input.hasClass('floating-label')) { + var placeholder = $input.attr('placeholder'); + $input.attr('placeholder', null).removeClass('floating-label'); + var id = $input.attr('id'); + var forAttribute = ''; + if (id) { + forAttribute = 'for="' + id + '"'; + } + $formGroup.addClass('label-floating'); + $input.after(''); + } + + // Set as empty if is empty (damn I must improve this...) + if ($input.val() === null || $input.val() === 'undefined' || $input.val() === '') { + $formGroup.addClass('is-empty'); + } + + // Support for file input + if ($formGroup.find('input[type=file]').length > 0) { + $formGroup.addClass('is-fileinput'); + } + }); + }, + 'attachInputEventHandlers': function() { + var validate = this.options.validate; + + $(document) + .on('keydown paste', '.form-control', function(e) { + if (_isChar(e)) { + $(this).closest('.form-group').removeClass('is-empty'); + } + }) + .on('keyup change', '.form-control', function() { + var $input = $(this); + var $formGroup = $input.closest('.form-group'); + var isValid = (typeof $input[0].checkValidity === 'undefined' || $input[0].checkValidity()); + + if ($input.val() === '') { + $formGroup.addClass('is-empty'); + } else { + $formGroup.removeClass('is-empty'); + } + + // Validation events do not bubble, so they must be attached directly to the input: http://jsfiddle.net/PEpRM/1/ + // Further, even the bind method is being caught, but since we are already calling #checkValidity here, just alter + // the form-group on change. + // + // NOTE: I'm not sure we should be intervening regarding validation, this seems better as a README and snippet of code. + // BUT, I've left it here for backwards compatibility. + if (validate) { + if (isValid) { + $formGroup.removeClass('has-error'); + } else { + $formGroup.addClass('has-error'); + } + } + }) + .on('focus', '.form-control, .form-group.is-fileinput', function() { + _addFormGroupFocus(this); + }) + .on('blur', '.form-control, .form-group.is-fileinput', function() { + _removeFormGroupFocus(this); + }) + // make sure empty is added back when there is a programmatic value change. + // NOTE: programmatic changing of value using $.val() must trigger the change event i.e. $.val('x').trigger('change') + .on('change', '.form-group input', function() { + var $input = $(this); + if ($input.attr('type') === 'file') { + return; + } + + var $formGroup = $input.closest('.form-group'); + var value = $input.val(); + if (value) { + $formGroup.removeClass('is-empty'); + } else { + $formGroup.addClass('is-empty'); + } + }) + // set the fileinput readonly field with the name of the file + .on('change', '.form-group.is-fileinput input[type="file"]', function() { + var $input = $(this); + var $formGroup = $input.closest('.form-group'); + var value = ''; + $.each(this.files, function(i, file) { + value += file.name + ', '; + }); + value = value.substring(0, value.length - 2); + if (value) { + $formGroup.removeClass('is-empty'); + } else { + $formGroup.addClass('is-empty'); + } + $formGroup.find('input.form-control[readonly]').val(value); + }); + }, + 'ripples': function(selector) { + $((selector) ? selector : this.options.withRipples).ripples(); + }, + 'autofill': function() { + // This part of code will detect autofill when the page is loading (username and password inputs for example) + var loading = setInterval(function() { + $('input[type!=checkbox]').each(function() { + var $this = $(this); + if ($this.val() && $this.val() !== $this.attr('value')) { + $this.trigger('change'); + } + }); + }, 100); + + // After 10 seconds we are quite sure all the needed inputs are autofilled then we can stop checking them + setTimeout(function() { + clearInterval(loading); + }, 10000); + }, + 'attachAutofillEventHandlers': function() { + // Listen on inputs of the focused form (because user can select from the autofill dropdown only when the input has focus) + var focused; + $(document) + .on('focus', 'input', function() { + var $inputs = $(this).parents('form').find('input').not('[type=file]'); + focused = setInterval(function() { + $inputs.each(function() { + var $this = $(this); + if ($this.val() !== $this.attr('value')) { + $this.trigger('change'); + } + }); + }, 100); + }) + .on('blur', '.form-group input', function() { + clearInterval(focused); + }); + }, + 'init': function(options) { + this.options = $.extend({}, this.options, options); + var $document = $(document); + + if ($.fn.ripples && this.options.ripples) { + this.ripples(); + } + if (this.options.input) { + this.input(); + this.attachInputEventHandlers(); + } + if (this.options.checkbox) { + this.checkbox(); + } + if (this.options.togglebutton) { + this.togglebutton(); + } + if (this.options.radio) { + this.radio(); + } + if (this.options.autofill) { + this.autofill(); + this.attachAutofillEventHandlers(); + } + + if (document.arrive && this.options.arrive) { + if ($.fn.ripples && this.options.ripples) { + $document.arrive(this.options.withRipples, function() { + $.material.ripples($(this)); + }); + } + if (this.options.input) { + $document.arrive(this.options.inputElements, function() { + $.material.input($(this)); + }); + } + if (this.options.checkbox) { + $document.arrive(this.options.checkboxElements, function() { + $.material.checkbox($(this)); + }); + } + if (this.options.radio) { + $document.arrive(this.options.radioElements, function() { + $.material.radio($(this)); + }); + } + if (this.options.togglebutton) { + $document.arrive(this.options.togglebuttonElements, function() { + $.material.togglebutton($(this)); + }); + } + + } + } + }; + +}); \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/2a4973be4a59dc1e64c0b5a478b0078764b8e870.00000248.html b/www/.content.EZtzwPjb/html/2a4973be4a59dc1e64c0b5a478b0078764b8e870.00000248.html new file mode 100644 index 0000000..395353b --- /dev/null +++ b/www/.content.EZtzwPjb/html/2a4973be4a59dc1e64c0b5a478b0078764b8e870.00000248.html @@ -0,0 +1,817 @@ + + + + + + + + Install RancherOs on FreeNas 11.3 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
            +
            +
            +
            + +
            +
            +
            +
            +
            +
            +

            Install RancherOs on FreeNas 11.3

            +
              +
            • The automated RancherOs installation aka Docker VM has been removed in
              +11.3
            • +
            • RancherOs doesn’t support EFI boot out of the box
            • +
            • Thanks to MKinney howto
            • +
            • This howto is provided without warranty
            • +
            • TODO the proper way of doing it is somewhere here
            • +
            • Some stuff about losetup
            • +
            +

            1. Make a EFI bootable RancherOs image

            + +
              +
            1. wget https://releases.rancher.com/os/v1.5.5/rancheros.iso
            2. +
            3. wget http://releases.ubuntu.com/18.04/ubuntu-18.04.4-live-server-amd64.iso
            4. +
            5. mkdir tmpubuntu tmprancheros tmprancheros_dest
            6. +
            7. sudo mount ubuntuserverlive.iso tmpubuntu
            8. +
            9. sudo mount rancheros.iso tmprancheros
            10. +
            11. fallocate -l 150M rancheros.img
            12. +
            13. gdisk rancheros.img o,y,n,enter,enter,ef00,w,Y
            14. +
            15. sudo losetup --partscan --show --find rancheros.img
            16. +
            17. sudo mkfs.fat /dev/loop2p1
            18. +
            19. sudo mount /dev/loop2p1 rancheros_dest
            20. +
            21. sudo cp -r tmprancheros/* tmprancheros_dest/
            22. +
            23. sudo cp -r tmpubuntu/EFI tmprancheros_dest/
            24. +
            25. Replace the content of tmprancheros_dest/boot/grub/grub.cfg with:
            26. +
            +
            set timeout=5
            +menuentry "Install Rancher" {
            +    linux   /boot/vmlinuz-4.14.138-rancher rancher.autologin=tty1 rancher.autologin=ttyS0 rancher.autologin=ttyS1 console=tty1 console=ttyS0 console=ttyS1 printk.devkmsg=on panic=10 ---
            +    initrd  /boot/initrd-v1.5.5
            +}
            +
            +
              +
            1. sudo umount tmprancheros_dest
            2. +
            3. sudo losetup -d /dev/loop2
            4. +
            5. sudo umount tmpubuntu tmprancheros
            6. +
            +

            2. Installation in FreeNas as Vm

            +
              +
            1. Create a VM with EFI boot 2GB RAM choose virtio for all the driver
              +better performance with linux
            2. +
            3. Add a RAW device and select your rancheros.img
            4. +
            5. Start the VM
            6. +
            7. Go to serial and in the shell cu -l /dev/nmdmXX at this point you should
              +have a rancher shell
            8. +
            9. sudo fdisk /dev/vda then g,n,1,+200M,t,1,n,enter,enter,w you
              +should something like at the end
            10. +
            +
            Disk /dev/vda: 10 GiB, 10737418240 bytes, 20971520 sectors
            +Units: sectors of 1 * 512 = 512 bytes
            +Sector size (logical/physical): 512 bytes / 16384 bytes
            +I/O size (minimum/optimal): 16384 bytes / 16384 bytes
            +Disklabel type: gpt
            +Disk identifier: 2B56EE14-44BF-6443-A197-EF73723B715F
            +Device      Start      End  Sectors  Size Type
            +/dev/vda1    2048   411647   409600  200M EFI System
            +/dev/vda2  411648 20971486 20559839  9.8G Linux filesystem
            +
            +
              +
            1. Format the boot partition sudo mkdosfs -n RANCHER -F 32 /dev/vda1
            2. +
            3. Format the main filesystem sudo mkfs.ext4 -L RANCHER_STATE /dev/vda2
            4. +
            5. Create a cloud-config.yml see https://rancher.com/docs/os/v1.x/en/installation/running-rancheros/server/install-to-disk/ for minimum content
            6. +
            7. sudo mkdir /dev/sr0 for installer checking about iso mounted before
              +install
            8. +
            9. Install ros with sudo ros install -t gptsyslinux -c cloud-config.yml -d /dev/vda -p /dev/vda2
            10. +
            11. mkdir /mnt/efipart && sudo mount /dev/vda1 /mnt/efipart
            12. +
            13. mkdir /mnt/installer && sudo mount /dev/vdb1 /mnt/installer
            14. +
            15. sudo cp -r /mnt/installer/EFI /mnt/efipart
            16. +
            17. Add a grub.cfg in /mnt/efipart/EFI/BOOT/grub.cfg with in it:
              +You might want to add/remove autologin as you wish below

              +
                +
              • tty0 I think is VNC but I havent tested it
              • +
              • ttyS0 is serial (I have autologin enable in serial see below)
              • +
              +
            18. +
            +
            set timeout=1
            +menuentry "Rancher from GPT" {
            +    search --no-floppy --set=root --label RANCHER_STATE
            +    linux    /boot/vmlinuz-4.14.138-rancher printk.devkmsg=on rancher.state.dev=LABEL=RANCHER_STATE rancher.state.wait panic=10 console=tty0 console=ttyS0 rancher.autologin=ttyS0
            +    initrd    /boot/initrd-v1.5.5
            +}
            +
            +
              +
            1. sudo umount /mnt/*
            2. +
            3. sudo reboot
            4. +
            5. You are good to go
            6. +
            7. You can remove the RAW device in the VM config in FreeNas
            8. +
            +
            +
            + +
            +
            +
            +
            +
            +

            + 12 commentaires

            +
            + +
            +
            +
            +
            +

            + Rudi Pittman + · 18 mars 2020 à 17 h 46 min +

            +

            Can I or can I not use my existing rancher img that was previously being used by freenas? ie

            +

            -rw-r–r– 1 root wheel 21474836480 Mar 18 02:13 rancher.img_docker1

            +

            I have around 10 different docker containers defined inside and I really don’t want to have to redo all of them.

            + +
            +
            +
              +
              + +
              +
              +
              +
              +

              + HugoPoi + · 11 avril 2020 à 16 h 32 min +

              +

              If the image is a VM image like a zvol, I think it will work, but I’m not sure, it will only work if the 11.2 behavior is EFI compatible.
              +You may patch your existing image/snapshot by justing installing the efi bootloader aka grub in it.

              + +
              +
              + +
            + +
            + +
            +
            +
            +
            +

            + Rob RD + · 4 avril 2020 à 19 h 36 min +

            +

            Parfait – Merci Beaucoup! :)

            + +
            +
            + +
            + +
            +
            +
            +
            +

            + dario + · 12 avril 2020 à 14 h 07 min +

            +

            Thanks for this guide. I am stuck at Step 12:
            +> sudo mount /dev/vdb1 /mnt/installer
            +ther is no /dev/vdb1, regardingless if I choose to boot at step 10 or not

            + +
            +
            +
              +
              + +
              +
              +
              +
              +

              + HugoPoi + · 22 avril 2020 à 23 h 34 min +

              +

              Your installer may be on a different disk if you choose SCSI in place of virtio when you add the raw image device in Freenas, you can identified with

              +

              cat /proc/partitions

              +

              and

              +

              mount

              +

              it should be /dev/sda1 maybe

              + +
              +
              + +
            + +
            + +
            +
            +
            +
            +

            + somebody + · 19 avril 2020 à 13 h 07 min +

            +

            Thank you so much for the step by step guide, it was very helpful. With this I can finally transition from my old Docker VM inherited from FreeNAS 11.1.

            +

            Going to state the obvious (for some) and mention that when new version gets released and you run

            +

            sudo ros os upgrade

            +

            to upgrade you’ll also need to update initrd command in your grub.cfg file on EFI partition, otherwise you’re just going to boot into the same version.

            + +
            +
            +
              +
              + +
              +
              +
              +
              +

              + Rudi Pittman + · 1 juin 2020 à 1 h 58 min +

              +

              The problem I have is even though grub is specifying 4.14.138 and initird-v1.5.5 on reboot it tells me those don’t exist. Doing a grub edit and using autocomplete the files it ACTUALLY find are /boot/vmlinuz-4.14.73-rancher and /boot/initrd-v1.4.2. Where the heck are those coming from? When I look on /dev/vda2/boot I see the 4.14.138 and initrd-v1.5.5 as the grub reflects. /mnt/efipart/EFI/BOOT has:

              +

              -rwxr-xr-x 1 root root 1334816 May 30 15:13 BOOTx64.EFI
              +-rwxr-xr-x 1 root root 316 May 30 15:15 grub.cfg
              +-rwxr-xr-x 1 root root 1146744 May 30 15:13 grubx64.efi

              + +
              +
              + +
            + +
            + +
            +
            +
            +
            +

            + Max + · 3 mai 2020 à 16 h 40 min +

            +

            The image i downloaded does not start. Stuck at step4 in the bhyve shell. Any idea how to proceed from there?

            + +
            +
            +
              +
              + +
              +
              +
              +
              +

              + HugoPoi + · 10 mai 2020 à 14 h 53 min +

              +

              Try to change the device order to a lower or higher number to be sure it try to load the good bootloader.

              + +
              +
              + +
            + +
            + +
            +
            +
            +
            +

            + Rudi Pittman + · 1 juin 2020 à 18 h 28 min +

            +

            If you do a « ros os version » on your efi image it’s NOT v1.5.5. It’s v1.4.2 and running the command although it MAY download the files does nothing to actually make the grub.cfg FIND those new files. It’s still looking for vmlinuz-4.14.73 and initrd-v1.4.2.

            + +
            +
            +
              +
              + +
              +
              +
              +
              +

              + Johnny Z + · 25 juin 2020 à 8 h 49 min +

              +

              I found them. The guide doesn’t necessarily state where or when to get the files. You should be able to do this to find and copy the files

              +

              cd /mnt/installer/boot/
              +ls -asl
              +(here you will find the two files)
              +cp vmlinuz-4.14.138-rancher ../../efipart/efi/boot/
              +cp initrd-v1.5.5.5 ../../efipart/efi/boot

              +

              Double check my paths here but that should basically get you the files so the kernel can load proper

              + +
              +
              + +
            + +
            + +
            +
            +
            +
            +

            + Toohai + · 16 septembre 2020 à 8 h 18 min +

            +

            Missing step after 12 in part 1?

            +

            sudo cp -r tmpubuntu/boot/grub tmprancheros_dest/boot/

            + +
            +
            + +
            +
            +
            +

            Répondre à HugoPoi Annuler la réponse

            Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

            +
            +
            +

            + +

            +
            +
            +
            +
            +
            +
            + +
            +
            +
            +
            +
            +
            + + +
            + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/2ac0852e4a1dc0ee6c4c6470e38bbc6cc3ac2e10.00000210.html b/www/.content.EZtzwPjb/html/2ac0852e4a1dc0ee6c4c6470e38bbc6cc3ac2e10.00000210.html new file mode 100644 index 0000000..2664814 --- /dev/null +++ b/www/.content.EZtzwPjb/html/2ac0852e4a1dc0ee6c4c6470e38bbc6cc3ac2e10.00000210.html @@ -0,0 +1,578 @@ + + + + + + + + Écran miraculé d’un Asus N53SN – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
            +
            +
            +
            + +
            +
            +
            +
            +
            +
            +

            Comme d’habitude tantine vient me voir pour me dire que son écran d’ordinateur ne marche plus. Le pc portable, un Asus N53SN d’un plus de 2 ans de services, présente un écran noir complètement éteint mais le portable fonctionne parfaitement sur un écran externe. Ni une ni deux je commence par démonter la bête pour récupérer la référence exacte du moniteur.

            +

            asusn53sn_open_lcd_front

            +

            Vidéos d’aide pour le démontage

            +

            +

            +

            Après avoir enlever les 2 vis en façade, vous pouvez dé-clipser le cache autour de l’écran par l’intérieur en faisant levier avec une lamelle en plastique. Commencé par les cotés, puis le bas de l’écran et finir par les deux angles du bas puis ce du haut. Cela vous évitera de casser le cache comme moi. asusn53sn_plastic_front_broken Une fois la façade enlevée il reste les différentes visses qui maintienne la dalle. Il faut ensuite retirer le plastique arrière (celui avec le logo Asus) pour pouvoir enlever les visses sur les cotés de l’écran. L’écran est connecté avec un seul connecteur vers la carte mère une liaison LVDS je suppose.asusn53sn_lcd_back2Je commence à regarder l’écran je vois quelques références, je commence à soulever les plastiques pour trouver des points de mesures. J’allume l’ordinateur et je vérifie quelques tensions pour voir si le fil ou le connecteur ne serait pas endommagé par la charnière, les mesures se révèlent payantes, j’ai des tensions stables de quelques volts. Mais comme vous pouvez le voir ci-dessus, il y a un petit connecteur sur la gauche qui m’a intrigué et en soulevant/décollant légèrement le plastique celui-ci c’est déconnecté.asusn53sn_connupbacklcdVoilà le fautif ! Une fois celui-ci remis en place l’écran était de nouveau en vie ! Donc une réparation pour 0€.

            + + +
            +
            +
            + +
            +
            + + + + + + + + + +
            +
            +
            +
            +
            +
            +
            +

            + 1 commentaire

            +
            + +
            +
            +
            +
            +

            + Sylvain L. + · 30 août 2014 à 18 h 38 min +

            +

            excellent, merci !
            +Exactement le même problème, suivi du tuto …
            +ça fonctionne à merveille

            + +
            +
            + +
            +
            +
            +

            Laisser un commentaire

            Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

            +
            +
            +

            + +

            +
            +
            +
            +
            +
            +
            + +
            +
            +
            +
            +
            +
            + + +
            + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/2b91633ae2d0a663afad196add76cb8798b0906f.00000328.html b/www/.content.EZtzwPjb/html/2b91633ae2d0a663afad196add76cb8798b0906f.00000328.html new file mode 100644 index 0000000..f32e432 --- /dev/null +++ b/www/.content.EZtzwPjb/html/2b91633ae2d0a663afad196add76cb8798b0906f.00000328.html @@ -0,0 +1,394 @@ + + + + + + + HugoPoi – Page 4 – Internet, Hardware et Bidouille + + + + + + + + + + + + + + + + + + + + + + + + + + +
            +
            +
            +
            + +
            +
            +
            +
            +
            +

            Démonter un Switch Cisco 2950T

            Après avoir tout tenté sur le port console, le switch semblait mort donc démontage. J’ai donc ouvert ce petit switch 24 ports. C’est assez simple, il y a quelques vis à l’arrière ensuite faire coulisser le châssis.

            +

            Cisco 2950T-24

            +

            (suite…)

            +
            Par HugoPoi, il y a

            Home Cinéma

            Bientôt fini mais peut-être jamais terminé tellement il y a de boulot autour d’un système home-cinema complet et parfait. Cela fait bientôt deux semaines que je suis dans mes travaux et ma configuration HTPC. Première semaine, je suis parti de rien, aucun câble posé, pas de pc installé et pas de meuble. Du coup, le lundi, je suis allé à Ikea et j’ai trouvé à peu près ce que je voulais pour pas trop cher (120 € pour de l’aggloméré de merde). Le mardi, je venais de recevoir tout le matos, à savoir :

            +
              +
            • Un Amplificateur Yamaha RX-671
            • +
            • Un kit d’enceinte Jamo 5.1
            • +
            • Un boitier Antec Remote black et les 2-3 composants qui vont bien
            • +
            +

            Salon Wii

            +

             

            + +
            Par HugoPoi, il y a

            Liste de Noël

            Bonjour cher Père Noël des Internets 2.0,

            +

            Alors je me permets de te déposer ma liste de noël sur mon blog car je suis sûr que tu as demandé à Google et Facebook de t’aider pour satisfaire tout le monde sur la terre(N’oublie pas les petits africains qui crèvent la dalle). Comme je suis égoïste un minimum humain et que je ne saurais dire ce que représente noël pour moi à part manger, boire, dormir, du sexe, avoir des cadeaux et en offrir, cela fait de bonnes raisons pour faire une liste de noël. (suite…)

            +
            Par HugoPoi, il y a

            Asus U36 et OCZ Vertex 3 la suite

            Après un mois d’attente auprès de Cdiscount, pour au final m’annoncer le remboursement de mon SSD Vertex 2 qui est mort subitement, j’ai donc décidé de commander un Vertex 3 qui va remplacer le mort au sein de mon Asus U36JC. Et pour ne pas l’ouvrir juste pour un banal remplacement de SSD j’ai décidé de remplacer par la même occasion la carte wifi, une Intel N-1000 par une Intel N-6320. Celle-ci disposant en plus du bluetooth. J’en ai donc profité pour prendre des photos supplémentaires du démontage pour compléter mon précédent article : Démontage d’un Asus U36. Vous pouvez d’abord lire mon ancien article avant d’attaquer celui-ci, je ne ferai qu’apporter des informations complémentaires pour le démontage. (suite…)

            +
            Par HugoPoi, il y a
            +
            +
            + +
            +
            +
            +
            +
            +
            +
            +
            +
            +
            + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/2b925f4454ec7698ee998ccae357b2ffbad68a6b.00000446.html b/www/.content.EZtzwPjb/html/2b925f4454ec7698ee998ccae357b2ffbad68a6b.00000446.html new file mode 100644 index 0000000..cca552f --- /dev/null +++ b/www/.content.EZtzwPjb/html/2b925f4454ec7698ee998ccae357b2ffbad68a6b.00000446.html @@ -0,0 +1,364 @@ + + + + + + + Maxell – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
            +
            +
            +
            + +
            +
            +
            +
            +
            +
            +
            + +
            +
            +
            +
            + +
            +
            + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/2bd995e796a26d24f2afd6cd942a7abecd4bbfbb.00000747.css b/www/.content.EZtzwPjb/html/2bd995e796a26d24f2afd6cd942a7abecd4bbfbb.00000747.css new file mode 100644 index 0000000..c6e6094 --- /dev/null +++ b/www/.content.EZtzwPjb/html/2bd995e796a26d24f2afd6cd942a7abecd4bbfbb.00000747.css @@ -0,0 +1 @@ +.carousel .hestia-title{font-size:67px}.carousel span.sub-title{font-size:18px}@media (max-width: 768px){.carousel .hestia-title,h1.hestia-title{font-size:36px}.page-header.header-small .hestia-title,.page-header.header-small .title{font-size:26px}}h2.hestia-title,h2.title{font-size:37px}@media (max-width: 768px){h2.hestia-title,h2.title{font-size:24px}}.woocommerce div.product .product_title,.woocommerce .related.products h2{font-size:32px}@media (max-width: 768px){.woocommerce div.product .product_title,.woocommerce .related.products h2{font-size:24px}}.subscribe-line h3.hestia-title,#comments .hestia-title,.woocommerce .comment-reply-title,.woocommerce-cart .blog-post h1.hestia-title,.woocommerce-checkout .blog-post h1.hestia-title{font-size:27px}h5.description,h5.subscribe-description{font-size:18px}.subscribe-line .description{font-size:14px}.woocommerce-cart .blog-post h1.hestia-title,.woocommerce-checkout .blog-post h1.hestia-title{font-size:27px}.hestia-work .card-title,.woocommerce .cart-collaterals h2,.woocommerce .cross-sells h2,.woocommerce.single-product .summary .price,.woocommerce-checkout .blog-post .section form.woocommerce-checkout h3:not(#ship-to-different-address){font-size:23px}h4.card-title,.hestia-info h4.info-title,.footer .widget h5,section.contactus h4.hestia-title{font-size:18px}.blog .card-blog .card-title,.archive .card-blog .card-title,.blog .hestia-blog-featured-card .card-title{font-size:25px}h6.category{font-size:12px}.woocommerce .product .card-product .card-description p,.card-description,section.pricing p.text-gray,.woocommerce.single-product .woocommerce-product-details__short-description{font-size:14px}.hestia-features .hestia-info p{font-size:16px}h1,.single-post-wrap h1,.page-content-wrap h1,.hestia-title.title-in-content{font-size:42px}@media (max-width: 768px){.hestia-title.title-in-content{font-size:36px}}h2,.single-post-wrap h2,.page-content-wrap h2{font-size:37px}h3,.single-post-wrap h3,.page-content-wrap h3{font-size:32px}h4,.single-post-wrap h4,.page-content-wrap h4{font-size:27px}h5,.single-post-wrap h5,.page-content-wrap h5{font-size:23px}h6,.single-post-wrap h6,.page-content-wrap h6{font-size:18px}@media (max-width: 768px){h1,.single-post-wrap h1,.page-content-wrap h1,.page-template-template-fullwidth article h1{font-size:30px}h2,.single-post-wrap h2,.page-content-wrap h2,.page-template-template-fullwidth article h2{font-size:28px}h3,.single-post-wrap h3,.page-content-wrap h3,.page-template-template-fullwidth article h3{font-size:24px}h4,.single-post-wrap h4,.page-content-wrap h4,.page-template-template-fullwidth article h4{font-size:22px}h5,.single-post-wrap h5,.page-content-wrap h5,.page-template-template-fullwidth article h5{font-size:20px}h6,.single-post-wrap h6,.page-content-wrap h6,.page-template-template-fullwidth article h6{font-size:18px}}.single-post-wrap p,.page-content-wrap p,.single-post-wrap ul,.page-content-wrap ul,.single-post-wrap ol,.page-content-wrap ol,.single-post-wrap dl,.page-content-wrap dl,.single-post-wrap table,.page-content-wrap table,.page-template-template-fullwidth article p,.page-template-template-fullwidth article ul,.page-template-template-fullwidth article ol,.page-template-template-fullwidth article dl,.page-template-template-fullwidth article table{font-size:18px}@media (max-width: 768px){.single-post-wrap p,.page-content-wrap p,.single-post-wrap ul,.page-content-wrap ul,.single-post-wrap ol,.page-content-wrap ol,.single-post-wrap dl,.page-content-wrap dl,.single-post-wrap table,.page-content-wrap table,.page-template-template-fullwidth article p,.page-template-template-fullwidth article ul,.page-template-template-fullwidth article ol,.page-template-template-fullwidth article dl,.page-template-template-fullwidth article table{font-size:16px}}body{font-size:14px}.navbar a{font-size:12px} diff --git a/www/.content.EZtzwPjb/html/2bf6c89f3a618373a4f22f5aee7b163d5f2f794b.00000211.xml b/www/.content.EZtzwPjb/html/2bf6c89f3a618373a4f22f5aee7b163d5f2f794b.00000211.xml new file mode 100644 index 0000000..11a2f7b --- /dev/null +++ b/www/.content.EZtzwPjb/html/2bf6c89f3a618373a4f22f5aee7b163d5f2f794b.00000211.xml @@ -0,0 +1,31 @@ + + + Commentaires sur : Écran miraculé d’un Asus N53SN + + http://blog.hugopoi.net/2014/08/02/ecran-miracule-dun-asus-n53sn/ + Internet, Hardware et Bidouille + Fri, 20 Jan 2017 19:41:43 +0000 + hourly + 1 + https://wordpress.org/?v=4.7.2 + + Par : Sylvain L. + http://blog.hugopoi.net/2014/08/02/ecran-miracule-dun-asus-n53sn/#comment-2044 + + Sat, 30 Aug 2014 16:38:17 +0000 + http://blog.hugopoi.net/?p=819#comment-2044 + + excellent, merci !
            +Exactement le même problème, suivi du tuto …
            +ça fonctionne à merveille

            +]]>
            +
            +
            +
            diff --git a/www/.content.EZtzwPjb/html/2c67cf50901dedfbc14154568b7e7327cce364b5.00000840.html b/www/.content.EZtzwPjb/html/2c67cf50901dedfbc14154568b7e7327cce364b5.00000840.html new file mode 100644 index 0000000..ad0138e --- /dev/null +++ b/www/.content.EZtzwPjb/html/2c67cf50901dedfbc14154568b7e7327cce364b5.00000840.html @@ -0,0 +1,55 @@ + + + +Script + + + + \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/2c9d590378567534fc15f88bc122662c5a1cbf48.00000379.html b/www/.content.EZtzwPjb/html/2c9d590378567534fc15f88bc122662c5a1cbf48.00000379.html new file mode 100644 index 0000000..b872470 --- /dev/null +++ b/www/.content.EZtzwPjb/html/2c9d590378567534fc15f88bc122662c5a1cbf48.00000379.html @@ -0,0 +1,364 @@ + + + + + + + DeDRM – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
            +
            +
            +
            + +
            +
            +
            +
            +
            +
            +
            + +
            +
            +
            +
            + +
            +
            + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/2ca3dd04ff6e717e9cd64a99b52523f3f37a7229.00000531.html b/www/.content.EZtzwPjb/html/2ca3dd04ff6e717e9cd64a99b52523f3f37a7229.00000531.html new file mode 100644 index 0000000..0e13bfc --- /dev/null +++ b/www/.content.EZtzwPjb/html/2ca3dd04ff6e717e9cd64a99b52523f3f37a7229.00000531.html @@ -0,0 +1,371 @@ + + + + + + + television – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
            +
            +
            +
            + +
            +
            +
            +
            +
            +

            Honte Télévisuelle

            Je viens de déménager à Belfort et dans mon 19m² je n’ai pas de télévision mais je suis l’actualité via internet grâce à twitter. Je me suis aperçu que ces dernier mois, le nombre d’émissions abordant le sujet d’internet et compagnie était assez conséquent. (suite…)

            +
            Par HugoPoi, il y a
            +
            + +
            +
            +
            +
            + +
            +
            + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/2db516cf824079af3cf46a51a4cb0b3b774432ff.00000006.html b/www/.content.EZtzwPjb/html/2db516cf824079af3cf46a51a4cb0b3b774432ff.00000006.html new file mode 100644 index 0000000..57bd2cd --- /dev/null +++ b/www/.content.EZtzwPjb/html/2db516cf824079af3cf46a51a4cb0b3b774432ff.00000006.html @@ -0,0 +1,537 @@ + + + + + + + + Présentation – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
            +
            +
            +
            + +
            +
            +
            +
            +
            +
            +

            Un petit message pour remercier le créateur de ce blog de m’avoir intégré à son projet. Je suis là officiellement pour corriger les fautes d’orthographe, mais je vous annonce que j’en laisserais plusieurs par choix… officiellement ^^
            +Bonne lecture à tous et à bientôt !

            +
            +
            +
            +
            +
            Catégories : News
            +
            +
            +
            + + + + + + + + + +
            +
            +
            +
            +
            +
            +
            +

            + 3 commentaires

            +
            + +
            +
            +
            +
            +

            + xav + · 18 octobre 2010 à 16 h 51 min +

            +

            Cool sa! la team est de retour ^^ bienvenue Calcifer et il était temps qu’un correcteur arrive XD !

            + +
            +
            + +
            + +
            +
            +
            +
            +

            + Mickael + · 13 novembre 2010 à 23 h 27 min +

            +

            Sacré nico ^^
            +El killer de l’orthographe :p

            + +
            +
            + +
            + +
            +
            +
            +
            +

            + Calcifer + · 14 novembre 2010 à 9 h 57 min +

            +

            Hehe moins cher qu’un prof :o

            + +
            +
            + +
            +
            +
            +

            Laisser un commentaire

            Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

            +
            +
            +

            + +

            +
            +
            +
            +
            +
            +
            + +
            +
            +
            +
            +
            +
            + + +
            + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/2e0a2e1511afc6843099397b91c37b93dc90af78.00000549.html b/www/.content.EZtzwPjb/html/2e0a2e1511afc6843099397b91c37b93dc90af78.00000549.html new file mode 100644 index 0000000..50eab8f --- /dev/null +++ b/www/.content.EZtzwPjb/html/2e0a2e1511afc6843099397b91c37b93dc90af78.00000549.html @@ -0,0 +1,364 @@ + + + + + + + VPL-CX5 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
            +
            +
            +
            + +
            +
            +
            +
            +
            +
            +
            + +
            +
            +
            +
            + +
            +
            + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/2e341602c91058d15a027515544535224cef4ec1.00000324.html b/www/.content.EZtzwPjb/html/2e341602c91058d15a027515544535224cef4ec1.00000324.html new file mode 100644 index 0000000..be31bd3 --- /dev/null +++ b/www/.content.EZtzwPjb/html/2e341602c91058d15a027515544535224cef4ec1.00000324.html @@ -0,0 +1,125 @@ + + + + + + Live | HugoPoi + + + + + + + + + + + + + + + + + + + + +
            +
            +
            +

            Live

            + +
            +
            +

            Live ARK Survival Evolved

            +


            +

            +

            Si le stream ne marche pas sous Firefox

            +
              +
            1. Allez dans les options de la mort en tapant « about:config » dans la barre d’adresse
            2. +
            3. Passez l’avertissement de sécurité
            4. +
            5. Chercher l’option « media.mediasource.whitelist »
            6. +
            7. Assurez vous quel est configurée à FALSE
            8. +
            9. Si ça ne marche toujours pas pensez à vérifier que vous avez un codec h264 que firefox peut utiliser (vous pouvez vérifier ici)
            10. +
            +
            +
            + +
            +
            +
            + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/2e354b552afe8bb457cc3142326a5ab1659651db.00000140.html b/www/.content.EZtzwPjb/html/2e354b552afe8bb457cc3142326a5ab1659651db.00000140.html new file mode 100644 index 0000000..7fc9fa4 --- /dev/null +++ b/www/.content.EZtzwPjb/html/2e354b552afe8bb457cc3142326a5ab1659651db.00000140.html @@ -0,0 +1,1370 @@ + + + + + + + + Réparations Samsung SyncMaster 2232BW – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
            +
            +
            +
            + +
            +
            +
            +
            +
            +
            +

            Allô docteur on a un problème,

            +

            En ce dimanche calme avant la fin de mes partiels, mon écran Samsung SyncMaster 2232BW commençait à faire des siennes. Celui-ci depuis un mois ou deux clignotait de façon systématique au démarrage, au début pendant seulement quelques secondes, puis au fur et à mesure, de plus en plus jusqu’à devoir attendre 10 minutes pour que je puisse l’utiliser. Après 3 ans et 4 mois de bons et loyaux services, il voulait me quitter. J’ai tenté le support Samsung par email avec peu d’espoir car l’écran a dépassé sa garantie de 4 mois (oui oui les bâtards -> obsolescence programmée). Et donc j’ai eu le droit à un joli mail automatique me disant de contacter un numéro non surtaxé (mais avec combien de temps d’attente ?), ce que je n’ai pas fait car je n’avais pas envie de passer 30min au téléphone pour au final avoir un « On est désolé mais on ne peut rien faire pour vous car la garantie est dépassée, mais on peut envoyer votre écran en SAV pour faire un devis pour seulement 50 boules ». Concernant le support email de Samsung France, je leur donne une note de 0/20 puisque ce n’est pas un support mais une redirection vers le téléphone.

            +

            +

            Symptômes

            +

            Clignotements de l’écran et de la LED power systématiques à chaque démarrage de l’écran. Je me suis tout de suite douté d’un problème d’alimentation et après quelques recherches sur google, confirmation du problème sur beaucoup d’écrans et téléviseurs. Dans 99% des cas ce clignotement est dû à des condensateurs défectueux qu’il faut simplement changer :-D

            +

            Démontage

            +

            Donc après avoir cerné le problème, j’ai ouvert l’écran pour chercher les condos défectueux. J’ai trouvé une petite vidéo pour mon écran :

            +

            +

            Voici quelques photos en plus pour vous aider :

            +

            Les outils que j’ai utilisé pour le démontage

            +

            Position des clips

            +

            Carte d’alimentation dans son emplacement

            +

            Et voici les condensateurs qui posent problèmes. Comme vous pouvez le voir sur la photo, ils sont très facilement identifiable car ils sont bombés sur le dessus.

            +

            Condensateurs défectueux

            +

            Vous devez donc acheter des condensateurs de remplacement, par exemple sur Conrad.

            +

            Mes condensateurs suivant étaient endommagés:

            +
              +
            • 1 de 330uF 25V remplacé par un 470uF 25V
            • +
            • 3 de 820uF 25V remplacé par des 1000uF 50V
            • +
            +

            Pour la réparation, il vous faut un fer à souder avec une panne pas trop grosse mais d’une grosse puissance car les soudures sont très solides (j’ai galéré avec un fer pro qui monte jusqu’à 400°).

            +

            Tout remarche nickel après remontage, plus de clignotement pour seulement quelques euros.

            +

            edit du 19 aout 2014 : j’ai trouvé le service manuel de l’écran si besoin samsung_2232bw_chassis_lpe22bs_sm

            + + +
            +
            + +
            +
            +
            +
            +
            +

            + 41 commentaires

            +
            + +
            +
            +
            +
            +

            + c'est_moi + · 30 janvier 2012 à 18 h 57 min +

            +

            Mille mercis et mille félicitations pour cette fiche technique si pédagogue.

            +

            J’espère que le partiels se passent plus que parfait !!

            +

            J’ai gardé l’url de la page pour réparer mon écran dans un petit mois : j’espère que la page soit toujours là ;-)

            +

            Merci encore.

            + +
            +
            + +
            + +
            +
            +
            +
            +

            + Maxime + · 5 mai 2012 à 12 h 31 min +

            +

            Bonjour HugoPoi!

            +

            Merci pour toutes vos infos et votre topic, je voulais avoir quelques précisions sur les condos à changer pour samsung 2232bw, je veux passer commande mais j’ai un problème avec les dimensions des condos, si vous pouvez m’informer de ce que je pourrais acheter car il y a trop de références. En vous remerciant A+ Maxime

            + +
            +
            +
              +
              + +
              +
              +
              +
              +

              + HugoPoi + · 14 juin 2012 à 22 h 56 min +

              +

              N’importe quel condensateur polarisé avec des caractéristiques proches devrait marché.

              + +
              +
              + +
            + +
            + +
            +
            +
            +
            +

            + gaubjezj + · 14 juin 2012 à 22 h 32 min +

            +

            Merci pour le tuto qui m’a bien aidé.
            +J’ai utilisé un fer de 40 W avec une panne fine et
            +une pompe à dessouder et j’ai retiré les condensateurs sans problème.
            +Merci encore (3€40 pour le dépannage).

            + +
            +
            + +
            + +
            +
            +
            +
            +

            + DragonTribal + · 2 juillet 2012 à 12 h 02 min +

            +

            super merci pour manifique tuto.
            +Est-il possible de changer les 5 condensateurs 820uF 25V par des 1000uF 50V? car moi mes 5 condensateurs sont presque HS ;-)

            +

            Cordialement

            + +
            +
            +
              +
              + +
              +
              +
              +
              +

              + HugoPoi + · 2 juillet 2012 à 12 h 25 min +

              +

              Oui je penses que ça marchera étant donné que c’est des valeurs plus grandes.

              + +
              +
              + +
            + +
            + +
            +
            +
            +
            +

            + FRED + · 11 juillet 2012 à 19 h 11 min +

            +

            Bravo, MERCI.
            +Je n’ai encore rien fait…mais j’ai le même problème, et tu me donnes la solution.
            +Super.

            + +
            +
            + +
            + +
            +
            +
            +
            +

            + daninpet + · 31 août 2012 à 10 h 10 min +

            +

            Merci mille fois!

            +

            J’avais ce problème, et j’ai emmener la photo des trucs a remplacer chez le réparateur du coin et voila!! Ça m’a coûté 7 Euros (mais j’habite en Thaïlande)

            + +
            +
            + +
            + +
            +
            +
            +
            +

            + moi + · 15 novembre 2012 à 15 h 25 min +

            +

            super mon 2232bw vient de lâcher, les 3 + 1 condos sont gonflés j ai trouvé un 330 en 35v qui traîné sur un écran mort et j’ai commander 5 1000uf 35v sur ebay pour moins de 3 dollars, ca devrait le faire j’espere j’attend d’être livré merci! par contre j’ai qu’un gros pistolet a soudure et un gros fil d’étain, c’est pas évident mais bon ca le fait quand même =)

            + +
            +
            +
              +
              + +
              +
              +
              +
              +

              + moi + · 7 décembre 2012 à 9 h 33 min +

              +

              parfait je vient de recevoir les condos; j ai meuler la panne du fer a souder pour la tailler en mine de crayon et j ai reussi a les souder facilement ils étaient un peu plus gros mais ca passe tout juste, mais attention ne pas prendre des plus gros! l écran fonctionne nickel maintenant.

              + +
              +
              + +
            + +
            + +
            +
            +
            +
            +

            + Croco + · 19 janvier 2013 à 18 h 39 min +

            +

            Je souhaiterai savoir si tu as utilisé un fer à souder bien précis étant donné que la carte est une multi couche.
            +Merci

            + +
            +
            + + +
            + +
            +
            +
            +
            +

            + momo + · 10 juin 2013 à 13 h 15 min +

            +

            slut je voudrai savoir ou trouvé les condansateur a changer sur mon ecran qui clignote

            + +
            +
            + + +
            + +
            +
            +
            +
            +

            + lokmane + · 5 juillet 2013 à 16 h 08 min +

            +

            merci j’avais un ecran rouge ! et c’etais la tresse qui relie mon ecran votre page m’a aider a l’ouvrir et a le reparer merci bien

            + +
            +
            + +
            + +
            +
            +
            +
            +

            + ML + · 21 août 2013 à 19 h 11 min +

            +

            Merci ! Ecran réparé. Halte à l’obsolescence programmée.

            + +
            +
            + +
            + +
            +
            +
            +
            +

            + raymond + · 31 octobre 2013 à 13 h 20 min +

            +

            ai vu votre vidéo et les explications pour la reparation de mon écran , apparemment le méme probléme l écran passe au noir apres quelque seconde , j ai vu un le condensateur en bas a gauche gonflé , je l ai fait changé (10€) les autre condensateur étant toujour bon d après la personne qui me l a changé , mais j ai toujour le méme probléme cela peut il venir de la carte video a gauche ?

            + +
            +
            +
              +
              + +
              +
              +
              +
              +

              + HugoPoi + · 20 décembre 2013 à 12 h 27 min +

              +

              Si la led bleu du bouton power s’éteint aussi c’est un problème d’alimentation sinon c’est plus compliqué et ça peut provenir de condensateurs sur la partie vidéo. Changé tous les plus gros condensateurs sur la partie alimentation pourrait être un bon début même si ils ne paraissent pas endommagé.

              + +
              +
              + +
            + +
            + +
            +
            +
            +
            +

            + damien + · 4 novembre 2013 à 0 h 29 min +

            +

            bonjour,

            +

            j’ai des crasses coincées entres l’écran et le truc juste derrière, est ce qu’on sais les enlever en démontant la dalle ?

            + +
            +
            +
              +
              + +
              +
              +
              +
              +

              + HugoPoi + · 20 décembre 2013 à 12 h 28 min +

              +

              Je ne sais si cette partie de la dalle est démontable, je penses que c’est collé mais vous pouvez essayer.

              + +
              +
              + +
            + +
            + +
            +
            +
            +
            +

            + mac + · 1 décembre 2013 à 17 h 30 min +

            +

            Merci HugoPoi, avec ces excellents conseils et tuto vidéo, mon écran est reparti pour une nouvelle vie.
            +Pour les composants, si vous êtes sur Paris ou proche. La boutique RAM électroniques est une bonne adresse, 138 bd Diderot 75012 Paris (Place de la Nation).

            + +
            +
            + +
            + +
            +
            +
            +
            +

            + Bouddhid + · 16 janvier 2014 à 19 h 21 min +

            +

            Merci beaucoup pour ces conseils ! J’étais à 2 doigts de jeter mon écran, le voilà comme neuf pour moins de 5€ ! Vive la bricole !

            + +
            +
            + +
            + +
            +
            +
            +
            +

            + Vincent + · 17 mai 2014 à 16 h 45 min +

            +

            Alors là merci.

            +

            Pour ce post, les photos, la vidéo, tout y est.

            +

            J’ai démonté l’écran assez vite, enlevé la carte, regarder quel condensateurs étaient gonflés,(il y en avaient 4), un magasin d’électronique sur lyon et une heure de démontage, soudure, remontage plus tard, voilà, c’est tout beau.
            +Ca ne clignote plus, ça s’allume comme avant, comme neuf.

            +

            Et dire que j’allais jeter cet écran et claquer 350 euros pour un neuf…

            +

            Coût de l’opération pour 4 condensateurs, du fil d’étain 7 euros.

            +

            Je précise que je n’avais jamais fais de soudure sur composant électronique auparavant.
            +Comme quoi cette opération de réparation est à la portée de tous.

            + +
            +
            + +
            + +
            +
            +
            +
            +

            + Julot + · 6 juillet 2014 à 13 h 49 min +

            +

            Site vraiment détaillé et très claire. J’ai pu dépanner mon écran avec succès. Merci beaucoup pour ces précieuses explications.

            + +
            +
            + +
            + +
            +
            +
            +
            +

            + PaniK31 + · 29 juillet 2014 à 9 h 21 min +

            +

            Pas besoin d’une grosse puissance pour le fer, il faut au préalable gratter le vernis sur l’étain afin de pouvoir le faire fondre plus facilement

            + +
            +
            + +
            + +
            +
            +
            +
            +

            + R211_IP-45130B + · 20 août 2014 à 14 h 04 min +

            +

            Bonjour à tous,

            +

            Une âme charitable peut-elle me communiquer ce qui est gravé sur la résistance CMS R211 de la carte d’alimentation/inverter IP-45130B qui équipe le SAMSUNG 2232BW ? Cette résistance a pris un coup de tournevis et je n’arrive pas à déterminer sa valeur de résistance car son marquage est effacé et comme le composant est abimé la mesure à l’ohmmètre indique l’infinie.

            +

            Merci par avance.

            + +
            +
            + +
            + +
            +
            +
            +
            +

            + roger + · 24 octobre 2014 à 17 h 21 min +

            +

            Ca refonctionne après échange de 4 condensateurs :
            +-un 330uf25v remplacé à l’identique.
            +-trois 820uf25v remplacés par 1000uf25v.
            +Le tout pour quelques €. Le plus dur était le dessoudage, la tresse n’était pas très efficace contrairement à la pompe.
            +Grand merci à HugoPoi.

            + +
            +
            + +
            + +
            +
            +
            +
            +

            + Max + · 26 février 2015 à 16 h 28 min +

            +

            ENORME MERCI!! J’ai réparé mon écran en 20mn pour 3,50€, il était à 2 doigts de partir à la déchetterie. Ca faisait des mois qu’il clignotait, et l’allumage mettait parfois plus d’une demi heure. J’ai changé 5 condos 820uf25v et 1 330uf25v, par exactement les mêmes en neuf, et là il démarre au quart de tour! Ca fait plaisir! :)

            + +
            +
            +
              +
              + +
              +
              +
              +
              +

              + rocco michelle + · 7 octobre 2015 à 10 h 16 min +

              +

              Bonjour je ne sais si vous verrez mon message mais je tente…je cherche quelqu’un qui accepterait de changer mes condensateurs sur mon samsung, les réparateurs me demandent 70 à 80 euros et encore ils n’ont pss envie de le faire et me disent d’acheter un nouvel écran. j’aurais bien tenter mais je n’ai pas de matériel et j’ai lu que les condo pouvaient être très dangereux s’ils avaient de la charge alors j’ai la trouille de bidouiller pq je n’y connais rien. si vous êtes de lyon acccepteriez vous de changer mes condensateurs pour 45 euros? merci de votre réponse.

              + +
              +
              + +
            + +
            + +
            +
            +
            +
            +

            + lecakeseb + · 27 juillet 2015 à 15 h 26 min +

            +

            Bonjour,

            +

            J’ai utilisé la vidéo pour démonter mon écran afin de le nettoyer de 4 bêtes d’orage infiltrés entre le premier écran (noir) et la dalle (blanche) de mon samsung SyncMaster 2232W

            +

            Petits conseils afin de modérer ce que j’ai pu voir dans cette vidéo :

            +

            0 : aspirez, nettoyez l’extérieur de l’écran avant de l’ouvrir et nettoyez la table qui vous servira d’atelier, pour éviter les poussières qui s’infiltreront forcément plus tard si vous ne le faites pas…
            +1 : pour ouvrir, utilisez plutôt un couteau à enduire pour la première partie (le cadre). Vous n’abîmerez ainsi pas du tout l’écran. Soyez patients, ne forcez pas ! ça viendra doucement, mais ça viendra. Il m’a fallu à peine 10 minutes, sans détériorer l’écran, sans le griffer… Il est encore nickel !
            +2 : attention à ne pas déconnecter les fils reliant le cadre à la carte. Inutile pour simplement nettoyer l’écran.
            +3 : pour séparer les deux éléments de la dalle entre lesquels les bêtes se sont infiltrées, les doigts suffisent, pas besoin d’outils qui viendraient les endommager. La dalle blanche reste à l’horizontale, l’écran noir sera tenu à la verticale.
            +4 : utiliser un chiffon doux ne peluchant pas pour enlever les bêtes (faites-vous aider de quelqu’un qui les enlèvera pendant que vous tenez l’écran extérieur en position verticale).
            +5 : repositionnez la colle d’étanchéité qui aurait pu se déplacer, avant de repositionner les deux écrans.
            +6 : commencer par refermer par le bas de l’écran (sinon les éléments de réglage situés au bas de l’écran – luminosité, contraste,…- ne se replaceront pas correctement).
            +7 : Une fois l’écran refermé, j’ai appliqué un peu de « barrage aux insectes », avec un chiffon à l’arrière de mon écran en insistant surtout sur les bouches d’aération par lesquelles les maudites bestioles ont du s’infiltrer. En espérant ne pas avoir à ouvrir !

            +

            Bon courage à vous !

            + +
            +
            + +
            + +
            +
            +
            +
            +

            + Michel Jousserandot + · 20 janvier 2017 à 20 h 41 min +

            +

            Merci pour les conseils au démontage.
            +J’avais un problème un peu différent :l’écran ne s’allumait plus du tout. Avec un copain beaucoup plus malin que moi, on a détecté 2 fusibles dont l’un était fichu. On l’a remplacé par un petit fil de cuivre. Et tout a remarché comme avant.
            +Il faut surtout faire attention quand on teste la partie haute tension
            +Michel.

            + +
            +
            + +
            + +
            +
            +
            +
            +

            + Crec + · 14 juillet 2017 à 10 h 20 min +

            +

            Bonjour. Très bons conseils avertis. Merci beaucoup.
            +Peut-on avoir les mêmes conseils pour un écran BX2250.
            +Merci par avance.
            +Crec

            + +
            +
            +
              +
              + +
              +
              +
              +
              +

              + HugoPoi + · 6 août 2017 à 14 h 03 min +

              +

              J’ai pas de BX2250 donc dans le détails non mais si c’est les même symptômes ça doit la même procédure.

              + +
              +
              + +
            + +
            + +
            +
            +
            +
            +

            + Ferronnier + · 10 août 2017 à 17 h 42 min +

            +

            Un grand merci !
            +J’ai changé tous les condensateurs de la partie alimentation de la carte, en déportant certains qui n’avaient pas le même format qu’à l’origine, et ça tourne nickel !

            + +
            +
            + +
            + +
            +
            +
            +
            +

            + Nours + · 1 décembre 2017 à 15 h 17 min +

            +

            Ca fait des années que j’ai cet article enregistré dans un coin, en nourrissant l’espoir d’avoir un jour le courage de réparer ce foutu écran… Après plus de cinq ans c’est chose faite \o/
            +Un giga, hypra, immense merci pour ce tutoriel tellement bien expliqué et facile d’accès (je n’avais pas touché à un fer à souder depuis… Oh boy 15 ans déjà).
            +Après une longue pause, l’écran reprend du service… Jusqu’à la prochaine panne /o/

            + +
            +
            + +
            + +
            +
            +
            +
            +

            + Alex + · 11 août 2018 à 13 h 28 min +

            +

            Quelqu’un sait qui pourrait me le faire svp j ai le même problème mais aucun matériel

            + +
            +
            + +
            + +
            +
            +
            +
            +

            + David + · 5 février 2019 à 21 h 06 min +

            +

            Merci Hugo pour ce tuto qui m’a déjà servi en 2013 et qui va me resservir aujourd’hui car mon 2ème 2232bw commence à avoir les mêmes symptômes.

            + +
            +
            + +
            + +
            +
            +
            +
            +

            + yvan + · 23 novembre 2019 à 17 h 14 min +

            +

            Bonjour
            +j’ai tenté de changer le condensateur qui avait l’air naze mais ça n’a pas marché … toujours le bouton bleu allumé, l’écran est reconnu par Windows 10 même si l’écran est éteint
            +grâce au service manuel de l’écran fourni plus haut, j’ai vérifié les tensions jusque sur la carte de la dalle et elles sont correctes, ainsi que sur la carte elle-même, tout est ok, donc je pense que ce n’est plus un problème de condensateur
            +pour les fusibles, ils ressemblent plutôt à des composants qu’à de simple fusibles, mais comme j’ai les bonnes tension, je ne pense pas que ça vienne de là
            +j’ai bien peur que ce soit la dalle qui soit naze ? quelqu’un a t il des idées supplémentaires avant que je le jette avec grand regret (c’est un 2032bw, mais c’est la même chose, même si ma carte électronique est un peu différente car plus récente
            +merci d’avance pour vos conseils

            + +
            +
            + +
            + +
            +
            +
            +
            +

            + yvan + · 24 novembre 2019 à 17 h 26 min +

            +

            finalement j’ai trouvé, c’est un petit fusible vert qui ressemble à une résistance mais tout vert avec écrit 4A LF qui assure l’alimentation de la dalle.
            +En le shuntant, mon écran a retrouvé l’image.
            +après enquête il s’agit d’un fusible pico de 4ampères de chez little fuse, pas du tout évident à trouver
            +Résolu !

            + +
            +
            + +
            +
            +

            + Reflow Dell 1546 | HugoPoi + · 22 août 2016 à 16 h 09 min +

            +

            […] « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable de marque Dell un 1546 pour être précis. Encore […]

            + +
            +
            + +
            +
            +

            + Reflow Dell Inspiron 1546 – HugoPoi + · 23 juin 2017 à 23 h 18 min +

            +

            […] d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un […]

            + +
            +
            + +
            +
            +
            +

            Répondre à R211_IP-45130B Annuler la réponse

            Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

            +
            +
            +

            + +

            +
            +
            +
            +
            +
            +
            + +
            +
            +
            +
            +
            +
            + + +
            + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/2e573dd5fd5038d9e15f6bc3e5ee5cf888e53179.00000333.xml b/www/.content.EZtzwPjb/html/2e573dd5fd5038d9e15f6bc3e5ee5cf888e53179.00000333.xml new file mode 100644 index 0000000..27e24cb --- /dev/null +++ b/www/.content.EZtzwPjb/html/2e573dd5fd5038d9e15f6bc3e5ee5cf888e53179.00000333.xml @@ -0,0 +1,43 @@ + + + + HugoPoi » 2232BW + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Sat, 14 Sep 2013 23:01:40 +0000 + fr-FR + hourly + 1 + http://wordpress.org/?v=3.6 + + Réparations Samsung SyncMaster 2232BW + http://blog.hugopoi.net/2012/01/15/reparations-samsung-syncmaster-2232bw/ + http://blog.hugopoi.net/2012/01/15/reparations-samsung-syncmaster-2232bw/#comments + Sun, 15 Jan 2012 16:00:25 +0000 + HugoPoi + + + + + + + + + + + + http://blog.hugopoi.net/?p=586 + Lire la suite »

            ]]>
            + http://blog.hugopoi.net/2012/01/15/reparations-samsung-syncmaster-2232bw/feed/ + 16 +
            +
            +
            diff --git a/www/.content.EZtzwPjb/html/2f38e62e936e62398042c33c9563c16de8c196be.00001250.js b/www/.content.EZtzwPjb/html/2f38e62e936e62398042c33c9563c16de8c196be.00001250.js new file mode 100644 index 0000000..16e4c13 --- /dev/null +++ b/www/.content.EZtzwPjb/html/2f38e62e936e62398042c33c9563c16de8c196be.00001250.js @@ -0,0 +1,2 @@ +/*! This file is auto-generated */ +!function(c,d){"use strict";var e=!1,n=!1;if(d.querySelector)if(c.addEventListener)e=!0;if(c.wp=c.wp||{},!c.wp.receiveEmbedMessage)if(c.wp.receiveEmbedMessage=function(e){var t=e.data;if(t)if(t.secret||t.message||t.value)if(!/[^a-zA-Z0-9]/.test(t.secret)){for(var r,a,i,s=d.querySelectorAll('iframe[data-secret="'+t.secret+'"]'),n=d.querySelectorAll('blockquote[data-secret="'+t.secret+'"]'),o=0;o + + + + + + + Cloud Computing – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
            +
            +
            +
            + +
            +
            +
            +
            +
            +
            +
            Cloud

            Cloud

            +

            Dans les nouvelles TPME, PME et autres entreprises un peu plus grandes, il y a un nouveau phénomène qui se met doucement en place: le Cloud Computing. C’est quoi ce truc ? C’est une nouvelle façon de gérer son infrastructure de S.I. en entreprise. Avant, quand on voulait avoir un espace collaboratif informatisé, on prenait un serveur et on le connectait sur le réseau de l’entreprise. Grâce à celui-ci, on avait plein de services : mail, intranet, extranet, téléphonie et compagnie. Mais tout ça c’est fini maintenant, il y a le Cloud Computing et il y a Google. Alors les entreprises naissantes, au lieu d’investir dans une infrastructure centralisée,  utilisent Google Mail, Microsoft MachinTruc, Google Chose. Tout cela a des avantages, des inconvénients et des conséquences qui me font peur.

            +

            Avantages :

            +
              +
            • Pas d’investissement au départ
            • +
            • Pas de coût de maintenance
            • +
            • Accessible Partout (c’est sur Internet)
            • +
            +

            Inconvénients :

            +
              +
            • Sécurité, c’est sur internet donc tout le monde peut y accéder
            • +
            • Maitrise du S.I (vous ne maîtrisez rien et les serveurs ne sont pas chez vous, et vous ne savez même plus faire la différence entre Facebook et votre S.I. CC 3.0 next gen’)
            • +
            • Pas évolutif, vous êtes limitez aux évolutions que vous fournit votre prestataire
            • +
            • Accessibilité, pas d’internet pas de S.I.
            • +
            +

            Après ce petit listing, je vais m’arrêter là, peut-être que je suis trop pessimiste. Mais ce petit résumé sur le Cloud Computing sans prétention fait réfléchir sur deux points importants : la confidentialité de vos données sur de telles solutions et les compétences techniques des personnes chargées du S.I. Je suis peut-être complètement à coté de la plaque si des D.S.I ou des personnes plus qualifiées veulent réagir sur ce thème, ou des personnes beaucoup plus sur le terrain que moi en ce moment. Je suis ouvert à toutes critiques et témoignages de votre part.

            +
            +
            +
            +
            +
            Catégories : InternetNews
            +
            +
            +
            + + + + + + + + + +
            +
            +
            +
            +
            +
            +
            +

            + 1 commentaire

            +
            + +
            +
            +
            +
            +

            + HugoPoi + · 24 novembre 2010 à 15 h 15 min +

            +

            Voici une autre utilisation du cloud computing dans toute sa puissance : http://www.developpez.com/actu/23970/Les-pirates-ont-ils-compris-avant-les-autres-les-avantages-du-Cloud-Un-hacker-exploite-AmazonEC2-pour-casser-l-algorithme-SHA-1
            +Je vous laisse lire …

            + +
            +
            + +
            +
            +
            +

            Laisser un commentaire

            Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

            +
            +
            +

            + +

            +
            +
            +
            +
            +
            +
            + +
            +
            +
            +
            +
            +
            + + +
            + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/2f9ef867bf9df588b1297f300fdff1bdb123a9c7.00000383.xml b/www/.content.EZtzwPjb/html/2f9ef867bf9df588b1297f300fdff1bdb123a9c7.00000383.xml new file mode 100644 index 0000000..a0a8d7d --- /dev/null +++ b/www/.content.EZtzwPjb/html/2f9ef867bf9df588b1297f300fdff1bdb123a9c7.00000383.xml @@ -0,0 +1,41 @@ + + + + HugoPoi » Dell + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Sat, 14 Sep 2013 23:01:40 +0000 + fr-FR + hourly + 1 + http://wordpress.org/?v=3.6 + + Liste de Noël + http://blog.hugopoi.net/2012/11/18/liste-de-noel-2/ + http://blog.hugopoi.net/2012/11/18/liste-de-noel-2/#comments + Sun, 18 Nov 2012 21:00:38 +0000 + HugoPoi + + + + + + + + + + http://blog.hugopoi.net/?p=556 + Lire la suite »

            ]]>
            + http://blog.hugopoi.net/2012/11/18/liste-de-noel-2/feed/ + 0 +
            +
            +
            diff --git a/www/.content.EZtzwPjb/html/2fc82a8183c36779dfb23487f9b04634cec8aa62.00000178.html b/www/.content.EZtzwPjb/html/2fc82a8183c36779dfb23487f9b04634cec8aa62.00000178.html new file mode 100644 index 0000000..bf70478 --- /dev/null +++ b/www/.content.EZtzwPjb/html/2fc82a8183c36779dfb23487f9b04634cec8aa62.00000178.html @@ -0,0 +1,318 @@ + + + + + + + + SAMSUNG – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
            +
            +
            +
            +
            +
            +
            +
            + + + +

            +
            +
            +
            +
            +

            + 0 commentaire

            +
            +
            +
            +

            Laisser un commentaire

            Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

            +
            +
            +

            + +

            +
            +
            +
            +
            +
            +
            +
            +
            +
            +
            +
            +
            +
            + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/30673c14fabf9e916cba130da65ea82e52adc790.00000071.html b/www/.content.EZtzwPjb/html/30673c14fabf9e916cba130da65ea82e52adc790.00000071.html new file mode 100644 index 0000000..5aa081e --- /dev/null +++ b/www/.content.EZtzwPjb/html/30673c14fabf9e916cba130da65ea82e52adc790.00000071.html @@ -0,0 +1,561 @@ + + + + + + + + Optimus vs Mégatron – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
            +
            +
            +
            + +
            +
            +
            +
            +
            +
            +

            Je suis l’heureux acquéreur #oupas d’un pc portable avec technologie Optimus de Nvidia (voir Asus U36JC). Après quelques jours de recherches et de tests je vais essayer de vous faire un résumé complet sur le pourquoi de comment ça fonctionne.

            +

            Présentation et marketing

            +

            Petite introduction sur Optimus pour vous mettre dans l’ambiance. Cette technologie permet de profiter de deux cartes graphique au sein d’un pc portable, plus précisément d’une carte vidéo Nvidia et du chipset graphique intégré au processeur Intel (= IGP). Cette technologie, d’après la plaquette marketing, remplacerait une techno plus ancienne appelée « switchable graphics » très peu connue. Optimus permet de rallier autonomie et performance sur notebook. En effet, quand vous êtes en vadrouille, sans courant, et que vous faites de la bureautique, vous utilisez l’IGP Intel. Mais quand vous avez besoin de jouer à Crysis ou bosser avec 3DS max, vous pouvez basculer sur la carte Nvidia qui est plus performante. J’ai une Nvidia 310M elle est déjà deux fois plus rapide que l’IGP pour le travail 3D. J’ai remarqué bizarrement que Optimus n’était pas utilisé sur les machines avec des cartes Nvidia de gros gabarit. Cela briderait-il les performances ? j’en suis presque sûr …

            +

            La partie matériel

            +

            Concrètement comment fait-on pour basculer d’une carte à l’autre au niveau matos? comment est-ce câblé ? vous allez me répondre comme ça :

            +

            Les sorties vidéos de l’IGP et de la carte Nvidia sont câblées sur l’entrée du moniteur et les sorties VGA et DisplayPort ou HDMI. Pour pouvoir basculer de l’un à l’autre on utilise des petits switchs (Mux sur le shéma) avec 2 entrées et une sortie qui font basculer la sortie vidéo sur l’IGP ou la carte Nvidia. Cette solution N’EST PAS celle choisie pour la technologie Optimus mais celle utilisée par « switchable graphics ». Nvidia explique que cette solution n’est pas viable pour plusieurs raisons. La première est que le temps de bascule est super long car il faut basculer les sorties puis dire au système de changer de driver d’affichage donc un temps de 5 à 10 secondes de bascule. Deuxième raison, le système n’est pas automatique, l’utilisateur doit sélectionner la carte voulue avant de lancer le jeux (perso, je préfère cette façon de faire, au moins on est maître de notre matos #geekpowa). Et la dernière qui n’est pas des moindres, le design de la carte mère se complique puisque l’on doit avoir un double câblage pour chaque sortie vidéo, sans compter les fils de commandes pour les switchs. Cela entraîne un coût supplémentaire pour les constructeurs.

            +

            Mais alors comment est fait Optimus ?

            +

            Avec Optimus, il n’y a pas de liaison entre la carte Nvidia et l’écran ou les sorties vidéos. L’image de sortie transite via le bus PCI-Express, puis elle est transmise à l’IGP Intel qui se charge uniquement de l’affichage. Au niveau hardware, la carte Nvidia est uniquement connectée au PCI-Express et rien d’autre.

            +

            Cela permet de ne pas avoir à faire de câblage supplémentaire pour la carte Nvidia, cela facilite donc l’intégration de ce composant pour les constructeurs. Nvidia vend ainsi des GPU Nvidia sur la plateforme Intel Core iX, des machines qui n’en ont pas forcement besoin. Les PC équipés de Optimus se voient badgés d’un super logo et d’une carte graphique plus performante que l’IGP Intel, le consommateur (moi) tombe dans le piège et se dit pourquoi pas ?

            +

            La partie logiciel

            +

            Mais alors comment le GPU Nvidia est-il utilisé ? Optimus fonctionne via des drivers un peu spéciaux qui sont différents de ceux que vous pouvez installer d’habitude quand vous utilisez une carte graphique classique, que ce soit sur un portable ou un fixe. Dans le cas classique, le driver est chargé par l’OS qui envoie les traitements à faire puis le GPU fait le traitement et renvoie tout le rendu sur l’écran. Pour Optimus il n’y a plus l’intervention d’une seule carte, donc d’un driver, mais deux cartes, donc deux drivers, celui de Intel et celui de Nvidia. Quand vous êtes en utilisation bureautique vous n’avez pas besoin d’une carte puissante donc l’IGP peut s’en charger tout seul, ici grâce à Optimus la carte Nvidia est complètement éteinte. Maintenant vous lancez un jeux vidéo, l’IGP Intel est toujours actif et continu à gérer l’écran mais c’est là qu’intervient Optimus. Il réveille la carte Nvidia et c’est elle qui va gérer le rendu du jeux video. C’est là que ça devient drôle, le driver bidouillé Optimus va détecter via une liste d’application prédéfinie par Nvidia (que l’on peut modifier) le jeux que vous venez de lancer. Ensuite, avec une super bidouille de l’API Microsoft DirectX, le jeux va tourner sur la carte Nvidia et les images de sortie seront copiées/collées via le bus pci-express dans le framebuffer de l’IGP Intel qui se chargera uniquement de les afficher. Optimus s’appuie entièrement sur DirectX et la couche Windows pour gérer l’execution des programmes 3D car il faut gérer une « session » DirectX dans chaque GPU. L’utilisation de la carte Nvidia sur un OS Linux ou BSD est donc pour l’instant impossible car Nvidia ne fournit pas de driver Optimus. Et plus grave, cela est dû au fait que l’environnement Xorg ne permet pas de charger deux drivers différents en même temps. La solution possible serait d’utiliser Wayland à la place de Xorg, c’est le cas de la version 11.04 de Ubuntu(en beta). Il faudrait alors développer un driver se basant sur OpenGL gérant IGP et le GPU Nvidia.

            +

            Sur la partie gauche du schéma, c’est le cas où le GPU est complètement éteint, le gain en autonomie est donc important. L’autre phase active le GPU Nvidia qui va traiter la 3D d’une application, mais l’IGP Intel reste actif pour permettre l’affichage sur l’écran.

            +

            Performance et fiabilité

            +

            Pour ce qui est des performances graphiques dans un environnement jeux vidéo j’ai essayé d’utiliser 3DMark Vantage, pourquoi je vous dis essayer car il m’a été impossible de réaliser une passe de test complet avec l’IGP Intel. Dans tous les cas, j’ai 3DMark qui plantait même après avoir mis à jour les drivers. J’avais l’erreur « Device Removed » à chaque fois, en somme crash du driver. En utilisant la carte Nvidia, j’ai réussi à faire une passe et j’ai eu un résultat de 822 points, ce qui est dans la moyenne pour une 310M. Le site NotebookCheck.com donne des résultats similaires pour la carte Nvidia, et pour l’IGP Intel HD Graphics, il indique un score de 200 points en moyenne, donc lorsque la carte Nvidia est activée, le calcul 3D sera en moyenne quatre fois plus rapide. Comme je le supposais plus haut vu l’écart peu important entre mes résultats et ceux fournit par NotebookCheck, il est impossible de savoir si la latence induite par la recopie via le bus PCI-Express impacte les performances. Pour le prouver, il faudrait prendre une machine avec une carte plus puissante puis faire des tests dans des conditions identiques pour comparer avec une autre machine sans Optimus ayant la même carte.

            +

            Versions des drivers pendant mes tests :

            +
              +
            • version intel 8.15.10.2202 puis MAJ en 8.15.10.2342 depuis Intel Download Center
            • +
            • version nvidia 8.17.12.5964 pilote 259.64 puis MAJ en 8.17.12.7061 pilote 270.61 depuis Nvidia
            • +
            +

            Après certains tests impossibles à réaliser, je me suis rendu compte qu’Optimus posait problème. Mais cela ne s’arrête pas là, et j’ai eu quelques surprises avec des petits utilitaires que j’ai pour habitude d’utiliser pour faire du monitoring. Ma panoplie est constituée de CPU-Z, OCCT, GPU-Z, NvidiaInspector et des gadgets GPUObserver et IntelCoreSeries. Je n’ai pas démonté toutes ces applications, mais elles utilisent toutes l’API du driver Nvidia pour aller récupérer différentes informations tel que la température, les fréquences, les tensions, l’occupation mémoire et la vitesse de ventilation. Avec Optimus, quand la carte Nvidia est inutilisée, elle est complètement éteinte, donc comment faire pour récupérer la température ? Je pensais que l’API du driver allait le gérer et renvoyer une température bidon style 0°C ou alors renvoyer une exception particulière. Mais pas du tout, l’API est toute pourrie et quand on lui demande quelque chose elle le fait, concrètement quand un gadget ou une application de monitoring demande la température, l’api réveille la carte Nvidia, récupère la temp et éteint le GPU. Cette opération est répétée toutes les 5 secondes environ en fonction des softs et gadget. J’ai mis un certain temps avant de comprendre car il faillait trouver le moyen de connaitre l’état réel du GPU Nvidia. Pour cela, j’ai trouvé les outils presse de Nvidia(j’ai bien galéré pour les trouver). GPUObserver est donc inutilisable car cela réveille le GPU pour rien, donc vous perdez en autonomie. Pour GPU-Z, il plante lamentablement si la carte Nvidia est éteinte. Pour OCCT, il y a un bug d’affichage: l’animation ne s’affiche pas, et reste figée, j’ai l’impression que l’histoire de copie de framebuffer merde.

            +

            Nvidia explique que son driver choisit, lorsqu’une application est lancée, si la carte Nvidia est activée, grâce à une liste, celle-ci étant mis à jour via internet de façon automatique. Cela marche plutôt bien pour tout ce qui est jeux vidéos et applications 3D mais on peut toujours éditer les profils depuis le panel Nvidia. Certains profils sont un peu inutile, par défaut Flash Player déclenche la carte Nvidia ainsi que la lecture de vidéo HD alors que le chipset Intel en est parfaitement capable.

            +

            Il y a aussi un manque de sécurité car quand une application tourne sur la carte Nvidia, si on désactive celle-ci via le gestionnaire de périphériques, il n’y a pas de message d’erreur. L’application plante lamentablement.

            +

            Autonomie

            +

            Je vais enfin pouvoir parler des quelques points positifs de la technologie Optimus. Le gain en autonomie est juste impressionnant, il est presque doublé quand la carte Nvidia est inactive (state OFF), j’atteins 7 heures en utilisation bureautique. La transparence d’utilisation de la carte Nvidia est plutôt bien gérée et c’est instantané. La carte Nvidia est vraiment complètement éteinte quand elle n’est pas utilisée. J’ai remarqué un truc fun à ne pas faire, ne pas désactiver ou désinstaller la carte Nvidia depuis le gestionnaire de périphérique Windows car sinon la carte repasse sous gestion BIOS et celui-ci la réactive et la laisse dans un état indéterminé (mon autonomie est divisée par 2).

            +

            Astuces

            +
              +
            • Pour savoir si la carte Nvidia est utilisée par une application vous pouvez activer une icône spéciale dans la zone de notification. Pour cela ouvrir le control panel Nvidia puis dans le menu déroulant « Bureau » cocher « Afficher l’icône d’activité du processeur graphique (…) ».
            • +
            • Quand vous voulez lancer une application de monitoring ou d’information système qui plante quand la carte Nvidia est off, il suffit de lancer une application qui va la réveiller, un jeux vidéo par exemple puis ensuite de lancer le logiciel en question.
            • +
            • Quand vous cliquez droit sur une application, vous pouvez choisir dans le menu contextuel quelle carte va être utilisée. (Option à activer dans « Bureau »)
            • +
            • Désactiver complètement la carte Nvidia sous Linux.
            • +
            +

            Conclusion

            +

            Après plusieurs jours de tests, lectures et recherches de documentations, ainsi que quelques échanges peu intéressant avec @NvidiaOptimus. Je déconseille fortement les pc badgés optimus car la carte Nvidia est actuellement INUTILISABLE sous linux ou BSD sauf quelques exceptions qui disposent en plus de la technologie Switchable Graphics. J’ai lu au passage le test de Pc Inpact qui donne une bonne note. Je ne sais pas s’ils ont pris en compte le non support total sous linux et tous les petits problèmes de bord. Cela place Optimus au rang de technologie en beta test, pourtant présente depuis presque 2 ans sur le marché. Au final, c’est nous les gentils clients qui sommes beta-testeurs. Si vous cherchez à acheter un pc portable avec une carte graphique potable je vous recommande de prendre une Radeon puisque AMD a ouvert ses spécifications technique à la communauté.

            +

            +
            +
            +
            +
            +
            Catégories : HardwareLogiciels
            +
            +
            +
            + + + + + + + + + +
            +
            +
            +
            +
            +
            +
            +

            + 3 commentaires

            +
            + +
            +
            +
            +
            +

            + Calcifer + · 4 mai 2011 à 16 h 05 min +

            +

            Tu m’en aura donné du fil à retordre pour corriger ton article :P

            +

            Article très intéressant, merci pour les informations ;)

            + +
            +
            + +
            + +
            +
            +
            +
            +

            + Randall Flagg + · 12 août 2011 à 12 h 15 min +

            +

            salut hugo, j’avais pas vu ton site et cet article est vraiment bien foutu, et très informatif :)
            +GG!

            + +
            +
            +
              +
              + +
              +
              +
              +
              +

              + HugoPoi + · 13 août 2011 à 23 h 25 min +

              +

              Merci, j’espère continuer comme ça ;)

              + +
              +
              + +
            + +
            +
            +
            +

            Laisser un commentaire

            Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

            +
            +
            +

            + +

            +
            +
            +
            +
            +
            +
            + +
            +
            +
            +
            +
            +
            + + +
            + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/309f5023895f58a441841875df19462a3173ec76.00000254.html b/www/.content.EZtzwPjb/html/309f5023895f58a441841875df19462a3173ec76.00000254.html new file mode 100644 index 0000000..25f00db --- /dev/null +++ b/www/.content.EZtzwPjb/html/309f5023895f58a441841875df19462a3173ec76.00000254.html @@ -0,0 +1,817 @@ + + + + + + + + Install RancherOs on FreeNas 11.3 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
            +
            +
            +
            + +
            +
            +
            +
            +
            +
            +

            Install RancherOs on FreeNas 11.3

            +
              +
            • The automated RancherOs installation aka Docker VM has been removed in
              +11.3
            • +
            • RancherOs doesn’t support EFI boot out of the box
            • +
            • Thanks to MKinney howto
            • +
            • This howto is provided without warranty
            • +
            • TODO the proper way of doing it is somewhere here
            • +
            • Some stuff about losetup
            • +
            +

            1. Make a EFI bootable RancherOs image

            + +
              +
            1. wget https://releases.rancher.com/os/v1.5.5/rancheros.iso
            2. +
            3. wget http://releases.ubuntu.com/18.04/ubuntu-18.04.4-live-server-amd64.iso
            4. +
            5. mkdir tmpubuntu tmprancheros tmprancheros_dest
            6. +
            7. sudo mount ubuntuserverlive.iso tmpubuntu
            8. +
            9. sudo mount rancheros.iso tmprancheros
            10. +
            11. fallocate -l 150M rancheros.img
            12. +
            13. gdisk rancheros.img o,y,n,enter,enter,ef00,w,Y
            14. +
            15. sudo losetup --partscan --show --find rancheros.img
            16. +
            17. sudo mkfs.fat /dev/loop2p1
            18. +
            19. sudo mount /dev/loop2p1 rancheros_dest
            20. +
            21. sudo cp -r tmprancheros/* tmprancheros_dest/
            22. +
            23. sudo cp -r tmpubuntu/EFI tmprancheros_dest/
            24. +
            25. Replace the content of tmprancheros_dest/boot/grub/grub.cfg with:
            26. +
            +
            set timeout=5
            +menuentry "Install Rancher" {
            +    linux   /boot/vmlinuz-4.14.138-rancher rancher.autologin=tty1 rancher.autologin=ttyS0 rancher.autologin=ttyS1 console=tty1 console=ttyS0 console=ttyS1 printk.devkmsg=on panic=10 ---
            +    initrd  /boot/initrd-v1.5.5
            +}
            +
            +
              +
            1. sudo umount tmprancheros_dest
            2. +
            3. sudo losetup -d /dev/loop2
            4. +
            5. sudo umount tmpubuntu tmprancheros
            6. +
            +

            2. Installation in FreeNas as Vm

            +
              +
            1. Create a VM with EFI boot 2GB RAM choose virtio for all the driver
              +better performance with linux
            2. +
            3. Add a RAW device and select your rancheros.img
            4. +
            5. Start the VM
            6. +
            7. Go to serial and in the shell cu -l /dev/nmdmXX at this point you should
              +have a rancher shell
            8. +
            9. sudo fdisk /dev/vda then g,n,1,+200M,t,1,n,enter,enter,w you
              +should something like at the end
            10. +
            +
            Disk /dev/vda: 10 GiB, 10737418240 bytes, 20971520 sectors
            +Units: sectors of 1 * 512 = 512 bytes
            +Sector size (logical/physical): 512 bytes / 16384 bytes
            +I/O size (minimum/optimal): 16384 bytes / 16384 bytes
            +Disklabel type: gpt
            +Disk identifier: 2B56EE14-44BF-6443-A197-EF73723B715F
            +Device      Start      End  Sectors  Size Type
            +/dev/vda1    2048   411647   409600  200M EFI System
            +/dev/vda2  411648 20971486 20559839  9.8G Linux filesystem
            +
            +
              +
            1. Format the boot partition sudo mkdosfs -n RANCHER -F 32 /dev/vda1
            2. +
            3. Format the main filesystem sudo mkfs.ext4 -L RANCHER_STATE /dev/vda2
            4. +
            5. Create a cloud-config.yml see https://rancher.com/docs/os/v1.x/en/installation/running-rancheros/server/install-to-disk/ for minimum content
            6. +
            7. sudo mkdir /dev/sr0 for installer checking about iso mounted before
              +install
            8. +
            9. Install ros with sudo ros install -t gptsyslinux -c cloud-config.yml -d /dev/vda -p /dev/vda2
            10. +
            11. mkdir /mnt/efipart && sudo mount /dev/vda1 /mnt/efipart
            12. +
            13. mkdir /mnt/installer && sudo mount /dev/vdb1 /mnt/installer
            14. +
            15. sudo cp -r /mnt/installer/EFI /mnt/efipart
            16. +
            17. Add a grub.cfg in /mnt/efipart/EFI/BOOT/grub.cfg with in it:
              +You might want to add/remove autologin as you wish below

              +
                +
              • tty0 I think is VNC but I havent tested it
              • +
              • ttyS0 is serial (I have autologin enable in serial see below)
              • +
              +
            18. +
            +
            set timeout=1
            +menuentry "Rancher from GPT" {
            +    search --no-floppy --set=root --label RANCHER_STATE
            +    linux    /boot/vmlinuz-4.14.138-rancher printk.devkmsg=on rancher.state.dev=LABEL=RANCHER_STATE rancher.state.wait panic=10 console=tty0 console=ttyS0 rancher.autologin=ttyS0
            +    initrd    /boot/initrd-v1.5.5
            +}
            +
            +
              +
            1. sudo umount /mnt/*
            2. +
            3. sudo reboot
            4. +
            5. You are good to go
            6. +
            7. You can remove the RAW device in the VM config in FreeNas
            8. +
            +
            +
            + +
            +
            +
            +
            +
            +

            + 12 commentaires

            +
            + +
            +
            +
            +
            +

            + Rudi Pittman + · 18 mars 2020 à 17 h 46 min +

            +

            Can I or can I not use my existing rancher img that was previously being used by freenas? ie

            +

            -rw-r–r– 1 root wheel 21474836480 Mar 18 02:13 rancher.img_docker1

            +

            I have around 10 different docker containers defined inside and I really don’t want to have to redo all of them.

            + +
            +
            +
              +
              + +
              +
              +
              +
              +

              + HugoPoi + · 11 avril 2020 à 16 h 32 min +

              +

              If the image is a VM image like a zvol, I think it will work, but I’m not sure, it will only work if the 11.2 behavior is EFI compatible.
              +You may patch your existing image/snapshot by justing installing the efi bootloader aka grub in it.

              + +
              +
              + +
            + +
            + +
            +
            +
            +
            +

            + Rob RD + · 4 avril 2020 à 19 h 36 min +

            +

            Parfait – Merci Beaucoup! :)

            + +
            +
            + +
            + +
            +
            +
            +
            +

            + dario + · 12 avril 2020 à 14 h 07 min +

            +

            Thanks for this guide. I am stuck at Step 12:
            +> sudo mount /dev/vdb1 /mnt/installer
            +ther is no /dev/vdb1, regardingless if I choose to boot at step 10 or not

            + +
            +
            +
              +
              + +
              +
              +
              +
              +

              + HugoPoi + · 22 avril 2020 à 23 h 34 min +

              +

              Your installer may be on a different disk if you choose SCSI in place of virtio when you add the raw image device in Freenas, you can identified with

              +

              cat /proc/partitions

              +

              and

              +

              mount

              +

              it should be /dev/sda1 maybe

              + +
              +
              + +
            + +
            + +
            +
            +
            +
            +

            + somebody + · 19 avril 2020 à 13 h 07 min +

            +

            Thank you so much for the step by step guide, it was very helpful. With this I can finally transition from my old Docker VM inherited from FreeNAS 11.1.

            +

            Going to state the obvious (for some) and mention that when new version gets released and you run

            +

            sudo ros os upgrade

            +

            to upgrade you’ll also need to update initrd command in your grub.cfg file on EFI partition, otherwise you’re just going to boot into the same version.

            + +
            +
            +
              +
              + +
              +
              +
              +
              +

              + Rudi Pittman + · 1 juin 2020 à 1 h 58 min +

              +

              The problem I have is even though grub is specifying 4.14.138 and initird-v1.5.5 on reboot it tells me those don’t exist. Doing a grub edit and using autocomplete the files it ACTUALLY find are /boot/vmlinuz-4.14.73-rancher and /boot/initrd-v1.4.2. Where the heck are those coming from? When I look on /dev/vda2/boot I see the 4.14.138 and initrd-v1.5.5 as the grub reflects. /mnt/efipart/EFI/BOOT has:

              +

              -rwxr-xr-x 1 root root 1334816 May 30 15:13 BOOTx64.EFI
              +-rwxr-xr-x 1 root root 316 May 30 15:15 grub.cfg
              +-rwxr-xr-x 1 root root 1146744 May 30 15:13 grubx64.efi

              + +
              +
              + +
            + +
            + +
            +
            +
            +
            +

            + Max + · 3 mai 2020 à 16 h 40 min +

            +

            The image i downloaded does not start. Stuck at step4 in the bhyve shell. Any idea how to proceed from there?

            + +
            +
            +
              +
              + +
              +
              +
              +
              +

              + HugoPoi + · 10 mai 2020 à 14 h 53 min +

              +

              Try to change the device order to a lower or higher number to be sure it try to load the good bootloader.

              + +
              +
              + +
            + +
            + +
            +
            +
            +
            +

            + Rudi Pittman + · 1 juin 2020 à 18 h 28 min +

            +

            If you do a « ros os version » on your efi image it’s NOT v1.5.5. It’s v1.4.2 and running the command although it MAY download the files does nothing to actually make the grub.cfg FIND those new files. It’s still looking for vmlinuz-4.14.73 and initrd-v1.4.2.

            + +
            +
            +
              +
              + +
              +
              +
              +
              +

              + Johnny Z + · 25 juin 2020 à 8 h 49 min +

              +

              I found them. The guide doesn’t necessarily state where or when to get the files. You should be able to do this to find and copy the files

              +

              cd /mnt/installer/boot/
              +ls -asl
              +(here you will find the two files)
              +cp vmlinuz-4.14.138-rancher ../../efipart/efi/boot/
              +cp initrd-v1.5.5.5 ../../efipart/efi/boot

              +

              Double check my paths here but that should basically get you the files so the kernel can load proper

              + +
              +
              + +
            + +
            + +
            +
            +
            +
            +

            + Toohai + · 16 septembre 2020 à 8 h 18 min +

            +

            Missing step after 12 in part 1?

            +

            sudo cp -r tmpubuntu/boot/grub tmprancheros_dest/boot/

            + +
            +
            + +
            +
            +
            +

            Répondre à Rudi Pittman Annuler la réponse

            Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

            +
            +
            +

            + +

            +
            +
            +
            +
            +
            +
            + +
            +
            +
            +
            +
            +
            + + +
            + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/30aaafefb84db499efb8fbf5b8dd74e90476be27.00000625.css b/www/.content.EZtzwPjb/html/30aaafefb84db499efb8fbf5b8dd74e90476be27.00000625.css new file mode 100644 index 0000000..fe440fe --- /dev/null +++ b/www/.content.EZtzwPjb/html/30aaafefb84db499efb8fbf5b8dd74e90476be27.00000625.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;background:#fff;border:1px +solid #f00;font-size:10pt;width:280px;padding:2px}span.wpcf7-not-valid-tip-no-ajax{color:#f00;font-size:10pt;display:block}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/30f6389add41e6046e8d2b63057ce1a659d6570b.00001227.js b/www/.content.EZtzwPjb/html/30f6389add41e6046e8d2b63057ce1a659d6570b.00001227.js new file mode 100644 index 0000000..ac28859 --- /dev/null +++ b/www/.content.EZtzwPjb/html/30f6389add41e6046e8d2b63057ce1a659d6570b.00001227.js @@ -0,0 +1,12 @@ +/*! + * MediaElement.js + * http://www.mediaelementjs.com/ + * + * Wrapper that mimics native HTML5 MediaElement (audio and video) + * using a variety of technologies (pure JavaScript, Flash, iframe) + * + * Copyright 2010-2017, John Dyer (http://j.hn/) + * License: MIT + * + */ +!function r(a,s,l){function d(n,e){if(!s[n]){if(!a[n]){var t="function"==typeof require&&require;if(!e&&t)return t(n,!0);if(u)return u(n,!0);var o=new Error("Cannot find module '"+n+"'");throw o.code="MODULE_NOT_FOUND",o}var i=s[n]={exports:{}};a[n][0].call(i.exports,function(e){var t=a[n][1][e];return d(t||e)},i,i.exports,r,a,s,l)}return s[n].exports}for(var u="function"==typeof require&&require,e=0;e',o.addControlElement(t,"fullscreen"),t.addEventListener("click",function(){m.HAS_TRUE_NATIVE_FULLSCREEN&&m.IS_FULLSCREEN||n.isFullScreen?n.exitFullScreen():n.enterFullScreen()}),n.fullscreenBtn=t,o.options.keyActions.push({keys:[70],action:function(e,t,n,o){o.ctrlKey||void 0!==e.enterFullScreen&&(e.isFullScreen?e.exitFullScreen():e.enterFullScreen())}}),o.exitFullscreenCallback=function(e){var t=e.which||e.keyCode||0;o.options.enableKeyboard&&27===t&&(m.HAS_TRUE_NATIVE_FULLSCREEN&&m.IS_FULLSCREEN||o.isFullScreen)&&n.exitFullScreen()},o.globalBind("keydown",o.exitFullscreenCallback),o.normalHeight=0,o.normalWidth=0,m.HAS_TRUE_NATIVE_FULLSCREEN){n.globalBind(m.FULLSCREEN_EVENT_NAME,function(){n.isFullScreen&&(m.isFullScreen()?(n.isNativeFullScreen=!0,n.setControlsSize()):(n.isNativeFullScreen=!1,n.exitFullScreen()))})}}},cleanfullscreen:function(e){e.exitFullScreen(),e.globalUnbind("keydown",e.exitFullscreenCallback)},detectFullscreenMode:function(){var e=null!==this.media.rendererName&&/(native|html5)/i.test(this.media.rendererName),t="";return m.HAS_TRUE_NATIVE_FULLSCREEN&&e?t="native-native":m.HAS_TRUE_NATIVE_FULLSCREEN&&!e?t="plugin-native":this.usePluginFullScreen&&m.SUPPORT_POINTER_EVENTS&&(t="plugin-click"),this.fullscreenMode=t},enterFullScreen:function(){var o=this,e=null!==o.media.rendererName&&/(html5|native)/i.test(o.media.rendererName),t=getComputedStyle(o.getElement(o.container));if(o.isVideo)if(!1===o.options.useFakeFullscreen&&m.IS_IOS&&m.HAS_IOS_FULLSCREEN&&"function"==typeof o.media.originalNode.webkitEnterFullscreen&&o.media.originalNode.canPlayType((0,g.getTypeFromFile)(o.media.getSrc())))o.media.originalNode.webkitEnterFullscreen();else{if((0,v.addClass)(p.default.documentElement,o.options.classPrefix+"fullscreen"),(0,v.addClass)(o.getElement(o.container),o.options.classPrefix+"container-fullscreen"),o.normalHeight=parseFloat(t.height),o.normalWidth=parseFloat(t.width),"native-native"!==o.fullscreenMode&&"plugin-native"!==o.fullscreenMode||(m.requestFullScreen(o.getElement(o.container)),o.isInIframe&&setTimeout(function e(){if(o.isNativeFullScreen){var t=f.default.innerWidth||p.default.documentElement.clientWidth||p.default.body.clientWidth,n=screen.width;.002*n',l.addEventListener("click",function(){i.paused?i.play():i.pause()});var d=l.querySelector("button");function u(e){"play"===e?((0,m.removeClass)(l,i.options.classPrefix+"play"),(0,m.removeClass)(l,i.options.classPrefix+"replay"),(0,m.addClass)(l,i.options.classPrefix+"pause"),d.setAttribute("title",s),d.setAttribute("aria-label",s)):((0,m.removeClass)(l,i.options.classPrefix+"pause"),(0,m.removeClass)(l,i.options.classPrefix+"replay"),(0,m.addClass)(l,i.options.classPrefix+"play"),d.setAttribute("title",a),d.setAttribute("aria-label",a))}i.addControlElement(l,"playpause"),u("pse"),o.addEventListener("loadedmetadata",function(){-1===o.rendererName.indexOf("flash")&&u("pse")}),o.addEventListener("play",function(){u("play")}),o.addEventListener("playing",function(){u("play")}),o.addEventListener("pause",function(){u("pse")}),o.addEventListener("ended",function(){e.options.loop||((0,m.removeClass)(l,i.options.classPrefix+"pause"),(0,m.removeClass)(l,i.options.classPrefix+"play"),(0,m.addClass)(l,i.options.classPrefix+"replay"),d.setAttribute("title",a),d.setAttribute("aria-label",a))})}})},{16:16,2:2,26:26,27:27,5:5}],11:[function(e,t,n){"use strict";var p=r(e(2)),o=e(16),i=r(o),m=r(e(5)),y=e(25),E=e(30),b=e(26);function r(e){return e&&e.__esModule?e:{default:e}}Object.assign(o.config,{enableProgressTooltip:!0,useSmoothHover:!0,forceLive:!1}),Object.assign(i.default.prototype,{buildprogress:function(h,s,e,d){var u=0,v=!1,c=!1,g=this,t=h.options.autoRewind,n=h.options.enableProgressTooltip?'00:00':"",o=p.default.createElement("div");o.className=g.options.classPrefix+"time-rail",o.innerHTML=''+n+"",g.addControlElement(o,"progress"),g.options.keyActions.push({keys:[37,227],action:function(e){if(!isNaN(e.duration)&&0o+n.left&&(d=o+n.left),a=(l=d-n.left)/o,g.newTime=a*g.getDuration(),v&&null!==g.getCurrentTime()&&g.newTime.toFixed(4)!==g.getCurrentTime().toFixed(4)&&(g.setCurrentRailHandle(g.newTime),g.updateCurrent(g.newTime)),!y.IS_IOS&&!y.IS_ANDROID){if(l<0&&(l=0),g.options.useSmoothHover&&null!==r&&void 0!==window[r]){var u=new window[r](getComputedStyle(g.handle)[i]).m41,c=l/parseFloat(getComputedStyle(g.total).width)-u/parseFloat(getComputedStyle(g.total).width);g.hovered.style.left=u+"px",g.setTransformStyle(g.hovered,"scaleX("+c+")"),g.hovered.setAttribute("pos",l),0<=c?(0,b.removeClass)(g.hovered,"negative"):(0,b.addClass)(g.hovered,"negative")}if(g.timefloat){var f=g.timefloat.offsetWidth/2,p=mejs.Utils.offset(g.getElement(g.container)),m=getComputedStyle(g.timefloat);s=d-p.left=g.getElement(g.container).offsetWidth-f?g.total.offsetWidth-f:l,(0,b.hasClass)(g.getElement(g.container),g.options.classPrefix+"long-video")&&(s+=parseFloat(m.marginLeft)/2+g.timefloat.offsetWidth/2),g.timefloat.style.left=s+"px",g.timefloatcurrent.innerHTML=(0,E.secondsToTimeCode)(g.newTime,h.options.alwaysShowHours,h.options.showTimecodeFrameCount,h.options.framesPerSecond,h.options.secondsDecimalLength,h.options.timeFormat),g.timefloat.style.display="block"}}}else y.IS_IOS||y.IS_ANDROID||!g.timefloat||(s=g.timefloat.offsetWidth+o>=g.getElement(g.container).offsetWidth?g.timefloat.offsetWidth/2:0,g.timefloat.style.left=s+"px",g.timefloat.style.left=s+"px",g.timefloat.style.display="block")},f=function(){1e3<=new Date-u&&g.play()};g.slider.addEventListener("focus",function(){h.options.autoRewind=!1}),g.slider.addEventListener("blur",function(){h.options.autoRewind=t}),g.slider.addEventListener("keydown",function(e){if(1e3<=new Date-u&&(c=g.paused),g.options.enableKeyboard&&g.options.keyActions.length){var t=e.which||e.keyCode||0,n=g.getDuration(),o=h.options.defaultSeekForwardInterval(d),i=h.options.defaultSeekBackwardInterval(d),r=g.getCurrentTime(),a=g.getElement(g.container).querySelector("."+g.options.classPrefix+"volume-slider");if(38===t||40===t){a&&(a.style.display="block"),g.isVideo&&(g.showControls(),g.startControlsTimer());var s=38===t?Math.min(g.volume+.1,1):Math.max(g.volume-.1,0),l=s<=0;return g.setVolume(s),void g.setMuted(l)}switch(a&&(a.style.display="none"),t){case 37:g.getDuration()!==1/0&&(r-=i);break;case 39:g.getDuration()!==1/0&&(r+=o);break;case 36:r=0;break;case 35:r=n;break;case 13:case 32:return void(y.IS_FIREFOX&&(g.paused?g.play():g.pause()));default:return}r=r<0||isNaN(r)?0:n<=r?n:Math.floor(r),u=new Date,c||h.pause(),setTimeout(function(){g.setCurrentTime(r)},0),r | "}),Object.assign(i.default.prototype,{buildcurrent:function(e,t,n,o){var i=this,r=a.default.createElement("div");r.className=i.options.classPrefix+"time",r.setAttribute("role","timer"),r.setAttribute("aria-live","off"),r.innerHTML=''+(0,s.secondsToTimeCode)(0,e.options.alwaysShowHours,e.options.showTimecodeFrameCount,e.options.framesPerSecond,e.options.secondsDecimalLength,e.options.timeFormat)+"",i.addControlElement(r,"current"),e.updateCurrent(),i.updateTimeCallback=function(){i.controlsAreVisible&&e.updateCurrent()},o.addEventListener("timeupdate",i.updateTimeCallback)},cleancurrent:function(e,t,n,o){o.removeEventListener("timeupdate",e.updateTimeCallback)},buildduration:function(e,t,n,o){var i=this;if(t.lastChild.querySelector("."+i.options.classPrefix+"currenttime"))t.querySelector("."+i.options.classPrefix+"time").innerHTML+=i.options.timeAndDurationSeparator+''+(0,s.secondsToTimeCode)(i.options.duration,i.options.alwaysShowHours,i.options.showTimecodeFrameCount,i.options.framesPerSecond,i.options.secondsDecimalLength,i.options.timeFormat)+"";else{t.querySelector("."+i.options.classPrefix+"currenttime")&&(0,l.addClass)(t.querySelector("."+i.options.classPrefix+"currenttime").parentNode,i.options.classPrefix+"currenttime-container");var r=a.default.createElement("div");r.className=i.options.classPrefix+"time "+i.options.classPrefix+"duration-container",r.innerHTML=''+(0,s.secondsToTimeCode)(i.options.duration,i.options.alwaysShowHours,i.options.showTimecodeFrameCount,i.options.framesPerSecond,i.options.secondsDecimalLength,i.options.timeFormat)+"",i.addControlElement(r,"duration")}i.updateDurationCallback=function(){i.controlsAreVisible&&e.updateDuration()},o.addEventListener("timeupdate",i.updateDurationCallback)},cleanduration:function(e,t,n,o){o.removeEventListener("timeupdate",e.updateDurationCallback)},updateCurrent:function(){var e=this,t=e.getCurrentTime();isNaN(t)&&(t=0);var n=(0,s.secondsToTimeCode)(t,e.options.alwaysShowHours,e.options.showTimecodeFrameCount,e.options.framesPerSecond,e.options.secondsDecimalLength,e.options.timeFormat);5',o.captions.style.display="none",t.insertBefore(o.captions,t.firstChild),o.captionsText=o.captions.querySelector("."+i.options.classPrefix+"captions-text"),o.captionsButton=L.default.createElement("div"),o.captionsButton.className=i.options.classPrefix+"button "+i.options.classPrefix+"captions-button",o.captionsButton.innerHTML='
            ",i.addControlElement(o.captionsButton,"tracks"),o.captionsButton.querySelector("."+i.options.classPrefix+"captions-selector-input").disabled=!1,o.chaptersButton=L.default.createElement("div"),o.chaptersButton.className=i.options.classPrefix+"button "+i.options.classPrefix+"chapters-button",o.chaptersButton.innerHTML='
              ';for(var u=0,c=0;c"},checkForTracks:function(){var e=this,t=!1;if(e.options.hideCaptionsButtonWhenEmpty){for(var n=0,o=e.tracks.length;n";for(var o=r.chaptersButton.querySelectorAll('input[type="radio"]'),i=r.chaptersButton.querySelectorAll("."+r.options.classPrefix+"chapters-selector-label"),a=0,s=o.length;a>1].start,a=e[i].stop,r<=t&&t ((?:[0-9]{1,2}:)?[0-9]{2}:[0-9]{2}([,.][0-9]{3})?)(.*)$/,parse:function(e){for(var t=e.split(/\r?\n/),n=[],o=void 0,i=void 0,r=void 0,a=0,s=t.length;a$1"),n.push({identifier:r,start:0===(0,m.convertSMPTEtoSeconds)(o[1])?.2:(0,m.convertSMPTEtoSeconds)(o[1]),stop:(0,m.convertSMPTEtoSeconds)(o[3]),text:i,settings:o[5]})}r=""}return n}},dfxp:{parse:function(e){var t=(e=$(e).filter("tt")).firstChild,n=t.querySelectorAll("p"),o=e.getElementById(""+t.attr("style")),i=[],r=void 0;if(o.length){o.removeAttribute("id");var a=o.attributes;if(a.length){r={};for(var s=0,l=a.length;s$1"),i.push(f)}return i}}}},{16:16,2:2,26:26,27:27,30:30,5:5,7:7}],14:[function(e,t,n){"use strict";var x=r(e(2)),o=e(16),i=r(o),w=r(e(5)),P=e(25),T=e(27),C=e(26);function r(e){return e&&e.__esModule?e:{default:e}}Object.assign(o.config,{muteText:null,unmuteText:null,allyVolumeControlText:null,hideVolumeOnTouchDevices:!0,audioVolume:"horizontal",videoVolume:"vertical",startVolume:.8}),Object.assign(i.default.prototype,{buildvolume:function(e,t,n,o){if(!P.IS_ANDROID&&!P.IS_IOS||!this.options.hideVolumeOnTouchDevices){var a=this,s=a.isVideo?a.options.videoVolume:a.options.audioVolume,r=(0,T.isString)(a.options.muteText)?a.options.muteText:w.default.t("mejs.mute"),l=(0,T.isString)(a.options.unmuteText)?a.options.unmuteText:w.default.t("mejs.unmute"),i=(0,T.isString)(a.options.allyVolumeControlText)?a.options.allyVolumeControlText:w.default.t("mejs.volume-help-text"),d=x.default.createElement("div");if(d.className=a.options.classPrefix+"button "+a.options.classPrefix+"volume-button "+a.options.classPrefix+"mute",d.innerHTML="horizontal"===s?'':''+i+'
              ',a.addControlElement(d,"volume"),a.options.keyActions.push({keys:[38],action:function(e){var t=e.getElement(e.container).querySelector("."+a.options.classPrefix+"volume-slider");t&&t.matches(":focus")&&(t.style.display="block"),e.isVideo&&(e.showControls(),e.startControlsTimer());var n=Math.min(e.volume+.1,1);e.setVolume(n),0'+i+'
              ',d.parentNode.insertBefore(u,d.nextSibling)}var c=!1,f=!1,p=!1,m="vertical"===s?a.getElement(a.container).querySelector("."+a.options.classPrefix+"volume-slider"):a.getElement(a.container).querySelector("."+a.options.classPrefix+"horizontal-volume-slider"),h="vertical"===s?a.getElement(a.container).querySelector("."+a.options.classPrefix+"volume-total"):a.getElement(a.container).querySelector("."+a.options.classPrefix+"horizontal-volume-total"),v="vertical"===s?a.getElement(a.container).querySelector("."+a.options.classPrefix+"volume-current"):a.getElement(a.container).querySelector("."+a.options.classPrefix+"horizontal-volume-current"),g="vertical"===s?a.getElement(a.container).querySelector("."+a.options.classPrefix+"volume-handle"):a.getElement(a.container).querySelector("."+a.options.classPrefix+"horizontal-volume-handle"),y=function(e){if(null!==e&&!isNaN(e)&&void 0!==e){if(e=Math.max(0,e),0===(e=Math.min(e,1))){(0,C.removeClass)(d,a.options.classPrefix+"mute"),(0,C.addClass)(d,a.options.classPrefix+"unmute");var t=d.firstElementChild;t.setAttribute("title",l),t.setAttribute("aria-label",l)}else{(0,C.removeClass)(d,a.options.classPrefix+"unmute"),(0,C.addClass)(d,a.options.classPrefix+"mute");var n=d.firstElementChild;n.setAttribute("title",r),n.setAttribute("aria-label",r)}var o=100*e+"%",i=getComputedStyle(g);"vertical"===s?(v.style.bottom=0,v.style.height=o,g.style.bottom=o,g.style.marginBottom=-parseFloat(i.height)/2+"px"):(v.style.left=0,v.style.width=o,g.style.left=o,g.style.marginLeft=-parseFloat(i.width)/2+"px")}},E=function(e){var t=(0,C.offset)(h),n=getComputedStyle(h);p=!0;var o=null;if("vertical"===s){var i=parseFloat(n.height);if(o=(i-(e.pageY-t.top))/i,0===t.top||0===t.left)return}else{var r=parseFloat(n.width);o=(e.pageX-t.left)/r}o=Math.max(0,o),o=Math.min(o,1),y(o),a.setMuted(0===o),a.setVolume(o),e.preventDefault(),e.stopPropagation()},b=function(){a.muted?(y(0),(0,C.removeClass)(d,a.options.classPrefix+"mute"),(0,C.addClass)(d,a.options.classPrefix+"unmute")):(y(o.volume),(0,C.removeClass)(d,a.options.classPrefix+"unmute"),(0,C.addClass)(d,a.options.classPrefix+"mute"))};e.getElement(e.container).addEventListener("keydown",function(e){!!e.target.closest("."+a.options.classPrefix+"container")||"vertical"!==s||(m.style.display="none")}),d.addEventListener("mouseenter",function(e){e.target===d&&(m.style.display="block",f=!0,e.preventDefault(),e.stopPropagation())}),d.addEventListener("focusin",function(){m.style.display="block",f=!0}),d.addEventListener("focusout",function(e){e.relatedTarget&&(!e.relatedTarget||e.relatedTarget.matches("."+a.options.classPrefix+"volume-slider"))||"vertical"!==s||(m.style.display="none")}),d.addEventListener("mouseleave",function(){f=!1,c||"vertical"!==s||(m.style.display="none")}),d.addEventListener("focusout",function(){f=!1}),d.addEventListener("keydown",function(e){if(a.options.enableKeyboard&&a.options.keyActions.length){var t=e.which||e.keyCode||0,n=o.volume;switch(t){case 38:n=Math.min(n+.1,1);break;case 40:n=Math.max(0,n-.1);break;default:return!0}c=!1,y(n),o.setVolume(n),e.preventDefault(),e.stopPropagation()}}),d.querySelector("button").addEventListener("click",function(){o.setMuted(!o.muted);var e=(0,T.createEvent)("volumechange",o);o.dispatchEvent(e)}),m.addEventListener("dragstart",function(){return!1}),m.addEventListener("mouseover",function(){f=!0}),m.addEventListener("focusin",function(){m.style.display="block",f=!0}),m.addEventListener("focusout",function(){f=!1,c||"vertical"!==s||(m.style.display="none")}),m.addEventListener("mousedown",function(e){E(e),a.globalBind("mousemove.vol",function(e){var t=e.target;c&&(t===m||t.closest("vertical"===s?"."+a.options.classPrefix+"volume-slider":"."+a.options.classPrefix+"horizontal-volume-slider"))&&E(e)}),a.globalBind("mouseup.vol",function(){c=!1,f||"vertical"!==s||(m.style.display="none")}),c=!0,e.preventDefault(),e.stopPropagation()}),o.addEventListener("volumechange",function(e){var t;c||b(),t=Math.floor(100*o.volume),m.setAttribute("aria-valuenow",t),m.setAttribute("aria-valuetext",t+"%")});var S=!1;o.addEventListener("rendererready",function(){p||setTimeout(function(){S=!0,(0===e.options.startVolume||o.originalNode.muted)&&(o.setMuted(!0),e.options.startVolume=0),o.setVolume(e.options.startVolume),a.setControlsSize()},250)}),o.addEventListener("loadedmetadata",function(){setTimeout(function(){p||S||((0===e.options.startVolume||o.originalNode.muted)&&o.setMuted(!0),o.setVolume(e.options.startVolume),a.setControlsSize()),S=!1},250)}),(0===e.options.startVolume||o.originalNode.muted)&&(o.setMuted(!0),e.options.startVolume=0,b()),a.getElement(a.container).addEventListener("controlsresize",function(){b()})}}})},{16:16,2:2,25:25,26:26,27:27,5:5}],15:[function(e,t,n){"use strict";Object.defineProperty(n,"__esModule",{value:!0});n.EN={"mejs.plural-form":1,"mejs.download-file":"Download File","mejs.install-flash":"You are using a browser that does not have Flash player enabled or installed. Please turn on your Flash player plugin or download the latest version from https://get.adobe.com/flashplayer/","mejs.fullscreen":"Fullscreen","mejs.play":"Play","mejs.pause":"Pause","mejs.time-slider":"Time Slider","mejs.time-help-text":"Use Left/Right Arrow keys to advance one second, Up/Down arrows to advance ten seconds.","mejs.live-broadcast":"Live Broadcast","mejs.volume-help-text":"Use Up/Down Arrow keys to increase or decrease volume.","mejs.unmute":"Unmute","mejs.mute":"Mute","mejs.volume-slider":"Volume Slider","mejs.video-player":"Video Player","mejs.audio-player":"Audio Player","mejs.captions-subtitles":"Captions/Subtitles","mejs.captions-chapters":"Chapters","mejs.none":"None","mejs.afrikaans":"Afrikaans","mejs.albanian":"Albanian","mejs.arabic":"Arabic","mejs.belarusian":"Belarusian","mejs.bulgarian":"Bulgarian","mejs.catalan":"Catalan","mejs.chinese":"Chinese","mejs.chinese-simplified":"Chinese (Simplified)","mejs.chinese-traditional":"Chinese (Traditional)","mejs.croatian":"Croatian","mejs.czech":"Czech","mejs.danish":"Danish","mejs.dutch":"Dutch","mejs.english":"English","mejs.estonian":"Estonian","mejs.filipino":"Filipino","mejs.finnish":"Finnish","mejs.french":"French","mejs.galician":"Galician","mejs.german":"German","mejs.greek":"Greek","mejs.haitian-creole":"Haitian Creole","mejs.hebrew":"Hebrew","mejs.hindi":"Hindi","mejs.hungarian":"Hungarian","mejs.icelandic":"Icelandic","mejs.indonesian":"Indonesian","mejs.irish":"Irish","mejs.italian":"Italian","mejs.japanese":"Japanese","mejs.korean":"Korean","mejs.latvian":"Latvian","mejs.lithuanian":"Lithuanian","mejs.macedonian":"Macedonian","mejs.malay":"Malay","mejs.maltese":"Maltese","mejs.norwegian":"Norwegian","mejs.persian":"Persian","mejs.polish":"Polish","mejs.portuguese":"Portuguese","mejs.romanian":"Romanian","mejs.russian":"Russian","mejs.serbian":"Serbian","mejs.slovak":"Slovak","mejs.slovenian":"Slovenian","mejs.spanish":"Spanish","mejs.swahili":"Swahili","mejs.swedish":"Swedish","mejs.tagalog":"Tagalog","mejs.thai":"Thai","mejs.turkish":"Turkish","mejs.ukrainian":"Ukrainian","mejs.vietnamese":"Vietnamese","mejs.welsh":"Welsh","mejs.yiddish":"Yiddish"}},{}],16:[function(e,t,n){"use strict";Object.defineProperty(n,"__esModule",{value:!0}),n.config=void 0;var i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},o=function(){function o(e,t){for(var n=0;n
              ',n.getElement(n.container).addEventListener("focus",function(e){if(!n.controlsAreVisible&&!n.hasFocus&&n.controlsEnabled){n.showControls(!0);var t=(0,m.isNodeAfter)(e.relatedTarget,n.getElement(n.container))?"."+n.options.classPrefix+"controls ."+n.options.classPrefix+"button:last-child > button":"."+n.options.classPrefix+"playpause-button > button";n.getElement(n.container).querySelector(t).focus()}}),n.node.parentNode.insertBefore(n.getElement(n.container),n.node),n.options.features.length||n.options.useDefaultControls||(n.getElement(n.container).style.background="transparent",n.getElement(n.container).querySelector("."+n.options.classPrefix+"controls").style.display="none"),n.isVideo&&"fill"===n.options.stretching&&!P.hasClass(n.getElement(n.container).parentNode,n.options.classPrefix+"fill-container")){n.outerContainer=n.media.parentNode;var r=x.default.createElement("div");r.className=n.options.classPrefix+"fill-container",n.getElement(n.container).parentNode.insertBefore(r,n.getElement(n.container)),r.appendChild(n.getElement(n.container))}w.IS_ANDROID&&P.addClass(n.getElement(n.container),n.options.classPrefix+"android"),w.IS_IOS&&P.addClass(n.getElement(n.container),n.options.classPrefix+"ios"),w.IS_IPAD&&P.addClass(n.getElement(n.container),n.options.classPrefix+"ipad"),w.IS_IPHONE&&P.addClass(n.getElement(n.container),n.options.classPrefix+"iphone"),P.addClass(n.getElement(n.container),n.isVideo?n.options.classPrefix+"video":n.options.classPrefix+"audio"),n.getElement(n.container).querySelector("."+n.options.classPrefix+"mediaelement").appendChild(n.node),(n.media.player=n).controls=n.getElement(n.container).querySelector("."+n.options.classPrefix+"controls"),n.layers=n.getElement(n.container).querySelector("."+n.options.classPrefix+"layers");var a=n.isVideo?"video":"audio",s=a.substring(0,1).toUpperCase()+a.substring(1);0=n.width?n.width/n.height:n.height/n.width,n.setPlayerSize(n.width,n.height),e.pluginWidth=n.width,e.pluginHeight=n.height}if(f.default.MepDefaults=e,new d.default(n.media,e,n.mediaFiles),void 0!==n.getElement(n.container)&&n.options.features.length&&n.controlsAreVisible&&!n.options.hideVideoControlsOnLoad){var l=(0,m.createEvent)("controlsshown",n.getElement(n.container));n.getElement(n.container).dispatchEvent(l)}}},{key:"showControls",value:function(e){var i=this;if(e=void 0===e||e,!i.controlsAreVisible&&i.isVideo){if(e)!function(){P.fadeIn(i.getElement(i.controls),200,function(){P.removeClass(i.getElement(i.controls),i.options.classPrefix+"offscreen");var e=(0,m.createEvent)("controlsshown",i.getElement(i.container));i.getElement(i.container).dispatchEvent(e)});for(var n=i.getElement(i.container).querySelectorAll("."+i.options.classPrefix+"control"),e=function(e,t){P.fadeIn(n[e],200,function(){P.removeClass(n[e],i.options.classPrefix+"offscreen")})},t=0,o=n.length;t'),e.message&&(a="

              "+e.message+"

              "),e.urls)for(var d=0,u=e.urls.length;d'+f.default.i18n.t("mejs.download-file")+": "+c.src+""}}a&&o.getElement(o.layers).querySelector("."+o.options.classPrefix+"overlay-error")&&(r.innerHTML=a,o.getElement(o.layers).querySelector("."+o.options.classPrefix+"overlay-error").innerHTML=""+s+r.outerHTML,o.getElement(o.layers).querySelector("."+o.options.classPrefix+"overlay-error").parentNode.style.display="block"),o.controlsEnabled&&o.disableControls()}},{key:"setPlayerSize",value:function(e,t){var n=this;if(!n.options.setDimensions)return!1;switch(void 0!==e&&(n.width=e),void 0!==t&&(n.height=t),n.options.stretching){case"fill":n.isVideo?n.setFillMode():n.setDimensions(n.width,n.height);break;case"responsive":n.setResponsiveMode();break;case"none":n.setDimensions(n.width,n.height);break;default:!0===n.hasFluidMode()?n.setResponsiveMode():n.setDimensions(n.width,n.height)}}},{key:"hasFluidMode",value:function(){var e=this;return-1!==e.height.toString().indexOf("%")||e.node&&e.node.style.maxWidth&&"none"!==e.node.style.maxWidth&&e.node.style.maxWidth!==e.width||e.node&&e.node.currentStyle&&"100%"===e.node.currentStyle.maxWidth}},{key:"setResponsiveMode",value:function(){var e,o=this,t=function(){for(var t=void 0,n=o.getElement(o.container);n;){try{if(w.IS_FIREFOX&&"html"===n.tagName.toLowerCase()&&S.default.self!==S.default.top&&null!==S.default.frameElement)return S.default.frameElement;t=n.parentElement}catch(e){t=n.parentElement}if(t&&P.visible(t))return t;n=t}return null}(),n=t?getComputedStyle(t,null):getComputedStyle(x.default.body,null),i=o.isVideo?o.node.videoWidth&&0=o.width?o.node.videoWidth/o.node.videoHeight:o.node.videoHeight/o.node.videoWidth:o.initialAspectRatio,(isNaN(e)||e<.01||100=o.width?parseFloat(d/a,10):parseFloat(d*a,10):r,isNaN(l)&&(l=s),0img");a&&(a.style.display="");for(var s=e.getElement(e.container).querySelectorAll("object, embed, iframe, video"),l=e.height,d=e.width,u=i,c=l*i/d,f=d*r/l,p=r,m=i',n.appendChild(r),a.style.display="none",a.className=i.options.classPrefix+"overlay "+i.options.classPrefix+"layer",a.innerHTML='
              ',n.appendChild(a),s.className=i.options.classPrefix+"overlay "+i.options.classPrefix+"layer "+i.options.classPrefix+"overlay-play",s.innerHTML='
              ',s.addEventListener("click",function(){if(i.options.clickToPlayPause){var e=i.getElement(i.container).querySelector("."+i.options.classPrefix+"overlay-button"),t=e.getAttribute("aria-pressed");i.paused?i.play():i.pause(),e.setAttribute("aria-pressed",!!t),i.getElement(i.container).focus()}}),s.addEventListener("keydown",function(e){var t=e.keyCode||e.which||0;if(13===t||w.IS_FIREFOX&&32===t){var n=(0,m.createEvent)("click",s);return s.dispatchEvent(n),!1}}),n.appendChild(s),null!==i.media.rendererName&&(/(youtube|facebook)/i.test(i.media.rendererName)&&!(i.media.originalNode.getAttribute("poster")||t.options.poster||"function"==typeof i.media.renderer.getPosterUrl&&i.media.renderer.getPosterUrl())||w.IS_STOCK_ANDROID||i.media.originalNode.getAttribute("autoplay"))&&(s.style.display="none");var l=!1;o.addEventListener("play",function(){s.style.display="none",r.style.display="none",a.style.display="none",l=!1}),o.addEventListener("playing",function(){s.style.display="none",r.style.display="none",a.style.display="none",l=!1}),o.addEventListener("seeking",function(){s.style.display="none",r.style.display="",l=!1}),o.addEventListener("seeked",function(){s.style.display=i.paused&&!w.IS_STOCK_ANDROID?"":"none",r.style.display="none",l=!1}),o.addEventListener("pause",function(){r.style.display="none",w.IS_STOCK_ANDROID||l||(s.style.display=""),l=!1}),o.addEventListener("waiting",function(){r.style.display="",l=!1}),o.addEventListener("loadeddata",function(){r.style.display="",w.IS_ANDROID&&(o.canplayTimeout=setTimeout(function(){if(x.default.createEvent){var e=x.default.createEvent("HTMLEvents");return e.initEvent("canplay",!0,!0),o.dispatchEvent(e)}},300)),l=!1}),o.addEventListener("canplay",function(){r.style.display="none",clearTimeout(o.canplayTimeout),l=!1}),o.addEventListener("error",function(e){i._handleError(e,i.media,i.node),r.style.display="none",s.style.display="none",l=!0}),o.addEventListener("loadedmetadata",function(){i.controlsEnabled||i.enableControls()}),o.addEventListener("keydown",function(e){i.onkeydown(t,o,e),l=!1})}}},{key:"buildkeyboard",value:function(o,e,t,i){var r=this;r.getElement(r.container).addEventListener("keydown",function(){r.keyboardAction=!0}),r.globalKeydownCallback=function(e){var t=x.default.activeElement.closest("."+r.options.classPrefix+"container"),n=r.media.closest("."+r.options.classPrefix+"container");return r.hasFocus=!(!t||!n||t.id!==n.id),r.onkeydown(o,i,e)},r.globalClickCallback=function(e){r.hasFocus=!!e.target.closest("."+r.options.classPrefix+"container")},r.globalBind("keydown",r.globalKeydownCallback),r.globalBind("click",r.globalClickCallback)}},{key:"onkeydown",value:function(e,t,n){if(e.hasFocus&&e.options.enableKeyboard)for(var o=0,i=e.options.keyActions.length;oimg");(e&&l.node.setAttribute("poster",e.src),delete l.node.autoplay,l.node.setAttribute("src",""),""!==l.media.canPlayType((0,p.getTypeFromFile)(u))&&l.node.setAttribute("src",u),d&&-1t[0]||n[0]===t[0]&&n[1]>t[1]||n[0]===t[0]&&n[1]===t[1]&&n[2]>=t[2]},addPlugin:function(e,t,n,o,i){r.plugins[e]=r.detectPlugin(t,n,o,i)},detectPlugin:function(e,t,n,o){var i=[0,0,0],r=void 0,a=void 0;if(null!==F.NAV.plugins&&void 0!==F.NAV.plugins&&"object"===d(F.NAV.plugins[e])){if((r=F.NAV.plugins[e].description)&&(void 0===F.NAV.mimeTypes||!F.NAV.mimeTypes[t]||F.NAV.mimeTypes[t].enabledPlugin))for(var s=0,l=(i=r.replace(e,"").replace(/^\s+/,"").replace(/\sr/gi,".").split(".")).length;s
              '+N.default.t("mejs.install-flash")+"
              "}else x=['id="__'+r.id+'"','name="__'+r.id+'"','play="true"','loop="false"','quality="high"','bgcolor="#000000"','wmode="transparent"','allowScriptAccess="'+r.options.shimScriptAccess+'"','allowFullScreen="true"','type="application/x-shockwave-flash"','pluginspage="//www.macromedia.com/go/getflashplayer"','src="'+r.options.pluginPath+r.options.filename+'"','flashvars="'+y.join("&")+'"'],E?(x.push('width="'+S+'"'),x.push('height="'+b+'"')):x.push('style="position: fixed; left: -9999em; top: -9999em;"'),r.flashWrapper.innerHTML="";if(r.flashNode=r.flashWrapper.lastChild,r.hide=function(){o=!1,E&&(r.flashNode.style.display="none")},r.show=function(){o=!0,E&&(r.flashNode.style.display="")},r.setSize=function(e,t){r.flashNode.style.width=e+"px",r.flashNode.style.height=t+"px",null!==r.flashApi&&"function"==typeof r.flashApi.fire_setSize&&r.flashApi.fire_setSize(e,t)},r.destroy=function(){r.flashNode.remove()},n&&0":">",'"':"""};return e.replace(/[&<>"]/g,function(e){return t[e]})}function s(o,i){var r=this,a=arguments,s=2x',t.firstChild.href}function d(e){var t=1 + + + + + + + Secure Boot n’est pas simple – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
              +
              +
              +
              + +
              +
              +
              +
              +
              +
              +

              1. Pourquoi cet article

              +

              La sécurité de nos ordinateurs c’est un peu amélioré si on sait ce qu’on fait avec. Avant pour démarrer votre OS le BIOS utilisait un MBR Master Boot Record présent dans le premier secteur de votre disque-dur. Ce MBR pouvait être écrasé par n’importe quel programme ayant accès au MBR, en général il faut être root sous linux pour installer un nouveau MBR. Donc malware ou virus disposant des droits d’administration pouvait s’installer en tant que MBR gagnant ainsi en persistance. Autre attaque possible est tout simplement un media USB qui démarre et écrase le MBR par un programme malveillant. Une fois votre machine redémarrer pas de possibilité de contrôler quel boot loader a été exécuté par votre BIOS. Et ça là qu’entre en jeux SecureBoot introduit dans les machines disposant de firmware UEFI.

              +

              J’ai trouvé des articles (exemple) parlant de sécurité d’OS avec la mise en place de chiffrement de disque complet, ou de partition avec LUKS sur LVM. C’est une bonne chose de mettre en place ce genre solution surtout sur des ordinateurs portables. Problème ces articles ne parle pas de la sécurité de la machine dans son ensemble et prennent quelques raccourcis sur les bénéfices de chiffrer par exemple la partition /boot de votre linux.

              +

              Chiffrer votre partition de boot :

              +
                +
              • NE VOUS PROTÈGE PAS DES ATTAQUES SUR LE BOOTLOADER ( écrasement du boot loader par un keylogger par exemple)
              • +
              • IL NE MASQUE PAS VRAIMENT l’OS QUE VOUS UTILISEZ pour la simple et bonne raison que si votre boot loader est GRUB il y a de grande chance que ce soit du Linux derrière et uniquement avec le hash de votre bootloader on pourra identifier quel distribution vous utilisez et quel version.
              • +
              +

              Dans la pratique si on peut compromettre la chaîne de démarrage en amont de l’outil qui va déchiffrer/démarrer l’OS, vous ne pouvez quasiment rien faire contre les attaques dont vous êtes la cible. Cela vous protège au moins contre le vol physique de votre machine si vous avez une passphrase suffisamment longue.

              +

              2. Comment ça marche

              +

              SecureBoot fonctionne à l’aide de certificats X509 comme une PKI. Votre UEFI contient des clés publiques/certificats. Les chargeurs/loader/bootloader au format efi sont signés avec les clés privés correspondantes. Quand votre ordinateur démarre l’UEFI se charge de vérifier que le bootloader suivant est bien signé avec une clé publique présente dans la DB.

              +

              SecureBoot fonctionne avec 4 types de clés.

              +

              PK Platform Key sert à gérer les mise à jours de la clé KEK, c’est la clé maîtresse. En général elle est pré-configuré avec une clé fournit par le fabricant de carte mère.

              +

              KEK Key Exchange Key sert à gérer les mise à jours des clés suivantes. Peut en contenir plusieurs dont celle de Microsoft qui permet de mettre à jour les autres clés via un processus de MAJ automatique. Les clés qui sont ici vous permettent de mettre à jour la DB et la DBX.

              +

              DB contient les clés publiques de confiance. Pré-chargé avec celles de Microsoft par défaut sur la majorité des PC. C’est cette base de données qui va vérifier les signatures des bootloaders.

              +

              DBX c’est la liste noire pour les clés publiques que l’on veut blacklister.

              +

              MOK c’est la même chose que la DB sauf que ce n’est pas standard donc pas gérer/implémenté par votre UEFI mais par Shim et donc stocké dans une variable UEFI.

              +

              3. Activer SecureBoot la méthode simple

              +

              Vous avez peut-être sans le savoir, déjà SecureBoot d’activé sur votre machine. Vous pouvez vérifier avec la commande bootctl status --path /boot/efi.

              +

              3.1. Activer Secure Boot

              +
                +
              1. Une installation qui démarre avec UEFI est un pré-requis.
              2. +
              3. Vous pouvez normalement installer Ubuntu et dérivé avec SecureBoot d’activé cela devrait se charger de tout configurer automatiquement. ( Sous LinuxMint il demande de désactiver SecureBoot mais vous pouvez répondre non)
              4. +
              5. Sinon vous pouvez vérifier que vous avez les paquets shim-signed grub-efi-amd64-signed d’installés à l’aide de la commande apt search signed | grep ^i, installer ces paquets permet utiliser les clés de Microsoft pré-installés dans votre BIOS pour démarrer avec SecureBoot.
              6. +
              7. Une distribution qui dispose du loader Shim signé avec la clé de Microsoft Partner’s. Normalement c’est le cas pour Ubuntu, LinuxMint, OpenSuse et généralement les distributions connexe. Si c’est le cas vous devriez avoir shimx64.efi dans le répertoire /boot/efi/EFI/ubuntu/. Vous pouvez vérifier qu’il est signé avec la clé de Microsoft : +
                wget https://sourceforge.net/p/refind/code/ci/master/tree/keys/microsoft-uefica-public.der?format=raw -O microsoft-uefica-public.der
                +openssl x509 -in microsoft-uefica-public.der -inform der -out microsoft-uefica-public.crt
                +sudo sbverify --cert microsoft-uefica-public.crt /boot/efi/EFI/BOOT/BOOTX64.EFI
                +sudo sbverify --cert microsoft-uefica-public.crt /boot/efi/EFI/ubuntu/shimx64.EFI
                +
              8. +
              9. Une fois shim-signed installé et que vous avez vérifié ça signature, vous pouvez redémarrer sudo systemctl reboot --firmware pour activer SecureBoot dans votre UEFI.
              10. +
              11. Une fois Secure Boot activer dans votre UEFI/BIOS il devrait réussir à démarrer sur votre Linux sans problème.
              12. +
              +

              3.2. MOK

              +

              Maintenant vous avez normalement SecureBoot d’activé. Cependant il se peut que vous utilisiez des drivers qui ne sont pas encore signés par des clés de confiances. Pour cela vous allez devoir utiliser MOK. Machine Owner Key est une juste une ou plusieurs clés que nous allons générer et utiliser pour signer les drivers. Pour cela vous allez devoir installer ou ré-installer les modules kernels qui doivent être signés. Ceci va normalement déclencher le processus d’inscription d’une clé MOK qui va être ajouter dans la chaîne de confiance de boot.

              +

              apt reinstall nvidia-dkms

              +

              Cette étape devrait demander un mot de passe qui vous sera redemander une seule et unique fois au redémarrage suivant.

              +

              Le processus est assez obscure mais le mot de passe donné sert à générer une demande d’inscription. Au prochain redémarrage Shim va voir qu’il y a une demande en attente et va lancer MokManager. Votre UEFI étant encore dans un état de pré-boot il peut enregistrer des variables de boot signées dans la NVRAM de votre UEFI. MokManager va allors confirmer que c’est bien vous qui avez déclenché l’inscription et va vous demandez de confirmer avec le mot de passe l’inscription de la clé dans la base de donnée MOK qui est enregistré dans la NVRAM. La base MOK est stocké dans une variable « Boot Services Only Variables », et ne peut pas être édité une fois que Shim a lancé le bootloader suivant.

              +

              Pour résumer:

              +
                +
              1. Lancer apt reinstall nvidia-dkms-390 et renseigner un mot de passe MOK.
              2. +
              3. Reboot
              4. +
              5. Au redémarrage MokManager devrait se lancer
              6. +
              7. Sélectionner Enroll MOK
              8. +
              9. Il vous présente la clé à ajouter
              10. +
              11. Confirmer avec le mot de passe
              12. +
              + + +

              Sous Mint la clé MOK est généré dans /var/lib/shim-signed/mok/ au moment de l’installation même si SecureBoot n’est pas activé. Même comportement sur Ubuntu.

              +

              Vous pouvez générer une nouvelle clé MOK avec l’aide de update-secureboot-policy. Autre point important les clés MOK ne sont PAS supprimés quand vous en importez une nouvelle donc il faut penser à faire le ménage à l’aide de mokutil. Pensez à supprimer l’ancienne d’abord à l’aide de mokutil --delete MOK.der. Supprimez ensuite manuellement les fichiers MOK.der et MOK.priv avant d’utiliser la commande update-secureboot-policy --new-key && update-secureboot-policy --enroll-key. Vous devrez ensuite signer à nouveau vos drivers.

              +

              3.3. Les choses que vous DEVEZ faire avec SecureBoot activé

              +
                +
              • Ajouter un mot de passe sur la configuration de votre UEFI. Cela empêchera un attaquant de réinitialiser les clés présente dans le UEFI et aussi de désactiver SecureBoot.
              • +
              • Si possible désactiver dans votre UEFI toutes les entrées de démarrages autre que votre OS. Rend difficile le démarrage d’une attaque physique via une clé USB ou autre media amovible.
              • +
              • Utiliser le chiffrement de disque pour /var au minimum car les clés MOK qui sont enroll n’ont pas de passphrase, CE QUI EST TRES CON. Je vous recommande de toute façon d’utiliser l’option LVM + LUKS à l’installation.
              • +
              • Utiliser sudo ou le compte root avec attention.
              • +
              +

              3.4. Les choses que vous devez savoir quand vous utilisez cette méthode

              +

              Cela peut paraître con mais vous devez faire confiance à beaucoup de personne avec cette méthode.

              +

              Schéma de confiance des signatures pour Ubuntu et dérivés en utilisant Shim-signed

              +

              Le fabricant de votre carte mère et de l’UEFI ainsi que le fabricant de votre CPU

              +

              Mise à part changer votre UEFI par une version libre (coreboot et seabios) et retirer I’Intel Management Engine vous n’avez pas trop le choix ici.

              +

              Microsoft

              +

              Votre UEFI à la clé principale de Microsoft pré-chargé donc n’importe quel bootloader signé par Microsoft peut toujours démarrer sur votre machine. Surtout que Microsoft a merdé plusieurs fois et certaines versions de bootmgr.efi permettent d’outrepassé les signatures. Ce problème peut-être palier par la méthode 2.

              +

              Verisign

              +

              La ça devient fun, oui votre UEFI vient généralement avec une deuxième clé qui est la clé « Microsoft for third-party applications and driver » cette clé sert pour signer les drivers qui se charge dans Windows ainsi que les ROM PXE par exemple. Cette clé est gérée par Verisign et de ce que j’ai lu n’importe qui peut demander à signer un programme pour la modique somme de 99$ donc LOL. C’est aussi la clé qui est utilisé pour signer Shim. Ce problème peut-être palier par la méthode 2 mais certain matériel dépende de cette clé pour fonctionner correctement.

              +

              Canonical

              +

              Sous LinuxMint et Ubuntu le loader Shim est signé par la clé « Microsoft for third-party applications and driver » et contient la clé de Canonical pour pouvoir vérifier la signature de Grub ainsi que du kernel. Si vous utilisez les dépots de Ubuntu ou dérivé vous faites déjà confiance…

              +

              Les logiciels que vous exécutez en root ou en temps que module kernel

              +

              Derniers maillon de la chaîne les drivers chargés par le kernel nécessite d’être signés. Ils sont compilés en tant que modules dkms au moment ou vous les installez. Ils seront alors signés par votre clé MOK. Toute la sécurité de la chaîne de démarrage peut-être compromise si un driver malveillant est signé avec votre clé MOK, il pourra alors lancer du code non-signé.

              +

              Et si vous êtes parano vous pouvez lire ça.

              +

              4. Activer SecureBoot la méthode compliqué

              +

              4.1. Générer ses propres clés

              +

              Générer nos clés à l’aide de openssl en utilisant le script suivant

              +

              +
              <code>#!/bin/bash
              +# Copyright (c) 2015 by Roderick W. Smith
              +# Edited by Hugo P. Dec 2018
              +# Licensed under the terms of the GPL v3
              + 
              +apt-get install efitools openssl
              +echo -n "Enter a Common Name to embed in the keys: "
              +read NAME
              + 
              +echo -n "Enter a password to protect the keys: "
              +read PASSWORD
              + 
              +openssl req -new -x509 -newkey rsa:2048 -passout pass:$PASSWORD -subj "/CN=$NAME PK/" -keyout PK.key \
              +        -out PK.crt -days 3650 -sha256
              +openssl req -new -x509 -newkey rsa:2048 -passout pass:$PASSWORD -subj "/CN=$NAME KEK/" -keyout KEK.key \
              +        -out KEK.crt -days 3650 -sha256
              +openssl req -new -x509 -newkey rsa:2048 -passout pass:$PASSWORD -subj "/CN=$NAME DB/" -keyout DB.key \
              +        -out DB.crt -days 3650 -sha256
              +openssl x509 -in PK.crt -out PK.cer -outform DER
              +openssl x509 -in KEK.crt -out KEK.cer -outform DER
              +openssl x509 -in DB.crt -out DB.cer -outform DER
              + 
              +GUID=`uuidgen`
              +echo $GUID &gt; myGUID.txt
              + 
              +cert-to-efi-sig-list -g $GUID PK.crt PK.esl
              +cert-to-efi-sig-list -g $GUID KEK.crt KEK.esl
              +cert-to-efi-sig-list -g $GUID DB.crt DB.esl
              +rm -f noPK.esl
              +touch noPK.esl
              + 
              +sign-efi-sig-list -t "$(date --date='1 second' +'%Y-%m-%d %H:%M:%S')" \
              +                  -k PK.key -c PK.crt PK PK.esl PK.auth
              + 
              +sign-efi-sig-list -t "$(date --date='1 second' +'%Y-%m-%d %H:%M:%S')" \
              +                  -k PK.key -c PK.crt KEK KEK.esl KEK.auth
              +sign-efi-sig-list -t "$(date --date='1 second' +'%Y-%m-%d %H:%M:%S')" \
              +                  -k KEK.key -c KEK.crt db DB.esl DB.auth
              +# This file is dangerous and must be kept in a safe place it can disable SecureBoot
              +# sign-efi-sig-list -t "$(date --date='1 second' +'%Y-%m-%d %H:%M:%S')" \
              +#                   -k PK.key -c PK.crt PK noPK.esl noPK.auth
              + 
              +chmod 0600 *.key
              + 
              +echo ""
              +echo ""
              +echo "For use with KeyTool, copy the *.auth and *.esl files to a FAT USB"
              +echo "flash drive or to your EFI System Partition (ESP)."
              +echo "For use with most UEFIs' built-in key managers, copy the *.cer files."
              +echo ""
              +</code>
              +


              +

              +

              +

              4.2. Signer la chaine de démarrage

              +

              Signer les trucs que l’on a besoin pour booter avec (essentiellement shim et/ou grub)

              +
              sbsign --key DB.key --cert DB.crt --output /boot/efi/EFI/ubuntu/shimx64-signed.efi /boot/efi/EFI/ubuntu/shimx64.efi
              +

              4.3. Installer les clés via l’UEFI

              +

              Le plus simple est généralement de passer par le firmware de votre carte-mère pour aller installer vos certificats.

              +

              Aller dans votre uefi et trouver le menu pour configurer SecureBoot ci-dessous le menu de OVMF. (Dans mon environnement de virtualisation)

              +

              Vous devez passer votre SecureBoot en mode Setup pour effacer les anciens certificats et installer les vôtres.

              + + +

              Installer dans l’ordre la DB, le KEK puis en dernier le certificat PK qui devrait suivant votre firmware passer votre SecureBoot en position « User mode » qui veut dire verrouillé.

              +

              Normalement passé cette étape votre machine peut uniquement lancer des programmes signé par votre clé DB.

              +

              Pour configurer SecureBoot sur votre machine vous avez 3 autres manières de procéder :

              +
                +
              • Utiliser Keytool.efi présent dans le package efitools (/usr/share/efitools/efi/) vous permez de manager vos clés sans passer par votre UEFI pratique si votre UEFI est merdique à souhait cependant il vous faudra obligatoirement trouver l’option pour passer en mode « Setup » pour pouvoir enregistrer votre PK.
              • +
              • Utiliser Lockdown.efi cet outils est une solution si vous voulez automatiser le processus de Setup Secure Boot sur beaucoup de machine, il vous faudra compiler le bordel pour insérer vos clés dans le binaire.
              • +
              • Dernière solution utiliser efi-updatevar utilitaire systeme pour configurer Secure Boot.
              • +
              +
              #In setup mode
              +sudo efi-updatevar -e -f DB.esl db
              +sudo efi-updatevar -e -f KEK.esl kek
              +sudo efi-updatevar -f PK.auth PK
              +

              ET N’OUBLIEZ DE FAIRE LES CHOSES INDIQUEES AU POINT 3.3

              +

              5. Commandes utiles

              +

              Vérifier la configuration de démarrage

              +

              sudo bootctl status --path /boot/efi

              +

              Vérifier que SecureBoot est activé ( Il doit y avoir un 1 en dernier sur le retour de la commande)

              +

              sudo od -An -t u1 /sys/firmware/efi/efivars/SecureBoot-*

              +

              Afficher la liste des certificats installer dans l’UEFI

              +

              efi-readvar

              +

              Redémarrer dans le UEFI

              +

              systemctl reboot --firmware

              +

              Vérifier la signature d’un programme efi avec une clé publique

              +

              sbverify --cert somecert.crt /boot/efi/EFI/BOOT/BOOTX64.EFI

              +

              Convertir une certificat du format x509 vers DER (utile pour charger les certificats dans votre UEFI, vous pouvez utiliser l’extension .der ou .cer)

              +

              openssl x509 -in PK.crt -outform DER -out PK.cer

              +

              Signe un programme efi avec la clé DB

              +

              sbsign --key DB.key --cert DB.crt HelloWorld.efi --output HelloWorld-signed.efi

              +

              Affiche les clés de signatures acceptées et chargées pendant le boot dans le kernel

              +

              sudo cat /proc/keys | grep asymmetri
              sudo keyctl list %:.secondary_trusted_keys

              +

              Afficher la Subject Key Identifier d’un certificat (pour vérifier quel clé est chargée)

              +

              openssl x509 -inform DER -in /var/lib/shim-signed/mok.backup/MOK.der -text | grep -A1 'Subject Key'

              +

              Afficher les logs de démarrage concernant SecureBoot

              +

              dmesg | grep 'Loaded UEFI' -C 3

              +

              Vérifier les informations du certificat MOK généré

              +

              openssl x509 -subject -dates -fingerprint -inform DER -in /var/lib/shim-signed/mok/MOK.der

              +

              Régénérer une clé MOK manuellement

              +

              sudo update-secureboot-policy --help

              +

              Gérer les clés MOK

              +

              mokutil

              +

              6. Liens / sources

              + +

              +
              +
              +
              +
              +
              Catégories : Aventure PCLogiciels
              +
              +
              +
              + + + + + + + + + +
              +
              +
              +
              +
              +
              +
              +

              + 2 commentaires

              +
              + +
              +
              +
              +
              +

              + John Doe + · 24 septembre 2020 à 17 h 07 min +

              +

              T’es un boss Hugo (sans jeu de mot), ya peu de doc, même en anglais qui résume aussi bien les pas pour en arriver a un truc pratiquement « secure » (les guillemets sont pas la par hasard, avec Coreboot ce serait la cerise sur le gâteau). Merci beaucoup pour ce super travail de recompilation.

              + +
              +
              + +
              + +
              +
              +
              +
              +

              + Pneuneige + · 18 décembre 2020 à 7 h 45 min +

              +

              Excellent guide, merci beaucoup, j’ai enfin compris comment marche le secure boot. Si vous corrigez en plus les fautes d’orthographe, le guide sera plus que parfait.

              + +
              +
              + +
              +
              +
              +

              Laisser un commentaire

              Avatar placeholder

              Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

              +
              +
              +

              + +

              +
              +
              +
              +
              +
              +
              + +
              +
              +
              +
              +
              +
              + + +
              + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/314887c2be6befe1a35eabb1884bc8e9ce7fc348.00000115.html b/www/.content.EZtzwPjb/html/314887c2be6befe1a35eabb1884bc8e9ce7fc348.00000115.html new file mode 100644 index 0000000..1ffe0fe --- /dev/null +++ b/www/.content.EZtzwPjb/html/314887c2be6befe1a35eabb1884bc8e9ce7fc348.00000115.html @@ -0,0 +1,1370 @@ + + + + + + + + Réparations Samsung SyncMaster 2232BW – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
              +
              +
              +
              + +
              +
              +
              +
              +
              +
              +

              Allô docteur on a un problème,

              +

              En ce dimanche calme avant la fin de mes partiels, mon écran Samsung SyncMaster 2232BW commençait à faire des siennes. Celui-ci depuis un mois ou deux clignotait de façon systématique au démarrage, au début pendant seulement quelques secondes, puis au fur et à mesure, de plus en plus jusqu’à devoir attendre 10 minutes pour que je puisse l’utiliser. Après 3 ans et 4 mois de bons et loyaux services, il voulait me quitter. J’ai tenté le support Samsung par email avec peu d’espoir car l’écran a dépassé sa garantie de 4 mois (oui oui les bâtards -> obsolescence programmée). Et donc j’ai eu le droit à un joli mail automatique me disant de contacter un numéro non surtaxé (mais avec combien de temps d’attente ?), ce que je n’ai pas fait car je n’avais pas envie de passer 30min au téléphone pour au final avoir un « On est désolé mais on ne peut rien faire pour vous car la garantie est dépassée, mais on peut envoyer votre écran en SAV pour faire un devis pour seulement 50 boules ». Concernant le support email de Samsung France, je leur donne une note de 0/20 puisque ce n’est pas un support mais une redirection vers le téléphone.

              +

              +

              Symptômes

              +

              Clignotements de l’écran et de la LED power systématiques à chaque démarrage de l’écran. Je me suis tout de suite douté d’un problème d’alimentation et après quelques recherches sur google, confirmation du problème sur beaucoup d’écrans et téléviseurs. Dans 99% des cas ce clignotement est dû à des condensateurs défectueux qu’il faut simplement changer :-D

              +

              Démontage

              +

              Donc après avoir cerné le problème, j’ai ouvert l’écran pour chercher les condos défectueux. J’ai trouvé une petite vidéo pour mon écran :

              +

              +

              Voici quelques photos en plus pour vous aider :

              +

              Les outils que j’ai utilisé pour le démontage

              +

              Position des clips

              +

              Carte d’alimentation dans son emplacement

              +

              Et voici les condensateurs qui posent problèmes. Comme vous pouvez le voir sur la photo, ils sont très facilement identifiable car ils sont bombés sur le dessus.

              +

              Condensateurs défectueux

              +

              Vous devez donc acheter des condensateurs de remplacement, par exemple sur Conrad.

              +

              Mes condensateurs suivant étaient endommagés:

              +
                +
              • 1 de 330uF 25V remplacé par un 470uF 25V
              • +
              • 3 de 820uF 25V remplacé par des 1000uF 50V
              • +
              +

              Pour la réparation, il vous faut un fer à souder avec une panne pas trop grosse mais d’une grosse puissance car les soudures sont très solides (j’ai galéré avec un fer pro qui monte jusqu’à 400°).

              +

              Tout remarche nickel après remontage, plus de clignotement pour seulement quelques euros.

              +

              edit du 19 aout 2014 : j’ai trouvé le service manuel de l’écran si besoin samsung_2232bw_chassis_lpe22bs_sm

              + + +
              +
              + +
              +
              +
              +
              +
              +

              + 41 commentaires

              +
              + +
              +
              +
              +
              +

              + c'est_moi + · 30 janvier 2012 à 18 h 57 min +

              +

              Mille mercis et mille félicitations pour cette fiche technique si pédagogue.

              +

              J’espère que le partiels se passent plus que parfait !!

              +

              J’ai gardé l’url de la page pour réparer mon écran dans un petit mois : j’espère que la page soit toujours là ;-)

              +

              Merci encore.

              + +
              +
              + +
              + +
              +
              +
              +
              +

              + Maxime + · 5 mai 2012 à 12 h 31 min +

              +

              Bonjour HugoPoi!

              +

              Merci pour toutes vos infos et votre topic, je voulais avoir quelques précisions sur les condos à changer pour samsung 2232bw, je veux passer commande mais j’ai un problème avec les dimensions des condos, si vous pouvez m’informer de ce que je pourrais acheter car il y a trop de références. En vous remerciant A+ Maxime

              + +
              +
              +
                +
                + +
                +
                +
                +
                +

                + HugoPoi + · 14 juin 2012 à 22 h 56 min +

                +

                N’importe quel condensateur polarisé avec des caractéristiques proches devrait marché.

                + +
                +
                + +
              + +
              + +
              +
              +
              +
              +

              + gaubjezj + · 14 juin 2012 à 22 h 32 min +

              +

              Merci pour le tuto qui m’a bien aidé.
              +J’ai utilisé un fer de 40 W avec une panne fine et
              +une pompe à dessouder et j’ai retiré les condensateurs sans problème.
              +Merci encore (3€40 pour le dépannage).

              + +
              +
              + +
              + +
              +
              +
              +
              +

              + DragonTribal + · 2 juillet 2012 à 12 h 02 min +

              +

              super merci pour manifique tuto.
              +Est-il possible de changer les 5 condensateurs 820uF 25V par des 1000uF 50V? car moi mes 5 condensateurs sont presque HS ;-)

              +

              Cordialement

              + +
              +
              +
                +
                + +
                +
                +
                +
                +

                + HugoPoi + · 2 juillet 2012 à 12 h 25 min +

                +

                Oui je penses que ça marchera étant donné que c’est des valeurs plus grandes.

                + +
                +
                + +
              + +
              + +
              +
              +
              +
              +

              + FRED + · 11 juillet 2012 à 19 h 11 min +

              +

              Bravo, MERCI.
              +Je n’ai encore rien fait…mais j’ai le même problème, et tu me donnes la solution.
              +Super.

              + +
              +
              + +
              + +
              +
              +
              +
              +

              + daninpet + · 31 août 2012 à 10 h 10 min +

              +

              Merci mille fois!

              +

              J’avais ce problème, et j’ai emmener la photo des trucs a remplacer chez le réparateur du coin et voila!! Ça m’a coûté 7 Euros (mais j’habite en Thaïlande)

              + +
              +
              + +
              + +
              +
              +
              +
              +

              + moi + · 15 novembre 2012 à 15 h 25 min +

              +

              super mon 2232bw vient de lâcher, les 3 + 1 condos sont gonflés j ai trouvé un 330 en 35v qui traîné sur un écran mort et j’ai commander 5 1000uf 35v sur ebay pour moins de 3 dollars, ca devrait le faire j’espere j’attend d’être livré merci! par contre j’ai qu’un gros pistolet a soudure et un gros fil d’étain, c’est pas évident mais bon ca le fait quand même =)

              + +
              +
              +
                +
                + +
                +
                +
                +
                +

                + moi + · 7 décembre 2012 à 9 h 33 min +

                +

                parfait je vient de recevoir les condos; j ai meuler la panne du fer a souder pour la tailler en mine de crayon et j ai reussi a les souder facilement ils étaient un peu plus gros mais ca passe tout juste, mais attention ne pas prendre des plus gros! l écran fonctionne nickel maintenant.

                + +
                +
                + +
              + +
              + +
              +
              +
              +
              +

              + Croco + · 19 janvier 2013 à 18 h 39 min +

              +

              Je souhaiterai savoir si tu as utilisé un fer à souder bien précis étant donné que la carte est une multi couche.
              +Merci

              + +
              +
              + + +
              + +
              +
              +
              +
              +

              + momo + · 10 juin 2013 à 13 h 15 min +

              +

              slut je voudrai savoir ou trouvé les condansateur a changer sur mon ecran qui clignote

              + +
              +
              + + +
              + +
              +
              +
              +
              +

              + lokmane + · 5 juillet 2013 à 16 h 08 min +

              +

              merci j’avais un ecran rouge ! et c’etais la tresse qui relie mon ecran votre page m’a aider a l’ouvrir et a le reparer merci bien

              + +
              +
              + +
              + +
              +
              +
              +
              +

              + ML + · 21 août 2013 à 19 h 11 min +

              +

              Merci ! Ecran réparé. Halte à l’obsolescence programmée.

              + +
              +
              + +
              + +
              +
              +
              +
              +

              + raymond + · 31 octobre 2013 à 13 h 20 min +

              +

              ai vu votre vidéo et les explications pour la reparation de mon écran , apparemment le méme probléme l écran passe au noir apres quelque seconde , j ai vu un le condensateur en bas a gauche gonflé , je l ai fait changé (10€) les autre condensateur étant toujour bon d après la personne qui me l a changé , mais j ai toujour le méme probléme cela peut il venir de la carte video a gauche ?

              + +
              +
              +
                +
                + +
                +
                +
                +
                +

                + HugoPoi + · 20 décembre 2013 à 12 h 27 min +

                +

                Si la led bleu du bouton power s’éteint aussi c’est un problème d’alimentation sinon c’est plus compliqué et ça peut provenir de condensateurs sur la partie vidéo. Changé tous les plus gros condensateurs sur la partie alimentation pourrait être un bon début même si ils ne paraissent pas endommagé.

                + +
                +
                + +
              + +
              + +
              +
              +
              +
              +

              + damien + · 4 novembre 2013 à 0 h 29 min +

              +

              bonjour,

              +

              j’ai des crasses coincées entres l’écran et le truc juste derrière, est ce qu’on sais les enlever en démontant la dalle ?

              + +
              +
              +
                +
                + +
                +
                +
                +
                +

                + HugoPoi + · 20 décembre 2013 à 12 h 28 min +

                +

                Je ne sais si cette partie de la dalle est démontable, je penses que c’est collé mais vous pouvez essayer.

                + +
                +
                + +
              + +
              + +
              +
              +
              +
              +

              + mac + · 1 décembre 2013 à 17 h 30 min +

              +

              Merci HugoPoi, avec ces excellents conseils et tuto vidéo, mon écran est reparti pour une nouvelle vie.
              +Pour les composants, si vous êtes sur Paris ou proche. La boutique RAM électroniques est une bonne adresse, 138 bd Diderot 75012 Paris (Place de la Nation).

              + +
              +
              + +
              + +
              +
              +
              +
              +

              + Bouddhid + · 16 janvier 2014 à 19 h 21 min +

              +

              Merci beaucoup pour ces conseils ! J’étais à 2 doigts de jeter mon écran, le voilà comme neuf pour moins de 5€ ! Vive la bricole !

              + +
              +
              + +
              + +
              +
              +
              +
              +

              + Vincent + · 17 mai 2014 à 16 h 45 min +

              +

              Alors là merci.

              +

              Pour ce post, les photos, la vidéo, tout y est.

              +

              J’ai démonté l’écran assez vite, enlevé la carte, regarder quel condensateurs étaient gonflés,(il y en avaient 4), un magasin d’électronique sur lyon et une heure de démontage, soudure, remontage plus tard, voilà, c’est tout beau.
              +Ca ne clignote plus, ça s’allume comme avant, comme neuf.

              +

              Et dire que j’allais jeter cet écran et claquer 350 euros pour un neuf…

              +

              Coût de l’opération pour 4 condensateurs, du fil d’étain 7 euros.

              +

              Je précise que je n’avais jamais fais de soudure sur composant électronique auparavant.
              +Comme quoi cette opération de réparation est à la portée de tous.

              + +
              +
              + +
              + +
              +
              +
              +
              +

              + Julot + · 6 juillet 2014 à 13 h 49 min +

              +

              Site vraiment détaillé et très claire. J’ai pu dépanner mon écran avec succès. Merci beaucoup pour ces précieuses explications.

              + +
              +
              + +
              + +
              +
              +
              +
              +

              + PaniK31 + · 29 juillet 2014 à 9 h 21 min +

              +

              Pas besoin d’une grosse puissance pour le fer, il faut au préalable gratter le vernis sur l’étain afin de pouvoir le faire fondre plus facilement

              + +
              +
              + +
              + +
              +
              +
              +
              +

              + R211_IP-45130B + · 20 août 2014 à 14 h 04 min +

              +

              Bonjour à tous,

              +

              Une âme charitable peut-elle me communiquer ce qui est gravé sur la résistance CMS R211 de la carte d’alimentation/inverter IP-45130B qui équipe le SAMSUNG 2232BW ? Cette résistance a pris un coup de tournevis et je n’arrive pas à déterminer sa valeur de résistance car son marquage est effacé et comme le composant est abimé la mesure à l’ohmmètre indique l’infinie.

              +

              Merci par avance.

              + +
              +
              + +
              + +
              +
              +
              +
              +

              + roger + · 24 octobre 2014 à 17 h 21 min +

              +

              Ca refonctionne après échange de 4 condensateurs :
              +-un 330uf25v remplacé à l’identique.
              +-trois 820uf25v remplacés par 1000uf25v.
              +Le tout pour quelques €. Le plus dur était le dessoudage, la tresse n’était pas très efficace contrairement à la pompe.
              +Grand merci à HugoPoi.

              + +
              +
              + +
              + +
              +
              +
              +
              +

              + Max + · 26 février 2015 à 16 h 28 min +

              +

              ENORME MERCI!! J’ai réparé mon écran en 20mn pour 3,50€, il était à 2 doigts de partir à la déchetterie. Ca faisait des mois qu’il clignotait, et l’allumage mettait parfois plus d’une demi heure. J’ai changé 5 condos 820uf25v et 1 330uf25v, par exactement les mêmes en neuf, et là il démarre au quart de tour! Ca fait plaisir! :)

              + +
              +
              +
                +
                + +
                +
                +
                +
                +

                + rocco michelle + · 7 octobre 2015 à 10 h 16 min +

                +

                Bonjour je ne sais si vous verrez mon message mais je tente…je cherche quelqu’un qui accepterait de changer mes condensateurs sur mon samsung, les réparateurs me demandent 70 à 80 euros et encore ils n’ont pss envie de le faire et me disent d’acheter un nouvel écran. j’aurais bien tenter mais je n’ai pas de matériel et j’ai lu que les condo pouvaient être très dangereux s’ils avaient de la charge alors j’ai la trouille de bidouiller pq je n’y connais rien. si vous êtes de lyon acccepteriez vous de changer mes condensateurs pour 45 euros? merci de votre réponse.

                + +
                +
                + +
              + +
              + +
              +
              +
              +
              +

              + lecakeseb + · 27 juillet 2015 à 15 h 26 min +

              +

              Bonjour,

              +

              J’ai utilisé la vidéo pour démonter mon écran afin de le nettoyer de 4 bêtes d’orage infiltrés entre le premier écran (noir) et la dalle (blanche) de mon samsung SyncMaster 2232W

              +

              Petits conseils afin de modérer ce que j’ai pu voir dans cette vidéo :

              +

              0 : aspirez, nettoyez l’extérieur de l’écran avant de l’ouvrir et nettoyez la table qui vous servira d’atelier, pour éviter les poussières qui s’infiltreront forcément plus tard si vous ne le faites pas…
              +1 : pour ouvrir, utilisez plutôt un couteau à enduire pour la première partie (le cadre). Vous n’abîmerez ainsi pas du tout l’écran. Soyez patients, ne forcez pas ! ça viendra doucement, mais ça viendra. Il m’a fallu à peine 10 minutes, sans détériorer l’écran, sans le griffer… Il est encore nickel !
              +2 : attention à ne pas déconnecter les fils reliant le cadre à la carte. Inutile pour simplement nettoyer l’écran.
              +3 : pour séparer les deux éléments de la dalle entre lesquels les bêtes se sont infiltrées, les doigts suffisent, pas besoin d’outils qui viendraient les endommager. La dalle blanche reste à l’horizontale, l’écran noir sera tenu à la verticale.
              +4 : utiliser un chiffon doux ne peluchant pas pour enlever les bêtes (faites-vous aider de quelqu’un qui les enlèvera pendant que vous tenez l’écran extérieur en position verticale).
              +5 : repositionnez la colle d’étanchéité qui aurait pu se déplacer, avant de repositionner les deux écrans.
              +6 : commencer par refermer par le bas de l’écran (sinon les éléments de réglage situés au bas de l’écran – luminosité, contraste,…- ne se replaceront pas correctement).
              +7 : Une fois l’écran refermé, j’ai appliqué un peu de « barrage aux insectes », avec un chiffon à l’arrière de mon écran en insistant surtout sur les bouches d’aération par lesquelles les maudites bestioles ont du s’infiltrer. En espérant ne pas avoir à ouvrir !

              +

              Bon courage à vous !

              + +
              +
              + +
              + +
              +
              +
              +
              +

              + Michel Jousserandot + · 20 janvier 2017 à 20 h 41 min +

              +

              Merci pour les conseils au démontage.
              +J’avais un problème un peu différent :l’écran ne s’allumait plus du tout. Avec un copain beaucoup plus malin que moi, on a détecté 2 fusibles dont l’un était fichu. On l’a remplacé par un petit fil de cuivre. Et tout a remarché comme avant.
              +Il faut surtout faire attention quand on teste la partie haute tension
              +Michel.

              + +
              +
              + +
              + +
              +
              +
              +
              +

              + Crec + · 14 juillet 2017 à 10 h 20 min +

              +

              Bonjour. Très bons conseils avertis. Merci beaucoup.
              +Peut-on avoir les mêmes conseils pour un écran BX2250.
              +Merci par avance.
              +Crec

              + +
              +
              +
                +
                + +
                +
                +
                +
                +

                + HugoPoi + · 6 août 2017 à 14 h 03 min +

                +

                J’ai pas de BX2250 donc dans le détails non mais si c’est les même symptômes ça doit la même procédure.

                + +
                +
                + +
              + +
              + +
              +
              +
              +
              +

              + Ferronnier + · 10 août 2017 à 17 h 42 min +

              +

              Un grand merci !
              +J’ai changé tous les condensateurs de la partie alimentation de la carte, en déportant certains qui n’avaient pas le même format qu’à l’origine, et ça tourne nickel !

              + +
              +
              + +
              + +
              +
              +
              +
              +

              + Nours + · 1 décembre 2017 à 15 h 17 min +

              +

              Ca fait des années que j’ai cet article enregistré dans un coin, en nourrissant l’espoir d’avoir un jour le courage de réparer ce foutu écran… Après plus de cinq ans c’est chose faite \o/
              +Un giga, hypra, immense merci pour ce tutoriel tellement bien expliqué et facile d’accès (je n’avais pas touché à un fer à souder depuis… Oh boy 15 ans déjà).
              +Après une longue pause, l’écran reprend du service… Jusqu’à la prochaine panne /o/

              + +
              +
              + +
              + +
              +
              +
              +
              +

              + Alex + · 11 août 2018 à 13 h 28 min +

              +

              Quelqu’un sait qui pourrait me le faire svp j ai le même problème mais aucun matériel

              + +
              +
              + +
              + +
              +
              +
              +
              +

              + David + · 5 février 2019 à 21 h 06 min +

              +

              Merci Hugo pour ce tuto qui m’a déjà servi en 2013 et qui va me resservir aujourd’hui car mon 2ème 2232bw commence à avoir les mêmes symptômes.

              + +
              +
              + +
              + +
              +
              +
              +
              +

              + yvan + · 23 novembre 2019 à 17 h 14 min +

              +

              Bonjour
              +j’ai tenté de changer le condensateur qui avait l’air naze mais ça n’a pas marché … toujours le bouton bleu allumé, l’écran est reconnu par Windows 10 même si l’écran est éteint
              +grâce au service manuel de l’écran fourni plus haut, j’ai vérifié les tensions jusque sur la carte de la dalle et elles sont correctes, ainsi que sur la carte elle-même, tout est ok, donc je pense que ce n’est plus un problème de condensateur
              +pour les fusibles, ils ressemblent plutôt à des composants qu’à de simple fusibles, mais comme j’ai les bonnes tension, je ne pense pas que ça vienne de là
              +j’ai bien peur que ce soit la dalle qui soit naze ? quelqu’un a t il des idées supplémentaires avant que je le jette avec grand regret (c’est un 2032bw, mais c’est la même chose, même si ma carte électronique est un peu différente car plus récente
              +merci d’avance pour vos conseils

              + +
              +
              + +
              + +
              +
              +
              +
              +

              + yvan + · 24 novembre 2019 à 17 h 26 min +

              +

              finalement j’ai trouvé, c’est un petit fusible vert qui ressemble à une résistance mais tout vert avec écrit 4A LF qui assure l’alimentation de la dalle.
              +En le shuntant, mon écran a retrouvé l’image.
              +après enquête il s’agit d’un fusible pico de 4ampères de chez little fuse, pas du tout évident à trouver
              +Résolu !

              + +
              +
              + +
              +
              +

              + Reflow Dell 1546 | HugoPoi + · 22 août 2016 à 16 h 09 min +

              +

              […] « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable de marque Dell un 1546 pour être précis. Encore […]

              + +
              +
              + +
              +
              +

              + Reflow Dell Inspiron 1546 – HugoPoi + · 23 juin 2017 à 23 h 18 min +

              +

              […] d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un […]

              + +
              +
              + +
              +
              +
              +

              Répondre à ML Annuler la réponse

              Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

              +
              +
              +

              + +

              +
              +
              +
              +
              +
              +
              + +
              +
              +
              +
              +
              +
              + + +
              + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/319b242766e98e7cb0b77c8ebffd8b7d7cba127a.00000177.xml b/www/.content.EZtzwPjb/html/319b242766e98e7cb0b77c8ebffd8b7d7cba127a.00000177.xml new file mode 100644 index 0000000..f8a1f2d --- /dev/null +++ b/www/.content.EZtzwPjb/html/319b242766e98e7cb0b77c8ebffd8b7d7cba127a.00000177.xml @@ -0,0 +1,17 @@ + + + Commentaires sur : SAMSUNG + + http://blog.hugopoi.net/2013/05/04/reparer-un-videoprojecteur-sony-vpl-cx5/samsung-86/ + Internet, Hardware et Bidouille + Wed, 21 Aug 2013 17:11:00 +0000 + hourly + 1 + http://wordpress.org/?v=3.6 + + diff --git a/www/.content.EZtzwPjb/html/31e9bac410fb8acae101396e7ae9087f87fd580e.00000778.js b/www/.content.EZtzwPjb/html/31e9bac410fb8acae101396e7ae9087f87fd580e.00000778.js new file mode 100644 index 0000000..b7a26c0 --- /dev/null +++ b/www/.content.EZtzwPjb/html/31e9bac410fb8acae101396e7ae9087f87fd580e.00000778.js @@ -0,0 +1,227 @@ +/** +* jquery.matchHeight.js v0.5.1 +* http://brm.io/jquery-match-height/ +* License: MIT +*/ + +(function($) { + + $.fn.matchHeight = function(byRow) { + + // handle matchHeight('remove') + if (byRow === 'remove') { + var that = this; + + // remove fixed height from all selected elements + this.css('height', ''); + + // remove selected elements from all groups + $.each($.fn.matchHeight._groups, function(key, group) { + group.elements = group.elements.not(that); + }); + + // TODO: cleanup empty groups + + return this; + } + + if (this.length <= 1) + return this; + + // byRow default to true + byRow = (typeof byRow !== 'undefined') ? byRow : true; + + // keep track of this group so we can re-apply later on load and resize events + $.fn.matchHeight._groups.push({ + elements: this, + byRow: byRow + }); + + // match each element's height to the tallest element in the selection + $.fn.matchHeight._apply(this, byRow); + + return this; + }; + + $.fn.matchHeight._apply = function(elements, byRow) { + var $elements = $(elements), + rows = [$elements]; + + // get rows if using byRow, otherwise assume one row + if (byRow) { + + // must first force an arbitrary equal height so floating elements break evenly + $elements.css({ + 'display': 'block', + 'padding-top': '0', + 'padding-bottom': '0', + 'border-top': '0', + 'border-bottom': '0', + 'height': '100px' + }); + + // get the array of rows (based on element top position) + rows = _rows($elements); + + // revert the temporary forced style + $elements.css({ + 'display': '', + 'padding-top': '', + 'padding-bottom': '', + 'border-top': '', + 'border-bottom': '', + 'height': '' + }); + } + + $.each(rows, function(key, row) { + var $row = $(row), + maxHeight = 0; + + // iterate the row and find the max height + $row.each(function(){ + var $that = $(this); + + // ensure we get the correct actual height (and not a previously set height value) + $that.css({ 'display': 'block', 'height': '' }); + + // find the max height (including padding, but not margin) + if ($that.outerHeight(false) > maxHeight) + maxHeight = $that.outerHeight(false); + + // revert display block + $that.css({ 'display': '' }); + }); + + // iterate the row and apply the height to all elements + $row.each(function(){ + var $that = $(this), + verticalPadding = 0; + + // handle padding and border correctly (required when not using border-box) + if ($that.css('box-sizing') !== 'border-box') { + verticalPadding += _parse($that.css('border-top-width')) + _parse($that.css('border-bottom-width')); + verticalPadding += _parse($that.css('padding-top')) + _parse($that.css('padding-bottom')); + } + + // set the height (accounting for padding and border) + $that.css('height', maxHeight - verticalPadding); + }); + }); + + return this; + }; + + /* + * _applyDataApi will apply matchHeight to all elements with a data-match-height attribute + */ + + $.fn.matchHeight._applyDataApi = function() { + var groups = {}; + + // generate groups by their groupId set by elements using data-match-height + $('[data-match-height], [data-mh]').each(function() { + var $this = $(this), + groupId = $this.attr('data-match-height'); + if (groupId in groups) { + groups[groupId] = groups[groupId].add($this); + } else { + groups[groupId] = $this; + } + }); + + // apply matchHeight to each group + $.each(groups, function() { + this.matchHeight(true); + }); + }; + + /* + * _update function will re-apply matchHeight to all groups with the correct options + */ + + $.fn.matchHeight._groups = []; + $.fn.matchHeight._throttle = 80; + + var previousResizeWidth = -1, + updateTimeout = -1; + + $.fn.matchHeight._update = function(event) { + // prevent update if fired from a resize event + // where the viewport width hasn't actually changed + // fixes an event looping bug in IE8 + if (event && event.type === 'resize') { + var windowWidth = $(window).width(); + if (windowWidth === previousResizeWidth) + return; + previousResizeWidth = windowWidth; + } + + // throttle updates + if (updateTimeout === -1) { + updateTimeout = setTimeout(function() { + + $.each($.fn.matchHeight._groups, function() { + $.fn.matchHeight._apply(this.elements, this.byRow); + }); + + updateTimeout = -1; + + }, $.fn.matchHeight._throttle); + } + }; + + /* + * bind events + */ + + // apply on DOM ready event + $($.fn.matchHeight._applyDataApi); + + // update heights on load and resize events + $(window).bind('load resize orientationchange', $.fn.matchHeight._update); + + /* + * rows utility function + * returns array of jQuery selections representing each row + * (as displayed after float wrapping applied by browser) + */ + + var _rows = function(elements) { + var tolerance = 1, + $elements = $(elements), + lastTop = null, + rows = []; + + // group elements by their top position + $elements.each(function(){ + var $that = $(this), + top = $that.offset().top - _parse($that.css('margin-top')), + lastRow = rows.length > 0 ? rows[rows.length - 1] : null; + + if (lastRow === null) { + // first item on the row, so just push it + rows.push($that); + } else { + // if the row top is the same, add to the row group + if (Math.floor(Math.abs(lastTop - top)) <= tolerance) { + rows[rows.length - 1] = lastRow.add($that); + } else { + // otherwise start a new row group + rows.push($that); + } + } + + // keep track of the last row top + lastTop = top; + }); + + return rows; + }; + + var _parse = function(value) { + // parse value and convert NaN to 0 + return parseFloat(value) || 0; + }; + +})(jQuery); \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/31ea2de3028af9d299aaa7868772f0c47bce1ac1.00000630.css b/www/.content.EZtzwPjb/html/31ea2de3028af9d299aaa7868772f0c47bce1ac1.00000630.css new file mode 100644 index 0000000..8043bbf --- /dev/null +++ b/www/.content.EZtzwPjb/html/31ea2de3028af9d299aaa7868772f0c47bce1ac1.00000630.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;background:#fff;border:1px +solid #f00;font-size:10pt;width:280px;padding:2px}span.wpcf7-not-valid-tip-no-ajax{color:#f00;font-size:10pt;display:block}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/31ff574fc5a579edfa514060a8587597676e451d.00000696.css b/www/.content.EZtzwPjb/html/31ff574fc5a579edfa514060a8587597676e451d.00000696.css new file mode 100644 index 0000000..20df2bb --- /dev/null +++ b/www/.content.EZtzwPjb/html/31ff574fc5a579edfa514060a8587597676e451d.00000696.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7 .screen-reader-response{position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);height:1px;width:1px;margin:0;padding:0;border:0}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{color:#f00;font-size:1em;display:block}.use-floating-validation-tip span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;border:1px +solid #f00;background:#fff;padding: .2em .8em}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/33198f8e9c9c644d69b3da2f14918faf214996e3.00001322.txt b/www/.content.EZtzwPjb/html/33198f8e9c9c644d69b3da2f14918faf214996e3.00001322.txt new file mode 100644 index 0000000..24e1d54 --- /dev/null +++ b/www/.content.EZtzwPjb/html/33198f8e9c9c644d69b3da2f14918faf214996e3.00001322.txt @@ -0,0 +1,3 @@ +User-agent: * +Disallow: /wp-admin/ +Disallow: /wp-includes/ diff --git a/www/.content.EZtzwPjb/html/33484c90a36010d98d0e0427777668ce2fcf8795.00000199.html b/www/.content.EZtzwPjb/html/33484c90a36010d98d0e0427777668ce2fcf8795.00000199.html new file mode 100644 index 0000000..935f38c --- /dev/null +++ b/www/.content.EZtzwPjb/html/33484c90a36010d98d0e0427777668ce2fcf8795.00000199.html @@ -0,0 +1,537 @@ + + + + + + + + Orange et consort, impossible d’obtenir le désimlockage – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
              +
              +
              +
              + +
              +
              +
              +
              +
              +
              +

              J’en ai marre à chaque fois c’est le même problème. Je galère pour obtenir le code de désimlockage de téléphones même ceux de première main.

              +

              Ma petite conversation avec le tchat Orange de ce matin :

              +

              Bienvenue ! Merci de patienter pendant que l’on contacte un conseiller client disponible…
              +Nous vous demandons de bien vouloir patienter pour être mis en relation avec un conseiller.
              +Le temps d’attente est estimé à 1 minute(s)
              +Vous êtes en relation avec André.
              +André:  Bonjour, bienvenue sur l’echat d’Orange.fr, que puis-je faire pour vous ?
              +Hugo Poissonnet:  Bonjour, voila je ne suis plus client Orange mais j’ai un telephone que je souhaiterais desimlocker, Je peux vous fournir l’IMEI , et mon ancienne ligne est le 06********
              +André:  Veuillez, s’il vous plait, me communiquer le numéro de mobile Orange avec lequel vous avez acquis ou utilisé ce mobile et votre numéro imei.
              +Hugo Poissonnet:  Tel:0684****** IMEI:3588480********
              +André:  Avez-vous une fois reçu le code de désimlockage?
              +Hugo Poissonnet:  Non
              +André:  Veuillez, s’il vous plait, me communiquer votre adresse mail.
              +Hugo Poissonnet:  hu*************@********.***
              +André:  Je n’arrive pas à vous identifier comme titulaire de cette ligne mobile.
              +Veuillez, s’il vous plait, me confirmer le nom et prénom du titulaire de la ligne ?
              +Hugo Poissonnet:  Oui exact la ligne doit être au nom de mon père donc ********* Poissonnet *********.poissonnet@free.fr
              +André:  Désolé, ce mobile n’est pas renseigné dans son dossier.
              +André:  Avez-vous la facture d’achat de ce mobile?
              +Hugo Poissonnet:  Je ne dispose pas de la facture Orange de ce mobile, rachat d’occasion
              +André:  Je vous invite à nous recontacter lorsque vous aurez à disposition toutes les informations (nom et prénom, numéro de mobile, IMEI, ainsi que l’adresse postale de l’ancien propriétaire du mobile)
              +nécessaires au désimlockage de votre mobile.
              +André:  Avez-vous une autre question?
              +André:  Nous restons à votre disposition via notre assistance en ligne avec les bonnes informations.
              +Orange vous remercie de votre confiance et je vous souhaite une bonne journée.
              +Votre chat est terminé. Merci d’avoir discuté avec nous.
              +Votre session est terminée. Vous pouvez à présent fermer cette fenêtre.

              +

              Je précise que ma session a été fermé au bout d’une minute à peine alors que j’étais en train de composer un message salé à notre cher André. Comme vous pouvez le voir il m’a été impossible d’obtenir de façon simple le code de désimlockage d’un Galaxy S2 dont je ne suis pas le propriétaire d’origine. Mais pourquoi est-il nécessaire d’avoir la facture d’origine du téléphone car cela ne protège en rien contre le vol de téléphone car si le téléphone a été volé celui-ci sera de toute manière en blacklist sur les réseau mobile Européens (Pensez à le déclarer volé au près de la gendarmerie !). Surtout que les voleurs utilisent des réseaux de redistribution des téléphones volés à l’étranger et je penses qu’ils se servent de ce genre d’outils pour changer l’IMEI des téléphones donc la revente devient même possible en France ! Donc tout est fait pour juste emmerder le consommateur.

              +

              Donc pour désimlocker votre Galaxy S2 sans Orange et sans arnaques (Note pour Orange, cet méthode marche aussi pour un téléphone volé, et j’ai pas trop cherché mais ça doit pouvoir ce trouver les bouts de code pour changer les IMEI aussi ;-) :

              +

              Première chose vous devez rooter votre SGS2.

              +

              La première méthode est un brut force du code tout simplement mais cette méthode n’a pas marché chez moi : https://play.google.com/store/apps/details?id=eu.chainfire.sgs2simunlockcode&hl=fr

              +

              La seconde est plus bourrin, c’est juste un patch du driver réseau qui bypass le désimlock, cet méthode est efficace mais faire gaffe à toujours garder un backup de la partition efs surtout en cas de d’upgrade marche parfaitement sous ICS 4.0.4 :

              +

              https://play.google.com/store/apps/details?id=com.helroz.galaxysunlock&hl=fr

              +

              Pour le galaxy S2 en question j’ai trouvé le patch qui marche sous Jelly Bean 4.2.2 ( CyanogenMod 10.1.3-RC2 ) : http://forum.xda-developers.com/attachment.php?attachmentid=1484874&d=1353018708

              +

              Les méthodes ci-dessus marche sur beaucoup de Galaxy dont : Ace, S, S2 , S3 les apk sont trouvables sur le market Play ou sur XDA.

              +

              Donc au final gros doigt d’honneur à Orange et ses potes SFR et Bouygues.

              +
              Flickr, Archive Floride (The Commons)

              Flickr, Archive Floride (The Commons)

              +
              +
              +
              +
              +
              Catégories : #FAILNews
              +
              +
              +
              + + + + + + + + + +
              +
              +
              +
              +
              +
              +
              +

              + 1 commentaire

              +
              + +
              +
              +
              +
              +

              + Jibé + · 1 février 2015 à 0 h 35 min +

              +

              Merci !
              +La 3ème méthode fut la bonne…
              +que de galère.
              +JB

              + +
              +
              + +
              +
              +
              +

              Laisser un commentaire

              Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

              +
              +
              +

              + +

              +
              +
              +
              +
              +
              +
              + +
              +
              +
              +
              +
              +
              + + +
              + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/3386ee679f73ce406b5b33aae61b3e3c7b141d2c.00000169.html b/www/.content.EZtzwPjb/html/3386ee679f73ce406b5b33aae61b3e3c7b141d2c.00000169.html new file mode 100644 index 0000000..74fc1fc --- /dev/null +++ b/www/.content.EZtzwPjb/html/3386ee679f73ce406b5b33aae61b3e3c7b141d2c.00000169.html @@ -0,0 +1,869 @@ + + + + + + + + Réparer un Vidéoprojecteur Sony VPL-CX5 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
              +
              +
              +
              + +
              +
              +
              +
              +
              +
              +

              Bon les cocos, j’ai récupéré un vidéo projecteur Sony VPL-CX5 en état décédé. Comme je sais que c’est encore et toujours ce problème d’obsolescence programmée j’ai donc décidé de le réparer.

              +

              Sony VPL-CX5

              +

              Première étape, identifier la panne

              +

              Le vidéoprojecteur ne donnait aucun signe de vie, aucune led ne s’allume quand je l’ai branché rien du tout même pas un petit crépitement d’alimentation. Je pense a un problème d’alimentation mais rien est sur tant que je ne l’ai pas démonté. Mais avant le dévissage je vais quand même faire une recherche Google car le Internet il est grand et il est beau. J’ai trouvé un truc qui m’a mis la puce à l’oreille sans même avoir enlever la première visse, sur un forum quelconque que je n’arrive plus à retrouver, un mec dit qu’il a changé un composant (un certain MCZ3001) sur une des cartes d’alimentation, et le vidéoprojecteur remarchait.

              +

              Démontage

              +

              Sony VPL-CX5

              +

              J’ai donc commencé par enlever les quelques visses, puis démonter toutes les cartes une par une, une vrai galère. Pour m’aider j’ai trouvé le « manuel de service » (or Service Manual) que je mets a disposition ici même : sony_vpl-cx5_cs5_servicemanual. J’ai mis dans la suite les références des connecteurs pour les mesures.

              +

              1) Premier test vérifier le fusible sur la première carte d’alimentation GA, faire le test avec la carte débranché, j’ai utilisé un voltmètre sur la position test de résistance : test OK.

              +

              2) Deuxième test, vérifier la tension continu fournie par cette carte GA sur le connecteur de sortie CN2001 environ 380V DC, DONC FAIRE CECI AVEC PRÉCAUTION (je l’ai fait avec un voltmètre de merde à 5€) : test OK j’ai 380 Volt en sortie. Sur cette carte il y un gros condensateur de 400V donc faire TRÈS ATTENTION MÊME QUAND LA CARTE EST DÉBRANCHÉ DU SECTEUR.(j’ai vérifier le condensateur se décharge assez vite j’ai mesuré 4V 10 secondes après avoir débranché)

              +

              3) Maintenant test de la carte GB qui transforme le 400V continu en basse tension continu ici du 24V d’après le SM. Donc j’ai le point de mesure parfait, c’est le connecteur CN3201.

              +
              N'oubliez d'ouvrir le manuel de service ça donne des infos précieuses pour le dépannage

              N’oubliez d’ouvrir le manuel de service ça donne des infos précieuses pour le dépannage

              +

              Plusieurs points pour tester le plus pratique étant le petit connecteur blanc de 3 broches qui fournit la masse et VCC 24V. Après mesure sur ce connecteur j’ai une tension stable mais pas du 24VDC, les composants n’ont pas l’air endommagés donc je vérifie à l’entrée du fameux MCZ3001 il est bien alimenté correctement mais ne sort pas 24VDC. Pas de condensateurs chimiques endommagés.

              +

              Donc la panne est certainement dû à ce composant, achetons-le !

              +

              Trouver le composant de rechange

              +

              Au début j’ai cherché chez des e-commerçant d’électronique comme Farnell,Conrad, etc pas trouvé en france, puis j’ai fait les marchants Anglais et je l’ai trouvé mais à 30€ frais de port inclus. Et comme un con j’avais oublié de faire Ebay : encore un coup des chinois 4.27€ avec le support DIP et les frais de port inclus OMFG j’adore la mondialisation. J’en ai pris 2 pour mois de 10€ et comme les chinois ils sont trop fort j’ai tout reçu en moins de 2 semaines.

              +

              Capture-ebay-mcz3001

              +

              Dés-soudage

              +

              Bon j’avais des fer à souder de merde et du coup c’est le #FAIL, j’ai pas réussi à dés-souder proprement, j’ai donc été obligé d’investir dans une merde à 10€ :

              +

              Fer à souderEnsuite j’ai finalement réussi à dés-souder :

              +

              Carte GB MCZ3001 dés-soudéEt il me semble que sur cette photo j’avais nettoyer avec du dissolvant.

              +

              Remontage

              +

              Alors je suis désolé mais je n’ai pas de photos pour le MCZ soudé car j’avais déjà remonté le projecteur. Les étapes :

              +
                +
              1. Souder un support fourni (au cas ou ce fameux MCZ rendrais encore l’âme)
              2. +
              3. Placer un MCZ neuf dans le support
              4. +
              5. Relier la carte GA et GB ensemble
              6. +
              7. Brancher sur le 220V
              8. +
              9. Tester le 24VDC sur le connecteur CN3201
              10. +
              11. #WIN
              12. +
              13. Remonter le projecteur
              14. +
              15. Tester en vrai
              16. +
              17. #WIN2
              18. +
              +

              Conclusion

              +

              Oui c’est un WIN d’une valeur 4€ mais je tiens à préciser que ça représente environ 10 heures de travail continu. Entre les recherches Google et la lecture de la documentation, les heures passés au démontage, les quelques fois ou je me suis arraché les cheveux et risquer ma vie avec un voltmètre à 5€.

              +

              Mon banc de test

              +

              Banc de test chez HugoLa table du salon 2Les Tofs

              + + +
              +
              +
              + +
              +
              + + + + + + + + + +
              +
              +
              +
              +
              +
              +
              +

              + 16 commentaires

              +
              + +
              +
              +
              +
              +

              + Georg + · 30 janvier 2014 à 12 h 22 min +

              +

              Hello,
              +dear Hugo, at first: HAVE MANY THANKS FOR YOUR VERY INTERESTING BLOG!!!

              +

              I also have a cx5 and try to repair it.

              +

              It has the same problems like your projector…

              +

              I’ve measured the CN2001 but in my power supply there are only 320 V (stable).
              +Are you sure, that there have to be 380V?
              +In the service manual, I didn’t find a value (either 320V nor 380V)

              +

              Best Regards
              +Your Georg

              + +
              +
              +
                +
                + +
                +
                +
                +
                +

                + HugoPoi + · 21 février 2014 à 17 h 36 min +

                +

                Sorry to be so long to answer,
                +320V seems to be OK, I have extrapolated the value from the schema ~ 220Vxrootsquare(2) but this depends of the quality of your current source. I think 320 will not impact the power for the next card.

                +

                Good repair !
                +Thanks for the comment :-D

                + +
                +
                + +
              + +
              + +
              +
              +
              +
              +

              + henri moine + · 2 février 2014 à 20 h 43 min +

              +

              Bonsoir,
              +Merci beaucoup pour l’explication détaillée et les photos.
              +Je vais pas tarder de m’attaquer à mon SONY VPL CS7 bizarrement inerte depuis quelques semaines…
              +Bonne continuation !

              + +
              +
              +
                +
                + +
                +
                +
                +
                +

                + florian + · 21 avril 2014 à 9 h 09 min +

                +

                Bonjour,
                +Je possède également un sony VPL CS7, et depuis plusieurs mois il a quelques signes de faiblesses.

                +

                1) lorsque je le débranche du secteur et que je le rebranche, il faut que j’attende 24 à 48 h pour que le voyant on/off se mette à éclairer, donc je ne peux pas l’allumer pendant ce temps.

                +

                2) aujourd’hui j’ai beau le laisser brancher, aucun signe de vie plus rien ne s’allume.

                +

                As tu attaqué ton VPL, As tu trouvé quelque chose ?

                +

                Merci

                + +
                +
                +
                  +
                  + +
                  +
                  +
                  +
                  +

                  + HugoPoi + · 9 mai 2014 à 17 h 50 min +

                  +

                  Le VPL que j’avais était en panne je l’ai réparé jusqu’à il y a 2 mois ou il retombé en panne. Ton problème d’allumage ressemble à un problème de condensateur cramé. tu peux regarder si tu en vois des gonflés en démontant.

                  + +
                  +
                  + +
                + +
              + +
              + +
              +
              +
              +
              +

              + Ghent + · 21 septembre 2014 à 12 h 48 min +

              +

              Bonjour,

              +

              Déjà, super tuto.
              +Je rencontre un problème à priori similaire avec mon CX5: le bouton de mise sous tension n’est plus éclairé et il ne se passe rien quand j’appuie dessus.

              +

              Je me suis donc lancé, et j’ai démonté jusqu’à atteindre les cartes d’alimentation.
              +J’ai mesuré donc au niveau du CN3201, et là j’ai 22V continu stable.
              +D’où ma première question, ai-je le même problème que toi avec le MCZ3001, ou dois-je chercher autre part ?
              +Faut-il 24V exactement ?

              +

              Ensuite, j’ai essayé de me rapprocher du composant lui-même, mais je ne sais pas où mesurer. Le diagramme indique le VC1 sur la patte 8, mais je ne sais pas où prendre la masse.
              +Saurais-tu m’aider ?

              +

              J’ai enfin voulu tester la tension en sortie de la carte GB, le point 17V, mais même question, si je teste la patte 1 du connecteur, où prendre la masse pour vérifier qu’il y a bien 17V ?
              +Cette partie est-elle alimentée malgré que l’appareil soit éteint ?

              +

              Dans tous les cas, j’ai commandé le MCZ3001D, mais je voudrais m’assurer qu’il est bien le responsable avant de le changer.

              +

              Merci d’avance pour tes réponses, et encore une fois, merci de partager ton travail !

              + +
              +
              +
                +
                + +
                +
                +
                +
                +

                + HugoPoi + · 26 septembre 2014 à 15 h 01 min +

                +

                Je penses que si tu as 22V sur CN3201 le problème est sûrement ailleurs. Même si cela ne coûte rien de changer le MCZ3001D si tu as de quoi dessouder proprement. Regarde sur le service manuel pour tester les autres tensions qui sortent de la carte après les partie d’isolement, de mémoire il y a 3,3 V et du 5V.

                + +
                +
                +
                  +
                  + +
                  +
                  +
                  +
                  +

                  + Neckron + · 12 décembre 2014 à 21 h 32 min +

                  +

                  Bonsoir, je déterre un peu ce vpl-cx5 que je possède et que je vends !!!
                  +Je voie qu’il y a encore des personnes qui s’y intéresse.
                  +Je précise juste que le mien est en excellent état de marche, il y a la télécommande et qu’il n’a servi QUE 220 Heures. Lampe d’origine. Je cherchais pendant un temps un moyen de l’upgrader pour l’image, mais finalement…. je change…

                  + +
                  +
                  + +
                + +
              + +
              + +
              +
              +
              +
              +

              + Jean-Marie + · 31 décembre 2014 à 14 h 43 min +

              +

              Bonjour Hugo.
              +Merci pour ton partage d’expérience.
              +Moi aussi, j’ai un VPL-CS7 inerte comme tu dis. Pas la moindre led s’allume ou clignote quand je le branche.
              +Je l’ai complètement démonté. Je soupçonne un composant sur le bloc d’alim.
              +As-tu réparé le tien ?
              +Merci.
              +JM.

              + +
              +
              +
                +
                + +
                +
                +
                +
                +

                + HugoPoi + · 31 janvier 2015 à 15 h 13 min +

                +

                Moi j’ai bien réparé mon CX5 mais celui-ci est retombé en panne 6 mois plus tard. Cette fois-ci avec plus de composants endommagés :-(
                +Bon courage pour les réparations.

                + +
                +
                + +
              + +
              + +
              +
              +
              +
              +

              + Sorce + · 14 mars 2015 à 16 h 05 min +

              +

              Bonjour ,j’ai un vpl cs6 ,qui ne s’allume pas rien du tous j’ai suivi tes étape et sur le connecteur con 2001 et la 325v bizarre bon je relie la carte gb pour tester au borne du con 3201 et la 15v et sa retombe et sa remonte a 15v peut tu m aider cdt richard (pense tu que je doi changer le mcz)

              + +
              +
              +
                +
                + +
                +
                +
                +
                +

                + HugoPoi + · 29 avril 2015 à 16 h 18 min +

                +

                Vérifiez les autres tensions en sortie de la carte GB, de mémoire il doit y avoir 3,3 V du 5 V et du 15V. Si tout est OK, la carte-mère principale est peut-être endommagé et pas moyen de réparer sans changement.

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + Gilles + · 16 juin 2018 à 13 h 44 min +

                +

                Même chose que vous ?
                +Avez-vous trouvé une solution ?
                +Est-ce que c’est normal cette tension non stable ?

                + +
                +
                + +
              + +
              + +
              +
              +
              +
              +

              + Daoud Yacoub + · 20 octobre 2015 à 9 h 54 min +

              +

              Je remercie beaucoup l’equipe

              + +
              +
              + +
              + +
              +
              +
              +
              +

              + Daoud Yacoub + · 20 octobre 2015 à 10 h 02 min +

              +

              Aidez moi à depanner mon vidéo projecteur le tout ne s’allume pas ;jai démonté et nettoyer toutes les plaques alimentation et logique me rien ne se passe mais en toute sincérité si je peux avoir le document technique de réparation m’est indispensable

              + +
              +
              +
                +
                + +
                +
                +
                +
                +

                + HugoPoi + · 24 octobre 2015 à 13 h 39 min +

                +

                Les commentaires n’ont pas pour vocation d’être un forum :-)

                + +
                +
                + +
              + +
              +
              +
              +

              Répondre à HugoPoi Annuler la réponse

              Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

              +
              +
              +

              + +

              +
              +
              +
              +
              +
              +
              + +
              +
              +
              +
              +
              +
              + + +
              + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/33db2e00620b999c759a426f9c07f707c1949c35.00000461.html b/www/.content.EZtzwPjb/html/33db2e00620b999c759a426f9c07f707c1949c35.00000461.html new file mode 100644 index 0000000..718e86e --- /dev/null +++ b/www/.content.EZtzwPjb/html/33db2e00620b999c759a426f9c07f707c1949c35.00000461.html @@ -0,0 +1,364 @@ + + + + + + + NH-D14 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
              +
              +
              +
              + +
              +
              +
              +
              +
              +
              +
              + +
              +
              +
              +
              + +
              +
              + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/34d3c3f61119345c1c602f2b5a2df4e613e6d078.00000067.html b/www/.content.EZtzwPjb/html/34d3c3f61119345c1c602f2b5a2df4e613e6d078.00000067.html new file mode 100644 index 0000000..7567831 --- /dev/null +++ b/www/.content.EZtzwPjb/html/34d3c3f61119345c1c602f2b5a2df4e613e6d078.00000067.html @@ -0,0 +1,590 @@ + + + + + + + + Asus U36JC-RX260V – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
              +
              +
              +
              + +
              +
              +
              +
              +
              +
              +

              Depuis le temps que je voulais investir dans un pc portable, je l’ai enfin fait. Je cherchais une machine en complément de mon fixe avec comme premiers critères l’autonomie et un minimum de puissance. J’ai donc acheté un ultra-portable Asus, un chassie U36JC avec les caractéristiques suivantes :

              +
                +
              • Ecran 13,3″ 1366×768
              • +
              • Processeur Intel Core I5-480M
              • +
              • 4Go de Ram
              • +
              • Carte Graphique Intel HD2000 et Nvidia Geforce 310M (Optimus)
              • +
              • Batterie 8 cellules
              • +
              • Dimension 32.2 x 23.2 x 1.90 cm Poids 1,6 Kg avec batterie
              • +
              +

              Déballage

              +

              L’emballage est petit et contient le strict minimum, le pc et l’alimentation. Alors au niveau de l’équipement on a pour ce prix :

              +
                +
              • Wifi Intel AGN
              • +
              • Un disque-dur 640 Go Western Digital Scorpio Blue
              • +
              • Un port USB 3.0
              • +
              • et déception pas de bluetooth
              • +
              +

              L’écran est rétro-éclairé par LED, la luminosité minimum est très forte c’est un bon point par contre je trouve que les contrastes sont pâles et le rendu est un peu blanchâtre. La finition extérieure est bonne sans être excellente. L’autonomie est d’un peu moins de 5 heures en utilisation bureautique intensive web.

              +

              Optimus

              +

              Ce modèle dispose de la technologie Nvidia Optimus qui permet de switcher l’affichage entre le chipset graphique interne au processeur Intel et la carte Nvidia qui est sur le port PCI-Express de la carte mère. Cela permet en théorie de gagner en autonomie en utilisant le chip intel pour la bureautique et la carte Nvidia pour faire un peu de  jeux vidéo quand le pc est branché. J’ai testé et j’ai trouvé plusieurs points noirs concernant cette techno :

              +
                +
              • Ne fonctionne que sous Windows car le système est conçu à partir de cet OS
              • +
              • Quand je switch d’un chip à l’autre je ne peux pas savoir quel carte est réellement active #lol ou j’ai loupé un truc ?
              • +
              • Pour switcher il faut utiliser le logiciel Power4Gear d’Asus enfin je suppose car c’est uniquement par ce biais que j’ai réussi …
              • +
              +

              Je vais essayer de vous pondre un billet si je trouve des astuces permettant d’exploiter cette techno qui pour l’instant est un peu merdique. J’ai aussi remarqué un truc. Quand je suis sur le chip Intel, la carte Nvidia reste alimentée et monte en charge à environ 2-3%… bizarre !

              +

              Software

              +

              Un grand bravo à tout les éditeurs qui ont un partenariat avec Asus pour pré-installer toutes leur merdes sur les machines neuves. Cela me conforte dans l’idée que Windows est un OS poubelle, ou du moins les éditeurs font tout pour que ça le reste. Et tout ces pauvres gens qui subissent Microsoft et tout ces éditeurs. Bientôt on ne pourra plus choisir l’antivirus que l’on veut à moins de formater sa machine neuve. J’ai du passer environ deux bonnes heures pour dégager toutes les merdes qui étaient pré-installées.

              +

              Un petit merci à Asus pour tous ces logiciels avec des supers nom geek « fast boot », « Power4Gear », « virtual camera » mais dont la moitié est super impossible à utiliser ou même au début c’est tellement transparent qu’on ne sait pas vraiment à quoi ils servent vraiment. C’est l’impression que j’en ai eu.

              +

              L’aventure Cdiscount

              +

              J’ai eu de la « chance » et j’ai trouvé sur Cdiscount le modèle RX260V au prix de 680€ donc une affaire. C’était la première fois que je commandais chez Cdiscount, je soupçonnes des méthodes pas très catholique pour manipuler leurs clients. Sur la page du produit qui était une vente flash, il y avait le stock affiché en temps réel, et le nombre d’articles disponible est passé de 7 à 30 vers minuit le samedi du week-end durant lequel j’ai commandé. Je doute qu’il y ait eu un réapprovisionnement un samedi soir. Le délai de livraison est moyen, une semaine avec le mode de transport le moins cher. Et malgré avoir décoché les cases « recevoir nos offres promotionnelles » et compagnie, elles se sont re-cochées après la création de mon compte. J’ai reçu des mails assez intrusifs, car le site s’est rendu compte que je traquais un article, et m’ a envoyé plusieurs mails pour me dire « achetez, achetez, il y en aura plus après. »

              +

              Comme j’ai commandé avant le 14 mars j’étais éligible à l’offre promotionnelle -25% remboursé sur le rayon informatique. j’ai donc rempli le formulaire en ligne puis renvoyé le code barre de mon Asus. Cdiscount m’a confirmé (le 07/04/2011) seulement deux semaines après qu’il avait reçu mon dossier(reçu 24/03/2011), très réactif, pour me dire en plus que je recevrais mes bons d’achats dans un délai de 3 semaines ! (les emails c’est pire que la poste …) Donc 7+3*7=28, j’aurais 2 jours pour utiliser mon bon d’achat, c’est limite comme pratique non ?

              +

              Conclusion

              +

              Après relecture, mon article n’est pas très positif mais j’ai gardé le meilleur pour la fin. C’est mon premier PC portable, j’avais un peu peur qu’il soit plus lent que mon fixe mais il s’avère que non. En utilisation bureautique donc bon point, rapide à démarrer, sortir de veille. L’autonomie de 5h est un minimum, et pour 700 €, on a l’équivalent d’un netbook mais avec la puissance d’un notebook de base. L’équipement est complet pour ce niveau de prix mais j’aurais aimé avoir un port e-sata et du bluetooth pour qu’il soit top ! Sinon si on compare avec un Macbook air :

              +
                +
              1. Le processeur Core i5-480M vs Core 2 Duo Asus Win !
              2. +
              3. Carte Graphique Nvidia Geforce 310M vs 320M Apple Win :(
              4. +
              5. Poids 1,6 Kg vs 1,32 kg mais impossible de trouver le poids avec équipement comparable ? so ==
              6. +
              7. Taille 1.90 cm vs 1,7 cm Apple Win
              8. +
              9. Equipement USB3/VGA-HDMI/Eth1Gb vs 2USB/DP Apple FAIL
              10. +
              11. Easy Upgrade Batterie/Disque-dur/RAM vs ???? Asus Win
              12. +
              13. Et pour finir le prix 700€ sans SSD vs 1400€ donc même si je rajoute un putain de SSD à 300€ Asus MegaWin
              14. +
              +

              En résumé, ça fait  4 à 2, donc Apple peut aller se rhabiller avec ses MacBook air même pas foutu d’avoir un port Ethernet (et celui qui est vendu en option est 10/100 )

              +

               

              +

              Mince je me suis trompé d’image :

              +

              c'est pas un RX260V ...??...

              +
              +
              +
              +
              +
              Catégories : HardwareLogicielsTest
              +
              +
              +
              + + + + + + + + + +
              +
              +
              +
              +
              +
              +
              +

              + 4 commentaires

              +
              + +
              +
              +
              +
              +

              + Mikky + · 1 mai 2011 à 20 h 51 min +

              +

              Yop Hugo,
              +sache que lorsqu’on achète un pc portable faut le réinstaller comme ça tu peux dégager tout les merdes pré-installés car on peut choisir ceux qu’on veut intaller ;)

              +

              Bisous =)

              + +
              +
              + +
              + +
              +
              +
              +
              +

              + darkneo + · 28 mai 2011 à 17 h 21 min +

              +

              Par contre sur ce modèle je crois que l’accès au disque n’est pas possible sans ouvrir toute la coque!

              + +
              +
              + +
              +
              +

              + Optimus vs Mégatron | HugoPoi + · 5 mai 2011 à 2 h 00 min +

              +

              […] l’heureux acquéreur #oupas d’un pc portable avec technologie Optimus de Nvidia (voir Asus U36JC). Après quelques jours de recherches et de tests je vais essayer de vous faire un résumé […]

              + +
              +
              + +
              +
              +

              + Démontage Asus U36 | HugoPoi + · 31 juillet 2011 à 2 h 00 min +

              +

              […] acheté un petit SSD pour mettre dans mon U36 acheté il y a quelques mois, je n’ai pas trouvé de procédure de démontage sur Internet donc voici les photos de mon […]

              + +
              +
              + +
              +
              +
              +

              Répondre à Mikky Annuler la réponse

              Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

              +
              +
              +

              + +

              +
              +
              +
              +
              +
              +
              + +
              +
              +
              +
              +
              +
              + + +
              + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/35313aeb32fba0d6bc8a999193f9e5391567450f.00000034.html b/www/.content.EZtzwPjb/html/35313aeb32fba0d6bc8a999193f9e5391567450f.00000034.html new file mode 100644 index 0000000..d6959c0 --- /dev/null +++ b/www/.content.EZtzwPjb/html/35313aeb32fba0d6bc8a999193f9e5391567450f.00000034.html @@ -0,0 +1,661 @@ + + + + + + + + GET to POST – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
              +
              +
              +
              + +
              +
              +
              +
              +
              +
              +

              Il est 00h16, comme d’habitude je suis en train de développer un truc useless pour passer le temps donc je vais le mettre histoire de dire que ça va peut-être servir à plus d’une personne.

              +

              Language : JavaScript

              +

              Dépendance : Aucune

              +

              Type d’exécution : Local

              +

              Description : Ce script sert à transformer une requête HTTP de type GET via URL en méthode POST.

              +

              Fonctionnement : Il prend les arguments passés en get dans l’url et les envois via un formulaire de type hidden créé à la volée.

              +

              Exemple : https://blog.hugopoi.net/wp-content/uploads/2010/12/script.html?urlserverpage=http://fr.php.net/search.php&pattern=test&lang=en&show=quickref

              +

              Download : Script Get to Post

              +

              Note: pour télécharge le fichier en lien ci-dessus faites un clic droit « enregistrer la cible sous ».

              +
              +
              +
              +
              +
              Catégories : DéveloppementNews
              +
              +
              +
              + + + + + + + + + +
              +
              +
              +
              +
              +
              +
              +

              + 9 commentaires

              +
              + +
              +
              +
              +
              +

              + watchix + · 12 juillet 2011 à 17 h 50 min +

              +

              Merci mon bon Hugo :-)
              +J’étais en train de chercher ce genre de script lorsque je suis tombé sur le blog de Camille Descombes, puis ensuite sur ton commentaire :-)
              +Internet est petit dans le monde des développeurs ^^

              + +
              +
              + +
              + +
              +
              +
              +
              +

              + mou7a + · 25 mai 2012 à 13 h 01 min +

              +

              bonjour, Je sais que l’article date un peu mais je n’arrive pas à récupérer la source elle n’est plus disponible merci!!!

              + +
              +
              +
                +
                + +
                +
                +
                +
                +

                + HugoPoi + · 14 juin 2012 à 23 h 00 min +

                +

                la source est dans le fichier HTML.

                + +
                +
                + +
              + +
              + +
              +
              +
              +
              +

              + houhou + · 10 juillet 2012 à 9 h 29 min +

              +

              Bonjour HugoPoi;
              +j’ai besoin du script pour récupérer le contenu d’une div généré en js,l’envoyer à une autre page de traitement pour le convertir en pdf.c’est urgent,merci!!!

              + +
              +
              + + +
              + +
              +
              +
              +
              +

              + Geolocalise Ip + · 25 avril 2014 à 10 h 42 min +

              +

              Bonjour,
              +Merci beaucoup pour l’idée, mais ta page : http://blog.hugopoi.net/wp-content/uploads/2010/12/script.html est morte …

              +

              Quant à « houhou », il est formidable, je prendrai bien son adresse IP à celui là pour voir de quel pays il vient !!!! Grrr ….
              +Bon c’était en 2012, il a dû changer de métiers depuis !

              + +
              +
              +
                +
                + +
                +
                +
                +
                +

                + HugoPoi + · 9 mai 2014 à 18 h 12 min +

                +

                Le lien n’est pas mort mais le script se lance même sans paramètres valide donc tu es redirigé quand tu clic.
                +Fait un clic droit enregistrer sous.

                + +
                +
                + +
              + +
              + +
              +
              +
              +
              +

              + Gab Wink + · 13 février 2015 à 0 h 06 min +

              +

              Merci, ceci m’a été utile (et c’est toujours cool de le dire).

              + +
              +
              + +
              +
              +
              +

              Répondre à HugoPoi Annuler la réponse

              Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

              +
              +
              +

              + +

              +
              +
              +
              +
              +
              +
              + +
              +
              +
              +
              +
              +
              + + +
              + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/356bb4214b9ca78fb4948881951dd10eb446743b.00001198.css b/www/.content.EZtzwPjb/html/356bb4214b9ca78fb4948881951dd10eb446743b.00001198.css new file mode 100644 index 0000000..f047ccc --- /dev/null +++ b/www/.content.EZtzwPjb/html/356bb4214b9ca78fb4948881951dd10eb446743b.00001198.css @@ -0,0 +1,11 @@ +.wp-block-audio figcaption{margin-top:.5em;margin-bottom:1em}.wp-block-audio audio{width:100%;min-width:300px}.wp-block-button{color:#fff}.wp-block-button.aligncenter{text-align:center}.wp-block-button.alignright{text-align:right}.wp-block-button__link{background-color:#32373c;border:none;border-radius:28px;box-shadow:none;color:inherit;cursor:pointer;display:inline-block;font-size:18px;margin:0;padding:12px 24px;text-align:center;text-decoration:none;overflow-wrap:break-word}.wp-block-button__link:active,.wp-block-button__link:focus,.wp-block-button__link:hover,.wp-block-button__link:visited{color:inherit}.wp-gs .wp-block-button__link:not(.has-background){background-color:var(--wp-block-core-button--color--background,var(--wp-color--primary,#32373c))}.is-style-squared .wp-block-button__link{border-radius:0}.no-border-radius.wp-block-button__link{border-radius:0!important}.is-style-outline{color:#32373c}.is-style-outline .wp-block-button__link{background-color:transparent;border:2px solid}.wp-block-buttons .wp-block-button{display:inline-block;margin-right:8px;margin-bottom:8px}.wp-block-buttons.alignright .wp-block-button{margin-right:none;margin-left:8px}.wp-block-buttons.aligncenter,.wp-block-calendar{text-align:center}.wp-block-calendar tbody td,.wp-block-calendar th{padding:4px;border:1px solid #e2e4e7}.wp-block-calendar tfoot td{border:none}.wp-block-calendar table{width:100%;border-collapse:collapse;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif}.wp-block-calendar table th{font-weight:400;background:#edeff0}.wp-block-calendar a{text-decoration:underline}.wp-block-calendar tfoot a{color:#00739c}.wp-block-calendar table caption,.wp-block-calendar table tbody{color:#40464d}.wp-block-categories.alignleft{margin-right:2em}.wp-block-categories.alignright{margin-left:2em}.wp-block-columns{display:flex;margin-bottom:28px;flex-wrap:wrap}@media (min-width:782px){.wp-block-columns{flex-wrap:nowrap}}.wp-block-columns.has-background{padding:20px 30px}.wp-block-column{flex-grow:1;min-width:0;word-break:break-word;overflow-wrap:break-word}@media (max-width:599px){.wp-block-column{flex-basis:100%!important}}@media (min-width:600px) and (max-width:781px){.wp-block-column{flex-basis:calc(50% - 16px)!important;flex-grow:0}.wp-block-column:nth-child(2n){margin-left:32px}}@media (min-width:782px){.wp-block-column{flex-basis:0;flex-grow:1}.wp-block-column[style]{flex-grow:0}.wp-block-column:not(:first-child){margin-left:32px}}.wp-block-columns.are-vertically-aligned-top{align-items:flex-start}.wp-block-columns.are-vertically-aligned-center{align-items:center}.wp-block-columns.are-vertically-aligned-bottom{align-items:flex-end}.wp-block-column.is-vertically-aligned-top{align-self:flex-start}.wp-block-column.is-vertically-aligned-center{-ms-grid-row-align:center;align-self:center}.wp-block-column.is-vertically-aligned-bottom{align-self:flex-end}.wp-block-column.is-vertically-aligned-bottom,.wp-block-column.is-vertically-aligned-center,.wp-block-column.is-vertically-aligned-top{width:100%}.wp-block-cover,.wp-block-cover-image{position:relative;background-color:#000;background-size:cover;background-position:50%;min-height:430px;height:100%;width:100%;display:flex;justify-content:center;align-items:center;overflow:hidden}.wp-block-cover-image.has-parallax,.wp-block-cover.has-parallax{background-attachment:fixed}@supports (-webkit-overflow-scrolling:touch){.wp-block-cover-image.has-parallax,.wp-block-cover.has-parallax{background-attachment:scroll}}@media (prefers-reduced-motion:reduce){.wp-block-cover-image.has-parallax,.wp-block-cover.has-parallax{background-attachment:scroll}}.wp-block-cover-image.has-background-dim:before,.wp-block-cover.has-background-dim:before{content:"";background-color:inherit}.wp-block-cover-image.has-background-dim:not(.has-background-gradient):before,.wp-block-cover-image .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim:not(.has-background-gradient):before,.wp-block-cover .wp-block-cover__gradient-background{position:absolute;top:0;left:0;bottom:0;right:0;z-index:1}.wp-block-cover-image.has-background-dim:not(.has-background-gradient):before,.wp-block-cover-image .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim:not(.has-background-gradient):before,.wp-block-cover .wp-block-cover__gradient-background{opacity:.5}.wp-block-cover-image.has-background-dim.has-background-dim-10:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-10:not(.has-background-gradient):before{opacity:.1}.wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background{opacity:.1}.wp-block-cover-image.has-background-dim.has-background-dim-20:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-20:not(.has-background-gradient):before{opacity:.2}.wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background{opacity:.2}.wp-block-cover-image.has-background-dim.has-background-dim-30:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-30:not(.has-background-gradient):before{opacity:.3}.wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background{opacity:.3}.wp-block-cover-image.has-background-dim.has-background-dim-40:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-40:not(.has-background-gradient):before{opacity:.4}.wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background{opacity:.4}.wp-block-cover-image.has-background-dim.has-background-dim-50:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-50:not(.has-background-gradient):before{opacity:.5}.wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background{opacity:.5}.wp-block-cover-image.has-background-dim.has-background-dim-60:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-60:not(.has-background-gradient):before{opacity:.6}.wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background{opacity:.6}.wp-block-cover-image.has-background-dim.has-background-dim-70:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-70:not(.has-background-gradient):before{opacity:.7}.wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background{opacity:.7}.wp-block-cover-image.has-background-dim.has-background-dim-80:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-80:not(.has-background-gradient):before{opacity:.8}.wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background{opacity:.8}.wp-block-cover-image.has-background-dim.has-background-dim-90:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-90:not(.has-background-gradient):before{opacity:.9}.wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background{opacity:.9}.wp-block-cover-image.has-background-dim.has-background-dim-100:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-100:not(.has-background-gradient):before{opacity:1}.wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background{opacity:1}.wp-block-cover-image.alignleft,.wp-block-cover-image.alignright,.wp-block-cover.alignleft,.wp-block-cover.alignright{max-width:290px;width:100%}.wp-block-cover-image:after,.wp-block-cover:after{display:block;content:"";font-size:0;min-height:inherit}@supports ((position:-webkit-sticky) or (position:sticky)){.wp-block-cover-image:after,.wp-block-cover:after{content:none}}.wp-block-cover-image.aligncenter,.wp-block-cover-image.alignleft,.wp-block-cover-image.alignright,.wp-block-cover.aligncenter,.wp-block-cover.alignleft,.wp-block-cover.alignright{display:flex}.wp-block-cover-image .wp-block-cover__inner-container,.wp-block-cover .wp-block-cover__inner-container{width:calc(100% - 70px);z-index:1;color:#f8f9f9}.wp-block-cover-image .wp-block-subhead:not(.has-text-color),.wp-block-cover-image h1:not(.has-text-color),.wp-block-cover-image h2:not(.has-text-color),.wp-block-cover-image h3:not(.has-text-color),.wp-block-cover-image h4:not(.has-text-color),.wp-block-cover-image h5:not(.has-text-color),.wp-block-cover-image h6:not(.has-text-color),.wp-block-cover-image p:not(.has-text-color),.wp-block-cover .wp-block-subhead:not(.has-text-color),.wp-block-cover h1:not(.has-text-color),.wp-block-cover h2:not(.has-text-color),.wp-block-cover h3:not(.has-text-color),.wp-block-cover h4:not(.has-text-color),.wp-block-cover h5:not(.has-text-color),.wp-block-cover h6:not(.has-text-color),.wp-block-cover p:not(.has-text-color){color:inherit}.wp-block-cover__video-background{position:absolute;top:50%;left:50%;transform:translateX(-50%) translateY(-50%);width:100%;height:100%;z-index:0;object-fit:cover}.wp-block-cover-image-text,.wp-block-cover-text,section.wp-block-cover-image h2{color:#fff}.wp-block-cover-image-text a,.wp-block-cover-image-text a:active,.wp-block-cover-image-text a:focus,.wp-block-cover-image-text a:hover,.wp-block-cover-text a,.wp-block-cover-text a:active,.wp-block-cover-text a:focus,.wp-block-cover-text a:hover,section.wp-block-cover-image h2 a,section.wp-block-cover-image h2 a:active,section.wp-block-cover-image h2 a:focus,section.wp-block-cover-image h2 a:hover{color:#fff}.wp-block-cover-image .wp-block-cover.has-left-content{justify-content:flex-start}.wp-block-cover-image .wp-block-cover.has-right-content{justify-content:flex-end}.wp-block-cover-image.has-left-content .wp-block-cover-image-text,.wp-block-cover.has-left-content .wp-block-cover-text,section.wp-block-cover-image.has-left-content>h2{margin-left:0;text-align:left}.wp-block-cover-image.has-right-content .wp-block-cover-image-text,.wp-block-cover.has-right-content .wp-block-cover-text,section.wp-block-cover-image.has-right-content>h2{margin-right:0;text-align:right}.wp-block-cover-image .wp-block-cover-image-text,.wp-block-cover .wp-block-cover-text,section.wp-block-cover-image>h2{font-size:2em;line-height:1.25;z-index:1;margin-bottom:0;max-width:580px;padding:14px;text-align:center}.block-editor-block-list__block[data-type="core/embed"][data-align=left],.block-editor-block-list__block[data-type="core/embed"][data-align=right],.wp-block-embed.alignleft,.wp-block-embed.alignright{max-width:360px;width:100%}.wp-block-embed{margin-bottom:1em}.wp-block-embed figcaption{margin-top:.5em;margin-bottom:1em}.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper{position:relative}.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper:before,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper:before,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper:before,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper:before,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper:before,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper:before,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper:before{content:"";display:block;padding-top:50%}.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper iframe,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper iframe,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper iframe,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper iframe,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper iframe,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper iframe,.wp-embed-responsive .wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper iframe{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%}.wp-embed-responsive .wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper:before{padding-top:42.85%}.wp-embed-responsive .wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper:before{padding-top:50%}.wp-embed-responsive .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper:before{padding-top:56.25%}.wp-embed-responsive .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper:before{padding-top:75%}.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper:before{padding-top:100%}.wp-embed-responsive .wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper:before{padding-top:177.78%}.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper:before{padding-top:200%}.wp-block-file{margin-bottom:1.5em}.wp-block-file.aligncenter{text-align:center}.wp-block-file.alignright{text-align:right}.wp-block-file .wp-block-file__button{background:#32373c;border-radius:2em;color:#fff;font-size:13px;padding:.5em 1em}.wp-block-file a.wp-block-file__button{text-decoration:none}.wp-block-file a.wp-block-file__button:active,.wp-block-file a.wp-block-file__button:focus,.wp-block-file a.wp-block-file__button:hover,.wp-block-file a.wp-block-file__button:visited{box-shadow:none;color:#fff;opacity:.85;text-decoration:none}.wp-block-file *+.wp-block-file__button{margin-left:.75em}.blocks-gallery-grid,.wp-block-gallery{display:flex;flex-wrap:wrap;list-style-type:none;padding:0;margin:0}.blocks-gallery-grid .blocks-gallery-image,.blocks-gallery-grid .blocks-gallery-item,.wp-block-gallery .blocks-gallery-image,.wp-block-gallery .blocks-gallery-item{margin:0 16px 16px 0;display:flex;flex-grow:1;flex-direction:column;justify-content:center;position:relative}.blocks-gallery-grid .blocks-gallery-image figure,.blocks-gallery-grid .blocks-gallery-item figure,.wp-block-gallery .blocks-gallery-image figure,.wp-block-gallery .blocks-gallery-item figure{margin:0;height:100%}@supports ((position:-webkit-sticky) or (position:sticky)){.blocks-gallery-grid .blocks-gallery-image figure,.blocks-gallery-grid .blocks-gallery-item figure,.wp-block-gallery .blocks-gallery-image figure,.wp-block-gallery .blocks-gallery-item figure{display:flex;align-items:flex-end;justify-content:flex-start}}.blocks-gallery-grid .blocks-gallery-image img,.blocks-gallery-grid .blocks-gallery-item img,.wp-block-gallery .blocks-gallery-image img,.wp-block-gallery .blocks-gallery-item img{display:block;max-width:100%;height:auto;width:100%}@supports ((position:-webkit-sticky) or (position:sticky)){.blocks-gallery-grid .blocks-gallery-image img,.blocks-gallery-grid .blocks-gallery-item img,.wp-block-gallery .blocks-gallery-image img,.wp-block-gallery .blocks-gallery-item img{width:auto}}.blocks-gallery-grid .blocks-gallery-image figcaption,.blocks-gallery-grid .blocks-gallery-item figcaption,.wp-block-gallery .blocks-gallery-image figcaption,.wp-block-gallery .blocks-gallery-item figcaption{position:absolute;bottom:0;width:100%;max-height:100%;overflow:auto;padding:40px 10px 9px;color:#fff;text-align:center;font-size:13px;background:linear-gradient(0deg,rgba(0,0,0,.7),rgba(0,0,0,.3) 70%,transparent)}.blocks-gallery-grid .blocks-gallery-image figcaption img,.blocks-gallery-grid .blocks-gallery-item figcaption img,.wp-block-gallery .blocks-gallery-image figcaption img,.wp-block-gallery .blocks-gallery-item figcaption img{display:inline}.blocks-gallery-grid.is-cropped .blocks-gallery-image a,.blocks-gallery-grid.is-cropped .blocks-gallery-image img,.blocks-gallery-grid.is-cropped .blocks-gallery-item a,.blocks-gallery-grid.is-cropped .blocks-gallery-item img,.wp-block-gallery.is-cropped .blocks-gallery-image a,.wp-block-gallery.is-cropped .blocks-gallery-image img,.wp-block-gallery.is-cropped .blocks-gallery-item a,.wp-block-gallery.is-cropped .blocks-gallery-item img{width:100%}@supports ((position:-webkit-sticky) or (position:sticky)){.blocks-gallery-grid.is-cropped .blocks-gallery-image a,.blocks-gallery-grid.is-cropped .blocks-gallery-image img,.blocks-gallery-grid.is-cropped .blocks-gallery-item a,.blocks-gallery-grid.is-cropped .blocks-gallery-item img,.wp-block-gallery.is-cropped .blocks-gallery-image a,.wp-block-gallery.is-cropped .blocks-gallery-image img,.wp-block-gallery.is-cropped .blocks-gallery-item a,.wp-block-gallery.is-cropped .blocks-gallery-item img{height:100%;flex:1;object-fit:cover}}.blocks-gallery-grid .blocks-gallery-image,.blocks-gallery-grid .blocks-gallery-item,.wp-block-gallery .blocks-gallery-image,.wp-block-gallery .blocks-gallery-item{width:calc((100% - 16px)/2)}.blocks-gallery-grid .blocks-gallery-image:nth-of-type(2n),.blocks-gallery-grid .blocks-gallery-item:nth-of-type(2n),.wp-block-gallery .blocks-gallery-image:nth-of-type(2n),.wp-block-gallery .blocks-gallery-item:nth-of-type(2n){margin-right:0}.blocks-gallery-grid.columns-1 .blocks-gallery-image,.blocks-gallery-grid.columns-1 .blocks-gallery-item,.wp-block-gallery.columns-1 .blocks-gallery-image,.wp-block-gallery.columns-1 .blocks-gallery-item{width:100%;margin-right:0}@media (min-width:600px){.blocks-gallery-grid.columns-3 .blocks-gallery-image,.blocks-gallery-grid.columns-3 .blocks-gallery-item,.wp-block-gallery.columns-3 .blocks-gallery-image,.wp-block-gallery.columns-3 .blocks-gallery-item{width:calc((100% - 32px)/3);margin-right:16px}@supports (-ms-ime-align:auto){.blocks-gallery-grid.columns-3 .blocks-gallery-image,.blocks-gallery-grid.columns-3 .blocks-gallery-item,.wp-block-gallery.columns-3 .blocks-gallery-image,.wp-block-gallery.columns-3 .blocks-gallery-item{width:calc((100% - 32px)/3 - 1px)}}.blocks-gallery-grid.columns-4 .blocks-gallery-image,.blocks-gallery-grid.columns-4 .blocks-gallery-item,.wp-block-gallery.columns-4 .blocks-gallery-image,.wp-block-gallery.columns-4 .blocks-gallery-item{width:calc((100% - 48px)/4);margin-right:16px}@supports (-ms-ime-align:auto){.blocks-gallery-grid.columns-4 .blocks-gallery-image,.blocks-gallery-grid.columns-4 .blocks-gallery-item,.wp-block-gallery.columns-4 .blocks-gallery-image,.wp-block-gallery.columns-4 .blocks-gallery-item{width:calc((100% - 48px)/4 - 1px)}}.blocks-gallery-grid.columns-5 .blocks-gallery-image,.blocks-gallery-grid.columns-5 .blocks-gallery-item,.wp-block-gallery.columns-5 .blocks-gallery-image,.wp-block-gallery.columns-5 .blocks-gallery-item{width:calc((100% - 64px)/5);margin-right:16px}@supports (-ms-ime-align:auto){.blocks-gallery-grid.columns-5 .blocks-gallery-image,.blocks-gallery-grid.columns-5 .blocks-gallery-item,.wp-block-gallery.columns-5 .blocks-gallery-image,.wp-block-gallery.columns-5 .blocks-gallery-item{width:calc((100% - 64px)/5 - 1px)}}.blocks-gallery-grid.columns-6 .blocks-gallery-image,.blocks-gallery-grid.columns-6 .blocks-gallery-item,.wp-block-gallery.columns-6 .blocks-gallery-image,.wp-block-gallery.columns-6 .blocks-gallery-item{width:calc((100% - 80px)/6);margin-right:16px}@supports (-ms-ime-align:auto){.blocks-gallery-grid.columns-6 .blocks-gallery-image,.blocks-gallery-grid.columns-6 .blocks-gallery-item,.wp-block-gallery.columns-6 .blocks-gallery-image,.wp-block-gallery.columns-6 .blocks-gallery-item{width:calc((100% - 80px)/6 - 1px)}}.blocks-gallery-grid.columns-7 .blocks-gallery-image,.blocks-gallery-grid.columns-7 .blocks-gallery-item,.wp-block-gallery.columns-7 .blocks-gallery-image,.wp-block-gallery.columns-7 .blocks-gallery-item{width:calc((100% - 96px)/7);margin-right:16px}@supports (-ms-ime-align:auto){.blocks-gallery-grid.columns-7 .blocks-gallery-image,.blocks-gallery-grid.columns-7 .blocks-gallery-item,.wp-block-gallery.columns-7 .blocks-gallery-image,.wp-block-gallery.columns-7 .blocks-gallery-item{width:calc((100% - 96px)/7 - 1px)}}.blocks-gallery-grid.columns-8 .blocks-gallery-image,.blocks-gallery-grid.columns-8 .blocks-gallery-item,.wp-block-gallery.columns-8 .blocks-gallery-image,.wp-block-gallery.columns-8 .blocks-gallery-item{width:calc((100% - 112px)/8);margin-right:16px}@supports (-ms-ime-align:auto){.blocks-gallery-grid.columns-8 .blocks-gallery-image,.blocks-gallery-grid.columns-8 .blocks-gallery-item,.wp-block-gallery.columns-8 .blocks-gallery-image,.wp-block-gallery.columns-8 .blocks-gallery-item{width:calc((100% - 112px)/8 - 1px)}}.blocks-gallery-grid.columns-1 .blocks-gallery-image:nth-of-type(1n),.blocks-gallery-grid.columns-1 .blocks-gallery-item:nth-of-type(1n),.wp-block-gallery.columns-1 .blocks-gallery-image:nth-of-type(1n),.wp-block-gallery.columns-1 .blocks-gallery-item:nth-of-type(1n){margin-right:0}.blocks-gallery-grid.columns-2 .blocks-gallery-image:nth-of-type(2n),.blocks-gallery-grid.columns-2 .blocks-gallery-item:nth-of-type(2n),.wp-block-gallery.columns-2 .blocks-gallery-image:nth-of-type(2n),.wp-block-gallery.columns-2 .blocks-gallery-item:nth-of-type(2n){margin-right:0}.blocks-gallery-grid.columns-3 .blocks-gallery-image:nth-of-type(3n),.blocks-gallery-grid.columns-3 .blocks-gallery-item:nth-of-type(3n),.wp-block-gallery.columns-3 .blocks-gallery-image:nth-of-type(3n),.wp-block-gallery.columns-3 .blocks-gallery-item:nth-of-type(3n){margin-right:0}.blocks-gallery-grid.columns-4 .blocks-gallery-image:nth-of-type(4n),.blocks-gallery-grid.columns-4 .blocks-gallery-item:nth-of-type(4n),.wp-block-gallery.columns-4 .blocks-gallery-image:nth-of-type(4n),.wp-block-gallery.columns-4 .blocks-gallery-item:nth-of-type(4n){margin-right:0}.blocks-gallery-grid.columns-5 .blocks-gallery-image:nth-of-type(5n),.blocks-gallery-grid.columns-5 .blocks-gallery-item:nth-of-type(5n),.wp-block-gallery.columns-5 .blocks-gallery-image:nth-of-type(5n),.wp-block-gallery.columns-5 .blocks-gallery-item:nth-of-type(5n){margin-right:0}.blocks-gallery-grid.columns-6 .blocks-gallery-image:nth-of-type(6n),.blocks-gallery-grid.columns-6 .blocks-gallery-item:nth-of-type(6n),.wp-block-gallery.columns-6 .blocks-gallery-image:nth-of-type(6n),.wp-block-gallery.columns-6 .blocks-gallery-item:nth-of-type(6n){margin-right:0}.blocks-gallery-grid.columns-7 .blocks-gallery-image:nth-of-type(7n),.blocks-gallery-grid.columns-7 .blocks-gallery-item:nth-of-type(7n),.wp-block-gallery.columns-7 .blocks-gallery-image:nth-of-type(7n),.wp-block-gallery.columns-7 .blocks-gallery-item:nth-of-type(7n){margin-right:0}.blocks-gallery-grid.columns-8 .blocks-gallery-image:nth-of-type(8n),.blocks-gallery-grid.columns-8 .blocks-gallery-item:nth-of-type(8n),.wp-block-gallery.columns-8 .blocks-gallery-image:nth-of-type(8n),.wp-block-gallery.columns-8 .blocks-gallery-item:nth-of-type(8n){margin-right:0}}.blocks-gallery-grid .blocks-gallery-image:last-child,.blocks-gallery-grid .blocks-gallery-item:last-child,.wp-block-gallery .blocks-gallery-image:last-child,.wp-block-gallery .blocks-gallery-item:last-child{margin-right:0}.blocks-gallery-grid.alignleft,.blocks-gallery-grid.alignright,.wp-block-gallery.alignleft,.wp-block-gallery.alignright{max-width:290px;width:100%}.blocks-gallery-grid.aligncenter .blocks-gallery-item figure,.wp-block-gallery.aligncenter .blocks-gallery-item figure{justify-content:center}.wp-block-image{margin-bottom:1em}.wp-block-image img{max-width:100%}.wp-block-image.aligncenter{text-align:center}.wp-block-image.alignfull img,.wp-block-image.alignwide img{width:100%}.wp-block-image .aligncenter,.wp-block-image .alignleft,.wp-block-image .alignright,.wp-block-image.is-resized{display:table;margin-left:0;margin-right:0}.wp-block-image .aligncenter>figcaption,.wp-block-image .alignleft>figcaption,.wp-block-image .alignright>figcaption,.wp-block-image.is-resized>figcaption{display:table-caption;caption-side:bottom}.wp-block-image .alignleft{float:left;margin-right:1em}.wp-block-image .alignright{float:right;margin-left:1em}.wp-block-image .aligncenter{margin-left:auto;margin-right:auto}.wp-block-image figcaption{margin-top:.5em;margin-bottom:1em}.is-style-circle-mask img,.is-style-rounded img{border-radius:9999px}@supports ((-webkit-mask-image:none) or (mask-image:none)) or (-webkit-mask-image:none){.is-style-circle-mask img{-webkit-mask-image:url('data:image/svg+xml;utf8,');mask-image:url('data:image/svg+xml;utf8,');mask-mode:alpha;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-position:center;mask-position:center;border-radius:0}}.wp-block-latest-comments__comment{font-size:15px;line-height:1.1;list-style:none;margin-bottom:1em}.has-avatars .wp-block-latest-comments__comment{min-height:36px;list-style:none}.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt,.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta{margin-left:52px}.has-dates .wp-block-latest-comments__comment,.has-excerpts .wp-block-latest-comments__comment{line-height:1.5}.wp-block-latest-comments__comment-excerpt p{font-size:14px;line-height:1.8;margin:5px 0 20px}.wp-block-latest-comments__comment-date{color:#8f98a1;display:block;font-size:12px}.wp-block-latest-comments .avatar,.wp-block-latest-comments__comment-avatar{border-radius:24px;display:block;float:left;height:40px;margin-right:12px;width:40px}.wp-block-latest-posts.alignleft{margin-right:2em}.wp-block-latest-posts.alignright{margin-left:2em}.wp-block-latest-posts.wp-block-latest-posts__list{list-style:none}.wp-block-latest-posts.wp-block-latest-posts__list li{clear:both}.wp-block-latest-posts.is-grid{display:flex;flex-wrap:wrap;padding:0}.wp-block-latest-posts.is-grid li{margin:0 16px 16px 0;width:100%}@media (min-width:600px){.wp-block-latest-posts.columns-2 li{width:calc(50% - 16px)}.wp-block-latest-posts.columns-3 li{width:calc(33.33333% - 16px)}.wp-block-latest-posts.columns-4 li{width:calc(25% - 16px)}.wp-block-latest-posts.columns-5 li{width:calc(20% - 16px)}.wp-block-latest-posts.columns-6 li{width:calc(16.66667% - 16px)}}.wp-block-latest-posts__post-date{display:block;color:#6c7781;font-size:13px}.wp-block-latest-posts__post-excerpt{margin-top:8px;margin-bottom:16px}.wp-block-latest-posts__featured-image img{height:auto;width:auto}.wp-block-latest-posts__featured-image.alignleft{margin-right:1em}.wp-block-latest-posts__featured-image.alignright{margin-left:1em}.wp-block-latest-posts__featured-image.aligncenter{margin-bottom:1em;text-align:center}.wp-block-media-text{ + /*!rtl:begin:ignore*/direction:ltr; + /*!rtl:end:ignore*/display:-ms-grid;display:grid;-ms-grid-columns:50% 1fr;grid-template-columns:50% 1fr;-ms-grid-rows:auto;grid-template-rows:auto}.wp-block-media-text.has-media-on-the-right{-ms-grid-columns:1fr 50%;grid-template-columns:1fr 50%}.wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__content,.wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__media{-ms-grid-row-align:start;align-self:start}.wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__content,.wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__media,.wp-block-media-text .wp-block-media-text__content,.wp-block-media-text .wp-block-media-text__media{-ms-grid-row-align:center;align-self:center}.wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__content,.wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__media{-ms-grid-row-align:end;align-self:end}.wp-block-media-text .wp-block-media-text__media{ + /*!rtl:begin:ignore*/-ms-grid-column:1;grid-column:1;-ms-grid-row:1;grid-row:1; + /*!rtl:end:ignore*/margin:0}.wp-block-media-text .wp-block-media-text__content{direction:ltr; + /*!rtl:begin:ignore*/-ms-grid-column:2;grid-column:2;-ms-grid-row:1;grid-row:1; + /*!rtl:end:ignore*/padding:0 8%;word-break:break-word}.wp-block-media-text.has-media-on-the-right .wp-block-media-text__media{ + /*!rtl:begin:ignore*/-ms-grid-column:2;grid-column:2;-ms-grid-row:1;grid-row:1 + /*!rtl:end:ignore*/}.wp-block-media-text.has-media-on-the-right .wp-block-media-text__content{ + /*!rtl:begin:ignore*/-ms-grid-column:1;grid-column:1;-ms-grid-row:1;grid-row:1 + /*!rtl:end:ignore*/}.wp-block-media-text>figure>img,.wp-block-media-text>figure>video{max-width:unset;width:100%;vertical-align:middle}.wp-block-media-text.is-image-fill figure.wp-block-media-text__media{height:100%;min-height:250px;background-size:cover}.wp-block-media-text.is-image-fill figure.wp-block-media-text__media>img{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}@media (max-width:600px){.wp-block-media-text.is-stacked-on-mobile{-ms-grid-columns:100%!important;grid-template-columns:100%!important}.wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__media{-ms-grid-column:1;grid-column:1;-ms-grid-row:1;grid-row:1}.wp-block-media-text.is-stacked-on-mobile.has-media-on-the-right .wp-block-media-text__media,.wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content{-ms-grid-column:1;grid-column:1;-ms-grid-row:2;grid-row:2}.wp-block-media-text.is-stacked-on-mobile.has-media-on-the-right .wp-block-media-text__content{-ms-grid-column:1;grid-column:1;-ms-grid-row:1;grid-row:1}}.wp-block-navigation>ul{display:block;list-style:none;margin:0;padding-left:0}@media (min-width:600px){.wp-block-navigation>ul{display:flex;flex-wrap:wrap}}.wp-block-navigation>ul ul{list-style:none;padding-left:0;margin-top:0;margin-left:0}.wp-block-navigation>ul ul li{margin:0}.wp-block-navigation>ul li{z-index:1}.wp-block-navigation>ul li:focus-within,.wp-block-navigation>ul li:hover{cursor:pointer;z-index:99999}.wp-block-navigation>ul li:focus-within>ul,.wp-block-navigation>ul li:hover>ul,.wp-block-navigation>ul li ul:focus,.wp-block-navigation>ul li ul:hover{visibility:visible;opacity:1;display:flex;flex-direction:column}.wp-block-navigation>ul>li ul{position:absolute;left:0;top:100%;min-width:200px;max-width:200px;opacity:0;transition:opacity .1s linear;visibility:hidden}.wp-block-navigation,.wp-block-navigation .block-editor-block-list__layout{display:flex;flex-wrap:wrap}.wp-block-navigation .block-editor-block-list__layout .block-editor-block-list__layout{width:200px}.wp-block-navigation .block-editor-inner-blocks>.block-editor-block-list__layout>.wp-block{margin:0;width:auto}.wp-block-navigation,.wp-block-navigation>.wp-block-navigation__container{align-items:center;width:100%}.wp-block-navigation>.wp-block-navigation-link,.wp-block-navigation>.wp-block-navigation__container>.wp-block-navigation-link{display:flex;margin-top:0;margin-bottom:0}.wp-block-navigation .wp-block-navigation-link{position:relative;margin:0;min-height:56px;display:flex;line-height:1.4}.wp-block-navigation .wp-block-navigation-link .wp-block,.wp-block-navigation .wp-block-navigation-link .wp-block-navigation-link{min-height:auto;padding:0}.wp-block-navigation .wp-block-navigation-link .wp-block .wp-block-navigation-link{margin:0}.wp-block-navigation .wp-block-navigation-link>.block-editor-inner-blocks{display:none}.wp-block-navigation .wp-block-navigation-link.has-child>.wp-block-navigation__container,.wp-block-navigation .wp-block-navigation-link.is-editing.has-child>.block-editor-inner-blocks{display:flex;border:1px solid rgba(0,0,0,.15);position:absolute;z-index:1;top:100%;left:0}.wp-block-navigation .wp-block-navigation-link.has-child>.wp-block-navigation__container .block-editor-inner-blocks,.wp-block-navigation .wp-block-navigation-link.has-child>.wp-block-navigation__container .wp-block-navigation__container,.wp-block-navigation .wp-block-navigation-link.is-editing.has-child>.block-editor-inner-blocks .block-editor-inner-blocks,.wp-block-navigation .wp-block-navigation-link.is-editing.has-child>.block-editor-inner-blocks .wp-block-navigation__container{left:100%;top:-1px}.wp-block-navigation .wp-block-navigation-link .block-editor-inner-blocks,.wp-block-navigation .wp-block-navigation-link .wp-block-navigation__container{background-color:inherit;color:inherit}.wp-block-navigation .wp-block-navigation-link .wp-block-navigation-link__content{display:flex;align-items:center;width:max-content;padding:6px 16px}.wp-block-navigation .wp-block-navigation-link .wp-block-navigation-link:first-child:not(:only-child) .wp-block-navigation-link__content{padding-top:8px}.wp-block-navigation .wp-block-navigation-link .wp-block-navigation-link:last-child .wp-block-navigation-link__content{padding-bottom:8px}.wp-block-navigation .wp-block-navigation-link.has-child .wp-block-navigation-link__content{min-width:100%;padding-right:32px;position:relative}.wp-block-navigation .wp-block-navigation-link .wp-block-navigation-link__submenu-icon{position:absolute;right:16px}.wp-block-navigation .wp-block-navigation-link .wp-block-navigation-link__submenu-icon svg{fill:currentColor}.wp-block-navigation .wp-block-navigation-link .wp-block-navigation-link svg{transform:rotate(0)}.wp-block-navigation .wp-block-navigation-link.has-text-color .wp-block-navigation-link__content{color:inherit}.wp-block-navigation.is-style-light .wp-block-navigation-link:not(.has-text-color)>.block-editor-inner-blocks,.wp-block-navigation.is-style-light .wp-block-navigation-link:not(.has-text-color)>.wp-block-navigation__container,.wp-block-navigation .wp-block-navigation-link:not(.has-text-color)>.block-editor-inner-blocks,.wp-block-navigation .wp-block-navigation-link:not(.has-text-color)>.wp-block-navigation__container{color:#111}.wp-block-navigation.is-style-light .wp-block-navigation-link:not(.has-background)>.block-editor-inner-blocks,.wp-block-navigation.is-style-light .wp-block-navigation-link:not(.has-background)>.wp-block-navigation__container,.wp-block-navigation .wp-block-navigation-link:not(.has-background)>.block-editor-inner-blocks,.wp-block-navigation .wp-block-navigation-link:not(.has-background)>.wp-block-navigation__container{background-color:#fff}.wp-block-navigation.is-style-dark .wp-block-navigation-link:not(.has-text-color)>.block-editor-inner-blocks,.wp-block-navigation.is-style-dark .wp-block-navigation-link:not(.has-text-color)>.wp-block-navigation__container{color:#fff}.wp-block-navigation.is-style-dark .wp-block-navigation-link:not(.has-background)>.block-editor-inner-blocks,.wp-block-navigation.is-style-dark .wp-block-navigation-link:not(.has-background)>.wp-block-navigation__container{background-color:#333}.wp-block-navigation .wp-block-navigation-link.has-child>.wp-block-navigation__container{display:flex;flex-direction:column;padding:0}.wp-block-navigation>ul>li>a{display:flex;align-items:center}.wp-block-navigation>ul>li:first-of-type>a{padding-left:0}.wp-block-navigation>ul>li:last-of-type>a{padding-right:0}.wp-block-navigation.items-justified-left>ul{justify-content:flex-start}.wp-block-navigation.items-justified-center>ul{justify-content:center}.wp-block-navigation.items-justified-right>ul{justify-content:flex-end}.is-small-text{font-size:14px}.is-regular-text{font-size:16px}.is-large-text{font-size:36px}.is-larger-text{font-size:48px}.has-drop-cap:not(:focus):first-letter{float:left;font-size:8.4em;line-height:.68;font-weight:100;margin:.05em .1em 0 0;text-transform:uppercase;font-style:normal}p.has-background{padding:20px 30px}p.has-text-color a{color:inherit}.wp-block-pullquote{padding:3em 0;margin-left:0;margin-right:0;text-align:center}.wp-block-pullquote.alignleft,.wp-block-pullquote.alignright{max-width:290px}.wp-block-pullquote.alignleft p,.wp-block-pullquote.alignright p{font-size:20px}.wp-block-pullquote p{font-size:28px;line-height:1.6}.wp-block-pullquote cite,.wp-block-pullquote footer{position:relative}.wp-block-pullquote .has-text-color a{color:inherit}.wp-block-pullquote:not(.is-style-solid-color){background:none}.wp-block-pullquote.is-style-solid-color{border:none}.wp-block-pullquote.is-style-solid-color blockquote{margin-left:auto;margin-right:auto;text-align:left;max-width:60%}.wp-block-pullquote.is-style-solid-color blockquote p{margin-top:0;margin-bottom:0;font-size:32px}.wp-block-pullquote.is-style-solid-color blockquote cite{text-transform:none;font-style:normal}.wp-block-pullquote cite{color:inherit}.wp-block-quote.is-large,.wp-block-quote.is-style-large{margin:0 0 16px;padding:0 1em}.wp-block-quote.is-large p,.wp-block-quote.is-style-large p{font-size:24px;font-style:italic;line-height:1.6}.wp-block-quote.is-large cite,.wp-block-quote.is-large footer,.wp-block-quote.is-style-large cite,.wp-block-quote.is-style-large footer{font-size:18px;text-align:right}.wp-block-rss.alignleft{margin-right:2em}.wp-block-rss.alignright{margin-left:2em}.wp-block-rss.is-grid{display:flex;flex-wrap:wrap;padding:0;list-style:none}.wp-block-rss.is-grid li{margin:0 16px 16px 0;width:100%}@media (min-width:600px){.wp-block-rss.columns-2 li{width:calc(50% - 16px)}.wp-block-rss.columns-3 li{width:calc(33.33333% - 16px)}.wp-block-rss.columns-4 li{width:calc(25% - 16px)}.wp-block-rss.columns-5 li{width:calc(20% - 16px)}.wp-block-rss.columns-6 li{width:calc(16.66667% - 16px)}}.wp-block-rss__item-author,.wp-block-rss__item-publish-date{display:block;color:#6c7781;font-size:13px}.wp-block-search{display:flex;flex-wrap:wrap}.wp-block-search .wp-block-search__label{width:100%}.wp-block-search .wp-block-search__input{flex-grow:1;max-width:360px}.wp-block-search .wp-block-search__button{margin-left:10px}.wp-block-separator.is-style-wide{border-bottom-width:1px}.wp-block-separator.is-style-dots{background:none!important;border:none;text-align:center;max-width:none;line-height:1;height:auto}.wp-block-separator.is-style-dots:before{content:"\00b7 \00b7 \00b7";color:currentColor;font-size:20px;letter-spacing:2em;padding-left:2em;font-family:serif}.wp-block-social-links{display:flex;justify-content:flex-start;padding-left:0;padding-right:0;margin-left:0}.wp-block-social-links .wp-social-link a,.wp-block-social-links .wp-social-link a:hover{text-decoration:none;border-bottom:0;box-shadow:none}.wp-social-link{display:block;width:36px;height:36px;border-radius:36px;margin-right:8px;transition:transform .1s ease}@media (prefers-reduced-motion:reduce){.wp-social-link{transition-duration:0s}}.wp-social-link a{padding:6px;display:block;line-height:0;transition:transform .1s ease}.wp-social-link a,.wp-social-link a:active,.wp-social-link a:hover,.wp-social-link a:visited,.wp-social-link svg{color:currentColor;fill:currentColor}.wp-social-link:hover{transform:scale(1.1)}.wp-block-social-links.aligncenter{justify-content:center;display:flex}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link{background-color:#f0f0f0;color:#444}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-amazon{background-color:#f90;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-bandcamp{background-color:#1ea0c3;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-behance{background-color:#0757fe;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-codepen{background-color:#1e1f26;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-deviantart{background-color:#02e49b;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dribbble{background-color:#e94c89;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dropbox{background-color:#4280ff;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-etsy{background-color:#f45800;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-facebook{background-color:#1977f2;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-fivehundredpx{background-color:#000;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-flickr{background-color:#0461dd;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-foursquare{background-color:#e65678;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-github{background-color:#24292d;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-goodreads{background-color:#eceadd;color:#382110}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-google{background-color:#ea4434;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-instagram{background-color:#f00075;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-lastfm{background-color:#e21b24;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-linkedin{background-color:#0577b5;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-mastodon{background-color:#3288d4;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-medium{background-color:#02ab6c;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-meetup{background-color:#f6405f;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pinterest{background-color:#e60122;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pocket{background-color:#ef4155;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-reddit{background-color:#fe4500;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-skype{background-color:#0478d7;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-snapchat{background-color:#fefc00;color:#fff;stroke:#000}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-soundcloud{background-color:#ff5600;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-spotify{background-color:#1bd760;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tumblr{background-color:#011835;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitch{background-color:#6440a4;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitter{background-color:#21a1f3;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vimeo{background-color:#1eb7ea;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vk{background-color:#4680c2;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-wordpress{background-color:#3499cd;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-yelp{background-color:#d32422;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-youtube{background-color:#ff0100;color:#fff}.wp-block-social-links.is-style-logos-only .wp-social-link{background:none;padding:4px}.wp-block-social-links.is-style-logos-only .wp-social-link svg{width:28px;height:28px}.wp-block-social-links.is-style-logos-only .wp-social-link-amazon{color:#f90}.wp-block-social-links.is-style-logos-only .wp-social-link-bandcamp{color:#1ea0c3}.wp-block-social-links.is-style-logos-only .wp-social-link-behance{color:#0757fe}.wp-block-social-links.is-style-logos-only .wp-social-link-codepen{color:#1e1f26}.wp-block-social-links.is-style-logos-only .wp-social-link-deviantart{color:#02e49b}.wp-block-social-links.is-style-logos-only .wp-social-link-dribbble{color:#e94c89}.wp-block-social-links.is-style-logos-only .wp-social-link-dropbox{color:#4280ff}.wp-block-social-links.is-style-logos-only .wp-social-link-etsy{color:#f45800}.wp-block-social-links.is-style-logos-only .wp-social-link-facebook{color:#1977f2}.wp-block-social-links.is-style-logos-only .wp-social-link-fivehundredpx{color:#000}.wp-block-social-links.is-style-logos-only .wp-social-link-flickr{color:#0461dd}.wp-block-social-links.is-style-logos-only .wp-social-link-foursquare{color:#e65678}.wp-block-social-links.is-style-logos-only .wp-social-link-github{color:#24292d}.wp-block-social-links.is-style-logos-only .wp-social-link-goodreads{color:#382110}.wp-block-social-links.is-style-logos-only .wp-social-link-google{color:#ea4434}.wp-block-social-links.is-style-logos-only .wp-social-link-instagram{color:#f00075}.wp-block-social-links.is-style-logos-only .wp-social-link-lastfm{color:#e21b24}.wp-block-social-links.is-style-logos-only .wp-social-link-linkedin{color:#0577b5}.wp-block-social-links.is-style-logos-only .wp-social-link-mastodon{color:#3288d4}.wp-block-social-links.is-style-logos-only .wp-social-link-medium{color:#02ab6c}.wp-block-social-links.is-style-logos-only .wp-social-link-meetup{color:#f6405f}.wp-block-social-links.is-style-logos-only .wp-social-link-pinterest{color:#e60122}.wp-block-social-links.is-style-logos-only .wp-social-link-pocket{color:#ef4155}.wp-block-social-links.is-style-logos-only .wp-social-link-reddit{color:#fe4500}.wp-block-social-links.is-style-logos-only .wp-social-link-skype{color:#0478d7}.wp-block-social-links.is-style-logos-only .wp-social-link-snapchat{color:#fff;stroke:#000}.wp-block-social-links.is-style-logos-only .wp-social-link-soundcloud{color:#ff5600}.wp-block-social-links.is-style-logos-only .wp-social-link-spotify{color:#1bd760}.wp-block-social-links.is-style-logos-only .wp-social-link-tumblr{color:#011835}.wp-block-social-links.is-style-logos-only .wp-social-link-twitch{color:#6440a4}.wp-block-social-links.is-style-logos-only .wp-social-link-twitter{color:#21a1f3}.wp-block-social-links.is-style-logos-only .wp-social-link-vimeo{color:#1eb7ea}.wp-block-social-links.is-style-logos-only .wp-social-link-vk{color:#4680c2}.wp-block-social-links.is-style-logos-only .wp-social-link-wordpress{color:#3499cd}.wp-block-social-links.is-style-logos-only .wp-social-link-yelp{background-color:#d32422;color:#fff}.wp-block-social-links.is-style-logos-only .wp-social-link-youtube{color:#ff0100}.wp-block-social-links.is-style-pill-shape .wp-social-link{width:auto}.wp-block-social-links.is-style-pill-shape .wp-social-link a{padding-left:16px;padding-right:16px}.wp-block-spacer{clear:both}p.wp-block-subhead{font-size:1.1em;font-style:italic;opacity:.75}.wp-block-table{overflow-x:auto}.wp-block-table table{width:100%}.wp-block-table .has-fixed-layout{table-layout:fixed;width:100%}.wp-block-table .has-fixed-layout td,.wp-block-table .has-fixed-layout th{word-break:break-word}.wp-block-table.aligncenter,.wp-block-table.alignleft,.wp-block-table.alignright{display:table;width:auto}.wp-block-table.aligncenter td,.wp-block-table.aligncenter th,.wp-block-table.alignleft td,.wp-block-table.alignleft th,.wp-block-table.alignright td,.wp-block-table.alignright th{word-break:break-word}.wp-block-table .has-subtle-light-gray-background-color{background-color:#f3f4f5}.wp-block-table .has-subtle-pale-green-background-color{background-color:#e9fbe5}.wp-block-table .has-subtle-pale-blue-background-color{background-color:#e7f5fe}.wp-block-table .has-subtle-pale-pink-background-color{background-color:#fcf0ef}.wp-block-table.is-style-stripes{border-spacing:0;border-collapse:inherit;background-color:transparent;border-bottom:1px solid #f3f4f5}.wp-block-table.is-style-stripes tbody tr:nth-child(odd){background-color:#f3f4f5}.wp-block-table.is-style-stripes.has-subtle-light-gray-background-color tbody tr:nth-child(odd){background-color:#f3f4f5}.wp-block-table.is-style-stripes.has-subtle-pale-green-background-color tbody tr:nth-child(odd){background-color:#e9fbe5}.wp-block-table.is-style-stripes.has-subtle-pale-blue-background-color tbody tr:nth-child(odd){background-color:#e7f5fe}.wp-block-table.is-style-stripes.has-subtle-pale-pink-background-color tbody tr:nth-child(odd){background-color:#fcf0ef}.wp-block-table.is-style-stripes td,.wp-block-table.is-style-stripes th{border-color:transparent}.wp-block-text-columns,.wp-block-text-columns.aligncenter{display:flex}.wp-block-text-columns .wp-block-column{margin:0 16px;padding:0}.wp-block-text-columns .wp-block-column:first-child{margin-left:0}.wp-block-text-columns .wp-block-column:last-child{margin-right:0}.wp-block-text-columns.columns-2 .wp-block-column{width:50%}.wp-block-text-columns.columns-3 .wp-block-column{width:33.33333%}.wp-block-text-columns.columns-4 .wp-block-column{width:25%}.wp-block-video{margin-left:0;margin-right:0}.wp-block-video video{max-width:100%}@supports ((position:-webkit-sticky) or (position:sticky)){.wp-block-video [poster]{object-fit:cover}}.wp-block-video.aligncenter{text-align:center}.wp-block-video figcaption{margin-top:.5em;margin-bottom:1em}:root .has-pale-pink-background-color{background-color:#f78da7}:root .has-vivid-red-background-color{background-color:#cf2e2e}:root .has-luminous-vivid-orange-background-color{background-color:#ff6900}:root .has-luminous-vivid-amber-background-color{background-color:#fcb900}:root .has-light-green-cyan-background-color{background-color:#7bdcb5}:root .has-vivid-green-cyan-background-color{background-color:#00d084}:root .has-pale-cyan-blue-background-color{background-color:#8ed1fc}:root .has-vivid-cyan-blue-background-color{background-color:#0693e3}:root .has-vivid-purple-background-color{background-color:#9b51e0}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-cyan-bluish-gray-background-color{background-color:#abb8c3}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-pale-pink-color{color:#f78da7}:root .has-vivid-red-color{color:#cf2e2e}:root .has-luminous-vivid-orange-color{color:#ff6900}:root .has-luminous-vivid-amber-color{color:#fcb900}:root .has-light-green-cyan-color{color:#7bdcb5}:root .has-vivid-green-cyan-color{color:#00d084}:root .has-pale-cyan-blue-color{color:#8ed1fc}:root .has-vivid-cyan-blue-color{color:#0693e3}:root .has-vivid-purple-color{color:#9b51e0}:root .has-very-light-gray-color{color:#eee}:root .has-cyan-bluish-gray-color{color:#abb8c3}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-cyan-blue-to-vivid-purple-gradient-background{background:linear-gradient(135deg,#0693e3,#9b51e0)}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-light-green-cyan-to-vivid-green-cyan-gradient-background{background:linear-gradient(135deg,#7adcb4,#00d082)}:root .has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background:linear-gradient(135deg,#fcb900,#ff6900)}:root .has-luminous-vivid-orange-to-vivid-red-gradient-background{background:linear-gradient(135deg,#ff6900,#cf2e2e)}:root .has-very-light-gray-to-cyan-bluish-gray-gradient-background{background:linear-gradient(135deg,#eee,#a9b8c3)}:root .has-cool-to-warm-spectrum-gradient-background{background:linear-gradient(135deg,#4aeadc,#9778d1 20%,#cf2aba 40%,#ee2c82 60%,#fb6962 80%,#fef84c)}:root .has-blush-light-purple-gradient-background{background:linear-gradient(135deg,#ffceec,#9896f0)}:root .has-blush-bordeaux-gradient-background{background:linear-gradient(135deg,#fecda5,#fe2d2d 50%,#6b003e)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-luminous-dusk-gradient-background{background:linear-gradient(135deg,#ffcb70,#c751c0 50%,#4158d0)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-pale-ocean-gradient-background{background:linear-gradient(135deg,#fff5cb,#b6e3d4 50%,#33a7b5)}:root .has-electric-grass-gradient-background{background:linear-gradient(135deg,#caf880,#71ce7e)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}.has-small-font-size{font-size:13px}.has-normal-font-size,.has-regular-font-size{font-size:16px}.has-medium-font-size{font-size:20px}.has-large-font-size{font-size:36px}.has-huge-font-size,.has-larger-font-size{font-size:42px}.has-text-align-center{text-align:center}.has-text-align-left{text-align:left}.has-text-align-right{text-align:right} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/356e5a7337dff8d0d7e4b867c10f847911b23db3.00000179.html b/www/.content.EZtzwPjb/html/356e5a7337dff8d0d7e4b867c10f847911b23db3.00000179.html new file mode 100644 index 0000000..6a0518c --- /dev/null +++ b/www/.content.EZtzwPjb/html/356e5a7337dff8d0d7e4b867c10f847911b23db3.00000179.html @@ -0,0 +1,318 @@ + + + + + + + + Fer à souder – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
              +
              +
              +
              +
              +
              +
              +
              + + + +

              +
              +
              +
              +
              +

              + 0 commentaire

              +
              +
              +
              +

              Laisser un commentaire

              Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

              +
              +
              +

              + +

              +
              +
              +
              +
              +
              +
              +
              +
              +
              +
              +
              +
              +
              + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/35ad75d61c4870dd519387795d7043dcf99734d7.00000487.xml b/www/.content.EZtzwPjb/html/35ad75d61c4870dd519387795d7043dcf99734d7.00000487.xml new file mode 100644 index 0000000..890d9af --- /dev/null +++ b/www/.content.EZtzwPjb/html/35ad75d61c4870dd519387795d7043dcf99734d7.00000487.xml @@ -0,0 +1,46 @@ + + + + HugoPoi » Pile BIOS + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Sat, 14 Sep 2013 23:01:40 +0000 + fr-FR + hourly + 1 + http://wordpress.org/?v=3.6 + + Asus U36 et OCZ Vertex 3 la suite + http://blog.hugopoi.net/2012/03/30/asus-u36-et-ocz-vertex-3-la-suite/ + http://blog.hugopoi.net/2012/03/30/asus-u36-et-ocz-vertex-3-la-suite/#comments + Fri, 30 Mar 2012 10:29:27 +0000 + HugoPoi + + + + + + + + + + + + + + + http://blog.hugopoi.net/?p=635 + Lire la suite »

              ]]>
              + http://blog.hugopoi.net/2012/03/30/asus-u36-et-ocz-vertex-3-la-suite/feed/ + 1 +
              +
              +
              diff --git a/www/.content.EZtzwPjb/html/35e90cc303881530633e94497db72dd49e923da0.00000593.js b/www/.content.EZtzwPjb/html/35e90cc303881530633e94497db72dd49e923da0.00000593.js new file mode 100644 index 0000000..0e809c9 --- /dev/null +++ b/www/.content.EZtzwPjb/html/35e90cc303881530633e94497db72dd49e923da0.00000593.js @@ -0,0 +1,356 @@ +(function($) { + + if (typeof _wpcf7 == 'undefined' || _wpcf7 === null) + _wpcf7 = {}; + + _wpcf7 = $.extend({ cached: 0 }, _wpcf7); + + $(function() { + _wpcf7.supportHtml5 = $.wpcf7SupportHtml5(); + $('div.wpcf7 > form').wpcf7InitForm(); + }); + + $.fn.wpcf7InitForm = function() { + this.ajaxForm({ + beforeSubmit: function(arr, $form, options) { + $form.wpcf7ClearResponseOutput(); + $form.find('[aria-invalid]').attr('aria-invalid', 'false'); + $form.find('img.ajax-loader').css({ visibility: 'visible' }); + return true; + }, + beforeSerialize: function($form, options) { + $form.find('[placeholder].placeheld').each(function(i, n) { + $(n).val(''); + }); + return true; + }, + data: { '_wpcf7_is_ajax_call': 1 }, + dataType: 'json', + success: $.wpcf7AjaxSuccess, + error: function(xhr, status, error, $form) { + var e = $('
              ').text(error.message); + $form.after(e); + } + }); + + if (_wpcf7.cached) + this.wpcf7OnloadRefill(); + + this.wpcf7ToggleSubmit(); + + this.find('.wpcf7-submit').wpcf7AjaxLoader(); + + this.find('.wpcf7-acceptance').click(function() { + $(this).closest('form').wpcf7ToggleSubmit(); + }); + + this.find('.wpcf7-exclusive-checkbox').wpcf7ExclusiveCheckbox(); + + this.find('.wpcf7-list-item.has-free-text').wpcf7ToggleCheckboxFreetext(); + + this.find('[placeholder]').wpcf7Placeholder(); + + if (_wpcf7.jqueryUi && ! _wpcf7.supportHtml5.date) { + this.find('input.wpcf7-date[type="date"]').each(function() { + $(this).datepicker({ + dateFormat: 'yy-mm-dd', + minDate: new Date($(this).attr('min')), + maxDate: new Date($(this).attr('max')) + }); + }); + } + + if (_wpcf7.jqueryUi && ! _wpcf7.supportHtml5.number) { + this.find('input.wpcf7-number[type="number"]').each(function() { + $(this).spinner({ + min: $(this).attr('min'), + max: $(this).attr('max'), + step: $(this).attr('step') + }); + }); + } + }; + + $.wpcf7AjaxSuccess = function(data, status, xhr, $form) { + if (! $.isPlainObject(data) || $.isEmptyObject(data)) + return; + + var $responseOutput = $form.find('div.wpcf7-response-output'); + + $form.wpcf7ClearResponseOutput(); + + $form.find('.wpcf7-form-control').removeClass('wpcf7-not-valid'); + $form.removeClass('invalid spam sent failed'); + + if (data.captcha) + $form.wpcf7RefillCaptcha(data.captcha); + + if (data.quiz) + $form.wpcf7RefillQuiz(data.quiz); + + if (data.invalids) { + $.each(data.invalids, function(i, n) { + $form.find(n.into).wpcf7NotValidTip(n.message); + $form.find(n.into).find('.wpcf7-form-control').addClass('wpcf7-not-valid'); + $form.find(n.into).find('[aria-invalid]').attr('aria-invalid', 'true'); + }); + + $responseOutput.addClass('wpcf7-validation-errors'); + $form.addClass('invalid'); + + $(data.into).trigger('invalid.wpcf7'); + + } else if (1 == data.spam) { + $responseOutput.addClass('wpcf7-spam-blocked'); + $form.addClass('spam'); + + $(data.into).trigger('spam.wpcf7'); + + } else if (1 == data.mailSent) { + $responseOutput.addClass('wpcf7-mail-sent-ok'); + $form.addClass('sent'); + + if (data.onSentOk) + $.each(data.onSentOk, function(i, n) { eval(n) }); + + $(data.into).trigger('mailsent.wpcf7'); + + } else { + $responseOutput.addClass('wpcf7-mail-sent-ng'); + $form.addClass('failed'); + + $(data.into).trigger('mailfailed.wpcf7'); + } + + if (data.onSubmit) + $.each(data.onSubmit, function(i, n) { eval(n) }); + + $(data.into).trigger('submit.wpcf7'); + + if (1 == data.mailSent) + $form.resetForm(); + + $form.find('[placeholder].placeheld').each(function(i, n) { + $(n).val($(n).attr('placeholder')); + }); + + $responseOutput.append(data.message).slideDown('fast'); + $responseOutput.attr('role', 'alert'); + + $.wpcf7UpdateScreenReaderResponse($form, data); + } + + $.fn.wpcf7ExclusiveCheckbox = function() { + return this.find('input:checkbox').click(function() { + $(this).closest('.wpcf7-checkbox').find('input:checkbox').not(this).removeAttr('checked'); + }); + }; + + $.fn.wpcf7Placeholder = function() { + if (_wpcf7.supportHtml5.placeholder) + return this; + + return this.each(function() { + $(this).val($(this).attr('placeholder')); + $(this).addClass('placeheld'); + + $(this).focus(function() { + if ($(this).hasClass('placeheld')) + $(this).val('').removeClass('placeheld'); + }); + + $(this).blur(function() { + if ('' == $(this).val()) { + $(this).val($(this).attr('placeholder')); + $(this).addClass('placeheld'); + } + }); + }); + }; + + $.fn.wpcf7AjaxLoader = function() { + return this.each(function() { + var loader = $('') + .attr({ src: _wpcf7.loaderUrl, alt: _wpcf7.sending }) + .css('visibility', 'hidden'); + + $(this).after(loader); + }); + }; + + $.fn.wpcf7ToggleSubmit = function() { + return this.each(function() { + var form = $(this); + if (this.tagName.toLowerCase() != 'form') + form = $(this).find('form').first(); + + if (form.hasClass('wpcf7-acceptance-as-validation')) + return; + + var submit = form.find('input:submit'); + if (! submit.length) return; + + var acceptances = form.find('input:checkbox.wpcf7-acceptance'); + if (! acceptances.length) return; + + submit.removeAttr('disabled'); + acceptances.each(function(i, n) { + n = $(n); + if (n.hasClass('wpcf7-invert') && n.is(':checked') + || ! n.hasClass('wpcf7-invert') && ! n.is(':checked')) + submit.attr('disabled', 'disabled'); + }); + }); + }; + + $.fn.wpcf7ToggleCheckboxFreetext = function() { + return this.each(function() { + var $wrap = $(this).closest('.wpcf7-form-control'); + + if ($(this).find(':checkbox, :radio').is(':checked')) { + $(this).find(':input.wpcf7-free-text').prop('disabled', false); + } else { + $(this).find(':input.wpcf7-free-text').prop('disabled', true); + } + + $wrap.find(':checkbox, :radio').change(function() { + var $cb = $('.has-free-text', $wrap).find(':checkbox, :radio'); + var $freetext = $(':input.wpcf7-free-text', $wrap); + + if ($cb.is(':checked')) { + $freetext.prop('disabled', false).focus(); + } else { + $freetext.prop('disabled', true); + } + }); + }); + }; + + $.fn.wpcf7NotValidTip = function(message) { + return this.each(function() { + var $into = $(this); + + $into.find('span.wpcf7-not-valid-tip').remove(); + $into.append('' + message + ''); + + if ($into.is('.use-floating-validation-tip *')) { + $('.wpcf7-not-valid-tip', $into).mouseover(function() { + $(this).wpcf7FadeOut(); + }); + + $(':input', $into).focus(function() { + $('.wpcf7-not-valid-tip', $into).not(':hidden').wpcf7FadeOut(); + }); + } + }); + }; + + $.fn.wpcf7FadeOut = function() { + return this.each(function() { + $(this).animate({ + opacity: 0 + }, 'fast', function() { + $(this).css({'z-index': -100}); + }); + }); + }; + + $.fn.wpcf7OnloadRefill = function() { + return this.each(function() { + var url = $(this).attr('action'); + if (0 < url.indexOf('#')) + url = url.substr(0, url.indexOf('#')); + + var id = $(this).find('input[name="_wpcf7"]').val(); + var unitTag = $(this).find('input[name="_wpcf7_unit_tag"]').val(); + + $.getJSON(url, + { _wpcf7_is_ajax_call: 1, _wpcf7: id, _wpcf7_request_ver: $.now() }, + function(data) { + if (data && data.captcha) + $('#' + unitTag).wpcf7RefillCaptcha(data.captcha); + + if (data && data.quiz) + $('#' + unitTag).wpcf7RefillQuiz(data.quiz); + } + ); + }); + }; + + $.fn.wpcf7RefillCaptcha = function(captcha) { + return this.each(function() { + var form = $(this); + + $.each(captcha, function(i, n) { + form.find(':input[name="' + i + '"]').clearFields(); + form.find('img.wpcf7-captcha-' + i).attr('src', n); + var match = /([0-9]+)\.(png|gif|jpeg)$/.exec(n); + form.find('input:hidden[name="_wpcf7_captcha_challenge_' + i + '"]').attr('value', match[1]); + }); + }); + }; + + $.fn.wpcf7RefillQuiz = function(quiz) { + return this.each(function() { + var form = $(this); + + $.each(quiz, function(i, n) { + form.find(':input[name="' + i + '"]').clearFields(); + form.find(':input[name="' + i + '"]').siblings('span.wpcf7-quiz-label').text(n[0]); + form.find('input:hidden[name="_wpcf7_quiz_answer_' + i + '"]').attr('value', n[1]); + }); + }); + }; + + $.fn.wpcf7ClearResponseOutput = function() { + return this.each(function() { + $(this).find('div.wpcf7-response-output').hide().empty().removeClass('wpcf7-mail-sent-ok wpcf7-mail-sent-ng wpcf7-validation-errors wpcf7-spam-blocked').removeAttr('role'); + $(this).find('span.wpcf7-not-valid-tip').remove(); + $(this).find('img.ajax-loader').css({ visibility: 'hidden' }); + }); + }; + + $.wpcf7UpdateScreenReaderResponse = function($form, data) { + $('.wpcf7 .screen-reader-response').html('').attr('role', ''); + + if (data.message) { + var $response = $form.siblings('.screen-reader-response').first(); + $response.append(data.message); + + if (data.invalids) { + var $invalids = $('
                '); + + $.each(data.invalids, function(i, n) { + if (n.idref) { + var $li = $('
              • ').append($('').attr('href', '#' + n.idref).append(n.message)); + } else { + var $li = $('
              • ').append(n.message); + } + + $invalids.append($li); + }); + + $response.append($invalids); + } + + $response.attr('role', 'alert').focus(); + } + } + + $.wpcf7SupportHtml5 = function() { + var features = {}; + var input = document.createElement('input'); + + features.placeholder = 'placeholder' in input; + + var inputTypes = ['email', 'url', 'tel', 'number', 'range', 'date']; + + $.each(inputTypes, function(index, value) { + input.setAttribute('type', value); + features[value] = input.type !== 'text'; + }); + + return features; + }; + +})(jQuery); \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/3614cdd37c610900147ec60ee8d202066db91a31.00001253.js b/www/.content.EZtzwPjb/html/3614cdd37c610900147ec60ee8d202066db91a31.00001253.js new file mode 100644 index 0000000..16e4c13 --- /dev/null +++ b/www/.content.EZtzwPjb/html/3614cdd37c610900147ec60ee8d202066db91a31.00001253.js @@ -0,0 +1,2 @@ +/*! This file is auto-generated */ +!function(c,d){"use strict";var e=!1,n=!1;if(d.querySelector)if(c.addEventListener)e=!0;if(c.wp=c.wp||{},!c.wp.receiveEmbedMessage)if(c.wp.receiveEmbedMessage=function(e){var t=e.data;if(t)if(t.secret||t.message||t.value)if(!/[^a-zA-Z0-9]/.test(t.secret)){for(var r,a,i,s=d.querySelectorAll('iframe[data-secret="'+t.secret+'"]'),n=d.querySelectorAll('blockquote[data-secret="'+t.secret+'"]'),o=0;o + + + + + + + Optimus vs Mégatron – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                +
                +
                +
                + +
                +
                +
                +
                +
                +
                +

                Je suis l’heureux acquéreur #oupas d’un pc portable avec technologie Optimus de Nvidia (voir Asus U36JC). Après quelques jours de recherches et de tests je vais essayer de vous faire un résumé complet sur le pourquoi de comment ça fonctionne.

                +

                Présentation et marketing

                +

                Petite introduction sur Optimus pour vous mettre dans l’ambiance. Cette technologie permet de profiter de deux cartes graphique au sein d’un pc portable, plus précisément d’une carte vidéo Nvidia et du chipset graphique intégré au processeur Intel (= IGP). Cette technologie, d’après la plaquette marketing, remplacerait une techno plus ancienne appelée « switchable graphics » très peu connue. Optimus permet de rallier autonomie et performance sur notebook. En effet, quand vous êtes en vadrouille, sans courant, et que vous faites de la bureautique, vous utilisez l’IGP Intel. Mais quand vous avez besoin de jouer à Crysis ou bosser avec 3DS max, vous pouvez basculer sur la carte Nvidia qui est plus performante. J’ai une Nvidia 310M elle est déjà deux fois plus rapide que l’IGP pour le travail 3D. J’ai remarqué bizarrement que Optimus n’était pas utilisé sur les machines avec des cartes Nvidia de gros gabarit. Cela briderait-il les performances ? j’en suis presque sûr …

                +

                La partie matériel

                +

                Concrètement comment fait-on pour basculer d’une carte à l’autre au niveau matos? comment est-ce câblé ? vous allez me répondre comme ça :

                +

                Les sorties vidéos de l’IGP et de la carte Nvidia sont câblées sur l’entrée du moniteur et les sorties VGA et DisplayPort ou HDMI. Pour pouvoir basculer de l’un à l’autre on utilise des petits switchs (Mux sur le shéma) avec 2 entrées et une sortie qui font basculer la sortie vidéo sur l’IGP ou la carte Nvidia. Cette solution N’EST PAS celle choisie pour la technologie Optimus mais celle utilisée par « switchable graphics ». Nvidia explique que cette solution n’est pas viable pour plusieurs raisons. La première est que le temps de bascule est super long car il faut basculer les sorties puis dire au système de changer de driver d’affichage donc un temps de 5 à 10 secondes de bascule. Deuxième raison, le système n’est pas automatique, l’utilisateur doit sélectionner la carte voulue avant de lancer le jeux (perso, je préfère cette façon de faire, au moins on est maître de notre matos #geekpowa). Et la dernière qui n’est pas des moindres, le design de la carte mère se complique puisque l’on doit avoir un double câblage pour chaque sortie vidéo, sans compter les fils de commandes pour les switchs. Cela entraîne un coût supplémentaire pour les constructeurs.

                +

                Mais alors comment est fait Optimus ?

                +

                Avec Optimus, il n’y a pas de liaison entre la carte Nvidia et l’écran ou les sorties vidéos. L’image de sortie transite via le bus PCI-Express, puis elle est transmise à l’IGP Intel qui se charge uniquement de l’affichage. Au niveau hardware, la carte Nvidia est uniquement connectée au PCI-Express et rien d’autre.

                +

                Cela permet de ne pas avoir à faire de câblage supplémentaire pour la carte Nvidia, cela facilite donc l’intégration de ce composant pour les constructeurs. Nvidia vend ainsi des GPU Nvidia sur la plateforme Intel Core iX, des machines qui n’en ont pas forcement besoin. Les PC équipés de Optimus se voient badgés d’un super logo et d’une carte graphique plus performante que l’IGP Intel, le consommateur (moi) tombe dans le piège et se dit pourquoi pas ?

                +

                La partie logiciel

                +

                Mais alors comment le GPU Nvidia est-il utilisé ? Optimus fonctionne via des drivers un peu spéciaux qui sont différents de ceux que vous pouvez installer d’habitude quand vous utilisez une carte graphique classique, que ce soit sur un portable ou un fixe. Dans le cas classique, le driver est chargé par l’OS qui envoie les traitements à faire puis le GPU fait le traitement et renvoie tout le rendu sur l’écran. Pour Optimus il n’y a plus l’intervention d’une seule carte, donc d’un driver, mais deux cartes, donc deux drivers, celui de Intel et celui de Nvidia. Quand vous êtes en utilisation bureautique vous n’avez pas besoin d’une carte puissante donc l’IGP peut s’en charger tout seul, ici grâce à Optimus la carte Nvidia est complètement éteinte. Maintenant vous lancez un jeux vidéo, l’IGP Intel est toujours actif et continu à gérer l’écran mais c’est là qu’intervient Optimus. Il réveille la carte Nvidia et c’est elle qui va gérer le rendu du jeux video. C’est là que ça devient drôle, le driver bidouillé Optimus va détecter via une liste d’application prédéfinie par Nvidia (que l’on peut modifier) le jeux que vous venez de lancer. Ensuite, avec une super bidouille de l’API Microsoft DirectX, le jeux va tourner sur la carte Nvidia et les images de sortie seront copiées/collées via le bus pci-express dans le framebuffer de l’IGP Intel qui se chargera uniquement de les afficher. Optimus s’appuie entièrement sur DirectX et la couche Windows pour gérer l’execution des programmes 3D car il faut gérer une « session » DirectX dans chaque GPU. L’utilisation de la carte Nvidia sur un OS Linux ou BSD est donc pour l’instant impossible car Nvidia ne fournit pas de driver Optimus. Et plus grave, cela est dû au fait que l’environnement Xorg ne permet pas de charger deux drivers différents en même temps. La solution possible serait d’utiliser Wayland à la place de Xorg, c’est le cas de la version 11.04 de Ubuntu(en beta). Il faudrait alors développer un driver se basant sur OpenGL gérant IGP et le GPU Nvidia.

                +

                Sur la partie gauche du schéma, c’est le cas où le GPU est complètement éteint, le gain en autonomie est donc important. L’autre phase active le GPU Nvidia qui va traiter la 3D d’une application, mais l’IGP Intel reste actif pour permettre l’affichage sur l’écran.

                +

                Performance et fiabilité

                +

                Pour ce qui est des performances graphiques dans un environnement jeux vidéo j’ai essayé d’utiliser 3DMark Vantage, pourquoi je vous dis essayer car il m’a été impossible de réaliser une passe de test complet avec l’IGP Intel. Dans tous les cas, j’ai 3DMark qui plantait même après avoir mis à jour les drivers. J’avais l’erreur « Device Removed » à chaque fois, en somme crash du driver. En utilisant la carte Nvidia, j’ai réussi à faire une passe et j’ai eu un résultat de 822 points, ce qui est dans la moyenne pour une 310M. Le site NotebookCheck.com donne des résultats similaires pour la carte Nvidia, et pour l’IGP Intel HD Graphics, il indique un score de 200 points en moyenne, donc lorsque la carte Nvidia est activée, le calcul 3D sera en moyenne quatre fois plus rapide. Comme je le supposais plus haut vu l’écart peu important entre mes résultats et ceux fournit par NotebookCheck, il est impossible de savoir si la latence induite par la recopie via le bus PCI-Express impacte les performances. Pour le prouver, il faudrait prendre une machine avec une carte plus puissante puis faire des tests dans des conditions identiques pour comparer avec une autre machine sans Optimus ayant la même carte.

                +

                Versions des drivers pendant mes tests :

                +
                  +
                • version intel 8.15.10.2202 puis MAJ en 8.15.10.2342 depuis Intel Download Center
                • +
                • version nvidia 8.17.12.5964 pilote 259.64 puis MAJ en 8.17.12.7061 pilote 270.61 depuis Nvidia
                • +
                +

                Après certains tests impossibles à réaliser, je me suis rendu compte qu’Optimus posait problème. Mais cela ne s’arrête pas là, et j’ai eu quelques surprises avec des petits utilitaires que j’ai pour habitude d’utiliser pour faire du monitoring. Ma panoplie est constituée de CPU-Z, OCCT, GPU-Z, NvidiaInspector et des gadgets GPUObserver et IntelCoreSeries. Je n’ai pas démonté toutes ces applications, mais elles utilisent toutes l’API du driver Nvidia pour aller récupérer différentes informations tel que la température, les fréquences, les tensions, l’occupation mémoire et la vitesse de ventilation. Avec Optimus, quand la carte Nvidia est inutilisée, elle est complètement éteinte, donc comment faire pour récupérer la température ? Je pensais que l’API du driver allait le gérer et renvoyer une température bidon style 0°C ou alors renvoyer une exception particulière. Mais pas du tout, l’API est toute pourrie et quand on lui demande quelque chose elle le fait, concrètement quand un gadget ou une application de monitoring demande la température, l’api réveille la carte Nvidia, récupère la temp et éteint le GPU. Cette opération est répétée toutes les 5 secondes environ en fonction des softs et gadget. J’ai mis un certain temps avant de comprendre car il faillait trouver le moyen de connaitre l’état réel du GPU Nvidia. Pour cela, j’ai trouvé les outils presse de Nvidia(j’ai bien galéré pour les trouver). GPUObserver est donc inutilisable car cela réveille le GPU pour rien, donc vous perdez en autonomie. Pour GPU-Z, il plante lamentablement si la carte Nvidia est éteinte. Pour OCCT, il y a un bug d’affichage: l’animation ne s’affiche pas, et reste figée, j’ai l’impression que l’histoire de copie de framebuffer merde.

                +

                Nvidia explique que son driver choisit, lorsqu’une application est lancée, si la carte Nvidia est activée, grâce à une liste, celle-ci étant mis à jour via internet de façon automatique. Cela marche plutôt bien pour tout ce qui est jeux vidéos et applications 3D mais on peut toujours éditer les profils depuis le panel Nvidia. Certains profils sont un peu inutile, par défaut Flash Player déclenche la carte Nvidia ainsi que la lecture de vidéo HD alors que le chipset Intel en est parfaitement capable.

                +

                Il y a aussi un manque de sécurité car quand une application tourne sur la carte Nvidia, si on désactive celle-ci via le gestionnaire de périphériques, il n’y a pas de message d’erreur. L’application plante lamentablement.

                +

                Autonomie

                +

                Je vais enfin pouvoir parler des quelques points positifs de la technologie Optimus. Le gain en autonomie est juste impressionnant, il est presque doublé quand la carte Nvidia est inactive (state OFF), j’atteins 7 heures en utilisation bureautique. La transparence d’utilisation de la carte Nvidia est plutôt bien gérée et c’est instantané. La carte Nvidia est vraiment complètement éteinte quand elle n’est pas utilisée. J’ai remarqué un truc fun à ne pas faire, ne pas désactiver ou désinstaller la carte Nvidia depuis le gestionnaire de périphérique Windows car sinon la carte repasse sous gestion BIOS et celui-ci la réactive et la laisse dans un état indéterminé (mon autonomie est divisée par 2).

                +

                Astuces

                +
                  +
                • Pour savoir si la carte Nvidia est utilisée par une application vous pouvez activer une icône spéciale dans la zone de notification. Pour cela ouvrir le control panel Nvidia puis dans le menu déroulant « Bureau » cocher « Afficher l’icône d’activité du processeur graphique (…) ».
                • +
                • Quand vous voulez lancer une application de monitoring ou d’information système qui plante quand la carte Nvidia est off, il suffit de lancer une application qui va la réveiller, un jeux vidéo par exemple puis ensuite de lancer le logiciel en question.
                • +
                • Quand vous cliquez droit sur une application, vous pouvez choisir dans le menu contextuel quelle carte va être utilisée. (Option à activer dans « Bureau »)
                • +
                • Désactiver complètement la carte Nvidia sous Linux.
                • +
                +

                Conclusion

                +

                Après plusieurs jours de tests, lectures et recherches de documentations, ainsi que quelques échanges peu intéressant avec @NvidiaOptimus. Je déconseille fortement les pc badgés optimus car la carte Nvidia est actuellement INUTILISABLE sous linux ou BSD sauf quelques exceptions qui disposent en plus de la technologie Switchable Graphics. J’ai lu au passage le test de Pc Inpact qui donne une bonne note. Je ne sais pas s’ils ont pris en compte le non support total sous linux et tous les petits problèmes de bord. Cela place Optimus au rang de technologie en beta test, pourtant présente depuis presque 2 ans sur le marché. Au final, c’est nous les gentils clients qui sommes beta-testeurs. Si vous cherchez à acheter un pc portable avec une carte graphique potable je vous recommande de prendre une Radeon puisque AMD a ouvert ses spécifications technique à la communauté.

                +

                +
                +
                +
                +
                +
                Catégories : HardwareLogiciels
                +
                +
                +
                + + + + + + + + + +
                +
                +
                +
                +
                +
                +
                +

                + 3 commentaires

                +
                + +
                +
                +
                +
                +

                + Calcifer + · 4 mai 2011 à 16 h 05 min +

                +

                Tu m’en aura donné du fil à retordre pour corriger ton article :P

                +

                Article très intéressant, merci pour les informations ;)

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + Randall Flagg + · 12 août 2011 à 12 h 15 min +

                +

                salut hugo, j’avais pas vu ton site et cet article est vraiment bien foutu, et très informatif :)
                +GG!

                + +
                +
                +
                  +
                  + +
                  +
                  +
                  +
                  +

                  + HugoPoi + · 13 août 2011 à 23 h 25 min +

                  +

                  Merci, j’espère continuer comme ça ;)

                  + +
                  +
                  + +
                + +
                +
                +
                +

                Répondre à HugoPoi Annuler la réponse

                Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                +
                +
                +

                + +

                +
                +
                +
                +
                +
                +
                + +
                +
                +
                +
                +
                +
                + + +
                + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/370f79c897ddda0ebc0430ad1132f8d9c2b7564e.00000394.html b/www/.content.EZtzwPjb/html/370f79c897ddda0ebc0430ad1132f8d9c2b7564e.00000394.html new file mode 100644 index 0000000..b0b3d1c --- /dev/null +++ b/www/.content.EZtzwPjb/html/370f79c897ddda0ebc0430ad1132f8d9c2b7564e.00000394.html @@ -0,0 +1,372 @@ + + + + + + + disque-dur – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                +
                +
                +
                + +
                +
                +
                +
                +
                +

                Vos données sauvegardées

                Dans le monde d’aujourd’hui, le numérique est omniprésent, tout ce que vous faites est ou peut être numérisé. Qu’il s’agisse de vos photos de vacances, de votre CV ou votre liste de course, vos contacts et tous les documents que vous utilisez pour travailler sont surement numériques. L’informatique est partout et aide à gérer votre comptabilité, vos contacts pro ou perso et même bientôt votre frigo. Quand je pense qu’il y a 10 ans, beaucoup de professions géraient leur base clients avec des fiches papiers, et que ça existe encore… Pourtant, c’est une perte de temps importante de gérer des clientèles de plus 100 personnes, trier les fiches à la main dans l’ordre alphabétique. Imaginez devoir sortir tous les clients que vous n’avez pas contacté depuis 2 mois, même avec uniquement 100 personnes vous allez y passer au moins une 1 heure avant que votre liste soit faite, avec une base de données, cela est fait en moins d’1 seconde. Tous ça pour dire que l’informatique facilite grandement votre vie jusqu’au jour où ça tombe en panne ! J’ai donc quelques propositions à vous faire concernant la protection de vos données. (suite…)

                +
                Par HugoPoi, il y a

                Stockage numérique pour tous

                Ce blog parle très technique comme en témoigne mon dernier article mais aujourd’hui je vais faire un petit topo sur les disques-dur ou plutôt le stockage de vos données numériques en général. Dans cet article je vais m’adresser à tout le monde de papi-geek à tante-photo et pas uniquement à tous les geeks.

                +

                Je me suis aperçu, dans mon entourage proche mais aussi sur des forums ou je traîne parfois, que beaucoup n’ont aucune notion sur comment est stockée l’information sur nos ordinateurs et ce qu’il y a dans un disque USB que l’on achète à la Fnac pour ne citer que ces abrutis.

                +

                Retour en arrière, le fameux disque-dur que tout le monde utilise (peut-être sans le savoir) a été inventé en 1953 par IBM. Les premiers modèles avaient une capacité de quelques mégaoctets pour un prix de 10 000$. Aujourd’hui, il existe des modèles allant jusqu’à plus de 2 Téraoctets de capacité soit un million de fois plus.

                +

                Le disque-dur stocke les informations de façon magnétique sur des plateaux qui ressemblent à des CDs qui sont en rotation. Des petits bras viennent se positionner au dessus des disques pour écrire/lire les informations. ça ressemble à cela :

                +

                +

                (suite…)

                +
                +
                + +
                +
                +
                +
                + +
                +
                + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/373137cd8a412c42eb44d23885752e9e0fe0b2df.00000074.html b/www/.content.EZtzwPjb/html/373137cd8a412c42eb44d23885752e9e0fe0b2df.00000074.html new file mode 100644 index 0000000..1315e55 --- /dev/null +++ b/www/.content.EZtzwPjb/html/373137cd8a412c42eb44d23885752e9e0fe0b2df.00000074.html @@ -0,0 +1,568 @@ + + + + + + + + Optimus vs Mégatron – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                +
                +
                +
                + +
                +
                +
                +
                +
                +
                +

                Je suis l’heureux acquéreur #oupas d’un pc portable avec technologie Optimus de Nvidia (voir Asus U36JC). Après quelques jours de recherches et de tests je vais essayer de vous faire un résumé complet sur le pourquoi de comment ça fonctionne.

                +

                Présentation et marketing

                +

                Petite introduction sur Optimus pour vous mettre dans l’ambiance. Cette technologie permet de profiter de deux cartes graphique au sein d’un pc portable, plus précisément d’une carte vidéo Nvidia et du chipset graphique intégré au processeur Intel (= IGP). Cette technologie, d’après la plaquette marketing, remplacerait une techno plus ancienne appelée « switchable graphics » très peu connue. Optimus permet de rallier autonomie et performance sur notebook. En effet, quand vous êtes en vadrouille, sans courant, et que vous faites de la bureautique, vous utilisez l’IGP Intel. Mais quand vous avez besoin de jouer à Crysis ou bosser avec 3DS max, vous pouvez basculer sur la carte Nvidia qui est plus performante. J’ai une Nvidia 310M elle est déjà deux fois plus rapide que l’IGP pour le travail 3D. J’ai remarqué bizarrement que Optimus n’était pas utilisé sur les machines avec des cartes Nvidia de gros gabarit. Cela briderait-il les performances ? j’en suis presque sûr …

                +

                La partie matériel

                +

                Concrètement comment fait-on pour basculer d’une carte à l’autre au niveau matos? comment est-ce câblé ? vous allez me répondre comme ça :

                +

                Les sorties vidéos de l’IGP et de la carte Nvidia sont câblées sur l’entrée du moniteur et les sorties VGA et DisplayPort ou HDMI. Pour pouvoir basculer de l’un à l’autre on utilise des petits switchs (Mux sur le shéma) avec 2 entrées et une sortie qui font basculer la sortie vidéo sur l’IGP ou la carte Nvidia. Cette solution N’EST PAS celle choisie pour la technologie Optimus mais celle utilisée par « switchable graphics ». Nvidia explique que cette solution n’est pas viable pour plusieurs raisons. La première est que le temps de bascule est super long car il faut basculer les sorties puis dire au système de changer de driver d’affichage donc un temps de 5 à 10 secondes de bascule. Deuxième raison, le système n’est pas automatique, l’utilisateur doit sélectionner la carte voulue avant de lancer le jeux (perso, je préfère cette façon de faire, au moins on est maître de notre matos #geekpowa). Et la dernière qui n’est pas des moindres, le design de la carte mère se complique puisque l’on doit avoir un double câblage pour chaque sortie vidéo, sans compter les fils de commandes pour les switchs. Cela entraîne un coût supplémentaire pour les constructeurs.

                +

                Mais alors comment est fait Optimus ?

                +

                Avec Optimus, il n’y a pas de liaison entre la carte Nvidia et l’écran ou les sorties vidéos. L’image de sortie transite via le bus PCI-Express, puis elle est transmise à l’IGP Intel qui se charge uniquement de l’affichage. Au niveau hardware, la carte Nvidia est uniquement connectée au PCI-Express et rien d’autre.

                +

                Cela permet de ne pas avoir à faire de câblage supplémentaire pour la carte Nvidia, cela facilite donc l’intégration de ce composant pour les constructeurs. Nvidia vend ainsi des GPU Nvidia sur la plateforme Intel Core iX, des machines qui n’en ont pas forcement besoin. Les PC équipés de Optimus se voient badgés d’un super logo et d’une carte graphique plus performante que l’IGP Intel, le consommateur (moi) tombe dans le piège et se dit pourquoi pas ?

                +

                La partie logiciel

                +

                Mais alors comment le GPU Nvidia est-il utilisé ? Optimus fonctionne via des drivers un peu spéciaux qui sont différents de ceux que vous pouvez installer d’habitude quand vous utilisez une carte graphique classique, que ce soit sur un portable ou un fixe. Dans le cas classique, le driver est chargé par l’OS qui envoie les traitements à faire puis le GPU fait le traitement et renvoie tout le rendu sur l’écran. Pour Optimus il n’y a plus l’intervention d’une seule carte, donc d’un driver, mais deux cartes, donc deux drivers, celui de Intel et celui de Nvidia. Quand vous êtes en utilisation bureautique vous n’avez pas besoin d’une carte puissante donc l’IGP peut s’en charger tout seul, ici grâce à Optimus la carte Nvidia est complètement éteinte. Maintenant vous lancez un jeux vidéo, l’IGP Intel est toujours actif et continu à gérer l’écran mais c’est là qu’intervient Optimus. Il réveille la carte Nvidia et c’est elle qui va gérer le rendu du jeux video. C’est là que ça devient drôle, le driver bidouillé Optimus va détecter via une liste d’application prédéfinie par Nvidia (que l’on peut modifier) le jeux que vous venez de lancer. Ensuite, avec une super bidouille de l’API Microsoft DirectX, le jeux va tourner sur la carte Nvidia et les images de sortie seront copiées/collées via le bus pci-express dans le framebuffer de l’IGP Intel qui se chargera uniquement de les afficher. Optimus s’appuie entièrement sur DirectX et la couche Windows pour gérer l’execution des programmes 3D car il faut gérer une « session » DirectX dans chaque GPU. L’utilisation de la carte Nvidia sur un OS Linux ou BSD est donc pour l’instant impossible car Nvidia ne fournit pas de driver Optimus. Et plus grave, cela est dû au fait que l’environnement Xorg ne permet pas de charger deux drivers différents en même temps. La solution possible serait d’utiliser Wayland à la place de Xorg, c’est le cas de la version 11.04 de Ubuntu(en beta). Il faudrait alors développer un driver se basant sur OpenGL gérant IGP et le GPU Nvidia.

                +

                Sur la partie gauche du schéma, c’est le cas où le GPU est complètement éteint, le gain en autonomie est donc important. L’autre phase active le GPU Nvidia qui va traiter la 3D d’une application, mais l’IGP Intel reste actif pour permettre l’affichage sur l’écran.

                +

                Performance et fiabilité

                +

                Pour ce qui est des performances graphiques dans un environnement jeux vidéo j’ai essayé d’utiliser 3DMark Vantage, pourquoi je vous dis essayer car il m’a été impossible de réaliser une passe de test complet avec l’IGP Intel. Dans tous les cas, j’ai 3DMark qui plantait même après avoir mis à jour les drivers. J’avais l’erreur « Device Removed » à chaque fois, en somme crash du driver. En utilisant la carte Nvidia, j’ai réussi à faire une passe et j’ai eu un résultat de 822 points, ce qui est dans la moyenne pour une 310M. Le site NotebookCheck.com donne des résultats similaires pour la carte Nvidia, et pour l’IGP Intel HD Graphics, il indique un score de 200 points en moyenne, donc lorsque la carte Nvidia est activée, le calcul 3D sera en moyenne quatre fois plus rapide. Comme je le supposais plus haut vu l’écart peu important entre mes résultats et ceux fournit par NotebookCheck, il est impossible de savoir si la latence induite par la recopie via le bus PCI-Express impacte les performances. Pour le prouver, il faudrait prendre une machine avec une carte plus puissante puis faire des tests dans des conditions identiques pour comparer avec une autre machine sans Optimus ayant la même carte.

                +

                Versions des drivers pendant mes tests :

                +
                  +
                • version intel 8.15.10.2202 puis MAJ en 8.15.10.2342 depuis Intel Download Center
                • +
                • version nvidia 8.17.12.5964 pilote 259.64 puis MAJ en 8.17.12.7061 pilote 270.61 depuis Nvidia
                • +
                +

                Après certains tests impossibles à réaliser, je me suis rendu compte qu’Optimus posait problème. Mais cela ne s’arrête pas là, et j’ai eu quelques surprises avec des petits utilitaires que j’ai pour habitude d’utiliser pour faire du monitoring. Ma panoplie est constituée de CPU-Z, OCCT, GPU-Z, NvidiaInspector et des gadgets GPUObserver et IntelCoreSeries. Je n’ai pas démonté toutes ces applications, mais elles utilisent toutes l’API du driver Nvidia pour aller récupérer différentes informations tel que la température, les fréquences, les tensions, l’occupation mémoire et la vitesse de ventilation. Avec Optimus, quand la carte Nvidia est inutilisée, elle est complètement éteinte, donc comment faire pour récupérer la température ? Je pensais que l’API du driver allait le gérer et renvoyer une température bidon style 0°C ou alors renvoyer une exception particulière. Mais pas du tout, l’API est toute pourrie et quand on lui demande quelque chose elle le fait, concrètement quand un gadget ou une application de monitoring demande la température, l’api réveille la carte Nvidia, récupère la temp et éteint le GPU. Cette opération est répétée toutes les 5 secondes environ en fonction des softs et gadget. J’ai mis un certain temps avant de comprendre car il faillait trouver le moyen de connaitre l’état réel du GPU Nvidia. Pour cela, j’ai trouvé les outils presse de Nvidia(j’ai bien galéré pour les trouver). GPUObserver est donc inutilisable car cela réveille le GPU pour rien, donc vous perdez en autonomie. Pour GPU-Z, il plante lamentablement si la carte Nvidia est éteinte. Pour OCCT, il y a un bug d’affichage: l’animation ne s’affiche pas, et reste figée, j’ai l’impression que l’histoire de copie de framebuffer merde.

                +

                Nvidia explique que son driver choisit, lorsqu’une application est lancée, si la carte Nvidia est activée, grâce à une liste, celle-ci étant mis à jour via internet de façon automatique. Cela marche plutôt bien pour tout ce qui est jeux vidéos et applications 3D mais on peut toujours éditer les profils depuis le panel Nvidia. Certains profils sont un peu inutile, par défaut Flash Player déclenche la carte Nvidia ainsi que la lecture de vidéo HD alors que le chipset Intel en est parfaitement capable.

                +

                Il y a aussi un manque de sécurité car quand une application tourne sur la carte Nvidia, si on désactive celle-ci via le gestionnaire de périphériques, il n’y a pas de message d’erreur. L’application plante lamentablement.

                +

                Autonomie

                +

                Je vais enfin pouvoir parler des quelques points positifs de la technologie Optimus. Le gain en autonomie est juste impressionnant, il est presque doublé quand la carte Nvidia est inactive (state OFF), j’atteins 7 heures en utilisation bureautique. La transparence d’utilisation de la carte Nvidia est plutôt bien gérée et c’est instantané. La carte Nvidia est vraiment complètement éteinte quand elle n’est pas utilisée. J’ai remarqué un truc fun à ne pas faire, ne pas désactiver ou désinstaller la carte Nvidia depuis le gestionnaire de périphérique Windows car sinon la carte repasse sous gestion BIOS et celui-ci la réactive et la laisse dans un état indéterminé (mon autonomie est divisée par 2).

                +

                Astuces

                +
                  +
                • Pour savoir si la carte Nvidia est utilisée par une application vous pouvez activer une icône spéciale dans la zone de notification. Pour cela ouvrir le control panel Nvidia puis dans le menu déroulant « Bureau » cocher « Afficher l’icône d’activité du processeur graphique (…) ».
                • +
                • Quand vous voulez lancer une application de monitoring ou d’information système qui plante quand la carte Nvidia est off, il suffit de lancer une application qui va la réveiller, un jeux vidéo par exemple puis ensuite de lancer le logiciel en question.
                • +
                • Quand vous cliquez droit sur une application, vous pouvez choisir dans le menu contextuel quelle carte va être utilisée. (Option à activer dans « Bureau »)
                • +
                • Désactiver complètement la carte Nvidia sous Linux.
                • +
                +

                Conclusion

                +

                Après plusieurs jours de tests, lectures et recherches de documentations, ainsi que quelques échanges peu intéressant avec @NvidiaOptimus. Je déconseille fortement les pc badgés optimus car la carte Nvidia est actuellement INUTILISABLE sous linux ou BSD sauf quelques exceptions qui disposent en plus de la technologie Switchable Graphics. J’ai lu au passage le test de Pc Inpact qui donne une bonne note. Je ne sais pas s’ils ont pris en compte le non support total sous linux et tous les petits problèmes de bord. Cela place Optimus au rang de technologie en beta test, pourtant présente depuis presque 2 ans sur le marché. Au final, c’est nous les gentils clients qui sommes beta-testeurs. Si vous cherchez à acheter un pc portable avec une carte graphique potable je vous recommande de prendre une Radeon puisque AMD a ouvert ses spécifications technique à la communauté.

                +

                +
                +
                +
                +
                +
                Catégories : HardwareLogiciels
                +
                +
                +
                + + + + + + + + + +
                +
                +
                +
                +
                +
                +
                +

                + 3 commentaires

                +
                + +
                +
                +
                +
                +

                + Calcifer + · 4 mai 2011 à 16 h 05 min +

                +

                Tu m’en aura donné du fil à retordre pour corriger ton article :P

                +

                Article très intéressant, merci pour les informations ;)

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + Randall Flagg + · 12 août 2011 à 12 h 15 min +

                +

                salut hugo, j’avais pas vu ton site et cet article est vraiment bien foutu, et très informatif :)
                +GG!

                + +
                +
                +
                  +
                  + +
                  +
                  +
                  +
                  +

                  + HugoPoi + · 13 août 2011 à 23 h 25 min +

                  +

                  Merci, j’espère continuer comme ça ;)

                  + +
                  +
                  + +
                + +
                +
                +
                +

                Répondre à Randall Flagg Annuler la réponse

                Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                +
                +
                +

                + +

                +
                +
                +
                +
                +
                +
                + +
                +
                +
                +
                +
                +
                + + +
                + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/37405746f102a4d371e336cb52fca12d434c1023.00001257.xml b/www/.content.EZtzwPjb/html/37405746f102a4d371e336cb52fca12d434c1023.00001257.xml new file mode 100644 index 0000000..8e9b021 --- /dev/null +++ b/www/.content.EZtzwPjb/html/37405746f102a4d371e336cb52fca12d434c1023.00001257.xml @@ -0,0 +1,43 @@ + + + + + + WordPress + Yes + Yes + + + + WordPress + images/wlw/wp-icon.png + images/wlw/wp-watermark.png + View site + Dashboard + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/3749208da8c61c6831aec1d132c62bfd54edd81e.00001316.json b/www/.content.EZtzwPjb/html/3749208da8c61c6831aec1d132c62bfd54edd81e.00001316.json new file mode 100644 index 0000000..29601e0 --- /dev/null +++ b/www/.content.EZtzwPjb/html/3749208da8c61c6831aec1d132c62bfd54edd81e.00001316.json @@ -0,0 +1 @@ +{"version":"1.0","provider_name":"HugoPoi","provider_url":"http:\/\/blog.hugopoi.net","author_name":"HugoPoi","author_url":"http:\/\/blog.hugopoi.net\/author\/hugopoi\/","title":"Contact","type":"rich","width":600,"height":338,"html":"
                Contact<\/a><\/blockquote>\n + + + + + + + + + + + + + + + + + + + + + + + + +
                +
                +
                +
                + +
                +
                +
                +
                +
                +
                +

                Allô docteur on a un problème,

                +

                En ce dimanche calme avant la fin de mes partiels, mon écran Samsung SyncMaster 2232BW commençait à faire des siennes. Celui-ci depuis un mois ou deux clignotait de façon systématique au démarrage, au début pendant seulement quelques secondes, puis au fur et à mesure, de plus en plus jusqu’à devoir attendre 10 minutes pour que je puisse l’utiliser. Après 3 ans et 4 mois de bons et loyaux services, il voulait me quitter. J’ai tenté le support Samsung par email avec peu d’espoir car l’écran a dépassé sa garantie de 4 mois (oui oui les bâtards -> obsolescence programmée). Et donc j’ai eu le droit à un joli mail automatique me disant de contacter un numéro non surtaxé (mais avec combien de temps d’attente ?), ce que je n’ai pas fait car je n’avais pas envie de passer 30min au téléphone pour au final avoir un « On est désolé mais on ne peut rien faire pour vous car la garantie est dépassée, mais on peut envoyer votre écran en SAV pour faire un devis pour seulement 50 boules ». Concernant le support email de Samsung France, je leur donne une note de 0/20 puisque ce n’est pas un support mais une redirection vers le téléphone.

                +

                +

                Symptômes

                +

                Clignotements de l’écran et de la LED power systématiques à chaque démarrage de l’écran. Je me suis tout de suite douté d’un problème d’alimentation et après quelques recherches sur google, confirmation du problème sur beaucoup d’écrans et téléviseurs. Dans 99% des cas ce clignotement est dû à des condensateurs défectueux qu’il faut simplement changer :-D

                +

                Démontage

                +

                Donc après avoir cerné le problème, j’ai ouvert l’écran pour chercher les condos défectueux. J’ai trouvé une petite vidéo pour mon écran :

                +

                +

                Voici quelques photos en plus pour vous aider :

                +

                Les outils que j’ai utilisé pour le démontage

                +

                Position des clips

                +

                Carte d’alimentation dans son emplacement

                +

                Et voici les condensateurs qui posent problèmes. Comme vous pouvez le voir sur la photo, ils sont très facilement identifiable car ils sont bombés sur le dessus.

                +

                Condensateurs défectueux

                +

                Vous devez donc acheter des condensateurs de remplacement, par exemple sur Conrad.

                +

                Mes condensateurs suivant étaient endommagés:

                +
                  +
                • 1 de 330uF 25V remplacé par un 470uF 25V
                • +
                • 3 de 820uF 25V remplacé par des 1000uF 50V
                • +
                +

                Pour la réparation, il vous faut un fer à souder avec une panne pas trop grosse mais d’une grosse puissance car les soudures sont très solides (j’ai galéré avec un fer pro qui monte jusqu’à 400°).

                +

                Tout remarche nickel après remontage, plus de clignotement pour seulement quelques euros.

                +

                edit du 19 aout 2014 : j’ai trouvé le service manuel de l’écran si besoin samsung_2232bw_chassis_lpe22bs_sm

                + + +
                +
                + +
                +
                +
                +
                +
                +

                + 41 commentaires

                +
                + +
                +
                +
                +
                +

                + c'est_moi + · 30 janvier 2012 à 18 h 57 min +

                +

                Mille mercis et mille félicitations pour cette fiche technique si pédagogue.

                +

                J’espère que le partiels se passent plus que parfait !!

                +

                J’ai gardé l’url de la page pour réparer mon écran dans un petit mois : j’espère que la page soit toujours là ;-)

                +

                Merci encore.

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + Maxime + · 5 mai 2012 à 12 h 31 min +

                +

                Bonjour HugoPoi!

                +

                Merci pour toutes vos infos et votre topic, je voulais avoir quelques précisions sur les condos à changer pour samsung 2232bw, je veux passer commande mais j’ai un problème avec les dimensions des condos, si vous pouvez m’informer de ce que je pourrais acheter car il y a trop de références. En vous remerciant A+ Maxime

                + +
                +
                +
                  +
                  + +
                  +
                  +
                  +
                  +

                  + HugoPoi + · 14 juin 2012 à 22 h 56 min +

                  +

                  N’importe quel condensateur polarisé avec des caractéristiques proches devrait marché.

                  + +
                  +
                  + +
                + +
                + +
                +
                +
                +
                +

                + gaubjezj + · 14 juin 2012 à 22 h 32 min +

                +

                Merci pour le tuto qui m’a bien aidé.
                +J’ai utilisé un fer de 40 W avec une panne fine et
                +une pompe à dessouder et j’ai retiré les condensateurs sans problème.
                +Merci encore (3€40 pour le dépannage).

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + DragonTribal + · 2 juillet 2012 à 12 h 02 min +

                +

                super merci pour manifique tuto.
                +Est-il possible de changer les 5 condensateurs 820uF 25V par des 1000uF 50V? car moi mes 5 condensateurs sont presque HS ;-)

                +

                Cordialement

                + +
                +
                +
                  +
                  + +
                  +
                  +
                  +
                  +

                  + HugoPoi + · 2 juillet 2012 à 12 h 25 min +

                  +

                  Oui je penses que ça marchera étant donné que c’est des valeurs plus grandes.

                  + +
                  +
                  + +
                + +
                + +
                +
                +
                +
                +

                + FRED + · 11 juillet 2012 à 19 h 11 min +

                +

                Bravo, MERCI.
                +Je n’ai encore rien fait…mais j’ai le même problème, et tu me donnes la solution.
                +Super.

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + daninpet + · 31 août 2012 à 10 h 10 min +

                +

                Merci mille fois!

                +

                J’avais ce problème, et j’ai emmener la photo des trucs a remplacer chez le réparateur du coin et voila!! Ça m’a coûté 7 Euros (mais j’habite en Thaïlande)

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + moi + · 15 novembre 2012 à 15 h 25 min +

                +

                super mon 2232bw vient de lâcher, les 3 + 1 condos sont gonflés j ai trouvé un 330 en 35v qui traîné sur un écran mort et j’ai commander 5 1000uf 35v sur ebay pour moins de 3 dollars, ca devrait le faire j’espere j’attend d’être livré merci! par contre j’ai qu’un gros pistolet a soudure et un gros fil d’étain, c’est pas évident mais bon ca le fait quand même =)

                + +
                +
                +
                  +
                  + +
                  +
                  +
                  +
                  +

                  + moi + · 7 décembre 2012 à 9 h 33 min +

                  +

                  parfait je vient de recevoir les condos; j ai meuler la panne du fer a souder pour la tailler en mine de crayon et j ai reussi a les souder facilement ils étaient un peu plus gros mais ca passe tout juste, mais attention ne pas prendre des plus gros! l écran fonctionne nickel maintenant.

                  + +
                  +
                  + +
                + +
                + +
                +
                +
                +
                +

                + Croco + · 19 janvier 2013 à 18 h 39 min +

                +

                Je souhaiterai savoir si tu as utilisé un fer à souder bien précis étant donné que la carte est une multi couche.
                +Merci

                + +
                +
                + + +
                + +
                +
                +
                +
                +

                + momo + · 10 juin 2013 à 13 h 15 min +

                +

                slut je voudrai savoir ou trouvé les condansateur a changer sur mon ecran qui clignote

                + +
                +
                + + +
                + +
                +
                +
                +
                +

                + lokmane + · 5 juillet 2013 à 16 h 08 min +

                +

                merci j’avais un ecran rouge ! et c’etais la tresse qui relie mon ecran votre page m’a aider a l’ouvrir et a le reparer merci bien

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + ML + · 21 août 2013 à 19 h 11 min +

                +

                Merci ! Ecran réparé. Halte à l’obsolescence programmée.

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + raymond + · 31 octobre 2013 à 13 h 20 min +

                +

                ai vu votre vidéo et les explications pour la reparation de mon écran , apparemment le méme probléme l écran passe au noir apres quelque seconde , j ai vu un le condensateur en bas a gauche gonflé , je l ai fait changé (10€) les autre condensateur étant toujour bon d après la personne qui me l a changé , mais j ai toujour le méme probléme cela peut il venir de la carte video a gauche ?

                + +
                +
                +
                  +
                  + +
                  +
                  +
                  +
                  +

                  + HugoPoi + · 20 décembre 2013 à 12 h 27 min +

                  +

                  Si la led bleu du bouton power s’éteint aussi c’est un problème d’alimentation sinon c’est plus compliqué et ça peut provenir de condensateurs sur la partie vidéo. Changé tous les plus gros condensateurs sur la partie alimentation pourrait être un bon début même si ils ne paraissent pas endommagé.

                  + +
                  +
                  + +
                + +
                + +
                +
                +
                +
                +

                + damien + · 4 novembre 2013 à 0 h 29 min +

                +

                bonjour,

                +

                j’ai des crasses coincées entres l’écran et le truc juste derrière, est ce qu’on sais les enlever en démontant la dalle ?

                + +
                +
                +
                  +
                  + +
                  +
                  +
                  +
                  +

                  + HugoPoi + · 20 décembre 2013 à 12 h 28 min +

                  +

                  Je ne sais si cette partie de la dalle est démontable, je penses que c’est collé mais vous pouvez essayer.

                  + +
                  +
                  + +
                + +
                + +
                +
                +
                +
                +

                + mac + · 1 décembre 2013 à 17 h 30 min +

                +

                Merci HugoPoi, avec ces excellents conseils et tuto vidéo, mon écran est reparti pour une nouvelle vie.
                +Pour les composants, si vous êtes sur Paris ou proche. La boutique RAM électroniques est une bonne adresse, 138 bd Diderot 75012 Paris (Place de la Nation).

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + Bouddhid + · 16 janvier 2014 à 19 h 21 min +

                +

                Merci beaucoup pour ces conseils ! J’étais à 2 doigts de jeter mon écran, le voilà comme neuf pour moins de 5€ ! Vive la bricole !

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + Vincent + · 17 mai 2014 à 16 h 45 min +

                +

                Alors là merci.

                +

                Pour ce post, les photos, la vidéo, tout y est.

                +

                J’ai démonté l’écran assez vite, enlevé la carte, regarder quel condensateurs étaient gonflés,(il y en avaient 4), un magasin d’électronique sur lyon et une heure de démontage, soudure, remontage plus tard, voilà, c’est tout beau.
                +Ca ne clignote plus, ça s’allume comme avant, comme neuf.

                +

                Et dire que j’allais jeter cet écran et claquer 350 euros pour un neuf…

                +

                Coût de l’opération pour 4 condensateurs, du fil d’étain 7 euros.

                +

                Je précise que je n’avais jamais fais de soudure sur composant électronique auparavant.
                +Comme quoi cette opération de réparation est à la portée de tous.

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + Julot + · 6 juillet 2014 à 13 h 49 min +

                +

                Site vraiment détaillé et très claire. J’ai pu dépanner mon écran avec succès. Merci beaucoup pour ces précieuses explications.

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + PaniK31 + · 29 juillet 2014 à 9 h 21 min +

                +

                Pas besoin d’une grosse puissance pour le fer, il faut au préalable gratter le vernis sur l’étain afin de pouvoir le faire fondre plus facilement

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + R211_IP-45130B + · 20 août 2014 à 14 h 04 min +

                +

                Bonjour à tous,

                +

                Une âme charitable peut-elle me communiquer ce qui est gravé sur la résistance CMS R211 de la carte d’alimentation/inverter IP-45130B qui équipe le SAMSUNG 2232BW ? Cette résistance a pris un coup de tournevis et je n’arrive pas à déterminer sa valeur de résistance car son marquage est effacé et comme le composant est abimé la mesure à l’ohmmètre indique l’infinie.

                +

                Merci par avance.

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + roger + · 24 octobre 2014 à 17 h 21 min +

                +

                Ca refonctionne après échange de 4 condensateurs :
                +-un 330uf25v remplacé à l’identique.
                +-trois 820uf25v remplacés par 1000uf25v.
                +Le tout pour quelques €. Le plus dur était le dessoudage, la tresse n’était pas très efficace contrairement à la pompe.
                +Grand merci à HugoPoi.

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + Max + · 26 février 2015 à 16 h 28 min +

                +

                ENORME MERCI!! J’ai réparé mon écran en 20mn pour 3,50€, il était à 2 doigts de partir à la déchetterie. Ca faisait des mois qu’il clignotait, et l’allumage mettait parfois plus d’une demi heure. J’ai changé 5 condos 820uf25v et 1 330uf25v, par exactement les mêmes en neuf, et là il démarre au quart de tour! Ca fait plaisir! :)

                + +
                +
                +
                  +
                  + +
                  +
                  +
                  +
                  +

                  + rocco michelle + · 7 octobre 2015 à 10 h 16 min +

                  +

                  Bonjour je ne sais si vous verrez mon message mais je tente…je cherche quelqu’un qui accepterait de changer mes condensateurs sur mon samsung, les réparateurs me demandent 70 à 80 euros et encore ils n’ont pss envie de le faire et me disent d’acheter un nouvel écran. j’aurais bien tenter mais je n’ai pas de matériel et j’ai lu que les condo pouvaient être très dangereux s’ils avaient de la charge alors j’ai la trouille de bidouiller pq je n’y connais rien. si vous êtes de lyon acccepteriez vous de changer mes condensateurs pour 45 euros? merci de votre réponse.

                  + +
                  +
                  + +
                + +
                + +
                +
                +
                +
                +

                + lecakeseb + · 27 juillet 2015 à 15 h 26 min +

                +

                Bonjour,

                +

                J’ai utilisé la vidéo pour démonter mon écran afin de le nettoyer de 4 bêtes d’orage infiltrés entre le premier écran (noir) et la dalle (blanche) de mon samsung SyncMaster 2232W

                +

                Petits conseils afin de modérer ce que j’ai pu voir dans cette vidéo :

                +

                0 : aspirez, nettoyez l’extérieur de l’écran avant de l’ouvrir et nettoyez la table qui vous servira d’atelier, pour éviter les poussières qui s’infiltreront forcément plus tard si vous ne le faites pas…
                +1 : pour ouvrir, utilisez plutôt un couteau à enduire pour la première partie (le cadre). Vous n’abîmerez ainsi pas du tout l’écran. Soyez patients, ne forcez pas ! ça viendra doucement, mais ça viendra. Il m’a fallu à peine 10 minutes, sans détériorer l’écran, sans le griffer… Il est encore nickel !
                +2 : attention à ne pas déconnecter les fils reliant le cadre à la carte. Inutile pour simplement nettoyer l’écran.
                +3 : pour séparer les deux éléments de la dalle entre lesquels les bêtes se sont infiltrées, les doigts suffisent, pas besoin d’outils qui viendraient les endommager. La dalle blanche reste à l’horizontale, l’écran noir sera tenu à la verticale.
                +4 : utiliser un chiffon doux ne peluchant pas pour enlever les bêtes (faites-vous aider de quelqu’un qui les enlèvera pendant que vous tenez l’écran extérieur en position verticale).
                +5 : repositionnez la colle d’étanchéité qui aurait pu se déplacer, avant de repositionner les deux écrans.
                +6 : commencer par refermer par le bas de l’écran (sinon les éléments de réglage situés au bas de l’écran – luminosité, contraste,…- ne se replaceront pas correctement).
                +7 : Une fois l’écran refermé, j’ai appliqué un peu de « barrage aux insectes », avec un chiffon à l’arrière de mon écran en insistant surtout sur les bouches d’aération par lesquelles les maudites bestioles ont du s’infiltrer. En espérant ne pas avoir à ouvrir !

                +

                Bon courage à vous !

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + Michel Jousserandot + · 20 janvier 2017 à 20 h 41 min +

                +

                Merci pour les conseils au démontage.
                +J’avais un problème un peu différent :l’écran ne s’allumait plus du tout. Avec un copain beaucoup plus malin que moi, on a détecté 2 fusibles dont l’un était fichu. On l’a remplacé par un petit fil de cuivre. Et tout a remarché comme avant.
                +Il faut surtout faire attention quand on teste la partie haute tension
                +Michel.

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + Crec + · 14 juillet 2017 à 10 h 20 min +

                +

                Bonjour. Très bons conseils avertis. Merci beaucoup.
                +Peut-on avoir les mêmes conseils pour un écran BX2250.
                +Merci par avance.
                +Crec

                + +
                +
                +
                  +
                  + +
                  +
                  +
                  +
                  +

                  + HugoPoi + · 6 août 2017 à 14 h 03 min +

                  +

                  J’ai pas de BX2250 donc dans le détails non mais si c’est les même symptômes ça doit la même procédure.

                  + +
                  +
                  + +
                + +
                + +
                +
                +
                +
                +

                + Ferronnier + · 10 août 2017 à 17 h 42 min +

                +

                Un grand merci !
                +J’ai changé tous les condensateurs de la partie alimentation de la carte, en déportant certains qui n’avaient pas le même format qu’à l’origine, et ça tourne nickel !

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + Nours + · 1 décembre 2017 à 15 h 17 min +

                +

                Ca fait des années que j’ai cet article enregistré dans un coin, en nourrissant l’espoir d’avoir un jour le courage de réparer ce foutu écran… Après plus de cinq ans c’est chose faite \o/
                +Un giga, hypra, immense merci pour ce tutoriel tellement bien expliqué et facile d’accès (je n’avais pas touché à un fer à souder depuis… Oh boy 15 ans déjà).
                +Après une longue pause, l’écran reprend du service… Jusqu’à la prochaine panne /o/

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + Alex + · 11 août 2018 à 13 h 28 min +

                +

                Quelqu’un sait qui pourrait me le faire svp j ai le même problème mais aucun matériel

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + David + · 5 février 2019 à 21 h 06 min +

                +

                Merci Hugo pour ce tuto qui m’a déjà servi en 2013 et qui va me resservir aujourd’hui car mon 2ème 2232bw commence à avoir les mêmes symptômes.

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + yvan + · 23 novembre 2019 à 17 h 14 min +

                +

                Bonjour
                +j’ai tenté de changer le condensateur qui avait l’air naze mais ça n’a pas marché … toujours le bouton bleu allumé, l’écran est reconnu par Windows 10 même si l’écran est éteint
                +grâce au service manuel de l’écran fourni plus haut, j’ai vérifié les tensions jusque sur la carte de la dalle et elles sont correctes, ainsi que sur la carte elle-même, tout est ok, donc je pense que ce n’est plus un problème de condensateur
                +pour les fusibles, ils ressemblent plutôt à des composants qu’à de simple fusibles, mais comme j’ai les bonnes tension, je ne pense pas que ça vienne de là
                +j’ai bien peur que ce soit la dalle qui soit naze ? quelqu’un a t il des idées supplémentaires avant que je le jette avec grand regret (c’est un 2032bw, mais c’est la même chose, même si ma carte électronique est un peu différente car plus récente
                +merci d’avance pour vos conseils

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + yvan + · 24 novembre 2019 à 17 h 26 min +

                +

                finalement j’ai trouvé, c’est un petit fusible vert qui ressemble à une résistance mais tout vert avec écrit 4A LF qui assure l’alimentation de la dalle.
                +En le shuntant, mon écran a retrouvé l’image.
                +après enquête il s’agit d’un fusible pico de 4ampères de chez little fuse, pas du tout évident à trouver
                +Résolu !

                + +
                +
                + +
                +
                +

                + Reflow Dell 1546 | HugoPoi + · 22 août 2016 à 16 h 09 min +

                +

                […] « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable de marque Dell un 1546 pour être précis. Encore […]

                + +
                +
                + +
                +
                +

                + Reflow Dell Inspiron 1546 – HugoPoi + · 23 juin 2017 à 23 h 18 min +

                +

                […] d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un […]

                + +
                +
                + +
                +
                +
                +

                Répondre à FRED Annuler la réponse

                Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                +
                +
                +

                + +

                +
                +
                +
                +
                +
                +
                + +
                +
                +
                +
                +
                +
                + + +
                + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/37936efbf12abcc9e59c1f9474465cf45bd35bbb.00000670.css b/www/.content.EZtzwPjb/html/37936efbf12abcc9e59c1f9474465cf45bd35bbb.00000670.css new file mode 100644 index 0000000..fe440fe --- /dev/null +++ b/www/.content.EZtzwPjb/html/37936efbf12abcc9e59c1f9474465cf45bd35bbb.00000670.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;background:#fff;border:1px +solid #f00;font-size:10pt;width:280px;padding:2px}span.wpcf7-not-valid-tip-no-ajax{color:#f00;font-size:10pt;display:block}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/37c1e6f43143e157c27c1b62dc8c19bcd5376303.00001270.xml b/www/.content.EZtzwPjb/html/37c1e6f43143e157c27c1b62dc8c19bcd5376303.00001270.xml new file mode 100644 index 0000000..cc2b0c4 --- /dev/null +++ b/www/.content.EZtzwPjb/html/37c1e6f43143e157c27c1b62dc8c19bcd5376303.00001270.xml @@ -0,0 +1,7 @@ + +1.0HugoPoihttp://blog.hugopoi.netHugoPoihttp://blog.hugopoi.net/author/hugopoi/IPv6 - Introrich600338<blockquote class="wp-embedded-content"><a href="/2010/12/20/ipv6-intro/">IPv6 – Intro</a></blockquote> +<script type='text/javascript'> +<!--//--><![CDATA[//><!-- + !function(a,b){"use strict";function c(){if(!e){e=!0;var a,c,d,f,g=-1!==navigator.appVersion.indexOf("MSIE 10"),h=!!navigator.userAgent.match(/Trident.*rv:11\./),i=b.querySelectorAll("iframe.wp-embedded-content");for(c=0;c<i.length;c++)if(d=i[c],!d.getAttribute("data-secret")){if(f=Math.random().toString(36).substr(2,10),d.src+="#?secret="+f,d.setAttribute("data-secret",f),g||h)a=d.cloneNode(!0),a.removeAttribute("security"),d.parentNode.replaceChild(a,d)}else;}}var d=!1,e=!1;if(b.querySelector)if(a.addEventListener)d=!0;if(a.wp=a.wp||{},!a.wp.receiveEmbedMessage)if(a.wp.receiveEmbedMessage=function(c){var d=c.data;if(d.secret||d.message||d.value)if(!/[^a-zA-Z0-9]/.test(d.secret)){var e,f,g,h,i,j=b.querySelectorAll('iframe[data-secret="'+d.secret+'"]'),k=b.querySelectorAll('blockquote[data-secret="'+d.secret+'"]');for(e=0;e<k.length;e++)k[e].style.display="none";for(e=0;e<j.length;e++)if(f=j[e],c.source===f.contentWindow){if(f.removeAttribute("style"),"height"===d.message){if(g=parseInt(d.value,10),g>1e3)g=1e3;else if(~~g<200)g=200;f.height=g}if("link"===d.message)if(h=b.createElement("a"),i=b.createElement("a"),h.href=f.getAttribute("src"),i.href=d.value,i.host===h.host)if(b.activeElement===f)a.top.location.href=d.value}else;}},d)a.addEventListener("message",a.wp.receiveEmbedMessage,!1),b.addEventListener("DOMContentLoaded",c,!1),a.addEventListener("load",c,!1)}(window,document); +//--><!]]> +</script><iframe sandbox="allow-scripts" security="restricted" src="/2010/12/20/ipv6-intro/embed/" width="600" height="338" title="« IPv6 – Intro » — HugoPoi" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" class="wp-embedded-content"></iframe> diff --git a/www/.content.EZtzwPjb/html/3842cada37b7177acfb62e8306b26487fe93beb0.00000334.html b/www/.content.EZtzwPjb/html/3842cada37b7177acfb62e8306b26487fe93beb0.00000334.html new file mode 100644 index 0000000..35d9ef8 --- /dev/null +++ b/www/.content.EZtzwPjb/html/3842cada37b7177acfb62e8306b26487fe93beb0.00000334.html @@ -0,0 +1,372 @@ + + + + + + + Air – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                +
                +
                +
                + +
                +
                +
                +
                +
                +

                Trolling

                Apple New MacBook Air

                +

                J’avais envie de me défouler un peu donc je vais troller sur la sortie du nouveau MacBook Air. Alors oui il est beau, il est léger, la finition est nikel Chrome. Mais c’est du Apple donc c’est cher le prix d’entrée est de 999€ ouch ! pour la version 11 pouces … (suite…)

                +
                Par HugoPoi, il y a
                +
                + +
                +
                +
                +
                + +
                +
                + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/387c6b166efc75b19614c5f62126cbd90e36b7f9.00000175.html b/www/.content.EZtzwPjb/html/387c6b166efc75b19614c5f62126cbd90e36b7f9.00000175.html new file mode 100644 index 0000000..3a93613 --- /dev/null +++ b/www/.content.EZtzwPjb/html/387c6b166efc75b19614c5f62126cbd90e36b7f9.00000175.html @@ -0,0 +1,303 @@ + + + + + + + + La table du salon – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                +
                +
                +
                +
                +
                +
                +
                + + + +

                +
                +
                +
                +
                +

                + 0 commentaire

                +
                +
                +
                +

                Laisser un commentaire

                Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                +
                +
                +

                + +

                +
                +
                +
                +
                +
                +
                +
                +
                +
                +
                +
                +
                +
                + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/38af016c168f4177df5f56604bdc65f07aebf96d.00000512.xml b/www/.content.EZtzwPjb/html/38af016c168f4177df5f56604bdc65f07aebf96d.00000512.xml new file mode 100644 index 0000000..e0d8f8f --- /dev/null +++ b/www/.content.EZtzwPjb/html/38af016c168f4177df5f56604bdc65f07aebf96d.00000512.xml @@ -0,0 +1,39 @@ + + + SFR – HugoPoi + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Mon, 22 Aug 2016 14:10:26 +0000 + fr-FR + hourly + 1 + https://wordpress.org/?v=4.6.1 + + Orange et consort, impossible d’obtenir le désimlockage + http://blog.hugopoi.net/2013/09/15/orange-et-consort-impossible-dobtenir-le-desimlockage/ + http://blog.hugopoi.net/2013/09/15/orange-et-consort-impossible-dobtenir-le-desimlockage/#comments + Sat, 14 Sep 2013 23:01:40 +0000 + + + + + + + + + + http://blog.hugopoi.net/?p=794 + Lire la suite »

                ]]>
                + http://blog.hugopoi.net/2013/09/15/orange-et-consort-impossible-dobtenir-le-desimlockage/feed/ + 1 +
                +
                +
                diff --git a/www/.content.EZtzwPjb/html/3900b00c706a0057d6d4b3a0f49e5efc6bfb369a.00000297.html b/www/.content.EZtzwPjb/html/3900b00c706a0057d6d4b3a0f49e5efc6bfb369a.00000297.html new file mode 100644 index 0000000..e8cb554 --- /dev/null +++ b/www/.content.EZtzwPjb/html/3900b00c706a0057d6d4b3a0f49e5efc6bfb369a.00000297.html @@ -0,0 +1,364 @@ + + + + + + + Gaming – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                +
                +
                +
                + +
                +
                +
                +
                +
                +
                +
                + +
                +
                +
                +
                + +
                +
                + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/3924ffbdd98edd95f0fdb13dc4881bc37b0dec46.00000527.html b/www/.content.EZtzwPjb/html/3924ffbdd98edd95f0fdb13dc4881bc37b0dec46.00000527.html new file mode 100644 index 0000000..eaec2da --- /dev/null +++ b/www/.content.EZtzwPjb/html/3924ffbdd98edd95f0fdb13dc4881bc37b0dec46.00000527.html @@ -0,0 +1,372 @@ + + + + + + + tap – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                +
                +
                +
                + +
                +
                +
                +
                +
                +

                L’homme du milieu avec DD-WRT

                J’avais besoin de faire un MITM entre un ONT et la box SFR NB6 pour pouvoir capturer les identifiants PPP pour le tunnel ipv6. Je n’avais pas de hub ou de machine avec 2 interfaces Ethernet pour pouvoir le faire de façon passive sans faire du spoofing ARP. Et je n’avais pas envie d’envoyer des trames ARP sur l’infrastructure réseau SFR. J’avais un Netgear WNR3500Lv1 dans un coin, je me suis dit qu’il y avais moyen d’utiliser ce genre de routeur pour faire du tapping passif.

                +

                (suite…)

                +
                Par HugoPoi, il y a
                +
                + +
                +
                +
                +
                + +
                +
                + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/393f512ab6bb9e79836a2af637ece2b61d40d524.00000669.css b/www/.content.EZtzwPjb/html/393f512ab6bb9e79836a2af637ece2b61d40d524.00000669.css new file mode 100644 index 0000000..20df2bb --- /dev/null +++ b/www/.content.EZtzwPjb/html/393f512ab6bb9e79836a2af637ece2b61d40d524.00000669.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7 .screen-reader-response{position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);height:1px;width:1px;margin:0;padding:0;border:0}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{color:#f00;font-size:1em;display:block}.use-floating-validation-tip span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;border:1px +solid #f00;background:#fff;padding: .2em .8em}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/396e7a06a4db1c7ad4776476f4425872fbb99e9e.00000551.html b/www/.content.EZtzwPjb/html/396e7a06a4db1c7ad4776476f4425872fbb99e9e.00000551.html new file mode 100644 index 0000000..7af11ce --- /dev/null +++ b/www/.content.EZtzwPjb/html/396e7a06a4db1c7ad4776476f4425872fbb99e9e.00000551.html @@ -0,0 +1,373 @@ + + + + + + + VPN – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                +
                +
                +
                + +
                +
                +
                +
                +
                +
                +
                + +
                +
                +
                +
                + +
                +
                + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/39bba23bd7f65c979ad96ff9d933ff36c8c3d492.00001292.json b/www/.content.EZtzwPjb/html/39bba23bd7f65c979ad96ff9d933ff36c8c3d492.00001292.json new file mode 100644 index 0000000..1b4862e --- /dev/null +++ b/www/.content.EZtzwPjb/html/39bba23bd7f65c979ad96ff9d933ff36c8c3d492.00001292.json @@ -0,0 +1 @@ +{"version":"1.0","provider_name":"HugoPoi","provider_url":"http:\/\/blog.hugopoi.net","author_name":"HugoPoi","author_url":"http:\/\/blog.hugopoi.net\/author\/hugopoi\/","title":"R\u00e9parations Samsung SyncMaster 2232BW","type":"rich","width":600,"height":338,"html":"
                R\u00e9parations Samsung SyncMaster 2232BW<\/a><\/blockquote>\n + + + + + + + + + + + + + + + + + + + + + + +
                +
                +
                +
                + +
                +
                +
                +
                +
                +
                +

                Après la petite interview de Pascal Nègre réalisée par TF1 News, j’en ai eu marre de voir encore et toujours le terme « pirate » pour désigner les personnes qui téléchargent illégalement. Pour rappel, la définition du terme « pirate » : Le mot pirate provient à la fois du terme grec πειρατής (peiratês), lui même dérivé du verbe πειράω (peiraô) signifiant « s’efforcer de », « essayer de », « tenter sa chance à l’aventure » et du latin pirata : celui qui tente la fortune, qui entreprend. Ce n’est qu’au Moyen Âge que le pirate désigne un bandit qui parcourait les mers pour piller des navires de commerce.

                +

                Alors Pascal, prenons comme point de départ que vous désignez « pirate » ceux qui pillent votre maison de disque. Cela voudrait donc dire que je viens avec ma bande de flibustier équipé de canon pour défoncer votre devanture et voler votre argent. Mais ceci n’est exact puisque je ne vais pas chez votre fabricant de disques voler les disques fabriqués pour les revendre au plus offrant et me faire plein de blé. Moi je ne suis qu’un pauvre étudiant qui n’a aucun moyen financier, et je ne pourrais jamais acheter sur iDaube (=iTunes) de quoi remplir l’iPaud que je n’aurais jamais (d’après mes calculs : en se basant sur un ipod 8 Go et un titre fait environ 10Mo donc sa fait 8000/10=800 que l’on multiplie par le prix d’un titre soit 0.99€, 800*0.99=792€ ). Pour revenir au téléchargement illégal, quand je télécharge un titre, je ne le vole pas car je n’aurais pas pu l’acheter donc je ne crée pas un manque à gagner pour votre entreprise. Et même au contraire, je contribue à la promotion de vos artistes en téléchargeant  car quand je trouve un truc bien, j’en fais la promotion en parlant à mes contacts de ce que j’ai trouvé. En attendant, vous dites que les artistes qui vendent 100000 disques touchent à peine 2000€. Mais vous, votre salaire c’est combien ? 8000€ ou plus dans les 20000€ (vous êtes plus Audi ou BMW ?). Je vous cite « moins de nouveaux talents émergent » …Ah bon !?!$$?? et la nouvelle star , stardaube, j’en passe et des meilleurs, ça ne vous fait pas des nouvelles daubes à sortir ?

                +

                Pour revenir sur le coeur du sujet « pirate », je ne sais pas si j’ai réussi à tuer un artiste technicien sonore en sabordant téléchargeant rené la taupe. En tout cas Sarko pour vous c’est une bonne affaire, avec la carte musique jeune qui vous fait une belle prime de fin d’année donnée gracieusement par nos impôts. J’espère que vous offrirez des Ipods à vos enfants. Puis le coup hadopi aussi, pour faire peur au gens et les faire culpabiliser de vous faire gagner moins d’argent cette année. Je vous cite encore une fois pour finir : « j’ai simplement  dit que je ne croyais pas au modèle de la gratuité de la musique financée par la pub. Ni pour Deezer, ni surtout pas pour nous. » , bien joué le « je ne croyais pas » c’étais facile pour vous de mettre la pression à Deezer en augmentant votre dîme parce que si vous les aviez laissés continuer dans cette voie, il aurait fallu que vous baissiez votre salaire pour rémunérer vos artistes.

                +

                C’est là que je m’aperçois que je n’ai pas tout à fait réussi à garder mon sang froid. Dans l’attente que tu me lises Pascal, je t’embrasse, Bisous @++.

                +

                PS Pour Pascal :

                +

                http://bluetouff.com/2010/11/24/hadopi-pascal-negre-defend-son-bebe/

                +

                http://www.glazman.org/weblog/dotclear/index.php?post/2010/11/24/Reponse-a-Pascal-Negre-qui-commence-a-serieusement-m-echauffer-les-oreilles

                +
                +
                +
                +
                +
                Catégories : HadopiNews
                +
                +
                +
                + + + + + + + + + +
                +
                +
                +
                +
                +
                +
                +

                + 4 commentaires

                +
                + +
                +
                +
                +
                +

                + Xavier + · 26 novembre 2010 à 0 h 05 min +

                +

                Ouah sa va tu t’est lâché . Lol . Il doit bien avoir un Twitter ou un Facebook pour lui transmettre l’info LOL. Néanmoins je pense qu ce qu’on télécharge est quelque chose que l’on achètera pas donc il y à perte d’argent quand même .mais avec la pub faite grâce au téléchargement ils ne perdent rien .fin voila jdit sa jdit rien moi ;)

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + HugoPoi + · 26 novembre 2010 à 10 h 20 min +

                +

                J’ai twitter l’article à Monsieur Pascal Nègre mais je pense que même si il m’a lu, il n’a pas le temps de répondre à toutes les critiques qu’on lui fait entre Numerama, Bluetouff, Glazman …
                +Quand tu dis que si on télécharge quelque chose, on ne l’achètera pas, c’est faux parce que quand un truc me plait vraiment je vais l’acheter.

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + saad + · 25 avril 2011 à 21 h 26 min +

                +

                cool

                + +
                +
                + +
                +
                +

                + Tweets that mention Stop au terme pirate | HugoPoi -- Topsy.com + · 28 novembre 2010 à 3 h 08 min +

                +

                […] This post was mentioned on Twitter by HugoPoi, HugoPoi. HugoPoi said: Stop au terme pirate http://bit.ly/flDnyU @Pascal_Negre […]

                + +
                +
                + +
                +
                +
                +

                Répondre à Xavier Annuler la réponse

                Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                +
                +
                +

                + +

                +
                +
                +
                +
                +
                +
                + +
                +
                +
                +
                +
                +
                + + +
                + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/3a72fb679dac7353f09fb28928c80a0d243da3ba.00000072.xml b/www/.content.EZtzwPjb/html/3a72fb679dac7353f09fb28928c80a0d243da3ba.00000072.xml new file mode 100644 index 0000000..4357033 --- /dev/null +++ b/www/.content.EZtzwPjb/html/3a72fb679dac7353f09fb28928c80a0d243da3ba.00000072.xml @@ -0,0 +1,51 @@ + + + Commentaires sur : Optimus vs Mégatron + + http://blog.hugopoi.net/2011/05/04/optimus-vs-megatron/ + Internet, Hardware et Bidouille + Mon, 22 Aug 2016 14:09:10 +0000 + hourly + 1 + https://wordpress.org/?v=4.6.1 + + Par : HugoPoi + http://blog.hugopoi.net/2011/05/04/optimus-vs-megatron/#comment-71 + + Sat, 13 Aug 2011 21:25:35 +0000 + http://blog.hugopoi.net/?p=418#comment-71 + + Merci, j’espère continuer comme ça ;)

                +]]>
                +
                + + Par : Randall Flagg + http://blog.hugopoi.net/2011/05/04/optimus-vs-megatron/#comment-70 + + Fri, 12 Aug 2011 10:15:48 +0000 + http://blog.hugopoi.net/?p=418#comment-70 + + salut hugo, j’avais pas vu ton site et cet article est vraiment bien foutu, et très informatif :)
                +GG!

                +]]>
                +
                + + Par : Calcifer + http://blog.hugopoi.net/2011/05/04/optimus-vs-megatron/#comment-60 + + Wed, 04 May 2011 14:05:03 +0000 + http://blog.hugopoi.net/?p=418#comment-60 + + Tu m’en aura donné du fil à retordre pour corriger ton article :P

                +

                Article très intéressant, merci pour les informations ;)

                +]]>
                +
                +
                +
                diff --git a/www/.content.EZtzwPjb/html/3ab6336e773d3433b2e6d3ba93b65d701cb8be0a.00000722.css b/www/.content.EZtzwPjb/html/3ab6336e773d3433b2e6d3ba93b65d701cb8be0a.00000722.css new file mode 100644 index 0000000..fe9245c --- /dev/null +++ b/www/.content.EZtzwPjb/html/3ab6336e773d3433b2e6d3ba93b65d701cb8be0a.00000722.css @@ -0,0 +1,28 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7 .screen-reader-response{position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);height:1px;width:1px;margin:0;padding:0;border:0}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{color:#f00;font-size:1em;display:block}.use-floating-validation-tip span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;border:1px +solid #f00;background:#fff;padding: .2em .8em}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wpcf7-recaptcha +iframe{margin-bottom:0}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/3b8ed3f3fba16b94ad11bddb951b568d5d5869a2.00000135.html b/www/.content.EZtzwPjb/html/3b8ed3f3fba16b94ad11bddb951b568d5d5869a2.00000135.html new file mode 100644 index 0000000..81075cd --- /dev/null +++ b/www/.content.EZtzwPjb/html/3b8ed3f3fba16b94ad11bddb951b568d5d5869a2.00000135.html @@ -0,0 +1,1370 @@ + + + + + + + + Réparations Samsung SyncMaster 2232BW – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                +
                +
                +
                + +
                +
                +
                +
                +
                +
                +

                Allô docteur on a un problème,

                +

                En ce dimanche calme avant la fin de mes partiels, mon écran Samsung SyncMaster 2232BW commençait à faire des siennes. Celui-ci depuis un mois ou deux clignotait de façon systématique au démarrage, au début pendant seulement quelques secondes, puis au fur et à mesure, de plus en plus jusqu’à devoir attendre 10 minutes pour que je puisse l’utiliser. Après 3 ans et 4 mois de bons et loyaux services, il voulait me quitter. J’ai tenté le support Samsung par email avec peu d’espoir car l’écran a dépassé sa garantie de 4 mois (oui oui les bâtards -> obsolescence programmée). Et donc j’ai eu le droit à un joli mail automatique me disant de contacter un numéro non surtaxé (mais avec combien de temps d’attente ?), ce que je n’ai pas fait car je n’avais pas envie de passer 30min au téléphone pour au final avoir un « On est désolé mais on ne peut rien faire pour vous car la garantie est dépassée, mais on peut envoyer votre écran en SAV pour faire un devis pour seulement 50 boules ». Concernant le support email de Samsung France, je leur donne une note de 0/20 puisque ce n’est pas un support mais une redirection vers le téléphone.

                +

                +

                Symptômes

                +

                Clignotements de l’écran et de la LED power systématiques à chaque démarrage de l’écran. Je me suis tout de suite douté d’un problème d’alimentation et après quelques recherches sur google, confirmation du problème sur beaucoup d’écrans et téléviseurs. Dans 99% des cas ce clignotement est dû à des condensateurs défectueux qu’il faut simplement changer :-D

                +

                Démontage

                +

                Donc après avoir cerné le problème, j’ai ouvert l’écran pour chercher les condos défectueux. J’ai trouvé une petite vidéo pour mon écran :

                +

                +

                Voici quelques photos en plus pour vous aider :

                +

                Les outils que j’ai utilisé pour le démontage

                +

                Position des clips

                +

                Carte d’alimentation dans son emplacement

                +

                Et voici les condensateurs qui posent problèmes. Comme vous pouvez le voir sur la photo, ils sont très facilement identifiable car ils sont bombés sur le dessus.

                +

                Condensateurs défectueux

                +

                Vous devez donc acheter des condensateurs de remplacement, par exemple sur Conrad.

                +

                Mes condensateurs suivant étaient endommagés:

                +
                  +
                • 1 de 330uF 25V remplacé par un 470uF 25V
                • +
                • 3 de 820uF 25V remplacé par des 1000uF 50V
                • +
                +

                Pour la réparation, il vous faut un fer à souder avec une panne pas trop grosse mais d’une grosse puissance car les soudures sont très solides (j’ai galéré avec un fer pro qui monte jusqu’à 400°).

                +

                Tout remarche nickel après remontage, plus de clignotement pour seulement quelques euros.

                +

                edit du 19 aout 2014 : j’ai trouvé le service manuel de l’écran si besoin samsung_2232bw_chassis_lpe22bs_sm

                + + +
                +
                + +
                +
                +
                +
                +
                +

                + 41 commentaires

                +
                + +
                +
                +
                +
                +

                + c'est_moi + · 30 janvier 2012 à 18 h 57 min +

                +

                Mille mercis et mille félicitations pour cette fiche technique si pédagogue.

                +

                J’espère que le partiels se passent plus que parfait !!

                +

                J’ai gardé l’url de la page pour réparer mon écran dans un petit mois : j’espère que la page soit toujours là ;-)

                +

                Merci encore.

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + Maxime + · 5 mai 2012 à 12 h 31 min +

                +

                Bonjour HugoPoi!

                +

                Merci pour toutes vos infos et votre topic, je voulais avoir quelques précisions sur les condos à changer pour samsung 2232bw, je veux passer commande mais j’ai un problème avec les dimensions des condos, si vous pouvez m’informer de ce que je pourrais acheter car il y a trop de références. En vous remerciant A+ Maxime

                + +
                +
                +
                  +
                  + +
                  +
                  +
                  +
                  +

                  + HugoPoi + · 14 juin 2012 à 22 h 56 min +

                  +

                  N’importe quel condensateur polarisé avec des caractéristiques proches devrait marché.

                  + +
                  +
                  + +
                + +
                + +
                +
                +
                +
                +

                + gaubjezj + · 14 juin 2012 à 22 h 32 min +

                +

                Merci pour le tuto qui m’a bien aidé.
                +J’ai utilisé un fer de 40 W avec une panne fine et
                +une pompe à dessouder et j’ai retiré les condensateurs sans problème.
                +Merci encore (3€40 pour le dépannage).

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + DragonTribal + · 2 juillet 2012 à 12 h 02 min +

                +

                super merci pour manifique tuto.
                +Est-il possible de changer les 5 condensateurs 820uF 25V par des 1000uF 50V? car moi mes 5 condensateurs sont presque HS ;-)

                +

                Cordialement

                + +
                +
                +
                  +
                  + +
                  +
                  +
                  +
                  +

                  + HugoPoi + · 2 juillet 2012 à 12 h 25 min +

                  +

                  Oui je penses que ça marchera étant donné que c’est des valeurs plus grandes.

                  + +
                  +
                  + +
                + +
                + +
                +
                +
                +
                +

                + FRED + · 11 juillet 2012 à 19 h 11 min +

                +

                Bravo, MERCI.
                +Je n’ai encore rien fait…mais j’ai le même problème, et tu me donnes la solution.
                +Super.

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + daninpet + · 31 août 2012 à 10 h 10 min +

                +

                Merci mille fois!

                +

                J’avais ce problème, et j’ai emmener la photo des trucs a remplacer chez le réparateur du coin et voila!! Ça m’a coûté 7 Euros (mais j’habite en Thaïlande)

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + moi + · 15 novembre 2012 à 15 h 25 min +

                +

                super mon 2232bw vient de lâcher, les 3 + 1 condos sont gonflés j ai trouvé un 330 en 35v qui traîné sur un écran mort et j’ai commander 5 1000uf 35v sur ebay pour moins de 3 dollars, ca devrait le faire j’espere j’attend d’être livré merci! par contre j’ai qu’un gros pistolet a soudure et un gros fil d’étain, c’est pas évident mais bon ca le fait quand même =)

                + +
                +
                +
                  +
                  + +
                  +
                  +
                  +
                  +

                  + moi + · 7 décembre 2012 à 9 h 33 min +

                  +

                  parfait je vient de recevoir les condos; j ai meuler la panne du fer a souder pour la tailler en mine de crayon et j ai reussi a les souder facilement ils étaient un peu plus gros mais ca passe tout juste, mais attention ne pas prendre des plus gros! l écran fonctionne nickel maintenant.

                  + +
                  +
                  + +
                + +
                + +
                +
                +
                +
                +

                + Croco + · 19 janvier 2013 à 18 h 39 min +

                +

                Je souhaiterai savoir si tu as utilisé un fer à souder bien précis étant donné que la carte est une multi couche.
                +Merci

                + +
                +
                + + +
                + +
                +
                +
                +
                +

                + momo + · 10 juin 2013 à 13 h 15 min +

                +

                slut je voudrai savoir ou trouvé les condansateur a changer sur mon ecran qui clignote

                + +
                +
                + + +
                + +
                +
                +
                +
                +

                + lokmane + · 5 juillet 2013 à 16 h 08 min +

                +

                merci j’avais un ecran rouge ! et c’etais la tresse qui relie mon ecran votre page m’a aider a l’ouvrir et a le reparer merci bien

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + ML + · 21 août 2013 à 19 h 11 min +

                +

                Merci ! Ecran réparé. Halte à l’obsolescence programmée.

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + raymond + · 31 octobre 2013 à 13 h 20 min +

                +

                ai vu votre vidéo et les explications pour la reparation de mon écran , apparemment le méme probléme l écran passe au noir apres quelque seconde , j ai vu un le condensateur en bas a gauche gonflé , je l ai fait changé (10€) les autre condensateur étant toujour bon d après la personne qui me l a changé , mais j ai toujour le méme probléme cela peut il venir de la carte video a gauche ?

                + +
                +
                +
                  +
                  + +
                  +
                  +
                  +
                  +

                  + HugoPoi + · 20 décembre 2013 à 12 h 27 min +

                  +

                  Si la led bleu du bouton power s’éteint aussi c’est un problème d’alimentation sinon c’est plus compliqué et ça peut provenir de condensateurs sur la partie vidéo. Changé tous les plus gros condensateurs sur la partie alimentation pourrait être un bon début même si ils ne paraissent pas endommagé.

                  + +
                  +
                  + +
                + +
                + +
                +
                +
                +
                +

                + damien + · 4 novembre 2013 à 0 h 29 min +

                +

                bonjour,

                +

                j’ai des crasses coincées entres l’écran et le truc juste derrière, est ce qu’on sais les enlever en démontant la dalle ?

                + +
                +
                +
                  +
                  + +
                  +
                  +
                  +
                  +

                  + HugoPoi + · 20 décembre 2013 à 12 h 28 min +

                  +

                  Je ne sais si cette partie de la dalle est démontable, je penses que c’est collé mais vous pouvez essayer.

                  + +
                  +
                  + +
                + +
                + +
                +
                +
                +
                +

                + mac + · 1 décembre 2013 à 17 h 30 min +

                +

                Merci HugoPoi, avec ces excellents conseils et tuto vidéo, mon écran est reparti pour une nouvelle vie.
                +Pour les composants, si vous êtes sur Paris ou proche. La boutique RAM électroniques est une bonne adresse, 138 bd Diderot 75012 Paris (Place de la Nation).

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + Bouddhid + · 16 janvier 2014 à 19 h 21 min +

                +

                Merci beaucoup pour ces conseils ! J’étais à 2 doigts de jeter mon écran, le voilà comme neuf pour moins de 5€ ! Vive la bricole !

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + Vincent + · 17 mai 2014 à 16 h 45 min +

                +

                Alors là merci.

                +

                Pour ce post, les photos, la vidéo, tout y est.

                +

                J’ai démonté l’écran assez vite, enlevé la carte, regarder quel condensateurs étaient gonflés,(il y en avaient 4), un magasin d’électronique sur lyon et une heure de démontage, soudure, remontage plus tard, voilà, c’est tout beau.
                +Ca ne clignote plus, ça s’allume comme avant, comme neuf.

                +

                Et dire que j’allais jeter cet écran et claquer 350 euros pour un neuf…

                +

                Coût de l’opération pour 4 condensateurs, du fil d’étain 7 euros.

                +

                Je précise que je n’avais jamais fais de soudure sur composant électronique auparavant.
                +Comme quoi cette opération de réparation est à la portée de tous.

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + Julot + · 6 juillet 2014 à 13 h 49 min +

                +

                Site vraiment détaillé et très claire. J’ai pu dépanner mon écran avec succès. Merci beaucoup pour ces précieuses explications.

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + PaniK31 + · 29 juillet 2014 à 9 h 21 min +

                +

                Pas besoin d’une grosse puissance pour le fer, il faut au préalable gratter le vernis sur l’étain afin de pouvoir le faire fondre plus facilement

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + R211_IP-45130B + · 20 août 2014 à 14 h 04 min +

                +

                Bonjour à tous,

                +

                Une âme charitable peut-elle me communiquer ce qui est gravé sur la résistance CMS R211 de la carte d’alimentation/inverter IP-45130B qui équipe le SAMSUNG 2232BW ? Cette résistance a pris un coup de tournevis et je n’arrive pas à déterminer sa valeur de résistance car son marquage est effacé et comme le composant est abimé la mesure à l’ohmmètre indique l’infinie.

                +

                Merci par avance.

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + roger + · 24 octobre 2014 à 17 h 21 min +

                +

                Ca refonctionne après échange de 4 condensateurs :
                +-un 330uf25v remplacé à l’identique.
                +-trois 820uf25v remplacés par 1000uf25v.
                +Le tout pour quelques €. Le plus dur était le dessoudage, la tresse n’était pas très efficace contrairement à la pompe.
                +Grand merci à HugoPoi.

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + Max + · 26 février 2015 à 16 h 28 min +

                +

                ENORME MERCI!! J’ai réparé mon écran en 20mn pour 3,50€, il était à 2 doigts de partir à la déchetterie. Ca faisait des mois qu’il clignotait, et l’allumage mettait parfois plus d’une demi heure. J’ai changé 5 condos 820uf25v et 1 330uf25v, par exactement les mêmes en neuf, et là il démarre au quart de tour! Ca fait plaisir! :)

                + +
                +
                +
                  +
                  + +
                  +
                  +
                  +
                  +

                  + rocco michelle + · 7 octobre 2015 à 10 h 16 min +

                  +

                  Bonjour je ne sais si vous verrez mon message mais je tente…je cherche quelqu’un qui accepterait de changer mes condensateurs sur mon samsung, les réparateurs me demandent 70 à 80 euros et encore ils n’ont pss envie de le faire et me disent d’acheter un nouvel écran. j’aurais bien tenter mais je n’ai pas de matériel et j’ai lu que les condo pouvaient être très dangereux s’ils avaient de la charge alors j’ai la trouille de bidouiller pq je n’y connais rien. si vous êtes de lyon acccepteriez vous de changer mes condensateurs pour 45 euros? merci de votre réponse.

                  + +
                  +
                  + +
                + +
                + +
                +
                +
                +
                +

                + lecakeseb + · 27 juillet 2015 à 15 h 26 min +

                +

                Bonjour,

                +

                J’ai utilisé la vidéo pour démonter mon écran afin de le nettoyer de 4 bêtes d’orage infiltrés entre le premier écran (noir) et la dalle (blanche) de mon samsung SyncMaster 2232W

                +

                Petits conseils afin de modérer ce que j’ai pu voir dans cette vidéo :

                +

                0 : aspirez, nettoyez l’extérieur de l’écran avant de l’ouvrir et nettoyez la table qui vous servira d’atelier, pour éviter les poussières qui s’infiltreront forcément plus tard si vous ne le faites pas…
                +1 : pour ouvrir, utilisez plutôt un couteau à enduire pour la première partie (le cadre). Vous n’abîmerez ainsi pas du tout l’écran. Soyez patients, ne forcez pas ! ça viendra doucement, mais ça viendra. Il m’a fallu à peine 10 minutes, sans détériorer l’écran, sans le griffer… Il est encore nickel !
                +2 : attention à ne pas déconnecter les fils reliant le cadre à la carte. Inutile pour simplement nettoyer l’écran.
                +3 : pour séparer les deux éléments de la dalle entre lesquels les bêtes se sont infiltrées, les doigts suffisent, pas besoin d’outils qui viendraient les endommager. La dalle blanche reste à l’horizontale, l’écran noir sera tenu à la verticale.
                +4 : utiliser un chiffon doux ne peluchant pas pour enlever les bêtes (faites-vous aider de quelqu’un qui les enlèvera pendant que vous tenez l’écran extérieur en position verticale).
                +5 : repositionnez la colle d’étanchéité qui aurait pu se déplacer, avant de repositionner les deux écrans.
                +6 : commencer par refermer par le bas de l’écran (sinon les éléments de réglage situés au bas de l’écran – luminosité, contraste,…- ne se replaceront pas correctement).
                +7 : Une fois l’écran refermé, j’ai appliqué un peu de « barrage aux insectes », avec un chiffon à l’arrière de mon écran en insistant surtout sur les bouches d’aération par lesquelles les maudites bestioles ont du s’infiltrer. En espérant ne pas avoir à ouvrir !

                +

                Bon courage à vous !

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + Michel Jousserandot + · 20 janvier 2017 à 20 h 41 min +

                +

                Merci pour les conseils au démontage.
                +J’avais un problème un peu différent :l’écran ne s’allumait plus du tout. Avec un copain beaucoup plus malin que moi, on a détecté 2 fusibles dont l’un était fichu. On l’a remplacé par un petit fil de cuivre. Et tout a remarché comme avant.
                +Il faut surtout faire attention quand on teste la partie haute tension
                +Michel.

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + Crec + · 14 juillet 2017 à 10 h 20 min +

                +

                Bonjour. Très bons conseils avertis. Merci beaucoup.
                +Peut-on avoir les mêmes conseils pour un écran BX2250.
                +Merci par avance.
                +Crec

                + +
                +
                +
                  +
                  + +
                  +
                  +
                  +
                  +

                  + HugoPoi + · 6 août 2017 à 14 h 03 min +

                  +

                  J’ai pas de BX2250 donc dans le détails non mais si c’est les même symptômes ça doit la même procédure.

                  + +
                  +
                  + +
                + +
                + +
                +
                +
                +
                +

                + Ferronnier + · 10 août 2017 à 17 h 42 min +

                +

                Un grand merci !
                +J’ai changé tous les condensateurs de la partie alimentation de la carte, en déportant certains qui n’avaient pas le même format qu’à l’origine, et ça tourne nickel !

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + Nours + · 1 décembre 2017 à 15 h 17 min +

                +

                Ca fait des années que j’ai cet article enregistré dans un coin, en nourrissant l’espoir d’avoir un jour le courage de réparer ce foutu écran… Après plus de cinq ans c’est chose faite \o/
                +Un giga, hypra, immense merci pour ce tutoriel tellement bien expliqué et facile d’accès (je n’avais pas touché à un fer à souder depuis… Oh boy 15 ans déjà).
                +Après une longue pause, l’écran reprend du service… Jusqu’à la prochaine panne /o/

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + Alex + · 11 août 2018 à 13 h 28 min +

                +

                Quelqu’un sait qui pourrait me le faire svp j ai le même problème mais aucun matériel

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + David + · 5 février 2019 à 21 h 06 min +

                +

                Merci Hugo pour ce tuto qui m’a déjà servi en 2013 et qui va me resservir aujourd’hui car mon 2ème 2232bw commence à avoir les mêmes symptômes.

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + yvan + · 23 novembre 2019 à 17 h 14 min +

                +

                Bonjour
                +j’ai tenté de changer le condensateur qui avait l’air naze mais ça n’a pas marché … toujours le bouton bleu allumé, l’écran est reconnu par Windows 10 même si l’écran est éteint
                +grâce au service manuel de l’écran fourni plus haut, j’ai vérifié les tensions jusque sur la carte de la dalle et elles sont correctes, ainsi que sur la carte elle-même, tout est ok, donc je pense que ce n’est plus un problème de condensateur
                +pour les fusibles, ils ressemblent plutôt à des composants qu’à de simple fusibles, mais comme j’ai les bonnes tension, je ne pense pas que ça vienne de là
                +j’ai bien peur que ce soit la dalle qui soit naze ? quelqu’un a t il des idées supplémentaires avant que je le jette avec grand regret (c’est un 2032bw, mais c’est la même chose, même si ma carte électronique est un peu différente car plus récente
                +merci d’avance pour vos conseils

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + yvan + · 24 novembre 2019 à 17 h 26 min +

                +

                finalement j’ai trouvé, c’est un petit fusible vert qui ressemble à une résistance mais tout vert avec écrit 4A LF qui assure l’alimentation de la dalle.
                +En le shuntant, mon écran a retrouvé l’image.
                +après enquête il s’agit d’un fusible pico de 4ampères de chez little fuse, pas du tout évident à trouver
                +Résolu !

                + +
                +
                + +
                +
                +

                + Reflow Dell 1546 | HugoPoi + · 22 août 2016 à 16 h 09 min +

                +

                […] « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable de marque Dell un 1546 pour être précis. Encore […]

                + +
                +
                + +
                +
                +

                + Reflow Dell Inspiron 1546 – HugoPoi + · 23 juin 2017 à 23 h 18 min +

                +

                […] d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un […]

                + +
                +
                + +
                +
                +
                +

                Répondre à yvan Annuler la réponse

                Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                +
                +
                +

                + +

                +
                +
                +
                +
                +
                +
                + +
                +
                +
                +
                +
                +
                + + +
                + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/3bac8a5d551a2a902caf257dc64fb72c77732495.00000113.html b/www/.content.EZtzwPjb/html/3bac8a5d551a2a902caf257dc64fb72c77732495.00000113.html new file mode 100644 index 0000000..7d3ae46 --- /dev/null +++ b/www/.content.EZtzwPjb/html/3bac8a5d551a2a902caf257dc64fb72c77732495.00000113.html @@ -0,0 +1,1370 @@ + + + + + + + + Réparations Samsung SyncMaster 2232BW – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                +
                +
                +
                + +
                +
                +
                +
                +
                +
                +

                Allô docteur on a un problème,

                +

                En ce dimanche calme avant la fin de mes partiels, mon écran Samsung SyncMaster 2232BW commençait à faire des siennes. Celui-ci depuis un mois ou deux clignotait de façon systématique au démarrage, au début pendant seulement quelques secondes, puis au fur et à mesure, de plus en plus jusqu’à devoir attendre 10 minutes pour que je puisse l’utiliser. Après 3 ans et 4 mois de bons et loyaux services, il voulait me quitter. J’ai tenté le support Samsung par email avec peu d’espoir car l’écran a dépassé sa garantie de 4 mois (oui oui les bâtards -> obsolescence programmée). Et donc j’ai eu le droit à un joli mail automatique me disant de contacter un numéro non surtaxé (mais avec combien de temps d’attente ?), ce que je n’ai pas fait car je n’avais pas envie de passer 30min au téléphone pour au final avoir un « On est désolé mais on ne peut rien faire pour vous car la garantie est dépassée, mais on peut envoyer votre écran en SAV pour faire un devis pour seulement 50 boules ». Concernant le support email de Samsung France, je leur donne une note de 0/20 puisque ce n’est pas un support mais une redirection vers le téléphone.

                +

                +

                Symptômes

                +

                Clignotements de l’écran et de la LED power systématiques à chaque démarrage de l’écran. Je me suis tout de suite douté d’un problème d’alimentation et après quelques recherches sur google, confirmation du problème sur beaucoup d’écrans et téléviseurs. Dans 99% des cas ce clignotement est dû à des condensateurs défectueux qu’il faut simplement changer :-D

                +

                Démontage

                +

                Donc après avoir cerné le problème, j’ai ouvert l’écran pour chercher les condos défectueux. J’ai trouvé une petite vidéo pour mon écran :

                +

                +

                Voici quelques photos en plus pour vous aider :

                +

                Les outils que j’ai utilisé pour le démontage

                +

                Position des clips

                +

                Carte d’alimentation dans son emplacement

                +

                Et voici les condensateurs qui posent problèmes. Comme vous pouvez le voir sur la photo, ils sont très facilement identifiable car ils sont bombés sur le dessus.

                +

                Condensateurs défectueux

                +

                Vous devez donc acheter des condensateurs de remplacement, par exemple sur Conrad.

                +

                Mes condensateurs suivant étaient endommagés:

                +
                  +
                • 1 de 330uF 25V remplacé par un 470uF 25V
                • +
                • 3 de 820uF 25V remplacé par des 1000uF 50V
                • +
                +

                Pour la réparation, il vous faut un fer à souder avec une panne pas trop grosse mais d’une grosse puissance car les soudures sont très solides (j’ai galéré avec un fer pro qui monte jusqu’à 400°).

                +

                Tout remarche nickel après remontage, plus de clignotement pour seulement quelques euros.

                +

                edit du 19 aout 2014 : j’ai trouvé le service manuel de l’écran si besoin samsung_2232bw_chassis_lpe22bs_sm

                + + +
                +
                + +
                +
                +
                +
                +
                +

                + 41 commentaires

                +
                + +
                +
                +
                +
                +

                + c'est_moi + · 30 janvier 2012 à 18 h 57 min +

                +

                Mille mercis et mille félicitations pour cette fiche technique si pédagogue.

                +

                J’espère que le partiels se passent plus que parfait !!

                +

                J’ai gardé l’url de la page pour réparer mon écran dans un petit mois : j’espère que la page soit toujours là ;-)

                +

                Merci encore.

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + Maxime + · 5 mai 2012 à 12 h 31 min +

                +

                Bonjour HugoPoi!

                +

                Merci pour toutes vos infos et votre topic, je voulais avoir quelques précisions sur les condos à changer pour samsung 2232bw, je veux passer commande mais j’ai un problème avec les dimensions des condos, si vous pouvez m’informer de ce que je pourrais acheter car il y a trop de références. En vous remerciant A+ Maxime

                + +
                +
                +
                  +
                  + +
                  +
                  +
                  +
                  +

                  + HugoPoi + · 14 juin 2012 à 22 h 56 min +

                  +

                  N’importe quel condensateur polarisé avec des caractéristiques proches devrait marché.

                  + +
                  +
                  + +
                + +
                + +
                +
                +
                +
                +

                + gaubjezj + · 14 juin 2012 à 22 h 32 min +

                +

                Merci pour le tuto qui m’a bien aidé.
                +J’ai utilisé un fer de 40 W avec une panne fine et
                +une pompe à dessouder et j’ai retiré les condensateurs sans problème.
                +Merci encore (3€40 pour le dépannage).

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + DragonTribal + · 2 juillet 2012 à 12 h 02 min +

                +

                super merci pour manifique tuto.
                +Est-il possible de changer les 5 condensateurs 820uF 25V par des 1000uF 50V? car moi mes 5 condensateurs sont presque HS ;-)

                +

                Cordialement

                + +
                +
                +
                  +
                  + +
                  +
                  +
                  +
                  +

                  + HugoPoi + · 2 juillet 2012 à 12 h 25 min +

                  +

                  Oui je penses que ça marchera étant donné que c’est des valeurs plus grandes.

                  + +
                  +
                  + +
                + +
                + +
                +
                +
                +
                +

                + FRED + · 11 juillet 2012 à 19 h 11 min +

                +

                Bravo, MERCI.
                +Je n’ai encore rien fait…mais j’ai le même problème, et tu me donnes la solution.
                +Super.

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + daninpet + · 31 août 2012 à 10 h 10 min +

                +

                Merci mille fois!

                +

                J’avais ce problème, et j’ai emmener la photo des trucs a remplacer chez le réparateur du coin et voila!! Ça m’a coûté 7 Euros (mais j’habite en Thaïlande)

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + moi + · 15 novembre 2012 à 15 h 25 min +

                +

                super mon 2232bw vient de lâcher, les 3 + 1 condos sont gonflés j ai trouvé un 330 en 35v qui traîné sur un écran mort et j’ai commander 5 1000uf 35v sur ebay pour moins de 3 dollars, ca devrait le faire j’espere j’attend d’être livré merci! par contre j’ai qu’un gros pistolet a soudure et un gros fil d’étain, c’est pas évident mais bon ca le fait quand même =)

                + +
                +
                +
                  +
                  + +
                  +
                  +
                  +
                  +

                  + moi + · 7 décembre 2012 à 9 h 33 min +

                  +

                  parfait je vient de recevoir les condos; j ai meuler la panne du fer a souder pour la tailler en mine de crayon et j ai reussi a les souder facilement ils étaient un peu plus gros mais ca passe tout juste, mais attention ne pas prendre des plus gros! l écran fonctionne nickel maintenant.

                  + +
                  +
                  + +
                + +
                + +
                +
                +
                +
                +

                + Croco + · 19 janvier 2013 à 18 h 39 min +

                +

                Je souhaiterai savoir si tu as utilisé un fer à souder bien précis étant donné que la carte est une multi couche.
                +Merci

                + +
                +
                + + +
                + +
                +
                +
                +
                +

                + momo + · 10 juin 2013 à 13 h 15 min +

                +

                slut je voudrai savoir ou trouvé les condansateur a changer sur mon ecran qui clignote

                + +
                +
                + + +
                + +
                +
                +
                +
                +

                + lokmane + · 5 juillet 2013 à 16 h 08 min +

                +

                merci j’avais un ecran rouge ! et c’etais la tresse qui relie mon ecran votre page m’a aider a l’ouvrir et a le reparer merci bien

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + ML + · 21 août 2013 à 19 h 11 min +

                +

                Merci ! Ecran réparé. Halte à l’obsolescence programmée.

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + raymond + · 31 octobre 2013 à 13 h 20 min +

                +

                ai vu votre vidéo et les explications pour la reparation de mon écran , apparemment le méme probléme l écran passe au noir apres quelque seconde , j ai vu un le condensateur en bas a gauche gonflé , je l ai fait changé (10€) les autre condensateur étant toujour bon d après la personne qui me l a changé , mais j ai toujour le méme probléme cela peut il venir de la carte video a gauche ?

                + +
                +
                +
                  +
                  + +
                  +
                  +
                  +
                  +

                  + HugoPoi + · 20 décembre 2013 à 12 h 27 min +

                  +

                  Si la led bleu du bouton power s’éteint aussi c’est un problème d’alimentation sinon c’est plus compliqué et ça peut provenir de condensateurs sur la partie vidéo. Changé tous les plus gros condensateurs sur la partie alimentation pourrait être un bon début même si ils ne paraissent pas endommagé.

                  + +
                  +
                  + +
                + +
                + +
                +
                +
                +
                +

                + damien + · 4 novembre 2013 à 0 h 29 min +

                +

                bonjour,

                +

                j’ai des crasses coincées entres l’écran et le truc juste derrière, est ce qu’on sais les enlever en démontant la dalle ?

                + +
                +
                +
                  +
                  + +
                  +
                  +
                  +
                  +

                  + HugoPoi + · 20 décembre 2013 à 12 h 28 min +

                  +

                  Je ne sais si cette partie de la dalle est démontable, je penses que c’est collé mais vous pouvez essayer.

                  + +
                  +
                  + +
                + +
                + +
                +
                +
                +
                +

                + mac + · 1 décembre 2013 à 17 h 30 min +

                +

                Merci HugoPoi, avec ces excellents conseils et tuto vidéo, mon écran est reparti pour une nouvelle vie.
                +Pour les composants, si vous êtes sur Paris ou proche. La boutique RAM électroniques est une bonne adresse, 138 bd Diderot 75012 Paris (Place de la Nation).

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + Bouddhid + · 16 janvier 2014 à 19 h 21 min +

                +

                Merci beaucoup pour ces conseils ! J’étais à 2 doigts de jeter mon écran, le voilà comme neuf pour moins de 5€ ! Vive la bricole !

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + Vincent + · 17 mai 2014 à 16 h 45 min +

                +

                Alors là merci.

                +

                Pour ce post, les photos, la vidéo, tout y est.

                +

                J’ai démonté l’écran assez vite, enlevé la carte, regarder quel condensateurs étaient gonflés,(il y en avaient 4), un magasin d’électronique sur lyon et une heure de démontage, soudure, remontage plus tard, voilà, c’est tout beau.
                +Ca ne clignote plus, ça s’allume comme avant, comme neuf.

                +

                Et dire que j’allais jeter cet écran et claquer 350 euros pour un neuf…

                +

                Coût de l’opération pour 4 condensateurs, du fil d’étain 7 euros.

                +

                Je précise que je n’avais jamais fais de soudure sur composant électronique auparavant.
                +Comme quoi cette opération de réparation est à la portée de tous.

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + Julot + · 6 juillet 2014 à 13 h 49 min +

                +

                Site vraiment détaillé et très claire. J’ai pu dépanner mon écran avec succès. Merci beaucoup pour ces précieuses explications.

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + PaniK31 + · 29 juillet 2014 à 9 h 21 min +

                +

                Pas besoin d’une grosse puissance pour le fer, il faut au préalable gratter le vernis sur l’étain afin de pouvoir le faire fondre plus facilement

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + R211_IP-45130B + · 20 août 2014 à 14 h 04 min +

                +

                Bonjour à tous,

                +

                Une âme charitable peut-elle me communiquer ce qui est gravé sur la résistance CMS R211 de la carte d’alimentation/inverter IP-45130B qui équipe le SAMSUNG 2232BW ? Cette résistance a pris un coup de tournevis et je n’arrive pas à déterminer sa valeur de résistance car son marquage est effacé et comme le composant est abimé la mesure à l’ohmmètre indique l’infinie.

                +

                Merci par avance.

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + roger + · 24 octobre 2014 à 17 h 21 min +

                +

                Ca refonctionne après échange de 4 condensateurs :
                +-un 330uf25v remplacé à l’identique.
                +-trois 820uf25v remplacés par 1000uf25v.
                +Le tout pour quelques €. Le plus dur était le dessoudage, la tresse n’était pas très efficace contrairement à la pompe.
                +Grand merci à HugoPoi.

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + Max + · 26 février 2015 à 16 h 28 min +

                +

                ENORME MERCI!! J’ai réparé mon écran en 20mn pour 3,50€, il était à 2 doigts de partir à la déchetterie. Ca faisait des mois qu’il clignotait, et l’allumage mettait parfois plus d’une demi heure. J’ai changé 5 condos 820uf25v et 1 330uf25v, par exactement les mêmes en neuf, et là il démarre au quart de tour! Ca fait plaisir! :)

                + +
                +
                +
                  +
                  + +
                  +
                  +
                  +
                  +

                  + rocco michelle + · 7 octobre 2015 à 10 h 16 min +

                  +

                  Bonjour je ne sais si vous verrez mon message mais je tente…je cherche quelqu’un qui accepterait de changer mes condensateurs sur mon samsung, les réparateurs me demandent 70 à 80 euros et encore ils n’ont pss envie de le faire et me disent d’acheter un nouvel écran. j’aurais bien tenter mais je n’ai pas de matériel et j’ai lu que les condo pouvaient être très dangereux s’ils avaient de la charge alors j’ai la trouille de bidouiller pq je n’y connais rien. si vous êtes de lyon acccepteriez vous de changer mes condensateurs pour 45 euros? merci de votre réponse.

                  + +
                  +
                  + +
                + +
                + +
                +
                +
                +
                +

                + lecakeseb + · 27 juillet 2015 à 15 h 26 min +

                +

                Bonjour,

                +

                J’ai utilisé la vidéo pour démonter mon écran afin de le nettoyer de 4 bêtes d’orage infiltrés entre le premier écran (noir) et la dalle (blanche) de mon samsung SyncMaster 2232W

                +

                Petits conseils afin de modérer ce que j’ai pu voir dans cette vidéo :

                +

                0 : aspirez, nettoyez l’extérieur de l’écran avant de l’ouvrir et nettoyez la table qui vous servira d’atelier, pour éviter les poussières qui s’infiltreront forcément plus tard si vous ne le faites pas…
                +1 : pour ouvrir, utilisez plutôt un couteau à enduire pour la première partie (le cadre). Vous n’abîmerez ainsi pas du tout l’écran. Soyez patients, ne forcez pas ! ça viendra doucement, mais ça viendra. Il m’a fallu à peine 10 minutes, sans détériorer l’écran, sans le griffer… Il est encore nickel !
                +2 : attention à ne pas déconnecter les fils reliant le cadre à la carte. Inutile pour simplement nettoyer l’écran.
                +3 : pour séparer les deux éléments de la dalle entre lesquels les bêtes se sont infiltrées, les doigts suffisent, pas besoin d’outils qui viendraient les endommager. La dalle blanche reste à l’horizontale, l’écran noir sera tenu à la verticale.
                +4 : utiliser un chiffon doux ne peluchant pas pour enlever les bêtes (faites-vous aider de quelqu’un qui les enlèvera pendant que vous tenez l’écran extérieur en position verticale).
                +5 : repositionnez la colle d’étanchéité qui aurait pu se déplacer, avant de repositionner les deux écrans.
                +6 : commencer par refermer par le bas de l’écran (sinon les éléments de réglage situés au bas de l’écran – luminosité, contraste,…- ne se replaceront pas correctement).
                +7 : Une fois l’écran refermé, j’ai appliqué un peu de « barrage aux insectes », avec un chiffon à l’arrière de mon écran en insistant surtout sur les bouches d’aération par lesquelles les maudites bestioles ont du s’infiltrer. En espérant ne pas avoir à ouvrir !

                +

                Bon courage à vous !

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + Michel Jousserandot + · 20 janvier 2017 à 20 h 41 min +

                +

                Merci pour les conseils au démontage.
                +J’avais un problème un peu différent :l’écran ne s’allumait plus du tout. Avec un copain beaucoup plus malin que moi, on a détecté 2 fusibles dont l’un était fichu. On l’a remplacé par un petit fil de cuivre. Et tout a remarché comme avant.
                +Il faut surtout faire attention quand on teste la partie haute tension
                +Michel.

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + Crec + · 14 juillet 2017 à 10 h 20 min +

                +

                Bonjour. Très bons conseils avertis. Merci beaucoup.
                +Peut-on avoir les mêmes conseils pour un écran BX2250.
                +Merci par avance.
                +Crec

                + +
                +
                +
                  +
                  + +
                  +
                  +
                  +
                  +

                  + HugoPoi + · 6 août 2017 à 14 h 03 min +

                  +

                  J’ai pas de BX2250 donc dans le détails non mais si c’est les même symptômes ça doit la même procédure.

                  + +
                  +
                  + +
                + +
                + +
                +
                +
                +
                +

                + Ferronnier + · 10 août 2017 à 17 h 42 min +

                +

                Un grand merci !
                +J’ai changé tous les condensateurs de la partie alimentation de la carte, en déportant certains qui n’avaient pas le même format qu’à l’origine, et ça tourne nickel !

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + Nours + · 1 décembre 2017 à 15 h 17 min +

                +

                Ca fait des années que j’ai cet article enregistré dans un coin, en nourrissant l’espoir d’avoir un jour le courage de réparer ce foutu écran… Après plus de cinq ans c’est chose faite \o/
                +Un giga, hypra, immense merci pour ce tutoriel tellement bien expliqué et facile d’accès (je n’avais pas touché à un fer à souder depuis… Oh boy 15 ans déjà).
                +Après une longue pause, l’écran reprend du service… Jusqu’à la prochaine panne /o/

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + Alex + · 11 août 2018 à 13 h 28 min +

                +

                Quelqu’un sait qui pourrait me le faire svp j ai le même problème mais aucun matériel

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + David + · 5 février 2019 à 21 h 06 min +

                +

                Merci Hugo pour ce tuto qui m’a déjà servi en 2013 et qui va me resservir aujourd’hui car mon 2ème 2232bw commence à avoir les mêmes symptômes.

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + yvan + · 23 novembre 2019 à 17 h 14 min +

                +

                Bonjour
                +j’ai tenté de changer le condensateur qui avait l’air naze mais ça n’a pas marché … toujours le bouton bleu allumé, l’écran est reconnu par Windows 10 même si l’écran est éteint
                +grâce au service manuel de l’écran fourni plus haut, j’ai vérifié les tensions jusque sur la carte de la dalle et elles sont correctes, ainsi que sur la carte elle-même, tout est ok, donc je pense que ce n’est plus un problème de condensateur
                +pour les fusibles, ils ressemblent plutôt à des composants qu’à de simple fusibles, mais comme j’ai les bonnes tension, je ne pense pas que ça vienne de là
                +j’ai bien peur que ce soit la dalle qui soit naze ? quelqu’un a t il des idées supplémentaires avant que je le jette avec grand regret (c’est un 2032bw, mais c’est la même chose, même si ma carte électronique est un peu différente car plus récente
                +merci d’avance pour vos conseils

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + yvan + · 24 novembre 2019 à 17 h 26 min +

                +

                finalement j’ai trouvé, c’est un petit fusible vert qui ressemble à une résistance mais tout vert avec écrit 4A LF qui assure l’alimentation de la dalle.
                +En le shuntant, mon écran a retrouvé l’image.
                +après enquête il s’agit d’un fusible pico de 4ampères de chez little fuse, pas du tout évident à trouver
                +Résolu !

                + +
                +
                + +
                +
                +

                + Reflow Dell 1546 | HugoPoi + · 22 août 2016 à 16 h 09 min +

                +

                […] « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable de marque Dell un 1546 pour être précis. Encore […]

                + +
                +
                + +
                +
                +

                + Reflow Dell Inspiron 1546 – HugoPoi + · 23 juin 2017 à 23 h 18 min +

                +

                […] d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un […]

                + +
                +
                + +
                +
                +
                +

                Répondre à HugoPoi Annuler la réponse

                Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                +
                +
                +

                + +

                +
                +
                +
                +
                +
                +
                + +
                +
                +
                +
                +
                +
                + + +
                + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/3bc686864c2d50f14dede4a4299d853e7e83e8d3.00000582.js b/www/.content.EZtzwPjb/html/3bc686864c2d50f14dede4a4299d853e7e83e8d3.00000582.js new file mode 100644 index 0000000..f494f72 --- /dev/null +++ b/www/.content.EZtzwPjb/html/3bc686864c2d50f14dede4a4299d853e7e83e8d3.00000582.js @@ -0,0 +1,7 @@ +/* +* jQuery Form Plugin; v20130813 +* http://jquery.malsup.com/form/ +* Copyright (c) 2013 M. Alsup; Dual licensed: MIT/GPL +* https://github.com/malsup/form#copyright-and-license +*/ +;(function(e){"use strict";function t(t){var r=t.data;t.isDefaultPrevented()||(t.preventDefault(),e(this).ajaxSubmit(r))}function r(t){var r=t.target,a=e(r);if(!a.is("[type=submit],[type=image]")){var n=a.closest("[type=submit]");if(0===n.length)return;r=n[0]}var i=this;if(i.clk=r,"image"==r.type)if(void 0!==t.offsetX)i.clk_x=t.offsetX,i.clk_y=t.offsetY;else if("function"==typeof e.fn.offset){var o=a.offset();i.clk_x=t.pageX-o.left,i.clk_y=t.pageY-o.top}else i.clk_x=t.pageX-r.offsetLeft,i.clk_y=t.pageY-r.offsetTop;setTimeout(function(){i.clk=i.clk_x=i.clk_y=null},100)}function a(){if(e.fn.ajaxSubmit.debug){var t="[jquery.form] "+Array.prototype.join.call(arguments,"");window.console&&window.console.log?window.console.log(t):window.opera&&window.opera.postError&&window.opera.postError(t)}}var n={};n.fileapi=void 0!==e("").get(0).files,n.formdata=void 0!==window.FormData;var i=!!e.fn.prop;e.fn.attr2=function(){if(!i)return this.attr.apply(this,arguments);var e=this.prop.apply(this,arguments);return e&&e.jquery||"string"==typeof e?e:this.attr.apply(this,arguments)},e.fn.ajaxSubmit=function(t){function r(r){var a,n,i=e.param(r,t.traditional).split("&"),o=i.length,s=[];for(a=0;o>a;a++)i[a]=i[a].replace(/\+/g," "),n=i[a].split("="),s.push([decodeURIComponent(n[0]),decodeURIComponent(n[1])]);return s}function o(a){for(var n=new FormData,i=0;a.length>i;i++)n.append(a[i].name,a[i].value);if(t.extraData){var o=r(t.extraData);for(i=0;o.length>i;i++)o[i]&&n.append(o[i][0],o[i][1])}t.data=null;var s=e.extend(!0,{},e.ajaxSettings,t,{contentType:!1,processData:!1,cache:!1,type:u||"POST"});t.uploadProgress&&(s.xhr=function(){var r=e.ajaxSettings.xhr();return r.upload&&r.upload.addEventListener("progress",function(e){var r=0,a=e.loaded||e.position,n=e.total;e.lengthComputable&&(r=Math.ceil(100*(a/n))),t.uploadProgress(e,a,n,r)},!1),r}),s.data=null;var l=s.beforeSend;return s.beforeSend=function(e,t){t.data=n,l&&l.call(this,e,t)},e.ajax(s)}function s(r){function n(e){var t=null;try{e.contentWindow&&(t=e.contentWindow.document)}catch(r){a("cannot get iframe.contentWindow document: "+r)}if(t)return t;try{t=e.contentDocument?e.contentDocument:e.document}catch(r){a("cannot get iframe.contentDocument: "+r),t=e.document}return t}function o(){function t(){try{var e=n(g).readyState;a("state = "+e),e&&"uninitialized"==e.toLowerCase()&&setTimeout(t,50)}catch(r){a("Server abort: ",r," (",r.name,")"),s(D),j&&clearTimeout(j),j=void 0}}var r=f.attr2("target"),i=f.attr2("action");w.setAttribute("target",d),u||w.setAttribute("method","POST"),i!=m.url&&w.setAttribute("action",m.url),m.skipEncodingOverride||u&&!/post/i.test(u)||f.attr({encoding:"multipart/form-data",enctype:"multipart/form-data"}),m.timeout&&(j=setTimeout(function(){T=!0,s(k)},m.timeout));var o=[];try{if(m.extraData)for(var l in m.extraData)m.extraData.hasOwnProperty(l)&&(e.isPlainObject(m.extraData[l])&&m.extraData[l].hasOwnProperty("name")&&m.extraData[l].hasOwnProperty("value")?o.push(e('').val(m.extraData[l].value).appendTo(w)[0]):o.push(e('').val(m.extraData[l]).appendTo(w)[0]));m.iframeTarget||(v.appendTo("body"),g.attachEvent?g.attachEvent("onload",s):g.addEventListener("load",s,!1)),setTimeout(t,15);try{w.submit()}catch(c){var p=document.createElement("form").submit;p.apply(w)}}finally{w.setAttribute("action",i),r?w.setAttribute("target",r):f.removeAttr("target"),e(o).remove()}}function s(t){if(!x.aborted&&!F){if(M=n(g),M||(a("cannot access response document"),t=D),t===k&&x)return x.abort("timeout"),S.reject(x,"timeout"),void 0;if(t==D&&x)return x.abort("server abort"),S.reject(x,"error","server abort"),void 0;if(M&&M.location.href!=m.iframeSrc||T){g.detachEvent?g.detachEvent("onload",s):g.removeEventListener("load",s,!1);var r,i="success";try{if(T)throw"timeout";var o="xml"==m.dataType||M.XMLDocument||e.isXMLDoc(M);if(a("isXml="+o),!o&&window.opera&&(null===M.body||!M.body.innerHTML)&&--O)return a("requeing onLoad callback, DOM not available"),setTimeout(s,250),void 0;var u=M.body?M.body:M.documentElement;x.responseText=u?u.innerHTML:null,x.responseXML=M.XMLDocument?M.XMLDocument:M,o&&(m.dataType="xml"),x.getResponseHeader=function(e){var t={"content-type":m.dataType};return t[e.toLowerCase()]},u&&(x.status=Number(u.getAttribute("status"))||x.status,x.statusText=u.getAttribute("statusText")||x.statusText);var l=(m.dataType||"").toLowerCase(),c=/(json|script|text)/.test(l);if(c||m.textarea){var f=M.getElementsByTagName("textarea")[0];if(f)x.responseText=f.value,x.status=Number(f.getAttribute("status"))||x.status,x.statusText=f.getAttribute("statusText")||x.statusText;else if(c){var d=M.getElementsByTagName("pre")[0],h=M.getElementsByTagName("body")[0];d?x.responseText=d.textContent?d.textContent:d.innerText:h&&(x.responseText=h.textContent?h.textContent:h.innerText)}}else"xml"==l&&!x.responseXML&&x.responseText&&(x.responseXML=X(x.responseText));try{E=_(x,l,m)}catch(b){i="parsererror",x.error=r=b||i}}catch(b){a("error caught: ",b),i="error",x.error=r=b||i}x.aborted&&(a("upload aborted"),i=null),x.status&&(i=x.status>=200&&300>x.status||304===x.status?"success":"error"),"success"===i?(m.success&&m.success.call(m.context,E,"success",x),S.resolve(x.responseText,"success",x),p&&e.event.trigger("ajaxSuccess",[x,m])):i&&(void 0===r&&(r=x.statusText),m.error&&m.error.call(m.context,x,i,r),S.reject(x,"error",r),p&&e.event.trigger("ajaxError",[x,m,r])),p&&e.event.trigger("ajaxComplete",[x,m]),p&&!--e.active&&e.event.trigger("ajaxStop"),m.complete&&m.complete.call(m.context,x,i),F=!0,m.timeout&&clearTimeout(j),setTimeout(function(){m.iframeTarget||v.remove(),x.responseXML=null},100)}}}var l,c,m,p,d,v,g,x,b,y,T,j,w=f[0],S=e.Deferred();if(S.abort=function(e){x.abort(e)},r)for(c=0;h.length>c;c++)l=e(h[c]),i?l.prop("disabled",!1):l.removeAttr("disabled");if(m=e.extend(!0,{},e.ajaxSettings,t),m.context=m.context||m,d="jqFormIO"+(new Date).getTime(),m.iframeTarget?(v=e(m.iframeTarget),y=v.attr2("name"),y?d=y:v.attr2("name",d)):(v=e('

                +

                Symptômes

                +

                Clignotements de l’écran et de la LED power systématiques à chaque démarrage de l’écran. Je me suis tout de suite douté d’un problème d’alimentation et après quelques recherches sur google, confirmation du problème sur beaucoup d’écrans et téléviseurs. Dans 99% des cas ce clignotement est dû à des condensateurs défectueux qu’il faut simplement changer :-D

                +

                Démontage

                +

                Donc après avoir cerné le problème, j’ai ouvert l’écran pour chercher les condos défectueux. J’ai trouvé une petite vidéo pour mon écran :

                +

                +

                Voici quelques photos en plus pour vous aider :

                +

                Les outils que j’ai utilisé pour le démontage

                +

                Position des clips

                +

                Carte d’alimentation dans son emplacement

                +

                Et voici les condensateurs qui posent problèmes. Comme vous pouvez le voir sur la photo, ils sont très facilement identifiable car ils sont bombés sur le dessus.

                +

                Condensateurs défectueux

                +

                Vous devez donc acheter des condensateurs de remplacement, par exemple sur Conrad.

                +

                Mes condensateurs suivant étaient endommagés:

                +
                  +
                • 1 de 330uF 25V remplacé par un 470uF 25V
                • +
                • 3 de 820uF 25V remplacé par des 1000uF 50V
                • +
                +

                Pour la réparation, il vous faut un fer à souder avec une panne pas trop grosse mais d’une grosse puissance car les soudures sont très solides (j’ai galéré avec un fer pro qui monte jusqu’à 400°).

                +

                Tout remarche nickel après remontage, plus de clignotement pour seulement quelques euros.

                +

                edit du 19 aout 2014 : j’ai trouvé le service manuel de l’écran si besoin samsung_2232bw_chassis_lpe22bs_sm

                + + + +
                + +
                +
                +
                +
                +
                +

                + 41 commentaires

                +
                + +
                +
                +
                +
                +

                + c'est_moi + · 30 janvier 2012 à 18 h 57 min +

                +

                Mille mercis et mille félicitations pour cette fiche technique si pédagogue.

                +

                J’espère que le partiels se passent plus que parfait !!

                +

                J’ai gardé l’url de la page pour réparer mon écran dans un petit mois : j’espère que la page soit toujours là ;-)

                +

                Merci encore.

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + Maxime + · 5 mai 2012 à 12 h 31 min +

                +

                Bonjour HugoPoi!

                +

                Merci pour toutes vos infos et votre topic, je voulais avoir quelques précisions sur les condos à changer pour samsung 2232bw, je veux passer commande mais j’ai un problème avec les dimensions des condos, si vous pouvez m’informer de ce que je pourrais acheter car il y a trop de références. En vous remerciant A+ Maxime

                + +
                +
                +
                  +
                  + +
                  +
                  +
                  +
                  +

                  + HugoPoi + · 14 juin 2012 à 22 h 56 min +

                  +

                  N’importe quel condensateur polarisé avec des caractéristiques proches devrait marché.

                  + +
                  +
                  + +
                + +
                + +
                +
                +
                +
                +

                + gaubjezj + · 14 juin 2012 à 22 h 32 min +

                +

                Merci pour le tuto qui m’a bien aidé.
                +J’ai utilisé un fer de 40 W avec une panne fine et
                +une pompe à dessouder et j’ai retiré les condensateurs sans problème.
                +Merci encore (3€40 pour le dépannage).

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + DragonTribal + · 2 juillet 2012 à 12 h 02 min +

                +

                super merci pour manifique tuto.
                +Est-il possible de changer les 5 condensateurs 820uF 25V par des 1000uF 50V? car moi mes 5 condensateurs sont presque HS ;-)

                +

                Cordialement

                + +
                +
                +
                  +
                  + +
                  +
                  +
                  +
                  +

                  + HugoPoi + · 2 juillet 2012 à 12 h 25 min +

                  +

                  Oui je penses que ça marchera étant donné que c’est des valeurs plus grandes.

                  + +
                  +
                  + +
                + +
                + +
                +
                +
                +
                +

                + FRED + · 11 juillet 2012 à 19 h 11 min +

                +

                Bravo, MERCI.
                +Je n’ai encore rien fait…mais j’ai le même problème, et tu me donnes la solution.
                +Super.

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + daninpet + · 31 août 2012 à 10 h 10 min +

                +

                Merci mille fois!

                +

                J’avais ce problème, et j’ai emmener la photo des trucs a remplacer chez le réparateur du coin et voila!! Ça m’a coûté 7 Euros (mais j’habite en Thaïlande)

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + moi + · 15 novembre 2012 à 15 h 25 min +

                +

                super mon 2232bw vient de lâcher, les 3 + 1 condos sont gonflés j ai trouvé un 330 en 35v qui traîné sur un écran mort et j’ai commander 5 1000uf 35v sur ebay pour moins de 3 dollars, ca devrait le faire j’espere j’attend d’être livré merci! par contre j’ai qu’un gros pistolet a soudure et un gros fil d’étain, c’est pas évident mais bon ca le fait quand même =)

                + +
                +
                +
                  +
                  + +
                  +
                  +
                  +
                  +

                  + moi + · 7 décembre 2012 à 9 h 33 min +

                  +

                  parfait je vient de recevoir les condos; j ai meuler la panne du fer a souder pour la tailler en mine de crayon et j ai reussi a les souder facilement ils étaient un peu plus gros mais ca passe tout juste, mais attention ne pas prendre des plus gros! l écran fonctionne nickel maintenant.

                  + +
                  +
                  + +
                + +
                + +
                +
                +
                +
                +

                + Croco + · 19 janvier 2013 à 18 h 39 min +

                +

                Je souhaiterai savoir si tu as utilisé un fer à souder bien précis étant donné que la carte est une multi couche.
                +Merci

                + +
                +
                + + +
                + +
                +
                +
                +
                +

                + momo + · 10 juin 2013 à 13 h 15 min +

                +

                slut je voudrai savoir ou trouvé les condansateur a changer sur mon ecran qui clignote

                + +
                +
                + + +
                + +
                +
                +
                +
                +

                + lokmane + · 5 juillet 2013 à 16 h 08 min +

                +

                merci j’avais un ecran rouge ! et c’etais la tresse qui relie mon ecran votre page m’a aider a l’ouvrir et a le reparer merci bien

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + ML + · 21 août 2013 à 19 h 11 min +

                +

                Merci ! Ecran réparé. Halte à l’obsolescence programmée.

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + raymond + · 31 octobre 2013 à 13 h 20 min +

                +

                ai vu votre vidéo et les explications pour la reparation de mon écran , apparemment le méme probléme l écran passe au noir apres quelque seconde , j ai vu un le condensateur en bas a gauche gonflé , je l ai fait changé (10€) les autre condensateur étant toujour bon d après la personne qui me l a changé , mais j ai toujour le méme probléme cela peut il venir de la carte video a gauche ?

                + +
                +
                +
                  +
                  + +
                  +
                  +
                  +
                  +

                  + HugoPoi + · 20 décembre 2013 à 12 h 27 min +

                  +

                  Si la led bleu du bouton power s’éteint aussi c’est un problème d’alimentation sinon c’est plus compliqué et ça peut provenir de condensateurs sur la partie vidéo. Changé tous les plus gros condensateurs sur la partie alimentation pourrait être un bon début même si ils ne paraissent pas endommagé.

                  + +
                  +
                  + +
                + +
                + +
                +
                +
                +
                +

                + damien + · 4 novembre 2013 à 0 h 29 min +

                +

                bonjour,

                +

                j’ai des crasses coincées entres l’écran et le truc juste derrière, est ce qu’on sais les enlever en démontant la dalle ?

                + +
                +
                +
                  +
                  + +
                  +
                  +
                  +
                  +

                  + HugoPoi + · 20 décembre 2013 à 12 h 28 min +

                  +

                  Je ne sais si cette partie de la dalle est démontable, je penses que c’est collé mais vous pouvez essayer.

                  + +
                  +
                  + +
                + +
                + +
                +
                +
                +
                +

                + mac + · 1 décembre 2013 à 17 h 30 min +

                +

                Merci HugoPoi, avec ces excellents conseils et tuto vidéo, mon écran est reparti pour une nouvelle vie.
                +Pour les composants, si vous êtes sur Paris ou proche. La boutique RAM électroniques est une bonne adresse, 138 bd Diderot 75012 Paris (Place de la Nation).

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + Bouddhid + · 16 janvier 2014 à 19 h 21 min +

                +

                Merci beaucoup pour ces conseils ! J’étais à 2 doigts de jeter mon écran, le voilà comme neuf pour moins de 5€ ! Vive la bricole !

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + Vincent + · 17 mai 2014 à 16 h 45 min +

                +

                Alors là merci.

                +

                Pour ce post, les photos, la vidéo, tout y est.

                +

                J’ai démonté l’écran assez vite, enlevé la carte, regarder quel condensateurs étaient gonflés,(il y en avaient 4), un magasin d’électronique sur lyon et une heure de démontage, soudure, remontage plus tard, voilà, c’est tout beau.
                +Ca ne clignote plus, ça s’allume comme avant, comme neuf.

                +

                Et dire que j’allais jeter cet écran et claquer 350 euros pour un neuf…

                +

                Coût de l’opération pour 4 condensateurs, du fil d’étain 7 euros.

                +

                Je précise que je n’avais jamais fais de soudure sur composant électronique auparavant.
                +Comme quoi cette opération de réparation est à la portée de tous.

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + Julot + · 6 juillet 2014 à 13 h 49 min +

                +

                Site vraiment détaillé et très claire. J’ai pu dépanner mon écran avec succès. Merci beaucoup pour ces précieuses explications.

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + PaniK31 + · 29 juillet 2014 à 9 h 21 min +

                +

                Pas besoin d’une grosse puissance pour le fer, il faut au préalable gratter le vernis sur l’étain afin de pouvoir le faire fondre plus facilement

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + R211_IP-45130B + · 20 août 2014 à 14 h 04 min +

                +

                Bonjour à tous,

                +

                Une âme charitable peut-elle me communiquer ce qui est gravé sur la résistance CMS R211 de la carte d’alimentation/inverter IP-45130B qui équipe le SAMSUNG 2232BW ? Cette résistance a pris un coup de tournevis et je n’arrive pas à déterminer sa valeur de résistance car son marquage est effacé et comme le composant est abimé la mesure à l’ohmmètre indique l’infinie.

                +

                Merci par avance.

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + roger + · 24 octobre 2014 à 17 h 21 min +

                +

                Ca refonctionne après échange de 4 condensateurs :
                +-un 330uf25v remplacé à l’identique.
                +-trois 820uf25v remplacés par 1000uf25v.
                +Le tout pour quelques €. Le plus dur était le dessoudage, la tresse n’était pas très efficace contrairement à la pompe.
                +Grand merci à HugoPoi.

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + Max + · 26 février 2015 à 16 h 28 min +

                +

                ENORME MERCI!! J’ai réparé mon écran en 20mn pour 3,50€, il était à 2 doigts de partir à la déchetterie. Ca faisait des mois qu’il clignotait, et l’allumage mettait parfois plus d’une demi heure. J’ai changé 5 condos 820uf25v et 1 330uf25v, par exactement les mêmes en neuf, et là il démarre au quart de tour! Ca fait plaisir! :)

                + +
                +
                +
                  +
                  + +
                  +
                  +
                  +
                  +

                  + rocco michelle + · 7 octobre 2015 à 10 h 16 min +

                  +

                  Bonjour je ne sais si vous verrez mon message mais je tente…je cherche quelqu’un qui accepterait de changer mes condensateurs sur mon samsung, les réparateurs me demandent 70 à 80 euros et encore ils n’ont pss envie de le faire et me disent d’acheter un nouvel écran. j’aurais bien tenter mais je n’ai pas de matériel et j’ai lu que les condo pouvaient être très dangereux s’ils avaient de la charge alors j’ai la trouille de bidouiller pq je n’y connais rien. si vous êtes de lyon acccepteriez vous de changer mes condensateurs pour 45 euros? merci de votre réponse.

                  + +
                  +
                  + +
                + +
                + +
                +
                +
                +
                +

                + lecakeseb + · 27 juillet 2015 à 15 h 26 min +

                +

                Bonjour,

                +

                J’ai utilisé la vidéo pour démonter mon écran afin de le nettoyer de 4 bêtes d’orage infiltrés entre le premier écran (noir) et la dalle (blanche) de mon samsung SyncMaster 2232W

                +

                Petits conseils afin de modérer ce que j’ai pu voir dans cette vidéo :

                +

                0 : aspirez, nettoyez l’extérieur de l’écran avant de l’ouvrir et nettoyez la table qui vous servira d’atelier, pour éviter les poussières qui s’infiltreront forcément plus tard si vous ne le faites pas…
                +1 : pour ouvrir, utilisez plutôt un couteau à enduire pour la première partie (le cadre). Vous n’abîmerez ainsi pas du tout l’écran. Soyez patients, ne forcez pas ! ça viendra doucement, mais ça viendra. Il m’a fallu à peine 10 minutes, sans détériorer l’écran, sans le griffer… Il est encore nickel !
                +2 : attention à ne pas déconnecter les fils reliant le cadre à la carte. Inutile pour simplement nettoyer l’écran.
                +3 : pour séparer les deux éléments de la dalle entre lesquels les bêtes se sont infiltrées, les doigts suffisent, pas besoin d’outils qui viendraient les endommager. La dalle blanche reste à l’horizontale, l’écran noir sera tenu à la verticale.
                +4 : utiliser un chiffon doux ne peluchant pas pour enlever les bêtes (faites-vous aider de quelqu’un qui les enlèvera pendant que vous tenez l’écran extérieur en position verticale).
                +5 : repositionnez la colle d’étanchéité qui aurait pu se déplacer, avant de repositionner les deux écrans.
                +6 : commencer par refermer par le bas de l’écran (sinon les éléments de réglage situés au bas de l’écran – luminosité, contraste,…- ne se replaceront pas correctement).
                +7 : Une fois l’écran refermé, j’ai appliqué un peu de « barrage aux insectes », avec un chiffon à l’arrière de mon écran en insistant surtout sur les bouches d’aération par lesquelles les maudites bestioles ont du s’infiltrer. En espérant ne pas avoir à ouvrir !

                +

                Bon courage à vous !

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + Michel Jousserandot + · 20 janvier 2017 à 20 h 41 min +

                +

                Merci pour les conseils au démontage.
                +J’avais un problème un peu différent :l’écran ne s’allumait plus du tout. Avec un copain beaucoup plus malin que moi, on a détecté 2 fusibles dont l’un était fichu. On l’a remplacé par un petit fil de cuivre. Et tout a remarché comme avant.
                +Il faut surtout faire attention quand on teste la partie haute tension
                +Michel.

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + Crec + · 14 juillet 2017 à 10 h 20 min +

                +

                Bonjour. Très bons conseils avertis. Merci beaucoup.
                +Peut-on avoir les mêmes conseils pour un écran BX2250.
                +Merci par avance.
                +Crec

                + +
                +
                +
                  +
                  + +
                  +
                  +
                  +
                  +

                  + HugoPoi + · 6 août 2017 à 14 h 03 min +

                  +

                  J’ai pas de BX2250 donc dans le détails non mais si c’est les même symptômes ça doit la même procédure.

                  + +
                  +
                  + +
                + +
                + +
                +
                +
                +
                +

                + Ferronnier + · 10 août 2017 à 17 h 42 min +

                +

                Un grand merci !
                +J’ai changé tous les condensateurs de la partie alimentation de la carte, en déportant certains qui n’avaient pas le même format qu’à l’origine, et ça tourne nickel !

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + Nours + · 1 décembre 2017 à 15 h 17 min +

                +

                Ca fait des années que j’ai cet article enregistré dans un coin, en nourrissant l’espoir d’avoir un jour le courage de réparer ce foutu écran… Après plus de cinq ans c’est chose faite \o/
                +Un giga, hypra, immense merci pour ce tutoriel tellement bien expliqué et facile d’accès (je n’avais pas touché à un fer à souder depuis… Oh boy 15 ans déjà).
                +Après une longue pause, l’écran reprend du service… Jusqu’à la prochaine panne /o/

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + Alex + · 11 août 2018 à 13 h 28 min +

                +

                Quelqu’un sait qui pourrait me le faire svp j ai le même problème mais aucun matériel

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + David + · 5 février 2019 à 21 h 06 min +

                +

                Merci Hugo pour ce tuto qui m’a déjà servi en 2013 et qui va me resservir aujourd’hui car mon 2ème 2232bw commence à avoir les mêmes symptômes.

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + yvan + · 23 novembre 2019 à 17 h 14 min +

                +

                Bonjour
                +j’ai tenté de changer le condensateur qui avait l’air naze mais ça n’a pas marché … toujours le bouton bleu allumé, l’écran est reconnu par Windows 10 même si l’écran est éteint
                +grâce au service manuel de l’écran fourni plus haut, j’ai vérifié les tensions jusque sur la carte de la dalle et elles sont correctes, ainsi que sur la carte elle-même, tout est ok, donc je pense que ce n’est plus un problème de condensateur
                +pour les fusibles, ils ressemblent plutôt à des composants qu’à de simple fusibles, mais comme j’ai les bonnes tension, je ne pense pas que ça vienne de là
                +j’ai bien peur que ce soit la dalle qui soit naze ? quelqu’un a t il des idées supplémentaires avant que je le jette avec grand regret (c’est un 2032bw, mais c’est la même chose, même si ma carte électronique est un peu différente car plus récente
                +merci d’avance pour vos conseils

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + yvan + · 24 novembre 2019 à 17 h 26 min +

                +

                finalement j’ai trouvé, c’est un petit fusible vert qui ressemble à une résistance mais tout vert avec écrit 4A LF qui assure l’alimentation de la dalle.
                +En le shuntant, mon écran a retrouvé l’image.
                +après enquête il s’agit d’un fusible pico de 4ampères de chez little fuse, pas du tout évident à trouver
                +Résolu !

                + +
                +
                + +
                +
                +

                + Reflow Dell 1546 | HugoPoi + · 22 août 2016 à 16 h 09 min +

                +

                […] « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable de marque Dell un 1546 pour être précis. Encore […]

                + +
                +
                + +
                +
                +

                + Reflow Dell Inspiron 1546 – HugoPoi + · 23 juin 2017 à 23 h 18 min +

                +

                […] d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un […]

                + +
                +
                + +
                +
                +
                +

                Répondre à HugoPoi Annuler la réponse

                Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                +
                +
                +

                + +

                +
                +
                +
                +
                +
                +
                + +
                + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/3deaa4cc3c293c37a4f8fb9a3c8d2006542cf266.00000647.css b/www/.content.EZtzwPjb/html/3deaa4cc3c293c37a4f8fb9a3c8d2006542cf266.00000647.css new file mode 100644 index 0000000..8043bbf --- /dev/null +++ b/www/.content.EZtzwPjb/html/3deaa4cc3c293c37a4f8fb9a3c8d2006542cf266.00000647.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;background:#fff;border:1px +solid #f00;font-size:10pt;width:280px;padding:2px}span.wpcf7-not-valid-tip-no-ajax{color:#f00;font-size:10pt;display:block}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/3e6da54dc98ac4a3a1c460e3d48fd01567b508c6.00000389.xml b/www/.content.EZtzwPjb/html/3e6da54dc98ac4a3a1c460e3d48fd01567b508c6.00000389.xml new file mode 100644 index 0000000..9c0a7a7 --- /dev/null +++ b/www/.content.EZtzwPjb/html/3e6da54dc98ac4a3a1c460e3d48fd01567b508c6.00000389.xml @@ -0,0 +1,137 @@ + + + démonter – HugoPoi + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Mon, 22 Aug 2016 14:10:26 +0000 + fr-FR + hourly + 1 + https://wordpress.org/?v=4.6.1 + + Test et démontage d’un Sony Multi Flip 15 SVF15N1C5E + http://blog.hugopoi.net/2014/08/04/test-et-demontage-dun-sony-multi-flip-15-svf15n1c5e/ + http://blog.hugopoi.net/2014/08/04/test-et-demontage-dun-sony-multi-flip-15-svf15n1c5e/#respond + Mon, 04 Aug 2014 13:25:59 +0000 + + + + + + + + + http://blog.hugopoi.net/?p=856 + Lire la suite »

                ]]>
                + http://blog.hugopoi.net/2014/08/04/test-et-demontage-dun-sony-multi-flip-15-svf15n1c5e/feed/ + 0 +
                + + Écran miraculé d’un Asus N53SN + http://blog.hugopoi.net/2014/08/02/ecran-miracule-dun-asus-n53sn/ + http://blog.hugopoi.net/2014/08/02/ecran-miracule-dun-asus-n53sn/#comments + Sat, 02 Aug 2014 17:53:57 +0000 + + + + + + + + http://blog.hugopoi.net/?p=819 + Lire la suite »

                ]]>
                + http://blog.hugopoi.net/2014/08/02/ecran-miracule-dun-asus-n53sn/feed/ + 1 +
                + + Démonter un Switch Cisco 2950T + http://blog.hugopoi.net/2013/02/09/demonter-un-switch-cisco-2950t/ + http://blog.hugopoi.net/2013/02/09/demonter-un-switch-cisco-2950t/#comments + Sat, 09 Feb 2013 11:41:20 +0000 + + + + + + + http://blog.hugopoi.net/?p=716 + Lire la suite »

                ]]>
                + http://blog.hugopoi.net/2013/02/09/demonter-un-switch-cisco-2950t/feed/ + 3 +
                + + Asus U36 et OCZ Vertex 3 la suite + http://blog.hugopoi.net/2012/03/30/asus-u36-et-ocz-vertex-3-la-suite/ + http://blog.hugopoi.net/2012/03/30/asus-u36-et-ocz-vertex-3-la-suite/#comments + Fri, 30 Mar 2012 10:29:27 +0000 + + + + + + + + + + + + + + + + http://blog.hugopoi.net/?p=635 + Lire la suite »

                ]]>
                + http://blog.hugopoi.net/2012/03/30/asus-u36-et-ocz-vertex-3-la-suite/feed/ + 1 +
                + + Réparations Samsung SyncMaster 2232BW + http://blog.hugopoi.net/2012/01/15/reparations-samsung-syncmaster-2232bw/ + http://blog.hugopoi.net/2012/01/15/reparations-samsung-syncmaster-2232bw/#comments + Sun, 15 Jan 2012 16:00:25 +0000 + + + + + + + + + + + + + http://blog.hugopoi.net/?p=586 + Lire la suite »

                ]]>
                + http://blog.hugopoi.net/2012/01/15/reparations-samsung-syncmaster-2232bw/feed/ + 31 +
                + + Démontage Asus U36 + http://blog.hugopoi.net/2011/07/30/demontage-asus-u36/ + http://blog.hugopoi.net/2011/07/30/demontage-asus-u36/#comments + Sat, 30 Jul 2011 13:19:08 +0000 + + + + + + + + + + http://blog.hugopoi.net/?p=495 + SSD MontéJ’ai acheté un petit SSD pour mettre dans mon U36 acheté il y a quelques mois, je n’ai pas trouvé de procédure de démontage sur Internet donc voici les photos de mon démontage. 1) Commencer par enlever toutes les vis …

                Lire la suite »

                ]]>
                + http://blog.hugopoi.net/2011/07/30/demontage-asus-u36/feed/ + 19 +
                +
                +
                diff --git a/www/.content.EZtzwPjb/html/3ecf02e9209674e645a906c81b11972f03fd7773.00000336.html b/www/.content.EZtzwPjb/html/3ecf02e9209674e645a906c81b11972f03fd7773.00000336.html new file mode 100644 index 0000000..02e4734 --- /dev/null +++ b/www/.content.EZtzwPjb/html/3ecf02e9209674e645a906c81b11972f03fd7773.00000336.html @@ -0,0 +1,373 @@ + + + + + + + anonymat – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                +
                +
                +
                + +
                +
                +
                +
                +
                +
                +
                + +
                +
                +
                +
                + +
                +
                + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/3ee6ed3c57e7e23bd187107ec01446479e5ac986.00000293.html b/www/.content.EZtzwPjb/html/3ee6ed3c57e7e23bd187107ec01446479e5ac986.00000293.html new file mode 100644 index 0000000..ecfb711 --- /dev/null +++ b/www/.content.EZtzwPjb/html/3ee6ed3c57e7e23bd187107ec01446479e5ac986.00000293.html @@ -0,0 +1,384 @@ + + + + + + + Dossiers – Page 3 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                +
                +
                +
                + +
                +
                +
                +
                +
                +

                Asus U36 et OCZ Vertex 3 la suite

                Après un mois d’attente auprès de Cdiscount, pour au final m’annoncer le remboursement de mon SSD Vertex 2 qui est mort subitement, j’ai donc décidé de commander un Vertex 3 qui va remplacer le mort au sein de mon Asus U36JC. Et pour ne pas l’ouvrir juste pour un banal remplacement de SSD j’ai décidé de remplacer par la même occasion la carte wifi, une Intel N-1000 par une Intel N-6320. Celle-ci disposant en plus du bluetooth. J’en ai donc profité pour prendre des photos supplémentaires du démontage pour compléter mon précédent article : Démontage d’un Asus U36. Vous pouvez d’abord lire mon ancien article avant d’attaquer celui-ci, je ne ferai qu’apporter des informations complémentaires pour le démontage. (suite…)

                +
                Par HugoPoi, il y a

                Réparations Samsung SyncMaster 2232BW

                Allô docteur on a un problème,

                +

                En ce dimanche calme avant la fin de mes partiels, mon écran Samsung SyncMaster 2232BW commençait à faire des siennes. Celui-ci depuis un mois ou deux clignotait de façon systématique au démarrage, au début pendant seulement quelques secondes, puis au fur et à mesure, de plus en plus jusqu’à devoir attendre 10 minutes pour que je puisse l’utiliser. Après 3 ans et 4 mois de bons et loyaux services, il voulait me quitter. J’ai tenté le support Samsung par email avec peu d’espoir car l’écran a dépassé sa garantie de 4 mois (oui oui les bâtards -> obsolescence programmée). Et donc j’ai eu le droit à un joli mail automatique me disant de contacter un numéro non surtaxé (mais avec combien de temps d’attente ?), ce que je n’ai pas fait car je n’avais pas envie de passer 30min au téléphone pour au final avoir un « On est désolé mais on ne peut rien faire pour vous car la garantie est dépassée, mais on peut envoyer votre écran en SAV pour faire un devis pour seulement 50 boules ». Concernant le support email de Samsung France, je leur donne une note de 0/20 puisque ce n’est pas un support mais une redirection vers le téléphone.

                +

                (suite…)

                +
                Par HugoPoi, il y a

                Vos données sauvegardées

                Dans le monde d’aujourd’hui, le numérique est omniprésent, tout ce que vous faites est ou peut être numérisé. Qu’il s’agisse de vos photos de vacances, de votre CV ou votre liste de course, vos contacts et tous les documents que vous utilisez pour travailler sont surement numériques. L’informatique est partout et aide à gérer votre comptabilité, vos contacts pro ou perso et même bientôt votre frigo. Quand je pense qu’il y a 10 ans, beaucoup de professions géraient leur base clients avec des fiches papiers, et que ça existe encore… Pourtant, c’est une perte de temps importante de gérer des clientèles de plus 100 personnes, trier les fiches à la main dans l’ordre alphabétique. Imaginez devoir sortir tous les clients que vous n’avez pas contacté depuis 2 mois, même avec uniquement 100 personnes vous allez y passer au moins une 1 heure avant que votre liste soit faite, avec une base de données, cela est fait en moins d’1 seconde. Tous ça pour dire que l’informatique facilite grandement votre vie jusqu’au jour où ça tombe en panne ! J’ai donc quelques propositions à vous faire concernant la protection de vos données. (suite…)

                +
                Par HugoPoi, il y a

                Montage PC de A à Z

                Bonjour tout le monde,

                +

                Ready pour un montage de PC dans les Règles de l’art. Ce Week-end avec Calcifer on a monté du PC :D [Week end du 14 et 15 Mai … Merci à Hugopoi de sa réactivité pour finir ses articles :p] (suite…)

                +
                Par HugoPoi, il y a
                +
                +
                + +
                +
                +
                +
                +
                +
                +
                +
                +
                +
                + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/3f609c194675513058413a0a534be824f3ce17fe.00000030.html b/www/.content.EZtzwPjb/html/3f609c194675513058413a0a534be824f3ce17fe.00000030.html new file mode 100644 index 0000000..fe10a82 --- /dev/null +++ b/www/.content.EZtzwPjb/html/3f609c194675513058413a0a534be824f3ce17fe.00000030.html @@ -0,0 +1,661 @@ + + + + + + + + GET to POST – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                +
                +
                +
                + +
                +
                +
                +
                +
                +
                +

                Il est 00h16, comme d’habitude je suis en train de développer un truc useless pour passer le temps donc je vais le mettre histoire de dire que ça va peut-être servir à plus d’une personne.

                +

                Language : JavaScript

                +

                Dépendance : Aucune

                +

                Type d’exécution : Local

                +

                Description : Ce script sert à transformer une requête HTTP de type GET via URL en méthode POST.

                +

                Fonctionnement : Il prend les arguments passés en get dans l’url et les envois via un formulaire de type hidden créé à la volée.

                +

                Exemple : https://blog.hugopoi.net/wp-content/uploads/2010/12/script.html?urlserverpage=http://fr.php.net/search.php&pattern=test&lang=en&show=quickref

                +

                Download : Script Get to Post

                +

                Note: pour télécharge le fichier en lien ci-dessus faites un clic droit « enregistrer la cible sous ».

                +
                +
                +
                +
                +
                Catégories : DéveloppementNews
                +
                +
                +
                + + + + + + + + + +
                +
                +
                +
                +
                +
                +
                +

                + 9 commentaires

                +
                + +
                +
                +
                +
                +

                + watchix + · 12 juillet 2011 à 17 h 50 min +

                +

                Merci mon bon Hugo :-)
                +J’étais en train de chercher ce genre de script lorsque je suis tombé sur le blog de Camille Descombes, puis ensuite sur ton commentaire :-)
                +Internet est petit dans le monde des développeurs ^^

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + mou7a + · 25 mai 2012 à 13 h 01 min +

                +

                bonjour, Je sais que l’article date un peu mais je n’arrive pas à récupérer la source elle n’est plus disponible merci!!!

                + +
                +
                +
                  +
                  + +
                  +
                  +
                  +
                  +

                  + HugoPoi + · 14 juin 2012 à 23 h 00 min +

                  +

                  la source est dans le fichier HTML.

                  + +
                  +
                  + +
                + +
                + +
                +
                +
                +
                +

                + houhou + · 10 juillet 2012 à 9 h 29 min +

                +

                Bonjour HugoPoi;
                +j’ai besoin du script pour récupérer le contenu d’une div généré en js,l’envoyer à une autre page de traitement pour le convertir en pdf.c’est urgent,merci!!!

                + +
                +
                + + +
                + +
                +
                +
                +
                +

                + Geolocalise Ip + · 25 avril 2014 à 10 h 42 min +

                +

                Bonjour,
                +Merci beaucoup pour l’idée, mais ta page : http://blog.hugopoi.net/wp-content/uploads/2010/12/script.html est morte …

                +

                Quant à « houhou », il est formidable, je prendrai bien son adresse IP à celui là pour voir de quel pays il vient !!!! Grrr ….
                +Bon c’était en 2012, il a dû changer de métiers depuis !

                + +
                +
                +
                  +
                  + +
                  +
                  +
                  +
                  +

                  + HugoPoi + · 9 mai 2014 à 18 h 12 min +

                  +

                  Le lien n’est pas mort mais le script se lance même sans paramètres valide donc tu es redirigé quand tu clic.
                  +Fait un clic droit enregistrer sous.

                  + +
                  +
                  + +
                + +
                + +
                +
                +
                +
                +

                + Gab Wink + · 13 février 2015 à 0 h 06 min +

                +

                Merci, ceci m’a été utile (et c’est toujours cool de le dire).

                + +
                +
                + +
                +
                +
                +

                Répondre à houhou Annuler la réponse

                Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                +
                +
                +

                + +

                +
                +
                +
                +
                +
                +
                + +
                +
                +
                +
                +
                +
                + + +
                + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/401e5246499c57801edae4a0ec7be67a9f42542b.00000176.html b/www/.content.EZtzwPjb/html/401e5246499c57801edae4a0ec7be67a9f42542b.00000176.html new file mode 100644 index 0000000..93b15ae --- /dev/null +++ b/www/.content.EZtzwPjb/html/401e5246499c57801edae4a0ec7be67a9f42542b.00000176.html @@ -0,0 +1,318 @@ + + + + + + + + SAMSUNG – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                +
                +
                +
                +
                +
                +
                +
                + + + +

                +
                +
                +
                +
                +

                + 0 commentaire

                +
                +
                +
                +

                Laisser un commentaire

                Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                +
                +
                +

                + +

                +
                +
                +
                +
                +
                +
                +
                +
                +
                +
                +
                +
                +
                + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/40510c9098ebe99bffb6c8d51db4e94996b6636a.00000583.js b/www/.content.EZtzwPjb/html/40510c9098ebe99bffb6c8d51db4e94996b6636a.00000583.js new file mode 100644 index 0000000..ed0a8ad --- /dev/null +++ b/www/.content.EZtzwPjb/html/40510c9098ebe99bffb6c8d51db4e94996b6636a.00000583.js @@ -0,0 +1,7 @@ +/* +* jQuery Form Plugin; v20130616 +* http://jquery.malsup.com/form/ +* Copyright (c) 2013 M. Alsup; Dual licensed: MIT/GPL +* https://github.com/malsup/form#copyright-and-license +*/ +;(function(e){"use strict";function t(t){var r=t.data;t.isDefaultPrevented()||(t.preventDefault(),e(this).ajaxSubmit(r))}function r(t){var r=t.target,a=e(r);if(!a.is("[type=submit],[type=image]")){var n=a.closest("[type=submit]");if(0===n.length)return;r=n[0]}var i=this;if(i.clk=r,"image"==r.type)if(void 0!==t.offsetX)i.clk_x=t.offsetX,i.clk_y=t.offsetY;else if("function"==typeof e.fn.offset){var o=a.offset();i.clk_x=t.pageX-o.left,i.clk_y=t.pageY-o.top}else i.clk_x=t.pageX-r.offsetLeft,i.clk_y=t.pageY-r.offsetTop;setTimeout(function(){i.clk=i.clk_x=i.clk_y=null},100)}function a(){if(e.fn.ajaxSubmit.debug){var t="[jquery.form] "+Array.prototype.join.call(arguments,"");window.console&&window.console.log?window.console.log(t):window.opera&&window.opera.postError&&window.opera.postError(t)}}var n={};n.fileapi=void 0!==e("").get(0).files,n.formdata=void 0!==window.FormData;var i=!!e.fn.prop;e.fn.attr2=function(){if(!i)return this.attr.apply(this,arguments);var e=this.prop.apply(this,arguments);return e&&e.jquery||"string"==typeof e?e:this.attr.apply(this,arguments)},e.fn.ajaxSubmit=function(t){function r(r){var a,n,i=e.param(r,t.traditional).split("&"),o=i.length,s=[];for(a=0;o>a;a++)i[a]=i[a].replace(/\+/g," "),n=i[a].split("="),s.push([decodeURIComponent(n[0]),decodeURIComponent(n[1])]);return s}function o(a){for(var n=new FormData,i=0;a.length>i;i++)n.append(a[i].name,a[i].value);if(t.extraData){var o=r(t.extraData);for(i=0;o.length>i;i++)o[i]&&n.append(o[i][0],o[i][1])}t.data=null;var s=e.extend(!0,{},e.ajaxSettings,t,{contentType:!1,processData:!1,cache:!1,type:u||"POST"});t.uploadProgress&&(s.xhr=function(){var r=e.ajaxSettings.xhr();return r.upload&&r.upload.addEventListener("progress",function(e){var r=0,a=e.loaded||e.position,n=e.total;e.lengthComputable&&(r=Math.ceil(100*(a/n))),t.uploadProgress(e,a,n,r)},!1),r}),s.data=null;var l=s.beforeSend;return s.beforeSend=function(e,t){t.data=n,l&&l.call(this,e,t)},e.ajax(s)}function s(r){function n(e){var t=null;try{e.contentWindow&&(t=e.contentWindow.document)}catch(r){a("cannot get iframe.contentWindow document: "+r)}if(t)return t;try{t=e.contentDocument?e.contentDocument:e.document}catch(r){a("cannot get iframe.contentDocument: "+r),t=e.document}return t}function o(){function t(){try{var e=n(g).readyState;a("state = "+e),e&&"uninitialized"==e.toLowerCase()&&setTimeout(t,50)}catch(r){a("Server abort: ",r," (",r.name,")"),s(D),j&&clearTimeout(j),j=void 0}}var r=f.attr2("target"),i=f.attr2("action");w.setAttribute("target",d),u||w.setAttribute("method","POST"),i!=m.url&&w.setAttribute("action",m.url),m.skipEncodingOverride||u&&!/post/i.test(u)||f.attr({encoding:"multipart/form-data",enctype:"multipart/form-data"}),m.timeout&&(j=setTimeout(function(){T=!0,s(k)},m.timeout));var o=[];try{if(m.extraData)for(var l in m.extraData)m.extraData.hasOwnProperty(l)&&(e.isPlainObject(m.extraData[l])&&m.extraData[l].hasOwnProperty("name")&&m.extraData[l].hasOwnProperty("value")?o.push(e('').val(m.extraData[l].value).appendTo(w)[0]):o.push(e('').val(m.extraData[l]).appendTo(w)[0]));m.iframeTarget||(v.appendTo("body"),g.attachEvent?g.attachEvent("onload",s):g.addEventListener("load",s,!1)),setTimeout(t,15);try{w.submit()}catch(c){var p=document.createElement("form").submit;p.apply(w)}}finally{w.setAttribute("action",i),r?w.setAttribute("target",r):f.removeAttr("target"),e(o).remove()}}function s(t){if(!x.aborted&&!F){if(M=n(g),M||(a("cannot access response document"),t=D),t===k&&x)return x.abort("timeout"),S.reject(x,"timeout"),void 0;if(t==D&&x)return x.abort("server abort"),S.reject(x,"error","server abort"),void 0;if(M&&M.location.href!=m.iframeSrc||T){g.detachEvent?g.detachEvent("onload",s):g.removeEventListener("load",s,!1);var r,i="success";try{if(T)throw"timeout";var o="xml"==m.dataType||M.XMLDocument||e.isXMLDoc(M);if(a("isXml="+o),!o&&window.opera&&(null===M.body||!M.body.innerHTML)&&--O)return a("requeing onLoad callback, DOM not available"),setTimeout(s,250),void 0;var u=M.body?M.body:M.documentElement;x.responseText=u?u.innerHTML:null,x.responseXML=M.XMLDocument?M.XMLDocument:M,o&&(m.dataType="xml"),x.getResponseHeader=function(e){var t={"content-type":m.dataType};return t[e]},u&&(x.status=Number(u.getAttribute("status"))||x.status,x.statusText=u.getAttribute("statusText")||x.statusText);var l=(m.dataType||"").toLowerCase(),c=/(json|script|text)/.test(l);if(c||m.textarea){var f=M.getElementsByTagName("textarea")[0];if(f)x.responseText=f.value,x.status=Number(f.getAttribute("status"))||x.status,x.statusText=f.getAttribute("statusText")||x.statusText;else if(c){var d=M.getElementsByTagName("pre")[0],h=M.getElementsByTagName("body")[0];d?x.responseText=d.textContent?d.textContent:d.innerText:h&&(x.responseText=h.textContent?h.textContent:h.innerText)}}else"xml"==l&&!x.responseXML&&x.responseText&&(x.responseXML=X(x.responseText));try{L=_(x,l,m)}catch(b){i="parsererror",x.error=r=b||i}}catch(b){a("error caught: ",b),i="error",x.error=r=b||i}x.aborted&&(a("upload aborted"),i=null),x.status&&(i=x.status>=200&&300>x.status||304===x.status?"success":"error"),"success"===i?(m.success&&m.success.call(m.context,L,"success",x),S.resolve(x.responseText,"success",x),p&&e.event.trigger("ajaxSuccess",[x,m])):i&&(void 0===r&&(r=x.statusText),m.error&&m.error.call(m.context,x,i,r),S.reject(x,"error",r),p&&e.event.trigger("ajaxError",[x,m,r])),p&&e.event.trigger("ajaxComplete",[x,m]),p&&!--e.active&&e.event.trigger("ajaxStop"),m.complete&&m.complete.call(m.context,x,i),F=!0,m.timeout&&clearTimeout(j),setTimeout(function(){m.iframeTarget||v.remove(),x.responseXML=null},100)}}}var l,c,m,p,d,v,g,x,b,y,T,j,w=f[0],S=e.Deferred();if(r)for(c=0;h.length>c;c++)l=e(h[c]),i?l.prop("disabled",!1):l.removeAttr("disabled");if(m=e.extend(!0,{},e.ajaxSettings,t),m.context=m.context||m,d="jqFormIO"+(new Date).getTime(),m.iframeTarget?(v=e(m.iframeTarget),y=v.attr2("name"),y?d=y:v.attr2("name",d)):(v=e(' (suite…)

                +
                Par HugoPoi, il y a
                +
                + +
                + + + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/45293e9aad7d419c184e44bbe46de2d802d681dd.00000238.html b/www/.content.EZtzwPjb/html/45293e9aad7d419c184e44bbe46de2d802d681dd.00000238.html new file mode 100644 index 0000000..2908f0b --- /dev/null +++ b/www/.content.EZtzwPjb/html/45293e9aad7d419c184e44bbe46de2d802d681dd.00000238.html @@ -0,0 +1,333 @@ + + + + + + + Screenshot_test-uefi-install-mok_2018-12-23_17:31:10 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                +
                +
                +
                +
                +
                +
                +
                + + + +

                +
                +
                +
                +
                +

                + 0 commentaire

                +
                +
                +
                +

                Laisser un commentaire

                Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                +
                +
                +

                + +

                +
                +
                +
                +
                +
                +
                +
                +
                + +
                + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/4537b4f629c208bf093a711cda7ac1ab0f03f8d6.00001277.json b/www/.content.EZtzwPjb/html/4537b4f629c208bf093a711cda7ac1ab0f03f8d6.00001277.json new file mode 100644 index 0000000..75200a8 --- /dev/null +++ b/www/.content.EZtzwPjb/html/4537b4f629c208bf093a711cda7ac1ab0f03f8d6.00001277.json @@ -0,0 +1 @@ +{"version":"1.0","provider_name":"HugoPoi","provider_url":"http:\/\/blog.hugopoi.net","author_name":"HugoPoi","author_url":"http:\/\/blog.hugopoi.net\/author\/hugopoi\/","title":"Aventure PC","type":"rich","width":600,"height":338,"html":"
                Aventure PC<\/a><\/blockquote>\n + + + + + + + + + + + + + + + + + + + + + + + + +
                +
                +
                +
                + +
                +
                +
                +
                +
                +
                +

                Allô docteur on a un problème,

                +

                En ce dimanche calme avant la fin de mes partiels, mon écran Samsung SyncMaster 2232BW commençait à faire des siennes. Celui-ci depuis un mois ou deux clignotait de façon systématique au démarrage, au début pendant seulement quelques secondes, puis au fur et à mesure, de plus en plus jusqu’à devoir attendre 10 minutes pour que je puisse l’utiliser. Après 3 ans et 4 mois de bons et loyaux services, il voulait me quitter. J’ai tenté le support Samsung par email avec peu d’espoir car l’écran a dépassé sa garantie de 4 mois (oui oui les bâtards -> obsolescence programmée). Et donc j’ai eu le droit à un joli mail automatique me disant de contacter un numéro non surtaxé (mais avec combien de temps d’attente ?), ce que je n’ai pas fait car je n’avais pas envie de passer 30min au téléphone pour au final avoir un « On est désolé mais on ne peut rien faire pour vous car la garantie est dépassée, mais on peut envoyer votre écran en SAV pour faire un devis pour seulement 50 boules ». Concernant le support email de Samsung France, je leur donne une note de 0/20 puisque ce n’est pas un support mais une redirection vers le téléphone.

                +

                +

                Symptômes

                +

                Clignotements de l’écran et de la LED power systématiques à chaque démarrage de l’écran. Je me suis tout de suite douté d’un problème d’alimentation et après quelques recherches sur google, confirmation du problème sur beaucoup d’écrans et téléviseurs. Dans 99% des cas ce clignotement est dû à des condensateurs défectueux qu’il faut simplement changer :-D

                +

                Démontage

                +

                Donc après avoir cerné le problème, j’ai ouvert l’écran pour chercher les condos défectueux. J’ai trouvé une petite vidéo pour mon écran :

                +

                +

                Voici quelques photos en plus pour vous aider :

                +

                Les outils que j’ai utilisé pour le démontage

                +

                Position des clips

                +

                Carte d’alimentation dans son emplacement

                +

                Et voici les condensateurs qui posent problèmes. Comme vous pouvez le voir sur la photo, ils sont très facilement identifiable car ils sont bombés sur le dessus.

                +

                Condensateurs défectueux

                +

                Vous devez donc acheter des condensateurs de remplacement, par exemple sur Conrad.

                +

                Mes condensateurs suivant étaient endommagés:

                +
                  +
                • 1 de 330uF 25V remplacé par un 470uF 25V
                • +
                • 3 de 820uF 25V remplacé par des 1000uF 50V
                • +
                +

                Pour la réparation, il vous faut un fer à souder avec une panne pas trop grosse mais d’une grosse puissance car les soudures sont très solides (j’ai galéré avec un fer pro qui monte jusqu’à 400°).

                +

                Tout remarche nickel après remontage, plus de clignotement pour seulement quelques euros.

                +

                edit du 19 aout 2014 : j’ai trouvé le service manuel de l’écran si besoin samsung_2232bw_chassis_lpe22bs_sm

                + + +
                +
                + +
                +
                +
                +
                +
                +

                + 41 commentaires

                +
                + +
                +
                +
                +
                +

                + c'est_moi + · 30 janvier 2012 à 18 h 57 min +

                +

                Mille mercis et mille félicitations pour cette fiche technique si pédagogue.

                +

                J’espère que le partiels se passent plus que parfait !!

                +

                J’ai gardé l’url de la page pour réparer mon écran dans un petit mois : j’espère que la page soit toujours là ;-)

                +

                Merci encore.

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + Maxime + · 5 mai 2012 à 12 h 31 min +

                +

                Bonjour HugoPoi!

                +

                Merci pour toutes vos infos et votre topic, je voulais avoir quelques précisions sur les condos à changer pour samsung 2232bw, je veux passer commande mais j’ai un problème avec les dimensions des condos, si vous pouvez m’informer de ce que je pourrais acheter car il y a trop de références. En vous remerciant A+ Maxime

                + +
                +
                +
                  +
                  + +
                  +
                  +
                  +
                  +

                  + HugoPoi + · 14 juin 2012 à 22 h 56 min +

                  +

                  N’importe quel condensateur polarisé avec des caractéristiques proches devrait marché.

                  + +
                  +
                  + +
                + +
                + +
                +
                +
                +
                +

                + gaubjezj + · 14 juin 2012 à 22 h 32 min +

                +

                Merci pour le tuto qui m’a bien aidé.
                +J’ai utilisé un fer de 40 W avec une panne fine et
                +une pompe à dessouder et j’ai retiré les condensateurs sans problème.
                +Merci encore (3€40 pour le dépannage).

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + DragonTribal + · 2 juillet 2012 à 12 h 02 min +

                +

                super merci pour manifique tuto.
                +Est-il possible de changer les 5 condensateurs 820uF 25V par des 1000uF 50V? car moi mes 5 condensateurs sont presque HS ;-)

                +

                Cordialement

                + +
                +
                +
                  +
                  + +
                  +
                  +
                  +
                  +

                  + HugoPoi + · 2 juillet 2012 à 12 h 25 min +

                  +

                  Oui je penses que ça marchera étant donné que c’est des valeurs plus grandes.

                  + +
                  +
                  + +
                + +
                + +
                +
                +
                +
                +

                + FRED + · 11 juillet 2012 à 19 h 11 min +

                +

                Bravo, MERCI.
                +Je n’ai encore rien fait…mais j’ai le même problème, et tu me donnes la solution.
                +Super.

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + daninpet + · 31 août 2012 à 10 h 10 min +

                +

                Merci mille fois!

                +

                J’avais ce problème, et j’ai emmener la photo des trucs a remplacer chez le réparateur du coin et voila!! Ça m’a coûté 7 Euros (mais j’habite en Thaïlande)

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + moi + · 15 novembre 2012 à 15 h 25 min +

                +

                super mon 2232bw vient de lâcher, les 3 + 1 condos sont gonflés j ai trouvé un 330 en 35v qui traîné sur un écran mort et j’ai commander 5 1000uf 35v sur ebay pour moins de 3 dollars, ca devrait le faire j’espere j’attend d’être livré merci! par contre j’ai qu’un gros pistolet a soudure et un gros fil d’étain, c’est pas évident mais bon ca le fait quand même =)

                + +
                +
                +
                  +
                  + +
                  +
                  +
                  +
                  +

                  + moi + · 7 décembre 2012 à 9 h 33 min +

                  +

                  parfait je vient de recevoir les condos; j ai meuler la panne du fer a souder pour la tailler en mine de crayon et j ai reussi a les souder facilement ils étaient un peu plus gros mais ca passe tout juste, mais attention ne pas prendre des plus gros! l écran fonctionne nickel maintenant.

                  + +
                  +
                  + +
                + +
                + +
                +
                +
                +
                +

                + Croco + · 19 janvier 2013 à 18 h 39 min +

                +

                Je souhaiterai savoir si tu as utilisé un fer à souder bien précis étant donné que la carte est une multi couche.
                +Merci

                + +
                +
                + + +
                + +
                +
                +
                +
                +

                + momo + · 10 juin 2013 à 13 h 15 min +

                +

                slut je voudrai savoir ou trouvé les condansateur a changer sur mon ecran qui clignote

                + +
                +
                + + +
                + +
                +
                +
                +
                +

                + lokmane + · 5 juillet 2013 à 16 h 08 min +

                +

                merci j’avais un ecran rouge ! et c’etais la tresse qui relie mon ecran votre page m’a aider a l’ouvrir et a le reparer merci bien

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + ML + · 21 août 2013 à 19 h 11 min +

                +

                Merci ! Ecran réparé. Halte à l’obsolescence programmée.

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + raymond + · 31 octobre 2013 à 13 h 20 min +

                +

                ai vu votre vidéo et les explications pour la reparation de mon écran , apparemment le méme probléme l écran passe au noir apres quelque seconde , j ai vu un le condensateur en bas a gauche gonflé , je l ai fait changé (10€) les autre condensateur étant toujour bon d après la personne qui me l a changé , mais j ai toujour le méme probléme cela peut il venir de la carte video a gauche ?

                + +
                +
                +
                  +
                  + +
                  +
                  +
                  +
                  +

                  + HugoPoi + · 20 décembre 2013 à 12 h 27 min +

                  +

                  Si la led bleu du bouton power s’éteint aussi c’est un problème d’alimentation sinon c’est plus compliqué et ça peut provenir de condensateurs sur la partie vidéo. Changé tous les plus gros condensateurs sur la partie alimentation pourrait être un bon début même si ils ne paraissent pas endommagé.

                  + +
                  +
                  + +
                + +
                + +
                +
                +
                +
                +

                + damien + · 4 novembre 2013 à 0 h 29 min +

                +

                bonjour,

                +

                j’ai des crasses coincées entres l’écran et le truc juste derrière, est ce qu’on sais les enlever en démontant la dalle ?

                + +
                +
                +
                  +
                  + +
                  +
                  +
                  +
                  +

                  + HugoPoi + · 20 décembre 2013 à 12 h 28 min +

                  +

                  Je ne sais si cette partie de la dalle est démontable, je penses que c’est collé mais vous pouvez essayer.

                  + +
                  +
                  + +
                + +
                + +
                +
                +
                +
                +

                + mac + · 1 décembre 2013 à 17 h 30 min +

                +

                Merci HugoPoi, avec ces excellents conseils et tuto vidéo, mon écran est reparti pour une nouvelle vie.
                +Pour les composants, si vous êtes sur Paris ou proche. La boutique RAM électroniques est une bonne adresse, 138 bd Diderot 75012 Paris (Place de la Nation).

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + Bouddhid + · 16 janvier 2014 à 19 h 21 min +

                +

                Merci beaucoup pour ces conseils ! J’étais à 2 doigts de jeter mon écran, le voilà comme neuf pour moins de 5€ ! Vive la bricole !

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + Vincent + · 17 mai 2014 à 16 h 45 min +

                +

                Alors là merci.

                +

                Pour ce post, les photos, la vidéo, tout y est.

                +

                J’ai démonté l’écran assez vite, enlevé la carte, regarder quel condensateurs étaient gonflés,(il y en avaient 4), un magasin d’électronique sur lyon et une heure de démontage, soudure, remontage plus tard, voilà, c’est tout beau.
                +Ca ne clignote plus, ça s’allume comme avant, comme neuf.

                +

                Et dire que j’allais jeter cet écran et claquer 350 euros pour un neuf…

                +

                Coût de l’opération pour 4 condensateurs, du fil d’étain 7 euros.

                +

                Je précise que je n’avais jamais fais de soudure sur composant électronique auparavant.
                +Comme quoi cette opération de réparation est à la portée de tous.

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + Julot + · 6 juillet 2014 à 13 h 49 min +

                +

                Site vraiment détaillé et très claire. J’ai pu dépanner mon écran avec succès. Merci beaucoup pour ces précieuses explications.

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + PaniK31 + · 29 juillet 2014 à 9 h 21 min +

                +

                Pas besoin d’une grosse puissance pour le fer, il faut au préalable gratter le vernis sur l’étain afin de pouvoir le faire fondre plus facilement

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + R211_IP-45130B + · 20 août 2014 à 14 h 04 min +

                +

                Bonjour à tous,

                +

                Une âme charitable peut-elle me communiquer ce qui est gravé sur la résistance CMS R211 de la carte d’alimentation/inverter IP-45130B qui équipe le SAMSUNG 2232BW ? Cette résistance a pris un coup de tournevis et je n’arrive pas à déterminer sa valeur de résistance car son marquage est effacé et comme le composant est abimé la mesure à l’ohmmètre indique l’infinie.

                +

                Merci par avance.

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + roger + · 24 octobre 2014 à 17 h 21 min +

                +

                Ca refonctionne après échange de 4 condensateurs :
                +-un 330uf25v remplacé à l’identique.
                +-trois 820uf25v remplacés par 1000uf25v.
                +Le tout pour quelques €. Le plus dur était le dessoudage, la tresse n’était pas très efficace contrairement à la pompe.
                +Grand merci à HugoPoi.

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + Max + · 26 février 2015 à 16 h 28 min +

                +

                ENORME MERCI!! J’ai réparé mon écran en 20mn pour 3,50€, il était à 2 doigts de partir à la déchetterie. Ca faisait des mois qu’il clignotait, et l’allumage mettait parfois plus d’une demi heure. J’ai changé 5 condos 820uf25v et 1 330uf25v, par exactement les mêmes en neuf, et là il démarre au quart de tour! Ca fait plaisir! :)

                + +
                +
                +
                  +
                  + +
                  +
                  +
                  +
                  +

                  + rocco michelle + · 7 octobre 2015 à 10 h 16 min +

                  +

                  Bonjour je ne sais si vous verrez mon message mais je tente…je cherche quelqu’un qui accepterait de changer mes condensateurs sur mon samsung, les réparateurs me demandent 70 à 80 euros et encore ils n’ont pss envie de le faire et me disent d’acheter un nouvel écran. j’aurais bien tenter mais je n’ai pas de matériel et j’ai lu que les condo pouvaient être très dangereux s’ils avaient de la charge alors j’ai la trouille de bidouiller pq je n’y connais rien. si vous êtes de lyon acccepteriez vous de changer mes condensateurs pour 45 euros? merci de votre réponse.

                  + +
                  +
                  + +
                + +
                + +
                +
                +
                +
                +

                + lecakeseb + · 27 juillet 2015 à 15 h 26 min +

                +

                Bonjour,

                +

                J’ai utilisé la vidéo pour démonter mon écran afin de le nettoyer de 4 bêtes d’orage infiltrés entre le premier écran (noir) et la dalle (blanche) de mon samsung SyncMaster 2232W

                +

                Petits conseils afin de modérer ce que j’ai pu voir dans cette vidéo :

                +

                0 : aspirez, nettoyez l’extérieur de l’écran avant de l’ouvrir et nettoyez la table qui vous servira d’atelier, pour éviter les poussières qui s’infiltreront forcément plus tard si vous ne le faites pas…
                +1 : pour ouvrir, utilisez plutôt un couteau à enduire pour la première partie (le cadre). Vous n’abîmerez ainsi pas du tout l’écran. Soyez patients, ne forcez pas ! ça viendra doucement, mais ça viendra. Il m’a fallu à peine 10 minutes, sans détériorer l’écran, sans le griffer… Il est encore nickel !
                +2 : attention à ne pas déconnecter les fils reliant le cadre à la carte. Inutile pour simplement nettoyer l’écran.
                +3 : pour séparer les deux éléments de la dalle entre lesquels les bêtes se sont infiltrées, les doigts suffisent, pas besoin d’outils qui viendraient les endommager. La dalle blanche reste à l’horizontale, l’écran noir sera tenu à la verticale.
                +4 : utiliser un chiffon doux ne peluchant pas pour enlever les bêtes (faites-vous aider de quelqu’un qui les enlèvera pendant que vous tenez l’écran extérieur en position verticale).
                +5 : repositionnez la colle d’étanchéité qui aurait pu se déplacer, avant de repositionner les deux écrans.
                +6 : commencer par refermer par le bas de l’écran (sinon les éléments de réglage situés au bas de l’écran – luminosité, contraste,…- ne se replaceront pas correctement).
                +7 : Une fois l’écran refermé, j’ai appliqué un peu de « barrage aux insectes », avec un chiffon à l’arrière de mon écran en insistant surtout sur les bouches d’aération par lesquelles les maudites bestioles ont du s’infiltrer. En espérant ne pas avoir à ouvrir !

                +

                Bon courage à vous !

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + Michel Jousserandot + · 20 janvier 2017 à 20 h 41 min +

                +

                Merci pour les conseils au démontage.
                +J’avais un problème un peu différent :l’écran ne s’allumait plus du tout. Avec un copain beaucoup plus malin que moi, on a détecté 2 fusibles dont l’un était fichu. On l’a remplacé par un petit fil de cuivre. Et tout a remarché comme avant.
                +Il faut surtout faire attention quand on teste la partie haute tension
                +Michel.

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + Crec + · 14 juillet 2017 à 10 h 20 min +

                +

                Bonjour. Très bons conseils avertis. Merci beaucoup.
                +Peut-on avoir les mêmes conseils pour un écran BX2250.
                +Merci par avance.
                +Crec

                + +
                +
                +
                  +
                  + +
                  +
                  +
                  +
                  +

                  + HugoPoi + · 6 août 2017 à 14 h 03 min +

                  +

                  J’ai pas de BX2250 donc dans le détails non mais si c’est les même symptômes ça doit la même procédure.

                  + +
                  +
                  + +
                + +
                + +
                +
                +
                +
                +

                + Ferronnier + · 10 août 2017 à 17 h 42 min +

                +

                Un grand merci !
                +J’ai changé tous les condensateurs de la partie alimentation de la carte, en déportant certains qui n’avaient pas le même format qu’à l’origine, et ça tourne nickel !

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + Nours + · 1 décembre 2017 à 15 h 17 min +

                +

                Ca fait des années que j’ai cet article enregistré dans un coin, en nourrissant l’espoir d’avoir un jour le courage de réparer ce foutu écran… Après plus de cinq ans c’est chose faite \o/
                +Un giga, hypra, immense merci pour ce tutoriel tellement bien expliqué et facile d’accès (je n’avais pas touché à un fer à souder depuis… Oh boy 15 ans déjà).
                +Après une longue pause, l’écran reprend du service… Jusqu’à la prochaine panne /o/

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + Alex + · 11 août 2018 à 13 h 28 min +

                +

                Quelqu’un sait qui pourrait me le faire svp j ai le même problème mais aucun matériel

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + David + · 5 février 2019 à 21 h 06 min +

                +

                Merci Hugo pour ce tuto qui m’a déjà servi en 2013 et qui va me resservir aujourd’hui car mon 2ème 2232bw commence à avoir les mêmes symptômes.

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + yvan + · 23 novembre 2019 à 17 h 14 min +

                +

                Bonjour
                +j’ai tenté de changer le condensateur qui avait l’air naze mais ça n’a pas marché … toujours le bouton bleu allumé, l’écran est reconnu par Windows 10 même si l’écran est éteint
                +grâce au service manuel de l’écran fourni plus haut, j’ai vérifié les tensions jusque sur la carte de la dalle et elles sont correctes, ainsi que sur la carte elle-même, tout est ok, donc je pense que ce n’est plus un problème de condensateur
                +pour les fusibles, ils ressemblent plutôt à des composants qu’à de simple fusibles, mais comme j’ai les bonnes tension, je ne pense pas que ça vienne de là
                +j’ai bien peur que ce soit la dalle qui soit naze ? quelqu’un a t il des idées supplémentaires avant que je le jette avec grand regret (c’est un 2032bw, mais c’est la même chose, même si ma carte électronique est un peu différente car plus récente
                +merci d’avance pour vos conseils

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + yvan + · 24 novembre 2019 à 17 h 26 min +

                +

                finalement j’ai trouvé, c’est un petit fusible vert qui ressemble à une résistance mais tout vert avec écrit 4A LF qui assure l’alimentation de la dalle.
                +En le shuntant, mon écran a retrouvé l’image.
                +après enquête il s’agit d’un fusible pico de 4ampères de chez little fuse, pas du tout évident à trouver
                +Résolu !

                + +
                +
                + +
                +
                +

                + Reflow Dell 1546 | HugoPoi + · 22 août 2016 à 16 h 09 min +

                +

                […] « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable de marque Dell un 1546 pour être précis. Encore […]

                + +
                +
                + +
                +
                +

                + Reflow Dell Inspiron 1546 – HugoPoi + · 23 juin 2017 à 23 h 18 min +

                +

                […] d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un […]

                + +
                +
                + +
                +
                +
                +

                Répondre à HugoPoi Annuler la réponse

                Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                +
                +
                +

                + +

                +
                +
                +
                +
                +
                +
                + +
                +
                +
                +
                +
                +
                + + +
                + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/45a2cc2bc338c71c35a03ef625b5671bb7395fc9.00000173.html b/www/.content.EZtzwPjb/html/45a2cc2bc338c71c35a03ef625b5671bb7395fc9.00000173.html new file mode 100644 index 0000000..3366e93 --- /dev/null +++ b/www/.content.EZtzwPjb/html/45a2cc2bc338c71c35a03ef625b5671bb7395fc9.00000173.html @@ -0,0 +1,869 @@ + + + + + + + + Réparer un Vidéoprojecteur Sony VPL-CX5 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                +
                +
                +
                + +
                +
                +
                +
                +
                +
                +

                Bon les cocos, j’ai récupéré un vidéo projecteur Sony VPL-CX5 en état décédé. Comme je sais que c’est encore et toujours ce problème d’obsolescence programmée j’ai donc décidé de le réparer.

                +

                Sony VPL-CX5

                +

                Première étape, identifier la panne

                +

                Le vidéoprojecteur ne donnait aucun signe de vie, aucune led ne s’allume quand je l’ai branché rien du tout même pas un petit crépitement d’alimentation. Je pense a un problème d’alimentation mais rien est sur tant que je ne l’ai pas démonté. Mais avant le dévissage je vais quand même faire une recherche Google car le Internet il est grand et il est beau. J’ai trouvé un truc qui m’a mis la puce à l’oreille sans même avoir enlever la première visse, sur un forum quelconque que je n’arrive plus à retrouver, un mec dit qu’il a changé un composant (un certain MCZ3001) sur une des cartes d’alimentation, et le vidéoprojecteur remarchait.

                +

                Démontage

                +

                Sony VPL-CX5

                +

                J’ai donc commencé par enlever les quelques visses, puis démonter toutes les cartes une par une, une vrai galère. Pour m’aider j’ai trouvé le « manuel de service » (or Service Manual) que je mets a disposition ici même : sony_vpl-cx5_cs5_servicemanual. J’ai mis dans la suite les références des connecteurs pour les mesures.

                +

                1) Premier test vérifier le fusible sur la première carte d’alimentation GA, faire le test avec la carte débranché, j’ai utilisé un voltmètre sur la position test de résistance : test OK.

                +

                2) Deuxième test, vérifier la tension continu fournie par cette carte GA sur le connecteur de sortie CN2001 environ 380V DC, DONC FAIRE CECI AVEC PRÉCAUTION (je l’ai fait avec un voltmètre de merde à 5€) : test OK j’ai 380 Volt en sortie. Sur cette carte il y un gros condensateur de 400V donc faire TRÈS ATTENTION MÊME QUAND LA CARTE EST DÉBRANCHÉ DU SECTEUR.(j’ai vérifier le condensateur se décharge assez vite j’ai mesuré 4V 10 secondes après avoir débranché)

                +

                3) Maintenant test de la carte GB qui transforme le 400V continu en basse tension continu ici du 24V d’après le SM. Donc j’ai le point de mesure parfait, c’est le connecteur CN3201.

                +
                N'oubliez d'ouvrir le manuel de service ça donne des infos précieuses pour le dépannage

                N’oubliez d’ouvrir le manuel de service ça donne des infos précieuses pour le dépannage

                +

                Plusieurs points pour tester le plus pratique étant le petit connecteur blanc de 3 broches qui fournit la masse et VCC 24V. Après mesure sur ce connecteur j’ai une tension stable mais pas du 24VDC, les composants n’ont pas l’air endommagés donc je vérifie à l’entrée du fameux MCZ3001 il est bien alimenté correctement mais ne sort pas 24VDC. Pas de condensateurs chimiques endommagés.

                +

                Donc la panne est certainement dû à ce composant, achetons-le !

                +

                Trouver le composant de rechange

                +

                Au début j’ai cherché chez des e-commerçant d’électronique comme Farnell,Conrad, etc pas trouvé en france, puis j’ai fait les marchants Anglais et je l’ai trouvé mais à 30€ frais de port inclus. Et comme un con j’avais oublié de faire Ebay : encore un coup des chinois 4.27€ avec le support DIP et les frais de port inclus OMFG j’adore la mondialisation. J’en ai pris 2 pour mois de 10€ et comme les chinois ils sont trop fort j’ai tout reçu en moins de 2 semaines.

                +

                Capture-ebay-mcz3001

                +

                Dés-soudage

                +

                Bon j’avais des fer à souder de merde et du coup c’est le #FAIL, j’ai pas réussi à dés-souder proprement, j’ai donc été obligé d’investir dans une merde à 10€ :

                +

                Fer à souderEnsuite j’ai finalement réussi à dés-souder :

                +

                Carte GB MCZ3001 dés-soudéEt il me semble que sur cette photo j’avais nettoyer avec du dissolvant.

                +

                Remontage

                +

                Alors je suis désolé mais je n’ai pas de photos pour le MCZ soudé car j’avais déjà remonté le projecteur. Les étapes :

                +
                  +
                1. Souder un support fourni (au cas ou ce fameux MCZ rendrais encore l’âme)
                2. +
                3. Placer un MCZ neuf dans le support
                4. +
                5. Relier la carte GA et GB ensemble
                6. +
                7. Brancher sur le 220V
                8. +
                9. Tester le 24VDC sur le connecteur CN3201
                10. +
                11. #WIN
                12. +
                13. Remonter le projecteur
                14. +
                15. Tester en vrai
                16. +
                17. #WIN2
                18. +
                +

                Conclusion

                +

                Oui c’est un WIN d’une valeur 4€ mais je tiens à préciser que ça représente environ 10 heures de travail continu. Entre les recherches Google et la lecture de la documentation, les heures passés au démontage, les quelques fois ou je me suis arraché les cheveux et risquer ma vie avec un voltmètre à 5€.

                +

                Mon banc de test

                +

                Banc de test chez HugoLa table du salon 2Les Tofs

                + + +
                +
                +
                + +
                +
                + + + + + + + + + +
                +
                +
                +
                +
                +
                +
                +

                + 16 commentaires

                +
                + +
                +
                +
                +
                +

                + Georg + · 30 janvier 2014 à 12 h 22 min +

                +

                Hello,
                +dear Hugo, at first: HAVE MANY THANKS FOR YOUR VERY INTERESTING BLOG!!!

                +

                I also have a cx5 and try to repair it.

                +

                It has the same problems like your projector…

                +

                I’ve measured the CN2001 but in my power supply there are only 320 V (stable).
                +Are you sure, that there have to be 380V?
                +In the service manual, I didn’t find a value (either 320V nor 380V)

                +

                Best Regards
                +Your Georg

                + +
                +
                +
                  +
                  + +
                  +
                  +
                  +
                  +

                  + HugoPoi + · 21 février 2014 à 17 h 36 min +

                  +

                  Sorry to be so long to answer,
                  +320V seems to be OK, I have extrapolated the value from the schema ~ 220Vxrootsquare(2) but this depends of the quality of your current source. I think 320 will not impact the power for the next card.

                  +

                  Good repair !
                  +Thanks for the comment :-D

                  + +
                  +
                  + +
                + +
                + +
                +
                +
                +
                +

                + henri moine + · 2 février 2014 à 20 h 43 min +

                +

                Bonsoir,
                +Merci beaucoup pour l’explication détaillée et les photos.
                +Je vais pas tarder de m’attaquer à mon SONY VPL CS7 bizarrement inerte depuis quelques semaines…
                +Bonne continuation !

                + +
                +
                +
                  +
                  + +
                  +
                  +
                  +
                  +

                  + florian + · 21 avril 2014 à 9 h 09 min +

                  +

                  Bonjour,
                  +Je possède également un sony VPL CS7, et depuis plusieurs mois il a quelques signes de faiblesses.

                  +

                  1) lorsque je le débranche du secteur et que je le rebranche, il faut que j’attende 24 à 48 h pour que le voyant on/off se mette à éclairer, donc je ne peux pas l’allumer pendant ce temps.

                  +

                  2) aujourd’hui j’ai beau le laisser brancher, aucun signe de vie plus rien ne s’allume.

                  +

                  As tu attaqué ton VPL, As tu trouvé quelque chose ?

                  +

                  Merci

                  + +
                  +
                  +
                    +
                    + +
                    +
                    +
                    +
                    +

                    + HugoPoi + · 9 mai 2014 à 17 h 50 min +

                    +

                    Le VPL que j’avais était en panne je l’ai réparé jusqu’à il y a 2 mois ou il retombé en panne. Ton problème d’allumage ressemble à un problème de condensateur cramé. tu peux regarder si tu en vois des gonflés en démontant.

                    + +
                    +
                    + +
                  + +
                + +
                + +
                +
                +
                +
                +

                + Ghent + · 21 septembre 2014 à 12 h 48 min +

                +

                Bonjour,

                +

                Déjà, super tuto.
                +Je rencontre un problème à priori similaire avec mon CX5: le bouton de mise sous tension n’est plus éclairé et il ne se passe rien quand j’appuie dessus.

                +

                Je me suis donc lancé, et j’ai démonté jusqu’à atteindre les cartes d’alimentation.
                +J’ai mesuré donc au niveau du CN3201, et là j’ai 22V continu stable.
                +D’où ma première question, ai-je le même problème que toi avec le MCZ3001, ou dois-je chercher autre part ?
                +Faut-il 24V exactement ?

                +

                Ensuite, j’ai essayé de me rapprocher du composant lui-même, mais je ne sais pas où mesurer. Le diagramme indique le VC1 sur la patte 8, mais je ne sais pas où prendre la masse.
                +Saurais-tu m’aider ?

                +

                J’ai enfin voulu tester la tension en sortie de la carte GB, le point 17V, mais même question, si je teste la patte 1 du connecteur, où prendre la masse pour vérifier qu’il y a bien 17V ?
                +Cette partie est-elle alimentée malgré que l’appareil soit éteint ?

                +

                Dans tous les cas, j’ai commandé le MCZ3001D, mais je voudrais m’assurer qu’il est bien le responsable avant de le changer.

                +

                Merci d’avance pour tes réponses, et encore une fois, merci de partager ton travail !

                + +
                +
                +
                  +
                  + +
                  +
                  +
                  +
                  +

                  + HugoPoi + · 26 septembre 2014 à 15 h 01 min +

                  +

                  Je penses que si tu as 22V sur CN3201 le problème est sûrement ailleurs. Même si cela ne coûte rien de changer le MCZ3001D si tu as de quoi dessouder proprement. Regarde sur le service manuel pour tester les autres tensions qui sortent de la carte après les partie d’isolement, de mémoire il y a 3,3 V et du 5V.

                  + +
                  +
                  +
                    +
                    + +
                    +
                    +
                    +
                    +

                    + Neckron + · 12 décembre 2014 à 21 h 32 min +

                    +

                    Bonsoir, je déterre un peu ce vpl-cx5 que je possède et que je vends !!!
                    +Je voie qu’il y a encore des personnes qui s’y intéresse.
                    +Je précise juste que le mien est en excellent état de marche, il y a la télécommande et qu’il n’a servi QUE 220 Heures. Lampe d’origine. Je cherchais pendant un temps un moyen de l’upgrader pour l’image, mais finalement…. je change…

                    + +
                    +
                    + +
                  + +
                + +
                + +
                +
                +
                +
                +

                + Jean-Marie + · 31 décembre 2014 à 14 h 43 min +

                +

                Bonjour Hugo.
                +Merci pour ton partage d’expérience.
                +Moi aussi, j’ai un VPL-CS7 inerte comme tu dis. Pas la moindre led s’allume ou clignote quand je le branche.
                +Je l’ai complètement démonté. Je soupçonne un composant sur le bloc d’alim.
                +As-tu réparé le tien ?
                +Merci.
                +JM.

                + +
                +
                +
                  +
                  + +
                  +
                  +
                  +
                  +

                  + HugoPoi + · 31 janvier 2015 à 15 h 13 min +

                  +

                  Moi j’ai bien réparé mon CX5 mais celui-ci est retombé en panne 6 mois plus tard. Cette fois-ci avec plus de composants endommagés :-(
                  +Bon courage pour les réparations.

                  + +
                  +
                  + +
                + +
                + +
                +
                +
                +
                +

                + Sorce + · 14 mars 2015 à 16 h 05 min +

                +

                Bonjour ,j’ai un vpl cs6 ,qui ne s’allume pas rien du tous j’ai suivi tes étape et sur le connecteur con 2001 et la 325v bizarre bon je relie la carte gb pour tester au borne du con 3201 et la 15v et sa retombe et sa remonte a 15v peut tu m aider cdt richard (pense tu que je doi changer le mcz)

                + +
                +
                +
                  +
                  + +
                  +
                  +
                  +
                  +

                  + HugoPoi + · 29 avril 2015 à 16 h 18 min +

                  +

                  Vérifiez les autres tensions en sortie de la carte GB, de mémoire il doit y avoir 3,3 V du 5 V et du 15V. Si tout est OK, la carte-mère principale est peut-être endommagé et pas moyen de réparer sans changement.

                  + +
                  +
                  + +
                  + +
                  +
                  +
                  +
                  +

                  + Gilles + · 16 juin 2018 à 13 h 44 min +

                  +

                  Même chose que vous ?
                  +Avez-vous trouvé une solution ?
                  +Est-ce que c’est normal cette tension non stable ?

                  + +
                  +
                  + +
                + +
                + +
                +
                +
                +
                +

                + Daoud Yacoub + · 20 octobre 2015 à 9 h 54 min +

                +

                Je remercie beaucoup l’equipe

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + Daoud Yacoub + · 20 octobre 2015 à 10 h 02 min +

                +

                Aidez moi à depanner mon vidéo projecteur le tout ne s’allume pas ;jai démonté et nettoyer toutes les plaques alimentation et logique me rien ne se passe mais en toute sincérité si je peux avoir le document technique de réparation m’est indispensable

                + +
                +
                +
                  +
                  + +
                  +
                  +
                  +
                  +

                  + HugoPoi + · 24 octobre 2015 à 13 h 39 min +

                  +

                  Les commentaires n’ont pas pour vocation d’être un forum :-)

                  + +
                  +
                  + +
                + +
                +
                +
                +

                Répondre à Sorce Annuler la réponse

                Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                +
                +
                +

                + +

                +
                +
                +
                +
                +
                +
                + +
                +
                +
                +
                +
                +
                + + +
                + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/45fe5ac681c1add3aa7b90f2dfe9582a304df6a9.00000566.html b/www/.content.EZtzwPjb/html/45fe5ac681c1add3aa7b90f2dfe9582a304df6a9.00000566.html new file mode 100644 index 0000000..7df1a86 --- /dev/null +++ b/www/.content.EZtzwPjb/html/45fe5ac681c1add3aa7b90f2dfe9582a304df6a9.00000566.html @@ -0,0 +1,317 @@ + + + + + + + Wishlist – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                +
                +
                +
                +
                +
                +
                + +
                +
                + +
                +
                + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/468c63409d2a91fef2ed85a5abba7b9f3cfb4f2e.00000641.css b/www/.content.EZtzwPjb/html/468c63409d2a91fef2ed85a5abba7b9f3cfb4f2e.00000641.css new file mode 100644 index 0000000..8043bbf --- /dev/null +++ b/www/.content.EZtzwPjb/html/468c63409d2a91fef2ed85a5abba7b9f3cfb4f2e.00000641.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;background:#fff;border:1px +solid #f00;font-size:10pt;width:280px;padding:2px}span.wpcf7-not-valid-tip-no-ajax{color:#f00;font-size:10pt;display:block}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/47274fc92cf41f26bfb948bc2955506358143719.00000798.css b/www/.content.EZtzwPjb/html/47274fc92cf41f26bfb948bc2955506358143719.00000798.css new file mode 100644 index 0000000..5b51506 --- /dev/null +++ b/www/.content.EZtzwPjb/html/47274fc92cf41f26bfb948bc2955506358143719.00000798.css @@ -0,0 +1 @@ +.authors-on-blog .footer a,.btn.btn-border,.card-background:after,.form-group.label-floating label.control-label,.form-group.label-placeholder label.control-label,.form-group.label-static label.control-label,.hestia-top-bar .widget.widget_product_search form:not(.form-group),.hestia-top-bar .widget.widget_search form:not(.form-group),.pagination a,.pagination span,a{-webkit-transition:all .3s ease;-moz-transition:all .3s ease;-ms-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease}.btn,button,input[type=button],input[type=submit]{-webkit-transition:background-color .2s cubic-bezier(.4,0,.2,1),-webkit-box-shadow .2s cubic-bezier(.4,0,1,1);transition:background-color .2s cubic-bezier(.4,0,.2,1),-webkit-box-shadow .2s cubic-bezier(.4,0,1,1);transition:box-shadow .2s cubic-bezier(.4,0,1,1),background-color .2s cubic-bezier(.4,0,.2,1);transition:box-shadow .2s cubic-bezier(.4,0,1,1),background-color .2s cubic-bezier(.4,0,.2,1),-webkit-box-shadow .2s cubic-bezier(.4,0,1,1)}.btn.active:disabled,.btn.active[disabled],.btn.btn-behance.btn-simple,.btn.btn-border,.btn.btn-border:focus,.btn.btn-border:hover,.btn.btn-default.btn-simple,.btn.btn-deviantart.btn-simple,.btn.btn-dribbble.btn-simple,.btn.btn-facebook.btn-simple,.btn.btn-github.btn-simple,.btn.btn-google.btn-simple,.btn.btn-instagram.btn-simple,.btn.btn-linkedin.btn-simple,.btn.btn-pinterest.btn-simple,.btn.btn-primary.btn-simple,.btn.btn-reddit.btn-simple,.btn.btn-simple,.btn.btn-snapchat.btn-simple,.btn.btn-tumblr.btn-simple,.btn.btn-twitter.btn-simple,.btn.btn-vimeo.btn-simple,.btn.btn-white.btn-simple,.btn.btn-youtube.btn-simple,.btn.disabled,.btn.disabled.active,.btn.disabled.focus,.btn.disabled:active,.btn.disabled:focus,.btn.disabled:hover,.btn.focus:disabled,.btn.focus[disabled],.btn:disabled,.btn:disabled:active,.btn:disabled:focus,.btn:disabled:hover,.btn[disabled],.btn[disabled]:active,.btn[disabled]:focus,.btn[disabled]:hover,.form-control,.form-group .form-control,.form-group.has-error .form-control,.form-group.has-info .form-control,.form-group.has-success .form-control,.form-group.has-warning .form-control,.form-group.is-focused .form-control,.form-group.is-focused select.form-control,.navbar .navbar-nav>li>a.btn.btn-behance.btn-simple,.navbar .navbar-nav>li>a.btn.btn-deviantart.btn-simple,.navbar .navbar-nav>li>a.btn.btn-dribbble.btn-simple,.navbar .navbar-nav>li>a.btn.btn-facebook.btn-simple,.navbar .navbar-nav>li>a.btn.btn-github.btn-simple,.navbar .navbar-nav>li>a.btn.btn-google.btn-simple,.navbar .navbar-nav>li>a.btn.btn-instagram.btn-simple,.navbar .navbar-nav>li>a.btn.btn-linkedin.btn-simple,.navbar .navbar-nav>li>a.btn.btn-pinterest.btn-simple,.navbar .navbar-nav>li>a.btn.btn-reddit.btn-simple,.navbar .navbar-nav>li>a.btn.btn-snapchat.btn-simple,.navbar .navbar-nav>li>a.btn.btn-tumblr.btn-simple,.navbar .navbar-nav>li>a.btn.btn-twitter.btn-simple,.navbar .navbar-nav>li>a.btn.btn-vimeo.btn-simple,.navbar .navbar-nav>li>a.btn.btn-youtube.btn-simple,.navbar button.navbar-toggle,.navbar button.navbar-toggle:hover,.woocommerce form .form-row input.input-text,.woocommerce form .form-row textarea,fieldset[disabled] .btn,fieldset[disabled] .btn.active,fieldset[disabled] .btn.focus,fieldset[disabled] .btn:active,fieldset[disabled] .btn:focus,fieldset[disabled] .btn:hover,select.form-control{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.form-control,.form-group .form-control,.woocommerce form .form-row input.input-text,.woocommerce form .form-row textarea{background-image:-webkit-gradient(linear,left top,left bottom,from(#9c27b0),to(#9c27b0)),-webkit-gradient(linear,left top,left bottom,from(#d2d2d2),to(#d2d2d2));background-image:-webkit-linear-gradient(#9c27b0,#9c27b0),-webkit-linear-gradient(#d2d2d2,#d2d2d2);background-image:linear-gradient(#9c27b0,#9c27b0),linear-gradient(#d2d2d2,#d2d2d2);float:none;border:0;border-radius:0;background-color:transparent;background-repeat:no-repeat;background-position:center bottom,center -webkit-calc(100% - 1px);background-position:center bottom,center calc(100% - 1px);background-size:0 2px,100% 1px;font-weight:400;-webkit-transition:background 0s ease-out;transition:background 0s ease-out}.form-group.is-focused .form-control{background-image:-webkit-gradient(linear,left top,left bottom,from(#9c27b0),to(#9c27b0)),-webkit-gradient(linear,left top,left bottom,from(#d2d2d2),to(#d2d2d2));background-image:-webkit-linear-gradient(#9c27b0,#9c27b0),-webkit-linear-gradient(#d2d2d2,#d2d2d2);background-image:linear-gradient(#9c27b0,#9c27b0),linear-gradient(#d2d2d2,#d2d2d2);outline:0;background-size:100% 2px,100% 1px;-webkit-transition-duration:.3s;transition-duration:.3s}.blog-sidebar .widget h5,.card-product .price,.card-product .price h4,.carousel .sub-title,.hestia-about p,.media .media-heading,.navbar .navbar-brand,.shop-sidebar .widget h5,.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta,blockquote,h4.author{font-size:18px}a:not(.btn){transition:.3s ease}a:not(.btn):not(.button):not(.added_to_cart):hover{opacity:.75}.media p,h3#ship-to-different-address{font-size:16px}.btn,.form-control,.woocommerce #reviews #comments label,body{font-size:14px}.footer .footer-menu a,.hestia-top-bar,.label,.media-footer a,.navbar,.navbar a{font-size:12px}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-weight:300;line-height:1.618}.blog-post .section-text p,ol,output,ul{line-height:1.618}h1,h2,h3,h4,h5,h6{font-weight:500;line-height:1.618}.card-product .price h4,h4.author,h5.description,h5.subscribe-description{font-weight:300}h6.category{font-weight:500}.card-title,.footer-big h4,.footer-big h5,.footer-brand,.hestia-title,.info-title,.media .media-heading,.title,.woocommerce ul.products[class*=columns-] li.product-category h2{font-weight:700}.hestia-title{word-break:break-word}.btn,button,input[type=button],input[type=submit]{font-size:12px;font-weight:400}.btn:not(.btn-just-icon):not(.btn-fab) i{font-size:18px}.btn.btn-just-icon{font-size:20px;line-height:20px}.btn.btn-just-icon.btn-lg{font-size:22px}.btn i{font-size:17px}legend{font-size:21px}output{font-size:14px}button,input,select,textarea{font-size:inherit;line-height:inherit}.form-control{font-size:14px;line-height:1.42857}.checkbox label,.form-control:-ms-input-placeholder,.form-control::-moz-placeholder,.form-control::-webkit-input-placeholder,.form-group .checkbox label,.form-group .form-control:-ms-input-placeholder,.form-group .form-control::-moz-placeholder,.form-group .form-control::-webkit-input-placeholder,.form-group .radio label,.form-group label,.radio label,label{font-size:14px;font-weight:400;line-height:1.42857}.form-control:-ms-input-placeholder,.form-control::-moz-placeholder,.form-control::-webkit-input-placeholder,.form-group .form-control:-ms-input-placeholder,.form-group .form-control::-moz-placeholder,.form-group .form-control::-webkit-input-placeholder{font-weight:400}.form-group label.control-label{font-size:11px;font-weight:400;line-height:1.07143}.form-group.label-floating label.control-label,.form-group.label-placeholder label.control-label{font-size:14px;line-height:1.42857}.form-group.label-floating.is-focused label.control-label,.form-group.label-floating:not(.is-empty) label.control-label,.form-group.label-static label.control-label{font-size:11px;line-height:1.07143}label.control-label{font-size:11px;font-weight:400;line-height:1.07143}label.subscribe-label{font-weight:300}table>thead>tr>th{font-size:17px;font-weight:300}.help-block{font-size:11px}.hestia-info .icon>i,.info .icon>i{font-size:61.6px}.info-horizontal .icon>i{font-size:36.4px}.media .media-heading{font-size:18.2px}.media p{font-size:16px}.wp-caption-text{font-size:14px;font-weight:700}.blog-post .comment-reply-link{font-size:12px;font-weight:400}.blog-post .section-blog-info .card-profile .description{font-size:14px}.carousel .carousel-control i{font-size:50px}.card .footer .stats{line-height:30px}.card .footer .stats i{font-size:18px}.card .category i{line-height:0}.card-product .footer h4{line-height:1.2}.card-product .category,.card-title{line-height:1.4}.card-pricing .card-title{font-size:60px;line-height:35px}.card-pricing .card-title small{font-size:18px}.card-pricing .card-title small:first-child{font-size:26px}.navbar .navbar-brand{line-height:30px}.navbar .navbar-nav>li>a{font-weight:400}.navbar .navbar-nav>li>a i{font-size:20px}.navbar .dropdown-menu li>a{font-size:13px}.navbar .dropdown-menu li>a>i{font-size:20px}.navbar .dropdown-menu li>a i{font-size:20px}.navbar .hestia-mm-heading>span{font-size:14px;font-weight:600}.hestia-mm-description{font-size:12px;font-weight:400}.hestia-top-bar{line-height:40px}.hestia-top-bar .widget,.hestia-top-bar .widget .textwidget,.hestia-top-bar .widget h5{line-height:inherit}.hestia-top-bar .widget.widget_product_search .label-floating,.hestia-top-bar .widget.widget_search .label-floating{font-size:inherit}.hestia-top-bar .widget.widget_product_search .label-floating.is-empty,.hestia-top-bar .widget.widget_search .label-floating.is-empty{font-size:inherit;font-weight:300}.hestia-top-bar .widget.widget_product_search .label-floating.is-focused .control-label,.hestia-top-bar .widget.widget_search .label-floating.is-focused .control-label{font-size:inherit;line-height:20px}.hestia-top-bar .widget.widget_product_search form.form-group input[type=search],.hestia-top-bar .widget.widget_search form.form-group input[type=search]{font-size:inherit;font-weight:300}.hestia-top-bar .widget.widget_product_search form.form-group:before,.hestia-top-bar .widget.widget_search form.form-group:before{font-size:18px}.hestia-top-bar ul{line-height:inherit}.hestia-top-bar ul li a{font-size:inherit;line-height:inherit}.hestia-top-bar ul li a:before{font-size:16px}.pagination a,.pagination span{font-size:12px;font-weight:400;line-height:30px}.footer .widget h5{line-height:1.4}.footer-big .footer-menu li a[href*="mailto:"],.footer-big .footer-menu li a[href*="tel:"]{font-size:0}.footer-big .footer-menu li a[href*="mailto:"]:before,.footer-big .footer-menu li a[href*="tel:"]:before{font-size:16px}.footer-big ul li a{font-weight:500}h5.description{line-height:1.5}.hestia-about{font-weight:300}.hestia-about h1,.hestia-about h2,.hestia-about h3,.hestia-about h4,.hestia-about h5{font-weight:700}.widget h5{font-weight:700}.search-form:after,.searchform:after,.woocommerce-product-search:after{font-size:18px}.header-widgets-wrapper .widget,.header-widgets-wrapper .widget .textwidget,.header-widgets-wrapper .widget h5{line-height:inherit}.header-widgets-wrapper ul{line-height:inherit}.header-widgets-wrapper ul li a{font-size:inherit;line-height:inherit}.header-widgets-wrapper ul li a:before{font-size:16px}aside .widget a{font-weight:500}.star-rating{line-height:1;font-size:12px}.woocommerce-cart .shop_table .actions .coupon .input-text{font-size:14px}.woocommerce-cart table.shop_table th{font-size:13px;font-weight:300}.woocommerce-cart table.shop_table .product-name a{font-size:16px;font-weight:500;line-height:30px}.woocommerce-cart table.shop_table td.actions button[type=submit],.woocommerce-cart table.shop_table td.actions input[type=submit]{font-size:14px}.woocommerce-cart p.units-info{line-height:1.5;font-size:14px}.woocommerce-cart .wc-gzd-additional-wrapper p{font-size:14px;font-weight:700}.woocommerce-checkout .form-row label{font-weight:300}.woocommerce-checkout .woocommerce-checkout-payment .form-row .woocommerce-form__label-for-checkbox,.woocommerce-checkout .woocommerce-checkout-payment li>label{font-weight:400}.woocommerce-checkout .woocommerce-shipping-fields h3 label{line-height:1}.woocommerce-checkout .woocommerce-shipping-fields h3 label span{font-weight:300}.woocommerce-checkout .col-md-12 #customer_details label{font-weight:500}.woocommerce-checkout .shop_table tr td p.units-info{font-size:12px}.woocommerce-checkout .shop_table .wc-gzd-additional-info{font-size:14px}#add_payment_method .wc-proceed-to-checkout a.checkout-button,.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button{font-size:12px;font-weight:400}.woocommerce-account .woocommerce-Button,.woocommerce-account .woocommerce-button,.woocommerce-account a.button{line-height:20px!important}.woocommerce-account .woocommerce-MyAccount-content h2{font-weight:600}.added_to_cart.wc-forward{font-weight:400;font-size:10px;line-height:30px}.variations tr .label{font-size:14px}.woocommerce-error,.woocommerce-info,.woocommerce-message{line-height:20px}.woocommerce-error li,.woocommerce-info li,.woocommerce-message li{line-height:1.5}.woocommerce-error>a.button,.woocommerce-info>a.button,.woocommerce-message>a.button{font-size:12px;font-weight:700}.woocommerce-info a{font-weight:700}.woocommerce-message a:not(.button){font-weight:800}@media (max-width:991px){.woocommerce-account input.woocommerce-Button.button{font-size:11px}.woocommerce-breadcrumb{line-height:33px}}@media (min-width:769px){.navbar.full-screen-menu .navbar-nav>li a{font-size:17px}}@media (max-width:768px){h4.author{font-size:16px}.woocommerce-cart table.shop_table dl.variation dd,.woocommerce-cart table.shop_table dl.variation dt{font-size:16px;line-height:30px}.woocommerce-cart table.shop_table dl.variation dd p{font-size:16px}.woocommerce-cart table.shop_table td.product-name{line-height:30px}.woocommerce-checkout td.product-name dl.variation dd,.woocommerce-checkout td.product-name dl.variation dt{font-size:16px}.woocommerce-checkout td.product-name dl.variation dd p{font-size:16px}.navbar .navbar-nav li>a i,.navbar .navbar-nav li>a>i{font-size:22px}.navbar .navbar-nav li .caret{font-size:20px}.navbar .navbar-nav li .dropdown i,.navbar .navbar-nav li .dropdown>i{font-size:20px}.navbar .navbar-nav .dropdown .dropdown-menu li a{line-height:20px}.navbar .navbar-nav .dropdown .dropdown-menu li a .caret{line-height:1}}@media (max-width:480px){.woocommerce .woocommerce-ordering select,.woocommerce-page .woocommerce-ordering select{font-size:12px}}body{direction:ltr;color:#3c4858;font-family:Roboto,Helvetica,Arial,sans-serif}h1,h2,h3,h4,h5,h6{font-family:Roboto,Helvetica,Arial,sans-serif}a{color:#9c27b0}a:focus,a:hover{color:#89229b;text-decoration:none}blockquote p{font-style:italic}h3{margin:20px 0 10px}h5{margin-bottom:15px}h6.category{text-transform:uppercase}.card-title,.footer-big h4,.footer-big h5,.footer-brand,.hestia-title,.info-title,.media .media-heading,.title,.woocommerce ul.products[class*=columns-] li.product-category h2{font-family:"Roboto Slab","Times New Roman",serif}.card-title,.card-title a,.card-title a:hover,.footer-big h4,.footer-big h4 a,.footer-big h4 a:hover,.footer-big h5,.footer-big h5 a,.footer-big h5 a:hover,.footer-brand,.footer-brand a,.footer-brand a:hover,.hestia-title,.hestia-title a,.hestia-title a:hover,.info-title,.info-title a,.info-title a:hover,.media .media-heading,.media .media-heading a,.media .media-heading a:hover,.title,.title a,.title a:hover,.woocommerce ul.products[class*=columns-] li.product-category h2,.woocommerce ul.products[class*=columns-] li.product-category h2 a,.woocommerce ul.products[class*=columns-] li.product-category h2 a:hover{color:#3c4858;text-decoration:none;word-wrap:break-word}.page-header .hestia-title{line-height:1.4}.title-in-content{line-height:1.3}.contactus h2.hestia-title,.contactus h2.title,.pricing h2.hestia-title,.pricing h2.title,h1.hestia-title,h1.title{margin-bottom:30px}h2.hestia-title,h2.title{margin-bottom:10px}.carousel h1.hestia-title,.carousel h2.title{font-family:Roboto,Helvetica,Arial,sans-serif}.carousel span.sub-title{display:block;margin:10px 0 0;font-family:"Roboto Slab","Times New Roman",serif}.carousel .buttons{margin-top:60px}.card-description,.description,.footer-big{color:#999}.card-description.entry-content{color:#3c4858}.subscribe-line-image .subscribe-description{color:#efefef}.text-warning{color:#ff9800}.text-primary{color:#9c27b0}.text-danger{color:#f44336}.text-success{color:#4caf50}.text-info{color:#00bcd4}.text-rose{color:#e91e63}.text-gray{color:#999}.has-black-color{color:#000}.has-white-color{color:#fff}.has-background.has-black-background-color{background-color:#000}.has-background.has-white-background-color{background-color:#fff}.page:not(.woocommerce-page) .blog-post .section-text h1,.page:not(.woocommerce-page) .blog-post .section-text h2,.page:not(.woocommerce-page) .blog-post .section-text h3,.page:not(.woocommerce-page) .blog-post .section-text h4,.page:not(.woocommerce-page) .blog-post .section-text h5,.page:not(.woocommerce-page) .blog-post .section-text h6,.page:not(.woocommerce-page) .blog-post .section-text p,.single-post .blog-post .section-text h1,.single-post .blog-post .section-text h2,.single-post .blog-post .section-text h3,.single-post .blog-post .section-text h4,.single-post .blog-post .section-text h5,.single-post .blog-post .section-text h6,.single-post .blog-post .section-text p{margin:0 0 15px}.page:not(.woocommerce-page) .blog-post .section-text h1.form-submit,.page:not(.woocommerce-page) .blog-post .section-text h2.form-submit,.page:not(.woocommerce-page) .blog-post .section-text h3.form-submit,.page:not(.woocommerce-page) .blog-post .section-text h4.form-submit,.page:not(.woocommerce-page) .blog-post .section-text h5.form-submit,.page:not(.woocommerce-page) .blog-post .section-text h6.form-submit,.page:not(.woocommerce-page) .blog-post .section-text p.form-submit,.single-post .blog-post .section-text h1.form-submit,.single-post .blog-post .section-text h2.form-submit,.single-post .blog-post .section-text h3.form-submit,.single-post .blog-post .section-text h4.form-submit,.single-post .blog-post .section-text h5.form-submit,.single-post .blog-post .section-text h6.form-submit,.single-post .blog-post .section-text p.form-submit{margin:0 0 10px}.tooltip{opacity:0;-webkit-transition:opacity,-webkit-transform .2s ease;transition:opacity,-webkit-transform .2s ease;transition:opacity,transform .2s ease;transition:opacity,transform .2s ease,-webkit-transform .2s ease;-webkit-transform:translate3d(0,5px,0);-ms-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}.tooltip.in{opacity:1;-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.tooltip.left .tooltip-arrow{border-left-color:#fff}.tooltip.right .tooltip-arrow{border-right-color:#fff}.tooltip.top .tooltip-arrow{border-top-color:#fff}.tooltip.bottom .tooltip-arrow{border-bottom-color:#fff}.tooltip-inner{min-width:130px;padding:10px 15px;border:none;border-radius:3px;color:#555;background:#fff;-webkit-box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12),0 5px 5px -3px rgba(0,0,0,.2);box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12),0 5px 5px -3px rgba(0,0,0,.2);font-size:12px;line-height:1.5;text-transform:none}.screen-reader-text{clip:rect(1px,1px,1px,1px);position:absolute!important;height:1px;width:1px;overflow:hidden}.screen-reader-text:focus{background-color:#f1f1f1;border-radius:3px;-webkit-box-shadow:0 0 2px 2px rgba(0,0,0,.6);box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;color:#21759b;display:block;font-size:14px;font-weight:700;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}.container{max-width:100%}@media (min-width:749px){.container{max-width:748px}}@media (min-width:768px){.container{max-width:750px}}@media (min-width:992px){.container{max-width:970px}}@media (min-width:1200px){.container{max-width:2000px}}body{direction:ltr;background-color:#e5e5e5;overflow-x:hidden}*{-webkit-tap-highlight-color:rgba(255,255,255,0);-webkit-tap-highlight-color:transparent}.wp-caption,button,embed,iframe,img,input,object,select,textarea,video{max-width:100%}img{height:auto}ol,ul{margin-bottom:30px}legend{border-bottom:0}.container{max-width:100%}.margin-left-auto{margin-left:auto}.margin-right-auto{margin-right:auto}.animation-transition-fast,.navbar,.panel .panel-heading i,.section-cards .card{-webkit-transition:all 150ms ease;transition:all 150ms ease}.thumbnail{padding:0;border:0 none;border-radius:0}.default-link,.default-link:hover,.hestia-title .default-link,.section-image .default-link,.section-image .description .default-link,.title .default-link{color:#fff}.description .default-link{color:#999}body.menu-open{overflow:hidden}@media (min-width:992px){.row.hestia-like-table{display:table;width:100%}.row.hestia-like-table>div{display:table-cell;vertical-align:middle;float:none}}@media (max-width:991px){.hestia-xs-text-center{text-align:center}}.hestia-blogs article:nth-of-type(6n) .category a,.related-posts div:nth-of-type(6n) .category a,.related.products ul li:nth-of-type(6n) .category a,.shop-item:nth-of-type(6n) .category a,.woocommerce .products li:nth-of-type(6n) .category a,.woocommerce.archive .blog-post .products li:nth-of-type(6n) .category a{color:#4caf50}.hestia-blogs article:nth-of-type(6n+1) .category a,.related-posts div:nth-of-type(6n+1) .category a,.related.products ul li:nth-of-type(6n+1) .category a,.shop-item:nth-of-type(6n+1) .category a,.woocommerce .products li:nth-of-type(6n+1) .category a,.woocommerce.archive .blog-post .products li:nth-of-type(6n+1) .category a{color:#89229b}.hestia-blogs article:nth-of-type(6n+2) .category a,.related-posts div:nth-of-type(6n+2) .category a,.related.products ul li:nth-of-type(6n+2) .category a,.shop-item:nth-of-type(6n+2) .category a,.woocommerce .products li:nth-of-type(6n+2) .category a,.woocommerce.archive .blog-post .products li:nth-of-type(6n+2) .category a{color:#00bcd4}.hestia-blogs article:nth-of-type(6n+3) .category a,.related-posts div:nth-of-type(6n+3) .category a,.related.products ul li:nth-of-type(6n+3) .category a,.shop-item:nth-of-type(6n+3) .category a,.woocommerce .products li:nth-of-type(6n+3) .category a,.woocommerce.archive .blog-post .products li:nth-of-type(6n+3) .category a{color:#f44336}.hestia-blogs article:nth-of-type(6n+4) .category a,.related-posts div:nth-of-type(6n+4) .category a,.related.products ul li:nth-of-type(6n+4) .category a,.shop-item:nth-of-type(6n+4) .category a,.woocommerce .products li:nth-of-type(6n+4) .category a,.woocommerce.archive .blog-post .products li:nth-of-type(6n+4) .category a{color:#ff9800}.hestia-blogs article:nth-of-type(6n+5) .category a,.related-posts div:nth-of-type(6n+5) .category a,.related.products ul li:nth-of-type(6n+5) .category a,.shop-item:nth-of-type(6n+5) .category a,.woocommerce .products li:nth-of-type(6n+5) .category a,.woocommerce.archive .blog-post .products li:nth-of-type(6n+5) .category a{color:#e91e63}.hestia-blogs article:nth-of-type(6n) .card-body .btn{background-color:#4caf50}.hestia-blogs article:nth-of-type(6n+1) .card-body .btn{background-color:#89229b}.hestia-blogs article:nth-of-type(6n+2) .card-body .btn{background-color:#00bcd4}.hestia-blogs article:nth-of-type(6n+3) .card-body .btn{background-color:#f44336}.hestia-blogs article:nth-of-type(6n+4) .card-body .btn{background-color:#ff9800}.hestia-blogs article:nth-of-type(6n+5) .card-body .btn{background-color:#e91e63}.wp-audio-shortcode{margin-bottom:20px}.wp-video-shortcode{margin-bottom:20px}input[type=checkbox]+label,input[type=radio]+label{font-weight:400}blockquote.has-text-align-right{border-left:0;border-right:5px solid #eee}blockquote cite{font-size:.8em;color:#777;font-style:normal;font-weight:400}::-moz-focus-inner,:active,:focus{outline:0!important}.btn::-moz-focus-inner,button,input[type=button]::-moz-focus-inner,input[type=submit]::-moz-focus-inner{border:0}button,input,select,textarea{font-family:inherit;padding:7px}button:focus,input:focus,select:focus,textarea:focus{outline:0!important}.btn,button,input[type=button],input[type=submit]{position:relative;margin:10px 1px;padding:12px 30px;border:none;border-radius:3px;white-space:normal;letter-spacing:0;text-transform:uppercase}input[type=number]{padding:0}.btn,.btn.btn-default,button,input[type=button],input[type=submit]{-webkit-box-shadow:0 2px 2px 0 rgba(153,153,153,.14),0 3px 1px -2px rgba(153,153,153,.2),0 1px 5px 0 rgba(153,153,153,.12);-moz-box-shadow:0 2px 2px 0 rgba(153,153,153,.14),0 3px 1px -2px rgba(153,153,153,.2),0 1px 5px 0 rgba(153,153,153,.12);box-shadow:0 2px 2px 0 rgba(153,153,153,.14),0 3px 1px -2px rgba(153,153,153,.2),0 1px 5px 0 rgba(153,153,153,.12)}.btn.btn-default:active,.btn.btn-default:focus,.btn.btn-default:hover,.btn:active,.btn:focus,.btn:hover,button:active,button:focus,button:hover,input[type=button]:active,input[type=button]:focus,input[type=button]:hover,input[type=submit]:active,input[type=submit]:focus,input[type=submit]:hover{-webkit-box-shadow:0 14px 26px -12px rgba(153,153,153,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(153,153,153,.2);-moz-box-shadow:0 14px 26px -12px rgba(153,153,153,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(153,153,153,.2);box-shadow:0 14px 26px -12px rgba(153,153,153,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(153,153,153,.2)}.btn,.btn.active,.btn.active:focus,.btn.active:hover,.btn.btn-default,.btn.btn-default.active,.btn.btn-default.active:focus,.btn.btn-default.active:hover,.btn.btn-default:active,.btn.btn-default:active:focus,.btn.btn-default:active:hover,.btn.btn-default:focus,.btn.btn-default:hover,.btn:active,.btn:active:focus,.btn:active:hover,.btn:focus,.btn:hover,.open>.btn.btn-default.dropdown-toggle,.open>.btn.btn-default.dropdown-toggle:focus,.open>.btn.btn-default.dropdown-toggle:hover,.open>.btn.dropdown-toggle,.open>.btn.dropdown-toggle:focus,.open>.btn.dropdown-toggle:hover,button:focus,button:hover,input[type=button]:active,input[type=button]:focus,input[type=button]:hover,input[type=submit]:active,input[type=submit]:focus,input[type=submit]:hover{color:#fff;background-color:#999;outline:0}.btn:active>a,.btn:focus>a,.btn:hover>a,.btn>a:active,.btn>a:focus,.btn>a:hover{color:#fff}.btn.btn-default.btn-simple,.btn.btn-default.btn-simple:active,.btn.btn-default.btn-simple:focus,.btn.btn-default.btn-simple:hover,.btn.btn-simple,.btn.btn-simple:active,.btn.btn-simple:focus,.btn.btn-simple:hover{color:#999;background-color:transparent}.btn.btn-primary,button,input[type=button],input[type=submit]{-webkit-box-shadow:0 2px 2px 0 rgba(156,39,176,.14),0 3px 1px -2px rgba(156,39,176,.2),0 1px 5px 0 rgba(156,39,176,.12);-moz-box-shadow:0 2px 2px 0 rgba(156,39,176,.14),0 3px 1px -2px rgba(156,39,176,.2),0 1px 5px 0 rgba(156,39,176,.12);box-shadow:0 2px 2px 0 rgba(156,39,176,.14),0 3px 1px -2px rgba(156,39,176,.2),0 1px 5px 0 rgba(156,39,176,.12)}.btn.btn-primary:active,.btn.btn-primary:focus,.btn.btn-primary:hover,button:active,button:focus,button:hover,input[type=button]:active,input[type=button]:focus,input[type=button]:hover,input[type=submit]:active,input[type=submit]:focus,input[type=submit]:hover{-webkit-box-shadow:0 14px 26px -12px rgba(156,39,176,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(156,39,176,.2);-moz-box-shadow:0 14px 26px -12px rgba(156,39,176,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(156,39,176,.2);box-shadow:0 14px 26px -12px rgba(156,39,176,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(156,39,176,.2)}.btn.btn-primary.btn-simple,.btn.btn-primary.btn-simple:active,.btn.btn-primary.btn-simple:focus,.btn.btn-primary.btn-simple:hover{color:#9c27b0;background-color:transparent}.btn.btn-primary,.btn.btn-primary.active,.btn.btn-primary.active:focus,.btn.btn-primary.active:hover,.btn.btn-primary:active,.btn.btn-primary:active:focus,.btn.btn-primary:active:hover,.btn.btn-primary:focus,.btn.btn-primary:hover,.open>.btn.btn-primary.dropdown-toggle,.open>.btn.btn-primary.dropdown-toggle:focus,.open>.btn.btn-primary.dropdown-toggle:hover,button,button:hover,input#searchsubmit,input[type=button],input[type=button]:hover,input[type=submit],input[type=submit]:hover{color:#fff;background-color:#9c27b0}.btn.btn-white{box-shadow:0 2px 2px 0 rgba(153,153,153,.14),0 3px 1px -2px rgba(153,153,153,.2),0 1px 5px 0 rgba(153,153,153,.12);color:#999;background-color:#fff}.btn.btn-white.btn-white:focus,.btn.btn-white.btn-white:hover{color:#fff;background-color:rgba(153,153,153,.6)}.btn.btn-white.btn-simple{color:#fff;background:0 0}.btn.btn-round{border-radius:30px}.btn:not(.btn-just-icon):not(.btn-fab) i{position:relative}.btn.btn-just-icon{padding:12px}.btn.btn-just-icon:hover{box-shadow:none}.btn.btn-just-icon i{width:20px}.btn.btn-just-icon.btn-lg{padding:13px 18px}.btn.btn-border{background:0 0;border:1px solid #d2d2d2;color:#999}.btn.btn-border:focus,.btn.btn-border:hover{background:0 0;color:#3c4858}.btn i{position:relative;top:-1px;vertical-align:middle}.navbar button.navbar-toggle,.navbar button.navbar-toggle:hover{color:#555}.navbar .button:hover{box-shadow:none!important;color:#e91e63}.navbar .dropdown-menu li.btn:active>a,.navbar .dropdown-menu li.btn:focus>a,.navbar .dropdown-menu li.btn:hover>a{color:#fff!important}.btn.btn-facebook,.btn.btn-facebook:active,.btn.btn-facebook:focus,.btn.btn-facebook:hover,.navbar .navbar-nav>li>a.btn.btn-facebook,.navbar .navbar-nav>li>a.btn.btn-facebook:active,.navbar .navbar-nav>li>a.btn.btn-facebook:focus,.navbar .navbar-nav>li>a.btn.btn-facebook:hover{color:#fff;background-color:#3b5998}.btn.btn-facebook,.navbar .navbar-nav>li>a.btn.btn-facebook{-webkit-box-shadow:0 2px 2px 0 rgba(59,89,152,.14),0 3px 1px -2px rgba(59,89,152,.2),0 1px 5px 0 rgba(59,89,152,.12);-moz-box-shadow:0 2px 2px 0 rgba(59,89,152,.14),0 3px 1px -2px rgba(59,89,152,.2),0 1px 5px 0 rgba(59,89,152,.12);box-shadow:0 2px 2px 0 rgba(59,89,152,.14),0 3px 1px -2px rgba(59,89,152,.2),0 1px 5px 0 rgba(59,89,152,.12)}.btn.btn-facebook:active,.btn.btn-facebook:focus,.btn.btn-facebook:hover,.navbar .navbar-nav>li>a.btn.btn-facebook:active,.navbar .navbar-nav>li>a.btn.btn-facebook:focus,.navbar .navbar-nav>li>a.btn.btn-facebook:hover{-webkit-box-shadow:0 14px 26px -12px rgba(59,89,152,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(59,89,152,.2);-moz-box-shadow:0 14px 26px -12px rgba(59,89,152,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(59,89,152,.2);box-shadow:0 14px 26px -12px rgba(59,89,152,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(59,89,152,.2)}.btn.btn-facebook.btn-simple,.navbar .navbar-nav>li>a.btn.btn-facebook.btn-simple{color:#3b5998;background-color:transparent}.btn.btn-twitter,.btn.btn-twitter:active,.btn.btn-twitter:focus,.btn.btn-twitter:hover,.navbar .navbar-nav>li>a.btn.btn-twitter,.navbar .navbar-nav>li>a.btn.btn-twitter:active,.navbar .navbar-nav>li>a.btn.btn-twitter:focus,.navbar .navbar-nav>li>a.btn.btn-twitter:hover{color:#fff;background-color:#55acee}.btn.btn-twitter,.navbar .navbar-nav>li>a.btn.btn-twitter{-webkit-box-shadow:0 2px 2px 0 rgba(85,172,238,.14),0 3px 1px -2px rgba(85,172,238,.2),0 1px 5px 0 rgba(85,172,238,.12);-moz-box-shadow:0 2px 2px 0 rgba(85,172,238,.14),0 3px 1px -2px rgba(85,172,238,.2),0 1px 5px 0 rgba(85,172,238,.12);box-shadow:0 2px 2px 0 rgba(85,172,238,.14),0 3px 1px -2px rgba(85,172,238,.2),0 1px 5px 0 rgba(85,172,238,.12)}.btn.btn-twitter:active,.btn.btn-twitter:focus,.btn.btn-twitter:hover,.navbar .navbar-nav>li>a.btn.btn-twitter:active,.navbar .navbar-nav>li>a.btn.btn-twitter:focus,.navbar .navbar-nav>li>a.btn.btn-twitter:hover{-webkit-box-shadow:0 14px 26px -12px rgba(85,172,238,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(85,172,238,.2);-moz-box-shadow:0 14px 26px -12px rgba(85,172,238,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(85,172,238,.2);box-shadow:0 14px 26px -12px rgba(85,172,238,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(85,172,238,.2)}.btn.btn-twitter.btn-simple,.navbar .navbar-nav>li>a.btn.btn-twitter.btn-simple{color:#55acee;background-color:transparent}.btn.btn-pinterest,.btn.btn-pinterest:active,.btn.btn-pinterest:focus,.btn.btn-pinterest:hover,.navbar .navbar-nav>li>a.btn.btn-pinterest,.navbar .navbar-nav>li>a.btn.btn-pinterest:active,.navbar .navbar-nav>li>a.btn.btn-pinterest:focus,.navbar .navbar-nav>li>a.btn.btn-pinterest:hover{color:#fff;background-color:#cc2127}.btn.btn-pinterest,.navbar .navbar-nav>li>a.btn.btn-pinterest{-webkit-box-shadow:0 2px 2px 0 rgba(204,33,39,.14),0 3px 1px -2px rgba(204,33,39,.2),0 1px 5px 0 rgba(204,33,39,.12);-moz-box-shadow:0 2px 2px 0 rgba(204,33,39,.14),0 3px 1px -2px rgba(204,33,39,.2),0 1px 5px 0 rgba(204,33,39,.12);box-shadow:0 2px 2px 0 rgba(204,33,39,.14),0 3px 1px -2px rgba(204,33,39,.2),0 1px 5px 0 rgba(204,33,39,.12)}.btn.btn-pinterest:active,.btn.btn-pinterest:focus,.btn.btn-pinterest:hover,.navbar .navbar-nav>li>a.btn.btn-pinterest:active,.navbar .navbar-nav>li>a.btn.btn-pinterest:focus,.navbar .navbar-nav>li>a.btn.btn-pinterest:hover{-webkit-box-shadow:0 14px 26px -12px rgba(204,33,39,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(204,33,39,.2);-moz-box-shadow:0 14px 26px -12px rgba(204,33,39,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(204,33,39,.2);box-shadow:0 14px 26px -12px rgba(204,33,39,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(204,33,39,.2)}.btn.btn-pinterest.btn-simple,.navbar .navbar-nav>li>a.btn.btn-pinterest.btn-simple{color:#cc2127;background-color:transparent}.btn.btn-google,.btn.btn-google:active,.btn.btn-google:focus,.btn.btn-google:hover,.navbar .navbar-nav>li>a.btn.btn-google,.navbar .navbar-nav>li>a.btn.btn-google:active,.navbar .navbar-nav>li>a.btn.btn-google:focus,.navbar .navbar-nav>li>a.btn.btn-google:hover{color:#fff;background-color:#dd4b39}.btn.btn-google,.navbar .navbar-nav>li>a.btn.btn-google{-webkit-box-shadow:0 2px 2px 0 rgba(221,75,57,.14),0 3px 1px -2px rgba(221,75,57,.2),0 1px 5px 0 rgba(221,75,57,.12);-moz-box-shadow:0 2px 2px 0 rgba(221,75,57,.14),0 3px 1px -2px rgba(221,75,57,.2),0 1px 5px 0 rgba(221,75,57,.12);box-shadow:0 2px 2px 0 rgba(221,75,57,.14),0 3px 1px -2px rgba(221,75,57,.2),0 1px 5px 0 rgba(221,75,57,.12)}.btn.btn-google:active,.btn.btn-google:focus,.btn.btn-google:hover,.navbar .navbar-nav>li>a.btn.btn-google:active,.navbar .navbar-nav>li>a.btn.btn-google:focus,.navbar .navbar-nav>li>a.btn.btn-google:hover{-webkit-box-shadow:0 14px 26px -12px rgba(221,75,57,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(221,75,57,.2);-moz-box-shadow:0 14px 26px -12px rgba(221,75,57,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(221,75,57,.2);box-shadow:0 14px 26px -12px rgba(221,75,57,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(221,75,57,.2)}.btn.btn-google.btn-simple,.navbar .navbar-nav>li>a.btn.btn-google.btn-simple{color:#dd4b39;background-color:transparent}.btn.btn-linkedin,.btn.btn-linkedin:active,.btn.btn-linkedin:focus,.btn.btn-linkedin:hover,.navbar .navbar-nav>li>a.btn.btn-linkedin,.navbar .navbar-nav>li>a.btn.btn-linkedin:active,.navbar .navbar-nav>li>a.btn.btn-linkedin:focus,.navbar .navbar-nav>li>a.btn.btn-linkedin:hover{color:#fff;background-color:#0976b4}.btn.btn-linkedin,.navbar .navbar-nav>li>a.btn.btn-linkedin{-webkit-box-shadow:0 2px 2px 0 rgba(9,118,180,.14),0 3px 1px -2px rgba(9,118,180,.2),0 1px 5px 0 rgba(9,118,180,.12);-moz-box-shadow:0 2px 2px 0 rgba(9,118,180,.14),0 3px 1px -2px rgba(9,118,180,.2),0 1px 5px 0 rgba(9,118,180,.12);box-shadow:0 2px 2px 0 rgba(9,118,180,.14),0 3px 1px -2px rgba(9,118,180,.2),0 1px 5px 0 rgba(9,118,180,.12)}.btn.btn-linkedin:active,.btn.btn-linkedin:focus,.btn.btn-linkedin:hover,.navbar .navbar-nav>li>a.btn.btn-linkedin:active,.navbar .navbar-nav>li>a.btn.btn-linkedin:focus,.navbar .navbar-nav>li>a.btn.btn-linkedin:hover{-webkit-box-shadow:0 14px 26px -12px rgba(9,118,180,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(9,118,180,.2);-moz-box-shadow:0 14px 26px -12px rgba(9,118,180,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(9,118,180,.2);box-shadow:0 14px 26px -12px rgba(9,118,180,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(9,118,180,.2)}.btn.btn-linkedin.btn-simple,.navbar .navbar-nav>li>a.btn.btn-linkedin.btn-simple{color:#0976b4;background-color:transparent}.btn.btn-dribbble,.btn.btn-dribbble:active,.btn.btn-dribbble:focus,.btn.btn-dribbble:hover,.navbar .navbar-nav>li>a.btn.btn-dribbble,.navbar .navbar-nav>li>a.btn.btn-dribbble:active,.navbar .navbar-nav>li>a.btn.btn-dribbble:focus,.navbar .navbar-nav>li>a.btn.btn-dribbble:hover{color:#fff;background-color:#ea4c89}.btn.btn-dribbble,.navbar .navbar-nav>li>a.btn.btn-dribbble{-webkit-box-shadow:0 2px 2px 0 rgba(234,76,137,.14),0 3px 1px -2px rgba(234,76,137,.2),0 1px 5px 0 rgba(234,76,137,.12);-moz-box-shadow:0 2px 2px 0 rgba(234,76,137,.14),0 3px 1px -2px rgba(234,76,137,.2),0 1px 5px 0 rgba(234,76,137,.12);box-shadow:0 2px 2px 0 rgba(234,76,137,.14),0 3px 1px -2px rgba(234,76,137,.2),0 1px 5px 0 rgba(234,76,137,.12)}.btn.btn-dribbble:active,.btn.btn-dribbble:focus,.btn.btn-dribbble:hover,.navbar .navbar-nav>li>a.btn.btn-dribbble:active,.navbar .navbar-nav>li>a.btn.btn-dribbble:focus,.navbar .navbar-nav>li>a.btn.btn-dribbble:hover{-webkit-box-shadow:0 14px 26px -12px rgba(234,76,137,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(234,76,137,.2);-moz-box-shadow:0 14px 26px -12px rgba(234,76,137,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(234,76,137,.2);box-shadow:0 14px 26px -12px rgba(234,76,137,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(234,76,137,.2)}.btn.btn-dribbble.btn-simple,.navbar .navbar-nav>li>a.btn.btn-dribbble.btn-simple{color:#ea4c89;background-color:transparent}.btn.btn-github,.btn.btn-github:active,.btn.btn-github:focus,.btn.btn-github:hover,.navbar .navbar-nav>li>a.btn.btn-github,.navbar .navbar-nav>li>a.btn.btn-github:active,.navbar .navbar-nav>li>a.btn.btn-github:focus,.navbar .navbar-nav>li>a.btn.btn-github:hover{color:#fff;background-color:#000}.btn.btn-github,.navbar .navbar-nav>li>a.btn.btn-github{-webkit-box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);-moz-box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12)}.btn.btn-github:active,.btn.btn-github:focus,.btn.btn-github:hover,.navbar .navbar-nav>li>a.btn.btn-github:active,.navbar .navbar-nav>li>a.btn.btn-github:focus,.navbar .navbar-nav>li>a.btn.btn-github:hover{-webkit-box-shadow:0 14px 26px -12px rgba(0,0,0,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2);-moz-box-shadow:0 14px 26px -12px rgba(0,0,0,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2);box-shadow:0 14px 26px -12px rgba(0,0,0,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2)}.btn.btn-github.btn-simple,.navbar .navbar-nav>li>a.btn.btn-github.btn-simple{color:#000;background-color:transparent}.btn.btn-youtube,.btn.btn-youtube:active,.btn.btn-youtube:focus,.btn.btn-youtube:hover,.navbar .navbar-nav>li>a.btn.btn-youtube,.navbar .navbar-nav>li>a.btn.btn-youtube:active,.navbar .navbar-nav>li>a.btn.btn-youtube:focus,.navbar .navbar-nav>li>a.btn.btn-youtube:hover{color:#fff;background-color:#e52d27}.btn.btn-youtube,.navbar .navbar-nav>li>a.btn.btn-youtube{-webkit-box-shadow:0 2px 2px 0 rgba(229,45,39,.14),0 3px 1px -2px rgba(229,45,39,.2),0 1px 5px 0 rgba(229,45,39,.12);-moz-box-shadow:0 2px 2px 0 rgba(229,45,39,.14),0 3px 1px -2px rgba(229,45,39,.2),0 1px 5px 0 rgba(229,45,39,.12);box-shadow:0 2px 2px 0 rgba(229,45,39,.14),0 3px 1px -2px rgba(229,45,39,.2),0 1px 5px 0 rgba(229,45,39,.12)}.btn.btn-youtube:active,.btn.btn-youtube:focus,.btn.btn-youtube:hover,.navbar .navbar-nav>li>a.btn.btn-youtube:active,.navbar .navbar-nav>li>a.btn.btn-youtube:focus,.navbar .navbar-nav>li>a.btn.btn-youtube:hover{-webkit-box-shadow:0 14px 26px -12px rgba(229,45,39,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(229,45,39,.2);-moz-box-shadow:0 14px 26px -12px rgba(229,45,39,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(229,45,39,.2);box-shadow:0 14px 26px -12px rgba(229,45,39,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(229,45,39,.2)}.btn.btn-youtube.btn-simple,.navbar .navbar-nav>li>a.btn.btn-youtube.btn-simple{color:#e52d27;background-color:transparent}.btn.btn-instagram,.btn.btn-instagram:active,.btn.btn-instagram:focus,.btn.btn-instagram:hover,.navbar .navbar-nav>li>a.btn.btn-instagram,.navbar .navbar-nav>li>a.btn.btn-instagram:active,.navbar .navbar-nav>li>a.btn.btn-instagram:focus,.navbar .navbar-nav>li>a.btn.btn-instagram:hover{color:#fff;background-color:#125688}.btn.btn-instagram,.navbar .navbar-nav>li>a.btn.btn-instagram{-webkit-box-shadow:0 2px 2px 0 rgba(18,86,136,.14),0 3px 1px -2px rgba(18,86,136,.2),0 1px 5px 0 rgba(18,86,136,.12);-moz-box-shadow:0 2px 2px 0 rgba(18,86,136,.14),0 3px 1px -2px rgba(18,86,136,.2),0 1px 5px 0 rgba(18,86,136,.12);box-shadow:0 2px 2px 0 rgba(18,86,136,.14),0 3px 1px -2px rgba(18,86,136,.2),0 1px 5px 0 rgba(18,86,136,.12)}.btn.btn-instagram:active,.btn.btn-instagram:focus,.btn.btn-instagram:hover,.navbar .navbar-nav>li>a.btn.btn-instagram:active,.navbar .navbar-nav>li>a.btn.btn-instagram:focus,.navbar .navbar-nav>li>a.btn.btn-instagram:hover{-webkit-box-shadow:0 14px 26px -12px rgba(18,86,136,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(18,86,136,.2);-moz-box-shadow:0 14px 26px -12px rgba(18,86,136,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(18,86,136,.2);box-shadow:0 14px 26px -12px rgba(18,86,136,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(18,86,136,.2)}.btn.btn-instagram.btn-simple,.navbar .navbar-nav>li>a.btn.btn-instagram.btn-simple{color:#125688;background-color:transparent}.btn.btn-reddit,.btn.btn-reddit:active,.btn.btn-reddit:focus,.btn.btn-reddit:hover,.navbar .navbar-nav>li>a.btn.btn-reddit,.navbar .navbar-nav>li>a.btn.btn-reddit:active,.navbar .navbar-nav>li>a.btn.btn-reddit:focus,.navbar .navbar-nav>li>a.btn.btn-reddit:hover{color:#fff;background-color:#ff4500}.btn.btn-reddit,.navbar .navbar-nav>li>a.btn.btn-reddit{-webkit-box-shadow:0 2px 2px 0 rgba(255,69,0,.14),0 3px 1px -2px rgba(255,69,0,.2),0 1px 5px 0 rgba(255,69,0,.12);-moz-box-shadow:0 2px 2px 0 rgba(255,69,0,.14),0 3px 1px -2px rgba(255,69,0,.2),0 1px 5px 0 rgba(255,69,0,.12);box-shadow:0 2px 2px 0 rgba(255,69,0,.14),0 3px 1px -2px rgba(255,69,0,.2),0 1px 5px 0 rgba(255,69,0,.12)}.btn.btn-reddit:active,.btn.btn-reddit:focus,.btn.btn-reddit:hover,.navbar .navbar-nav>li>a.btn.btn-reddit:active,.navbar .navbar-nav>li>a.btn.btn-reddit:focus,.navbar .navbar-nav>li>a.btn.btn-reddit:hover{-webkit-box-shadow:0 14px 26px -12px rgba(255,69,0,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(255,69,0,.2);-moz-box-shadow:0 14px 26px -12px rgba(255,69,0,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(255,69,0,.2);box-shadow:0 14px 26px -12px rgba(255,69,0,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(255,69,0,.2)}.btn.btn-reddit.btn-simple,.navbar .navbar-nav>li>a.btn.btn-reddit.btn-simple{color:#ff4500;background-color:transparent}.btn.btn-tumblr,.btn.btn-tumblr:active,.btn.btn-tumblr:focus,.btn.btn-tumblr:hover,.navbar .navbar-nav>li>a.btn.btn-tumblr,.navbar .navbar-nav>li>a.btn.btn-tumblr:active,.navbar .navbar-nav>li>a.btn.btn-tumblr:focus,.navbar .navbar-nav>li>a.btn.btn-tumblr:hover{color:#fff;background-color:#35465c}.btn.btn-tumblr,.navbar .navbar-nav>li>a.btn.btn-tumblr{-webkit-box-shadow:0 2px 2px 0 rgba(53,70,92,.14),0 3px 1px -2px rgba(53,70,92,.2),0 1px 5px 0 rgba(53,70,92,.12);-moz-box-shadow:0 2px 2px 0 rgba(53,70,92,.14),0 3px 1px -2px rgba(53,70,92,.2),0 1px 5px 0 rgba(53,70,92,.12);box-shadow:0 2px 2px 0 rgba(53,70,92,.14),0 3px 1px -2px rgba(53,70,92,.2),0 1px 5px 0 rgba(53,70,92,.12)}.btn.btn-tumblr:active,.btn.btn-tumblr:focus,.btn.btn-tumblr:hover,.navbar .navbar-nav>li>a.btn.btn-tumblr:active,.navbar .navbar-nav>li>a.btn.btn-tumblr:focus,.navbar .navbar-nav>li>a.btn.btn-tumblr:hover{-webkit-box-shadow:0 14px 26px -12px rgba(53,70,92,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(53,70,92,.2);-moz-box-shadow:0 14px 26px -12px rgba(53,70,92,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(53,70,92,.2);box-shadow:0 14px 26px -12px rgba(53,70,92,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(53,70,92,.2)}.btn.btn-tumblr.btn-simple,.navbar .navbar-nav>li>a.btn.btn-tumblr.btn-simple{color:#35465c;background-color:transparent}.btn.btn-behance,.btn.btn-behance:active,.btn.btn-behance:focus,.btn.btn-behance:hover,.navbar .navbar-nav>li>a.btn.btn-behance,.navbar .navbar-nav>li>a.btn.btn-behance:active,.navbar .navbar-nav>li>a.btn.btn-behance:focus,.navbar .navbar-nav>li>a.btn.btn-behance:hover{color:#fff;background-color:#1769ff}.btn.btn-behance,.navbar .navbar-nav>li>a.btn.btn-behance{-webkit-box-shadow:0 2px 2px 0 rgba(23,105,255,.14),0 3px 1px -2px rgba(23,105,255,.2),0 1px 5px 0 rgba(23,105,255,.12);-moz-box-shadow:0 2px 2px 0 rgba(23,105,255,.14),0 3px 1px -2px rgba(23,105,255,.2),0 1px 5px 0 rgba(23,105,255,.12);box-shadow:0 2px 2px 0 rgba(23,105,255,.14),0 3px 1px -2px rgba(23,105,255,.2),0 1px 5px 0 rgba(23,105,255,.12)}.btn.btn-behance:active,.btn.btn-behance:focus,.btn.btn-behance:hover,.navbar .navbar-nav>li>a.btn.btn-behance:active,.navbar .navbar-nav>li>a.btn.btn-behance:focus,.navbar .navbar-nav>li>a.btn.btn-behance:hover{-webkit-box-shadow:0 14px 26px -12px rgba(23,105,255,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(23,105,255,.2);-moz-box-shadow:0 14px 26px -12px rgba(23,105,255,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(23,105,255,.2);box-shadow:0 14px 26px -12px rgba(23,105,255,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(23,105,255,.2)}.btn.btn-behance.btn-simple,.navbar .navbar-nav>li>a.btn.btn-behance.btn-simple{color:#1769ff;background-color:transparent}.btn.btn-snapchat,.btn.btn-snapchat:active,.btn.btn-snapchat:focus,.btn.btn-snapchat:hover,.navbar .navbar-nav>li>a.btn.btn-snapchat,.navbar .navbar-nav>li>a.btn.btn-snapchat:active,.navbar .navbar-nav>li>a.btn.btn-snapchat:focus,.navbar .navbar-nav>li>a.btn.btn-snapchat:hover{color:#fff;background-color:#fffc00}.btn.btn-snapchat,.navbar .navbar-nav>li>a.btn.btn-snapchat{-webkit-box-shadow:0 2px 2px 0 rgba(255,252,0,.14),0 3px 1px -2px rgba(255,252,0,.2),0 1px 5px 0 rgba(255,252,0,.12);-moz-box-shadow:0 2px 2px 0 rgba(255,252,0,.14),0 3px 1px -2px rgba(255,252,0,.2),0 1px 5px 0 rgba(255,252,0,.12);box-shadow:0 2px 2px 0 rgba(255,252,0,.14),0 3px 1px -2px rgba(255,252,0,.2),0 1px 5px 0 rgba(255,252,0,.12)}.btn.btn-snapchat:active,.btn.btn-snapchat:focus,.btn.btn-snapchat:hover,.navbar .navbar-nav>li>a.btn.btn-snapchat:active,.navbar .navbar-nav>li>a.btn.btn-snapchat:focus,.navbar .navbar-nav>li>a.btn.btn-snapchat:hover{-webkit-box-shadow:0 14px 26px -12px rgba(255,252,0,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(255,252,0,.2);-moz-box-shadow:0 14px 26px -12px rgba(255,252,0,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(255,252,0,.2);box-shadow:0 14px 26px -12px rgba(255,252,0,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(255,252,0,.2)}.btn.btn-snapchat.btn-simple,.navbar .navbar-nav>li>a.btn.btn-snapchat.btn-simple{color:#fffc00;background-color:transparent}.btn.btn-deviantart,.btn.btn-deviantart:active,.btn.btn-deviantart:focus,.btn.btn-deviantart:hover,.navbar .navbar-nav>li>a.btn.btn-deviantart,.navbar .navbar-nav>li>a.btn.btn-deviantart:active,.navbar .navbar-nav>li>a.btn.btn-deviantart:focus,.navbar .navbar-nav>li>a.btn.btn-deviantart:hover{color:#fff;background-color:#05cc47}.btn.btn-deviantart,.navbar .navbar-nav>li>a.btn.btn-deviantart{-webkit-box-shadow:0 2px 2px 0 rgba(5,204,71,.14),0 3px 1px -2px rgba(5,204,71,.2),0 1px 5px 0 rgba(5,204,71,.12);-moz-box-shadow:0 2px 2px 0 rgba(5,204,71,.14),0 3px 1px -2px rgba(5,204,71,.2),0 1px 5px 0 rgba(5,204,71,.12);box-shadow:0 2px 2px 0 rgba(5,204,71,.14),0 3px 1px -2px rgba(5,204,71,.2),0 1px 5px 0 rgba(5,204,71,.12)}.btn.btn-deviantart:active,.btn.btn-deviantart:focus,.btn.btn-deviantart:hover,.navbar .navbar-nav>li>a.btn.btn-deviantart:active,.navbar .navbar-nav>li>a.btn.btn-deviantart:focus,.navbar .navbar-nav>li>a.btn.btn-deviantart:hover{-webkit-box-shadow:0 14px 26px -12px rgba(5,204,71,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(5,204,71,.2);-moz-box-shadow:0 14px 26px -12px rgba(5,204,71,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(5,204,71,.2);box-shadow:0 14px 26px -12px rgba(5,204,71,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(5,204,71,.2)}.btn.btn-deviantart.btn-simple,.navbar .navbar-nav>li>a.btn.btn-deviantart.btn-simple{color:#05cc47;background-color:transparent}.btn.btn-vimeo,.btn.btn-vimeo:active,.btn.btn-vimeo:focus,.btn.btn-vimeo:hover,.navbar .navbar-nav>li>a.btn.btn-vimeo,.navbar .navbar-nav>li>a.btn.btn-vimeo:active,.navbar .navbar-nav>li>a.btn.btn-vimeo:focus,.navbar .navbar-nav>li>a.btn.btn-vimeo:hover{color:#fff;background-color:#1ab7ea}.btn.btn-vimeo,.navbar .navbar-nav>li>a.btn.btn-vimeo{-webkit-box-shadow:0 2px 2px 0 rgba(26,183,234,.14),0 3px 1px -2px rgba(26,183,234,.2),0 1px 5px 0 rgba(26,183,234,.12);-moz-box-shadow:0 2px 2px 0 rgba(26,183,234,.14),0 3px 1px -2px rgba(26,183,234,.2),0 1px 5px 0 rgba(26,183,234,.12);box-shadow:0 2px 2px 0 rgba(26,183,234,.14),0 3px 1px -2px rgba(26,183,234,.2),0 1px 5px 0 rgba(26,183,234,.12)}.btn.btn-vimeo:active,.btn.btn-vimeo:focus,.btn.btn-vimeo:hover,.navbar .navbar-nav>li>a.btn.btn-vimeo:active,.navbar .navbar-nav>li>a.btn.btn-vimeo:focus,.navbar .navbar-nav>li>a.btn.btn-vimeo:hover{-webkit-box-shadow:0 14px 26px -12px rgba(26,183,234,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(26,183,234,.2);-moz-box-shadow:0 14px 26px -12px rgba(26,183,234,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(26,183,234,.2);box-shadow:0 14px 26px -12px rgba(26,183,234,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(26,183,234,.2)}.btn.btn-vimeo.btn-simple,.navbar .navbar-nav>li>a.btn.btn-vimeo.btn-simple{color:#1ab7ea;background-color:transparent}body [class*=fl-builder] button,body [class*=fl-builder] button:hover,button.customize-partial-edit-shortcut-button,button.customize-partial-edit-shortcut-button:hover{box-shadow:none!important}legend{margin-bottom:20px}output{padding-top:8px}.checkbox label,.radio label{min-height:20px}select{-webkit-appearance:none;-moz-appearance:none;appearance:none}.label{background-color:#fff;border-radius:2px}.label.label-default{background-color:#fff}.label.label-primary{background-color:#9c27b0}.label.label-success{background-color:#4caf50}.label.label-danger{background-color:#f44336}.label.label-rose{background-color:#e91e63}.form-control{height:36px;padding:7px 0;vertical-align:middle}.form-control-static{min-height:34px;padding-top:8px;padding-bottom:8px}.form-control:-ms-input-placeholder,.form-control::-moz-placeholder,.form-control::-webkit-input-placeholder,.form-group .form-control:-ms-input-placeholder,.form-group .form-control::-moz-placeholder,.form-group .form-control::-webkit-input-placeholder{color:#aaa}.form-control[disabled],.form-control[readonly],.form-group .form-control[disabled],.form-group .form-control[readonly],fieldset[disabled] .form-control,fieldset[disabled] .form-group .form-control{background-color:transparent}.form-control[disabled],.form-group .form-control[disabled],fieldset[disabled] .form-control,fieldset[disabled] .form-group .form-control{border-bottom:1px dotted #d2d2d2;background-image:none}.form-control{margin-bottom:7px}.checkbox label,.form-control:-ms-input-placeholder,.form-control::-moz-placeholder,.form-control::-webkit-input-placeholder,.form-group .checkbox label,.form-group .form-control:-ms-input-placeholder,.form-group .form-control::-moz-placeholder,.form-group .form-control::-webkit-input-placeholder,.form-group .radio label,.form-group label,.radio label,label{color:#aaa}label.control-label{margin:16px 0 0;color:#aaa}.help-block{margin-top:0}.form-group{padding-bottom:7px;position:relative}.form-group .form-control{margin-bottom:7px}.form-group label.control-label{margin:16px 0 0;color:#aaa}.form-group input[type=file]{position:relative;z-index:100;top:0;right:0;bottom:0;left:0;width:100%;height:100%;opacity:1}.form-group textarea{resize:none}.form-group textarea~.form-control-highlight{margin-top:-11px}.form-group .help-block{margin-top:0;display:none;position:absolute}.form-group.label-floating label.control-label,.form-group.label-placeholder label.control-label,.form-group.label-static label.control-label{position:absolute;pointer-events:none}.form-group.label-floating label.control-label{will-change:left,top,contents}.form-group.label-placeholder:not(.is-empty) label.control-label{display:none}.form-group.label-floating label.control-label,.form-group.label-placeholder label.control-label{top:-7px;left:0}.form-group.label-floating.is-focused label.control-label,.form-group.label-floating:not(.is-empty) label.control-label,.form-group.label-static label.control-label{top:-28px;left:0}.form-group.is-focused .form-control .material-input:after{background-color:#9c27b0}.form-group.is-focused.label-placeholder label,.form-group.is-focused.label-placeholder label.control-label{color:#aaa}.form-group.is-focused select.form-control{border-color:#d2d2d2}.form-group.has-warning.is-focused .form-control{background-image:-webkit-gradient(linear,left top,left bottom,from(#ff9800),to(#ff9800)),-webkit-gradient(linear,left top,left bottom,from(#d2d2d2),to(#d2d2d2));background-image:-webkit-linear-gradient(#ff9800,#ff9800),-webkit-linear-gradient(#d2d2d2,#d2d2d2);background-image:linear-gradient(#ff9800,#ff9800),linear-gradient(#d2d2d2,#d2d2d2)}.form-group.has-warning label.control-label{color:#ff9800}.form-group.has-error.is-focused .form-control{background-image:-webkit-gradient(linear,left top,left bottom,from(#f44336),to(#f44336)),-webkit-gradient(linear,left top,left bottom,from(#d2d2d2),to(#d2d2d2));background-image:-webkit-linear-gradient(#f44336,#f44336),-webkit-linear-gradient(#d2d2d2,#d2d2d2);background-image:linear-gradient(#f44336,#f44336),linear-gradient(#d2d2d2,#d2d2d2)}.form-group.has-error label.control-label{color:#f44336}.form-group.has-success.is-focused .form-control{background-image:-webkit-gradient(linear,left top,left bottom,from(#4caf50),to(#4caf50)),-webkit-gradient(linear,left top,left bottom,from(#d2d2d2),to(#d2d2d2));background-image:-webkit-linear-gradient(#4caf50,#4caf50),-webkit-linear-gradient(#d2d2d2,#d2d2d2);background-image:linear-gradient(#4caf50,#4caf50),linear-gradient(#d2d2d2,#d2d2d2)}.form-group.has-success label.control-label{color:#4caf50}.form-group.has-info.is-focused .form-control{background-image:-webkit-gradient(linear,left top,left bottom,from(#00bcd4),to(#00bcd4)),-webkit-gradient(linear,left top,left bottom,from(#d2d2d2),to(#d2d2d2));background-image:-webkit-linear-gradient(#00bcd4,#00bcd4),-webkit-linear-gradient(#d2d2d2,#d2d2d2);background-image:linear-gradient(#00bcd4,#00bcd4),linear-gradient(#d2d2d2,#d2d2d2)}.form-group.has-info .help-block,.form-group.has-info label.control-label{color:#00bcd4}select.form-control{border:0;border-radius:0}select .form-group.is-focused select.form-control[multiple],select.form-control[multiple]{height:85px}.input-group-btn .btn{margin:0 0 7px}.input-group .input-group-btn{padding:0 12px}.input-group .input-group-addon{padding:6px 15px 0;border:0;background:0 0}.form-control-feedback{opacity:0}.has-success .form-control-feedback{opacity:1;color:#4caf50}.has-error .form-control-feedback{opacity:1;color:#f44336}.search-form label,.searchform label{display:table-cell;vertical-align:top;padding-right:25px;width:100%}.search-form:not(.media-toolbar-primary),.searchform:not(.media-toolbar-primary),.woocommerce-product-search{display:table;position:relative}.search-form:not(.media-toolbar-primary) button,.search-form:not(.media-toolbar-primary) input[type=submit],.searchform:not(.media-toolbar-primary) button,.searchform:not(.media-toolbar-primary) input[type=submit],.woocommerce-product-search button,.woocommerce-product-search input[type=submit]{display:table-cell;vertical-align:top;padding-left:0;padding-right:0;text-align:center;text-indent:-9999px;top:-19px;width:45px;background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMTY2NCIgaGVpZ2h0PSIxNjY0IiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJ4TWlkWU1pZCBtZWV0IiB2aWV3Qm94PSIwIDAgMTY2NCAxNjY0IiBzdHlsZT0iLW1zLXRyYW5zZm9ybTogcm90YXRlKDM2MGRlZyk7IC13ZWJraXQtdHJhbnNmb3JtOiByb3RhdGUoMzYwZGVnKTsgdHJhbnNmb3JtOiByb3RhdGUoMzYwZGVnKTsiPjxwYXRoIGQ9Ik0xMTUyIDcwNHEwLTE4NS0xMzEuNS0zMTYuNVQ3MDQgMjU2VDM4Ny41IDM4Ny41VDI1NiA3MDR0MTMxLjUgMzE2LjVUNzA0IDExNTJ0MzE2LjUtMTMxLjVUMTE1MiA3MDR6bTUxMiA4MzJxMCA1Mi0zOCA5MHQtOTAgMzhxLTU0IDAtOTAtMzhsLTM0My0zNDJxLTE3OSAxMjQtMzk5IDEyNHEtMTQzIDAtMjczLjUtNTUuNXQtMjI1LTE1MHQtMTUwLTIyNVQwIDcwNHQ1NS41LTI3My41dDE1MC0yMjV0MjI1LTE1MFQ3MDQgMHQyNzMuNSA1NS41dDIyNSAxNTB0MTUwIDIyNVQxNDA4IDcwNHEwIDIyMC0xMjQgMzk5bDM0MyAzNDNxMzcgMzcgMzcgOTB6IiBmaWxsPSJ3aGl0ZSIvPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxNjY0IiBoZWlnaHQ9IjE2NjQiIGZpbGw9InJnYmEoMCwgMCwgMCwgMCkiIC8+PC9zdmc+);background-repeat:no-repeat;background-position:center;background-size:18px 29px}.search-form:not(.media-toolbar-primary) input[type=search],.searchform:not(.media-toolbar-primary) input[type=search],.woocommerce-product-search input[type=search]{height:36px}.blog-sidebar-wrapper .widget:nth-of-type(1).widget_product_search,.blog-sidebar-wrapper .widget:nth-of-type(1).widget_search{padding-top:11px}.comment-form-cookies-consent #wp-comment-cookies-consent{margin:0 10px 0 0}.comment-form-cookies-consent label{display:inline}body:not(.home) .navbar-default .navbar-nav>.active>a,body:not(.home) .navbar-default .navbar-nav>.active>a:focus,body:not(.home) .navbar-default .navbar-nav>.active>a:hover{background:0 0}body.admin-bar .navbar{margin-top:32px}.navbar-color-on-scroll .dashicons{transition:initial}.navbar.navbar-transparent{color:#fff;background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.navbar.navbar-transparent>.container{padding-top:25px}.navbar.navbar-transparent .hestia-hide-if-transparent{display:none}.navbar.navbar-not-transparent .hestia-transparent-logo{display:none}.navbar{background-color:#fff;color:#555;border-radius:0;position:fixed;border:none;padding:0;transition:none;-webkit-box-shadow:0 1px 10px -6px rgba(0,0,0,.42),0 1px 10px 0 rgba(0,0,0,.12),0 4px 5px -2px rgba(0,0,0,.1);box-shadow:0 1px 10px -6px rgba(0,0,0,.42),0 1px 10px 0 rgba(0,0,0,.12),0 4px 5px -2px rgba(0,0,0,.1)}.navbar .navbar-collapse{border:none}.navbar .title-logo-wrapper{max-width:250px;display:flex;align-items:center}.navbar>.container{display:flex;transition:padding .1s ease;padding:10px 15px;vertical-align:middle;align-items:center}.navbar.hestia_left .navbar-collapse{margin-left:auto}.navbar.hestia_left>.container{flex-direction:row}.navbar.hestia_left .navbar-nav{display:flex;flex-wrap:wrap;justify-content:flex-end}.navbar.hestia_center>.container{flex-direction:column}.navbar.hestia_center .navbar-nav{display:flex;flex-wrap:wrap;justify-content:center}.navbar.hestia_right>.container{flex-wrap:wrap;flex-direction:row-reverse}.navbar.hestia_right .navbar-header{max-width:250px}.navbar.hestia_right .header-sidebar-wrapper,.navbar.hestia_right .navbar-header{flex:1}.navbar.hestia_right .navbar-nav{display:flex;flex-wrap:wrap;width:100%}.navbar .navbar-header .navbar-brand{padding:0 15px;position:relative;color:inherit;height:auto}.navbar .navbar-header .navbar-brand img{width:auto;max-height:50px}.navbar .navbar-header .navbar-brand p{margin-bottom:0;padding:10px 0}.navbar-toggle-wrapper{margin-left:auto;display:flex;align-items:center;flex-direction:row}.navbar .navbar-toggle{float:none;border:0;margin-right:0}.navbar .navbar-toggle:focus,.navbar .navbar-toggle:hover{background:0 0}.navbar .navbar-toggle .icon-bar{border:1px solid;transition:.3s ease;position:relative}.navbar .navbar-toggle[aria-expanded=true] .icon-bar:nth-child(1){-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg);top:6px}.navbar .navbar-toggle[aria-expanded=true] .icon-bar:nth-child(2){width:0;opacity:0}.navbar .navbar-toggle[aria-expanded=true] .icon-bar:nth-child(3){-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-o-transform:rotate(-45deg);transform:rotate(-45deg);top:-6px}.navbar .navbar-toggle[aria-expanded=false] .icon-bar:nth-child(1){top:0;-webkit-transform-origin:left center;-moz-transform-origin:left center;-o-transform-origin:left center;transform-origin:left center}.navbar .navbar-toggle[aria-expanded=false] .icon-bar:nth-child(2){top:0;-webkit-transform-origin:left center;-moz-transform-origin:left center;-o-transform-origin:left center;transform-origin:left center}.navbar .navbar-toggle[aria-expanded=false] .icon-bar:nth-child(3){top:0;-webkit-transform-origin:left center;-moz-transform-origin:left center;-o-transform-origin:left center;transform-origin:left center}.navbar .navbar-nav>li{margin:0}.navbar .navbar-nav>li>a{text-transform:uppercase}.navbar .navbar-nav>li a{padding-top:15px;padding-bottom:15px;border-radius:3px;color:inherit}.navbar .navbar-nav>li a:focus,.navbar .navbar-nav>li a:hover{color:inherit;opacity:1}.navbar .navbar-nav>li a i{min-width:20px;text-align:center;position:relative;top:2px;margin-top:-4px;margin-right:4px}.navbar .navbar-nav>li.btn{padding:0 10px}.navbar .navbar-nav>li.btn>a{color:#fff}.navbar .navbar-nav>li.btn li a{text-transform:none}.navbar .navbar-nav>li .dropdown-menu{margin-top:-5px;border:none}.navbar .navbar-nav>li .dropdown-menu>.active>a{background-color:transparent}.navbar .navbar-nav>li .dropdown-menu li{color:#333;position:relative}.navbar .navbar-nav>li .dropdown-menu li.active>a{color:#333}.navbar .navbar-nav>li .dropdown-menu li:hover>a{color:#e91e63}.navbar .navbar-nav>li .dropdown-menu li:hover>a>i{opacity:.7}.navbar .navbar-nav>li .dropdown-menu li>a{background-color:transparent;margin:0 5px;padding:10px;border-radius:2px;-webkit-transition:all 150ms linear;transition:all 150ms linear}.navbar .navbar-nav>li .dropdown-menu li>a>i{position:relative;top:1px;margin-right:12px;opacity:.5;text-align:center}.navbar .navbar-nav>li .dropdown-menu li>a i{position:relative;top:1px;margin-top:-4px;margin-right:12px;vertical-align:middle}.navbar .navbar-nav>li:hover .dropdown-menu{margin-top:0;z-index:10}.navbar .navbar-nav>li:not(.btn) .hestia-toggle-search:before,.navbar .navbar-nav>li:not(.btn)>a:before{position:absolute;z-index:-1;top:0;right:0;bottom:0;left:0;border-radius:3px;background-color:rgba(255,255,255,.1);content:"";transition:all .3s cubic-bezier(.34,.9,.7,1);-webkit-transform:scaleX(0);-ms-transform:scaleX(0);transform:scaleX(0);-webkit-transform-origin:50%;-ms-transform-origin:50%;transform-origin:50%}.navbar .navbar-nav>li:not(.btn):hover .hestia-toggle-search:before,.navbar .navbar-nav>li:not(.btn):hover a:before{color:inherit;-webkit-transform:scaleX(1);-ms-transform:scaleX(1);transform:scaleX(1)}.dropdown-submenu{position:relative}.dropdown-submenu .dropdown-menu{display:none;top:0;left:100%;margin-top:-6px;margin-left:-1px}.dropdown-submenu.open>.dropdown-menu{display:table;visibility:visible;opacity:1}.dropdown-submenu.open>.dropdown-toggle .caret,.dropdown-submenu:hover>.dropdown-toggle .caret{border-left:4px dashed;border-top:4px solid transparent;border-bottom:4px solid transparent}.dropdown-submenu.open .dropdown-menu,.dropdown-submenu:hover .dropdown-menu{display:table}.navbar.header-with-topbar{position:absolute;top:40px}.navbar.navbar-scroll-point{position:fixed;top:0}.navbar.full-screen-menu.navbar-scroll-point .header-sidebar-wrapper{display:none}.dropdown-helper-overlay{position:fixed;top:0;left:0;right:0;height:100vh;z-index:-1}#main-navigation ul.nav>li{opacity:1;transition:opacity .25s ease-in-out;-moz-transition:opacity .25s ease-in-out;-webkit-transition:opacity .25s ease-in-out;visibility:visible}.hestia-mm-description{display:none;opacity:.75}@media (max-width:768px){.hestia-nav-search{margin-top:25px}.hestia-nav-search .search-submit{display:block;pointer-events:all}.hestia-nav-search form{width:100%;margin-bottom:0}.hestia-nav-search form:after{font-size:16px;display:block}.hestia-nav-search label{padding-right:25px}.navbar .navbar-nav>li.hestia-search-in-menu a.hestia-toggle-search{display:none}}.hestia-toggle-search svg{fill:#555;vertical-align:middle}.navbar.navbar-transparent .hestia-toggle-search svg{fill:#fff}.full-screen-menu .hestia-toggle-search{display:none}.full-screen-menu .hestia-nav-search{margin-top:25px;text-align:left}@media (min-width:769px){.navbar:not(.full-screen-menu) .hestia-toggle-search{display:block;width:55px}.navbar:not(.full-screen-menu) .hestia-toggle-search i{font-size:16px}.navbar:not(.full-screen-menu) .hestia-search-in-menu{cursor:pointer;position:relative;vertical-align:middle;display:inline-block}.navbar:not(.full-screen-menu).nav-searching .hestia-nav-search form{max-width:200px;opacity:1;pointer-events:all}.navbar:not(.full-screen-menu).nav-searching #main-navigation ul.nav li:not(.hestia-search-in-menu){opacity:0;visibility:hidden}.navbar:not(.full-screen-menu) .hestia-nav-search{padding:0 15px;text-align:left}.navbar:not(.full-screen-menu) .hestia-nav-search .search-submit{display:none;pointer-events:none}.navbar:not(.full-screen-menu) .hestia-nav-search form{width:200px;max-width:0;padding:5px;transition:all .5s ease;position:absolute;right:40px;box-sizing:border-box;opacity:0;pointer-events:none}.navbar:not(.full-screen-menu) .hestia-nav-search form:after{display:none}.navbar:not(.full-screen-menu) .hestia-nav-search label{padding:0}.navbar:not(.full-screen-menu).navbar-transparent .hestia-nav-search form .search-field{color:#fff}.navbar:not(.full-screen-menu).navbar-transparent .hestia-nav-search form .search-field::-webkit-input-placeholder{color:#fff}.navbar:not(.full-screen-menu).navbar-transparent .hestia-nav-search form .search-field::-moz-placeholder{color:#fff}.navbar:not(.full-screen-menu).navbar-transparent .hestia-nav-search form .search-field:-ms-input-placeholder{color:#fff}.navbar:not(.full-screen-menu).navbar-transparent .hestia-nav-search form .search-field:-moz-placeholder{color:#fff}.navbar:not(.full-screen-menu).navbar-transparent .hestia-nav-search form .control-label{color:#fff}}.navbar.navbar-default .navbar-nav>.btn.active>a,.navbar.navbar-default .navbar-nav>.btn.open>a,.navbar.navbar-default .navbar-nav>.btn>a{color:#fff;background:0 0}.navbar.navbar-not-transparent .navbar-nav>.active:not(.btn)>a,.navbar.navbar-not-transparent .navbar-nav>.active:not(.btn)>a:focus,.navbar.navbar-not-transparent .navbar-nav>.active:not(.btn)>a:hover{background:0 0}.hestia_right .blog-sidebar-wrapper,.hestia_right .header-sidebar-wrapper{float:none;display:table-cell;width:100%;vertical-align:middle}.hestia_right .blog-sidebar-wrapper .header-widgets-wrapper,.hestia_right .header-sidebar-wrapper .header-widgets-wrapper{align-items:center;display:flex;flex-direction:row;justify-content:flex-end}.hestia_right .blog-sidebar-wrapper .header-widgets-wrapper .search-form label,.hestia_right .blog-sidebar-wrapper .header-widgets-wrapper .searchform label,.hestia_right .header-sidebar-wrapper .header-widgets-wrapper .search-form label,.hestia_right .header-sidebar-wrapper .header-widgets-wrapper .searchform label{width:inherit}.header-widgets-wrapper .widget{margin:0 10px 0 0}.header-widgets-wrapper .widget:last-of-type{margin-right:0}.header-widgets-wrapper .widget,.header-widgets-wrapper .widget .textwidget,.header-widgets-wrapper .widget h5{display:inline-block}.header-widgets-wrapper .widget h5{margin:0 5px 0 0}.header-widgets-wrapper .widget .btn{padding:3px 10px}.header-widgets-wrapper .widget .btn a{color:#fff}.header-widgets-wrapper .widget.widget_categories h5,.header-widgets-wrapper .widget.widget_meta h5,.header-widgets-wrapper .widget.widget_nav_menu h5,.header-widgets-wrapper .widget.widget_product_categories h5,.header-widgets-wrapper .widget.widget_product_search h5,.header-widgets-wrapper .widget.widget_search h5{display:none}.header-widgets-wrapper .widget.widget_categories [type=submit],.header-widgets-wrapper .widget.widget_meta [type=submit],.header-widgets-wrapper .widget.widget_nav_menu [type=submit],.header-widgets-wrapper .widget.widget_product_categories [type=submit],.header-widgets-wrapper .widget.widget_product_search [type=submit],.header-widgets-wrapper .widget.widget_search [type=submit]{opacity:0;left:-15px}.header-widgets-wrapper .widget .search-form:after,.header-widgets-wrapper .widget .searchform:after,.header-widgets-wrapper .widget .woocommerce-product-search:after{right:30px}.header-widgets-wrapper .widget.widget_product_search form,.header-widgets-wrapper .widget.widget_search form{top:15px}.header-widgets-wrapper .widget.widget_product_search form:after,.header-widgets-wrapper .widget.widget_search form:after{color:#333}.header-widgets-wrapper .widget.widget_product_search form .control-label,.header-widgets-wrapper .widget.widget_search form .control-label{color:#333}.header-widgets-wrapper ul li{cursor:auto;display:inline-block;margin:0 5px}.header-widgets-wrapper ul li.menu-item{padding-top:0}.header-widgets-wrapper ul li:first-child{margin-left:0}.header-widgets-wrapper ul li:last-child{margin-right:0}.header-widgets-wrapper ul li a{padding:0;text-transform:inherit}.header-widgets-wrapper ul li a:focus,.header-widgets-wrapper ul li a:hover{background-color:transparent;outline:0}.header-widgets-wrapper ul li a[href*="mailto:"]:before,.header-widgets-wrapper ul li a[href*="tel:"]:before{margin-right:7px;display:inline-block;width:16px;height:16px;background-repeat:no-repeat;content:'';background-color:#333;vertical-align:text-bottom}.header-widgets-wrapper ul li a[href*="tel:"]:before{mask-image:url('data:image/svg+xml;utf8,');-webkit-mask-image:url('data:image/svg+xml;utf8,')}.header-widgets-wrapper ul li a[href*="mailto:"]:before{mask-image:url('data:image/svg+xml;utf8,');-webkit-mask-image:url('data:image/svg+xml;utf8,')}.header-widgets-wrapper ul li.dropdown .caret{display:none}.navbar-transparent .widget .btn:hover a{color:#fff}.navbar-transparent .widget.widget_product_search form .control-label,.navbar-transparent .widget.widget_product_search form.form-group:before,.navbar-transparent .widget.widget_product_search form:after,.navbar-transparent .widget.widget_search form .control-label,.navbar-transparent .widget.widget_search form.form-group:before,.navbar-transparent .widget.widget_search form:after{color:#fff}.pagination{width:100%;text-align:center}.pagination>li>a{border:0}.pagination a,.pagination span{min-width:30px;height:30px;margin:0 3px;padding:0 11px;border-radius:30px!important;color:#999;background:0 0;text-transform:uppercase;display:inline-block}.pagination a:focus,.pagination a:hover{color:#999;background-color:#eee}.pagination span:not(.dots):focus,.pagination span:not(.dots):hover{color:#999;background-color:#eee}.pagination span.current,.pagination span.current:focus,.pagination span.current:hover{border-color:#9c27b0;color:#fff;background-color:#9c27b0;-webkit-box-shadow:0 4px 5px 0 rgba(156,39,176,.14),0 1px 10px 0 rgba(156,39,176,.12),0 2px 4px -1px rgba(156,39,176,.2);box-shadow:0 4px 5px 0 rgba(156,39,176,.14),0 1px 10px 0 rgba(156,39,176,.12),0 2px 4px -1px rgba(156,39,176,.2)}.pagination .next.page-numbers:after{content:" \00bb"}.pagination .prev.page-numbers:before{content:"\00ab "}.label{padding:5px 12px;border-radius:12px;text-transform:uppercase}.label.label-default{background-color:#999}.card,.card-no-width{display:inline-block;position:relative;margin-bottom:30px;border-radius:6px;color:rgba(0,0,0,.87);background:#fff;max-width:100%;-webkit-box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);-moz-box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12)}.card .card-image,.card-no-width .card-image{overflow:hidden;position:relative;height:60%;margin-top:-30px;margin-right:15px;margin-left:15px;border-radius:6px;-webkit-transition:all .3s cubic-bezier(.34,1.61,.7,1);-moz-transition:all .3s cubic-bezier(.34,1.61,.7,1);-o-transition:all .3s cubic-bezier(.34,1.61,.7,1);-ms-transition:all .3s cubic-bezier(.34,1.61,.7,1);transition:all .3s cubic-bezier(.34,1.61,.7,1);-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0)}.card .card-image img,.card-no-width .card-image img{width:100%;height:100%;margin:0!important;border-radius:6px}.card .category:not([class*=text-]),.card-no-width .category:not([class*=text-]){color:#999}.card .content,.card-no-width .content{padding:15px 30px}.card .header,.card-no-width .header{margin:15px;padding:15px 0;border-radius:3px;background-color:#fff}.card .content-primary,.card .header-primary,.card-no-width .content-primary,.card-no-width .header-primary{background:-webkit-linear-gradient(30deg,#ab47bc,#7b1fa2);background:linear-gradient(60deg,#ab47bc,#7b1fa2)}.card [class*=content-],.card [class*=content-] .author a:active,.card [class*=content-] .author a:focus,.card [class*=content-] .author a:hover,.card [class*=content-] .card-title,.card [class*=content-] .card-title a,.card [class*=content-] .icon i,.card [class*=header-],.card [class*=header-] .author a:active,.card [class*=header-] .author a:focus,.card [class*=header-] .author a:hover,.card [class*=header-] .card-title,.card [class*=header-] .card-title a,.card [class*=header-] .icon i,.card-no-width [class*=content-],.card-no-width [class*=content-] .author a:active,.card-no-width [class*=content-] .author a:focus,.card-no-width [class*=content-] .author a:hover,.card-no-width [class*=content-] .card-title,.card-no-width [class*=content-] .card-title a,.card-no-width [class*=content-] .icon i,.card-no-width [class*=header-],.card-no-width [class*=header-] .author a:active,.card-no-width [class*=header-] .author a:focus,.card-no-width [class*=header-] .author a:hover,.card-no-width [class*=header-] .card-title,.card-no-width [class*=header-] .card-title a,.card-no-width [class*=header-] .icon i{color:#fff}.card [class*=content-] .icon i,.card [class*=header-] .icon i,.card-no-width [class*=content-] .icon i,.card-no-width [class*=header-] .icon i{border-color:rgba(255,255,255,.25)}.card [class*=content-] .author a,.card [class*=content-] .card-description,.card [class*=content-] .category,.card [class*=content-] .footer .stats,.card [class*=content-] h1 small,.card [class*=content-] h2 small,.card [class*=content-] h3 small,.card [class*=header-] .author a,.card [class*=header-] .card-description,.card [class*=header-] .category,.card [class*=header-] .footer .stats,.card-no-width [class*=content-] .author a,.card-no-width [class*=content-] .card-description,.card-no-width [class*=content-] .category,.card-no-width [class*=content-] .footer .stats,.card-no-width [class*=content-] h1 small,.card-no-width [class*=content-] h2 small,.card-no-width [class*=content-] h3 small,.card-no-width [class*=header-] .author a,.card-no-width [class*=header-] .card-description,.card-no-width [class*=header-] .category,.card-no-width [class*=header-] .footer .stats{color:rgba(255,255,255,.8)}.card [class*=content-],.card-no-width [class*=content-]{border-radius:6px}.card img,.card-no-width img{width:100%;height:auto}.card .category i,.card-no-width .category i{position:relative;top:6px}.card .author .avatar,.card-no-width .author .avatar{overflow:hidden;width:30px;height:30px;margin-right:5px;border-radius:50%}.card .author a,.card-no-width .author a{color:#3c4858;text-decoration:none}.card .author .date,.card-no-width .author .date{display:none}.card .footer,.card-no-width .footer{margin-top:15px}.card .footer div,.card-no-width .footer div{display:inline-block!important}.card .footer .author,.card .footer .stats,.card-no-width .footer .author,.card-no-width .footer .stats{color:#999}.card .footer .stats,.card-no-width .footer .stats{float:right}.card .footer .stats i,.card-no-width .footer .stats i{position:relative;top:4px}.card .checkbox,.card-no-width .checkbox{margin-top:16px}.card{width:100%}@media (max-width:768px){.card-no-width{width:100%}}.card-contact .header{margin-top:-20px;padding:17px 10px}.card-plain{background:0 0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.card-plain .content{padding-right:5px;padding-left:5px}.card-plain .card-image{margin:0;border-radius:3px}.card-plain .card-image a{display:block}.card-plain .card-image img{border-radius:3px}.card-form-horizontal .content{padding-right:15px;padding-left:15px}.card-form-horizontal .form-group{margin:3px 0 0;padding-bottom:0}.card-form-horizontal .form-group .form-control{margin-bottom:0}.card-form-horizontal .btn{margin:0}.card-form-horizontal .input-group .input-group-addon{padding-left:0}.card-profile{margin-top:30px;text-align:center}.card-profile .card-avatar{overflow:hidden;max-width:130px;max-height:130px;margin:-50px auto 0;border-radius:50%}.card-profile.card-plain .card-avatar{margin-top:0}.card-testimonial{margin-top:30px;text-align:center}.card-testimonial .card-avatar{max-width:100px;max-height:100px;margin:30px auto 0}.card-testimonial .card-avatar img{overflow:hidden;max-width:130px;max-height:130px;margin:-50px auto 0;border-radius:50%}.card-testimonial .card-avatar+.content{margin-top:15px}.card-blog{margin-top:30px}.card-blog.sticky{padding:20px}.card-blog.sticky.layout-alternative2{padding:0 20px;margin-top:50px}.card-blog.sticky.layout-alternative2 .card-header-image{margin-top:-20px}.card-blog.sticky .card-image{margin-left:0;margin-right:0}.card-blog.sticky .featured-alt-2{padding-bottom:15px}.card-blog .row .category{margin-bottom:0}.card-blog .row .category a{color:#00bcd4}.card-blog .card-title{margin-top:5px}.card-blog a.more-link,.card-blog a.moretag{display:inline-block;margin-left:5px;color:#23527c}.card-blog a.more-link:hover,.card-blog a.moretag:hover{color:#89229b}.card-background{background-position:center center;background-size:cover;text-align:center}.card-background .content{position:relative;z-index:2;max-width:440px;min-height:280px;margin:0 auto;padding-top:40px;padding-bottom:40px}.card-background .card-title{margin-top:10px;color:#fff}.card-background:after{display:block;position:absolute;z-index:1;top:0;left:0;width:100%;height:100%;border-radius:6px;opacity:0;background-color:rgba(0,0,0,.56);content:""}.card-background:hover:after{opacity:1}.img-thumbnail{border-radius:16px}.iframe-container iframe{width:100%}.card .card-image,.card .header,.card-no-width .card-image,.card-no-width .header,.card-profile .card-avatar,.card-raised,.card-testimonial .card-avatar img,.iframe-container iframe,.img-raised{-webkit-box-shadow:0 16px 38px -12px rgba(0,0,0,.56),0 4px 25px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2);-moz-box-shadow:0 16px 38px -12px rgba(0,0,0,.56),0 4px 25px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2);box-shadow:0 16px 38px -12px rgba(0,0,0,.56),0 4px 25px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2)}.table,table{width:100%}.table>thead>tr>th,table>thead>tr>th{border-bottom-width:1px;padding:12px 8px;vertical-align:middle}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,table>tbody>tr>td,table>tbody>tr>th,table>tfoot>tr>td,table>tfoot>tr>th,table>thead>tr>td{padding:12px 8px;vertical-align:middle}.table>tbody>tr,table>tbody>tr{border-bottom:1px solid #eee}.table>tbody>tr:last-child,table>tbody>tr:last-child{border-bottom:0}.header-layout-classic-blog.page:not(.home):not(.archive) .main-raised{border-radius:0}.header-layout-classic-blog:not(.page-template-default):not(.home):not(.archive) .main-raised,.header-layout-classic-blog:not(.page-template-default):not(.home):not(.archive).single .main-raised,.header-layout-classic-blog:not(.page-template-default):not(.home):not(.archive).woocommerce.archive .main-raised{margin-top:0}.carousel #parallax_move{width:100%;height:100%;position:absolute}.carousel #parallax_move .layer{background-size:cover;width:100%;height:100%;background-position:top center}.carousel #parallax_move .layer2{position:absolute;top:0}.carousel .btn{margin:0}.carousel .page-header{display:flex;z-index:-2}.carousel .page-header .row{display:flex;align-items:center;padding:0 15px;margin:0;flex:1;max-width:100%}.carousel .carousel-control.left,.carousel .carousel-control.right{z-index:0;background-image:none}.carousel .item{text-align:center}.carousel .item .container{display:flex;position:relative;padding:100px 0}.carousel .carousel-control{text-shadow:none;display:flex;align-items:center;justify-content:center}.carousel .carousel-control.left{right:auto;left:0}.carousel .carousel-control.right{right:0}.carousel .carousel-control i{display:inline-block;position:absolute;z-index:5}.carousel .buttons .btn-left+.btn-right{margin-left:30px}.wp-custom-header iframe,.wp-custom-header img,.wp-custom-header video{width:100%;position:absolute;left:50%;top:50%;max-width:100%;-ms-transform:translateX(-50%) translateY(-50%);-moz-transform:translateX(-50%) translateY(-50%);-webkit-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%);z-index:-1}.wp-custom-header img{-o-object-fit:cover;object-fit:cover;height:100%}.wp-custom-header .wp-custom-header-video-button{display:none}#carousel-hestia-generic .carousel{overflow:hidden}.big-title-sidebar-wrapper .widget{padding:30px 0}.big-title-sidebar-wrapper .pirate-forms-contact-widget{background:#fff;color:#3c4858;padding:10px;border-radius:6px;-webkit-box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);-moz-box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12)}.hestia-slider-alignment-left .pirate-forms-contact-widget{margin-left:auto}.hestia-slider-alignment-left .widget_media_image img{display:block;margin-left:auto}.hestia-slider-alignment-right .pirate-forms-contact-widget{margin-right:auto}.hestia-slider-alignment-right .widget_media_image img{display:block;margin-right:auto}@media (max-width:1600px){.carousel-control.left{width:50px}.carousel-control.left i{left:10px}.carousel-control.right{width:50px}.carousel-control.right i{right:10px}}@media all and (-ms-high-contrast:none),(-ms-high-contrast:active){.carousel .page-header .container{display:table;min-height:inherit}.carousel .page-header .container .row{display:table-row}.carousel .page-header .container .row .big-title-slider-content{display:table-cell;vertical-align:middle;float:none;margin:auto}.carousel .page-header .container .row .big-title-slider-content.col-md-7{display:table-cell;vertical-align:middle;float:none;margin:auto}.carousel .page-header .container .row .big-title-sidebar-wrapper.col-md-5{display:table-cell;vertical-align:middle;float:none;margin:auto}.carousel .carousel-control i{left:50%}}.section-gray{background:#f0f0f0}.section{padding:70px 0}.section-dark,.section-image{background:#232323;background:-webkit-gradient(radial,center center,0,center center,100%,color-stop(0,#585858),color-stop(100%,#232323));background:-webkit-radial-gradient(center,ellipse cover,#585858 0,#232323 100%);background:-webkit-radial-gradient(center ellipse,#585858 0,#232323 100%);background:radial-gradient(ellipse at center,#585858 0,#232323 100%);background-color:#343434;background-size:200% 240%;background-size:550% 450%}.section-dark .card-plain .card-title,.section-dark .card-plain .icon i,.section-dark .card-plain [class*=text-],.section-dark .card-plain ul li b,.section-dark .hestia-title,.section-dark .title,.section-image .card-plain .card-title,.section-image .card-plain .icon i,.section-image .card-plain [class*=text-],.section-image .card-plain ul li b,.section-image .hestia-title,.section-image .title{color:#fff}.section-dark .card-plain .card-description,.section-dark .card-plain .icon,.section-dark .description,.section-image .card-plain .card-description,.section-image .card-plain .icon,.section-image .description{color:#eaeaea}.section-dark .card-plain .category,.section-image .card-plain .category{color:rgba(255,255,255,.5)}.section-image{position:relative;-webkit-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:unset}.section-image:after{display:block;position:absolute;z-index:1;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.7);content:""}.section-image .container{position:relative;z-index:2}.section,.section-image{background-position:center center;background-size:cover}.features,.hestia-blogs,.hestia-features,.hestia-testimonials,.hestia-work,.products,.subscribe-line{padding:65px 0 70px}.wrapper.classic-blog .title-in-content,.wrapper.no-content .title-in-content{margin-top:0;margin-bottom:15px}.wrapper.classic-blog .hestia-blogs,.wrapper.no-content .hestia-blogs{padding-top:40px}@media (max-width:768px){.wrapper.classic-blog .hestia-blogs,.wrapper.no-content .hestia-blogs{padding-top:30px}}.wrapper.classic-blog .section,.wrapper.no-content .section{padding-top:40px}@media (max-width:768px){.wrapper.classic-blog .section,.wrapper.no-content .section{padding-top:30px}}.image-in-page-wrapper{margin-bottom:20px}.image-in-page{margin-bottom:30px}.about,.hestia-about{padding:65px 0 30px}.hestia-team,.team{padding:65px 0 20px}.hestia-testimonials,.testimonials{padding:65px 0 40px}.contactus{padding:90px 0 70px}.pricing{padding:100px 0 70px}.hestia-clear-top-padding{margin-top:-65px}@media (min-width:992px){.home #blog.hestia-blogs .row,.home .hestia-clients-bar .row,.home .hestia-features .row,.home .hestia-team .row,.home .hestia-testimonials .row,.home .hestia-work .row{text-align:center}.home #blog.hestia-blogs .hestia-blog-item,.home .feature-box,.home .hestia-clients-bar .col-md-3,.home .hestia-team .col-sm-6,.home .hestia-testimonials .col-md-4,.home .hestia-work .col-md-4,.home .hestia-work .col-md-6{display:inline-block;float:none!important;margin-right:-4px;margin-left:-4px;vertical-align:top}.home .hestia-blog-item{text-align:left}}@media (min-width:480px){.home #blog.hestia-blogs .row,.home .hestia-clients-bar .row,.home .hestia-features .row,.home .hestia-team .row,.home .hestia-testimonials .row,.home .hestia-work .row{text-align:center}.home #blog.hestia-blogs .hestia-blog-item,.home .feature-box,.home .hestia-clients-bar .col-md-3,.home .hestia-team .col-sm-6,.home .hestia-testimonials .col-sm-6,.home .hestia-work .portfolio-item{display:inline-block;float:none!important;margin-right:-4px;margin-left:-4px;vertical-align:top}}.hestia-about{background-attachment:fixed;color:#999}.hestia-about h1,.hestia-about h2,.hestia-about h3,.hestia-about h4,.hestia-about h5{color:#3c4858;text-decoration:none;word-wrap:break-word;font-family:"Roboto Slab","Times New Roman",serif}.hestia-about.section-image{color:#fefefe}.hestia-about.section-image h1,.hestia-about.section-image h2,.hestia-about.section-image h3,.hestia-about.section-image h4,.hestia-about.section-image h5{color:#fff}.hestia-about.section-image h6{color:rgba(255,255,255,.76)}.hestia-about .customizer-hidden{display:none}.is-ios .hestia-about,.is-ios .hestia-ribbon{background-attachment:scroll}.hestia-work .portfolio-item{margin-top:30px;cursor:pointer}.hestia-work .card-background .content{padding-bottom:50px;opacity:0}.hestia-work .col-md-4 .card-background .content{padding-top:30%}.hestia-work .col-md-6 .card-background .content{padding-top:20%}.hestia-work .card-background:hover a:hover{opacity:1}.hestia-work .card-background:hover .content{opacity:1;-webkit-transition:all ease .5s;transition:all ease .5s}.hestia-work .portfolio-item:nth-child(6n) .label{background-color:#4caf50}.hestia-work .portfolio-item:nth-child(6n+1) .label{background-color:#89229b}.hestia-work .portfolio-item:nth-child(6n+2) .label{background-color:#00bcd4}.hestia-work .portfolio-item:nth-child(6n+3) .label{background-color:#f44336}.hestia-work .portfolio-item:nth-child(6n+4) .label{background-color:#ff9800}.hestia-work .portfolio-item:nth-child(6n+5) .label{background-color:#e91e63}.hestia-portfolio-modal .header-filter-gradient{border-radius:6px 6px 0 0;background-size:cover;background-repeat:no-repeat;background-position:center;z-index:1}.hestia-portfolio-modal{background:rgba(0,0,0,.7)}.hestia-portfolio-modal .modal-header{position:relative;border-radius:6px 6px 0 0}.hestia-portfolio-modal .modal-header h3{margin:0;padding:104px 0;color:#fff}.hestia-portfolio-modal .modal-header:before{border-radius:6px 6px 0 0}.hestia-portfolio-modal .modal-header a{color:#fff;z-index:2}.hestia-portfolio-modal .modal-header a:hover{color:#fff}.hestia-portfolio-modal .modal-header:after{background-color:rgba(0,0,0,.5);border-radius:6px 6px 0 0}.hestia-portfolio-modal .modal-header .close{z-index:3;font-size:30px;background:0 0;float:right;box-shadow:none;line-height:16px;margin:0;padding:10px}.hestia-portfolio-modal .modal-header .portfolio-title-container{position:relative;z-index:2}.hestia-portfolio-modal .modal-content{border-radius:6px}.hestia-portfolio-modal .modal-content .modal-body{padding:40px}.hestia-portfolio-modal .modal-content .portfolio-loading{padding:20px 0}.contactus .content .row{padding:0}.contactus .col-md-offset-2{padding:0 20px}.contactus .form-group{margin:0;padding-bottom:24px}.contactus .pirate-forms-footer .form-group{padding-bottom:0}.contactus .card .content{padding:30px 30px 0}.contactus .pirate_forms_wrap{float:none}.contactus .pirate_forms_wrap #pirate-forms-contact-message{height:130px}.contactus .pirate_forms_wrap .form_field_wrap{margin-bottom:17px}.contactus .pirate_forms_wrap .btn{margin:0}.contactus .pirate_forms_wrap .pirateform_wrap_classes_spam_wrap{color:#aaa;font-weight:400}.contactus .contact_message_wrap{margin-bottom:0}.contactus .contact_submit_wrap{text-align:right;margin-bottom:0}.contactus .hestia-info,.contactus .info{margin:0;padding:0}.contactus .hestia-info,.contactus .hestia-info a:not(.btn),.contactus .hestia-info p,.contactus .info,.contactus .info a:not(.btn),.contactus .info p{color:#ccc}.contactus .hestia-info a:not(.btn):hover,.contactus .info a:not(.btn):hover{text-decoration:underline}.contactus .hestia-info:first-child,.contactus .info:first-child{margin-top:30px}.contactus .hestia-info .info-title,.contactus .info .info-title{margin-top:20px;color:#fff}.contactus .hestia-info .icon,.contactus .info .icon{margin-top:14px;color:#fff}.contactus h5.description{color:#ccc}.contactus .card-contact{margin-top:30px}.contactus .pirate_forms_wrap .pirate-forms-footer{display:block}.contactus .pirate_forms_wrap .pirate-forms-footer .form_captcha_wrap{display:block}.contactus .pirate_forms_wrap .pirate-forms-footer .form_captcha_wrap>div>div{margin:0 auto 20px}.contactus .pirate_forms_wrap .pirate-forms-footer .form_captcha_wrap+.contact_submit_wrap{text-align:center;display:block}.pirate_forms_wrap .pirate-forms-footer .form_field_wrap.contact_submit_wrap{width:100%;text-align:right}.pirate-forms-maps-custom span:after,.pirate-forms-maps-custom span:before{content:'';position:absolute;top:0;bottom:0;margin:auto}.pirate-forms-maps-custom span:before{background:0 0;border:1px solid #aaa;border-radius:3px;left:0;height:18px;width:18px}.pirate-forms-maps-custom span:after{content:'\f00c';font-family:"Font Awesome 5 Free";font-weight:900;left:2px;top:1px;color:transparent}.pirate-forms-maps-custom input[type=checkbox]{display:none}.pirate-forms-maps-custom label{color:#aaa;cursor:pointer;font-weight:100;margin:8px 0;padding-left:20px;position:relative}.pirate-forms-maps-custom input[type=checkbox]:checked+label span:after{color:#787878}.pirate-forms-file-upload-input,.pirate_forms_three_inputs_wrap .form_field_wrap input.pirate-forms-file-upload-input{height:50px;padding:0 15px;margin:10px 0 0}.features,.hestia-features{padding:75px 0 55px;text-align:center}.features .hestia-title,.features .title,.hestia-features .hestia-title,.hestia-features .title{margin-top:10px}.features .hestia-info,.features .info,.hestia-features .hestia-info,.hestia-features .info{padding:70px 0 30px;margin:0 auto}.features .feature-box .card,.hestia-features .feature-box .card{width:auto;overflow:hidden;margin-bottom:0}.features .feature-box img,.hestia-features .feature-box img{max-width:150px}.hestia-info,.info{max-width:360px}.hestia-info a:hover .icon,.hestia-info a:hover .info-title,.info a:hover .icon,.info a:hover .info-title{opacity:.75}.hestia-info a:hover .icon,.info a:hover .icon{transform:scale(1.05) translateY(-5px)}.hestia-info .icon,.info .icon{transition:.3s ease;color:#999}.hestia-info .info-title,.info .info-title{transition:.3s ease;margin:30px 0 15px;color:#3c4858}.hestia-info p,.info p{color:#999}.info-horizontal .icon{float:left;margin-top:24px;margin-right:10px}.info-horizontal .description{overflow:hidden}.icon.icon-primary{color:#9c27b0}.icon.icon-success{color:#4caf50}.icon.icon-danger{color:#f44336}.icon.icon-rose{color:#e91e63}.hestia-team .col-xs-6,.team .col-xs-6{padding-left:0;padding-right:0}.hestia-team .btn-just-icon,.team .btn-just-icon{transition:.3s ease}.hestia-team .btn-just-icon:hover,.team .btn-just-icon:hover{opacity:.75}.hestia-team .card,.team .card{text-align:left}.hestia-team .card .content,.team .card .content{padding-top:0}.hestia-team .card .content a:hover>.card-title,.team .card .content a:hover>.card-title{opacity:.75}.hestia-team .card .footer,.team .card .footer{margin-left:-12px;margin-top:0}.hestia-team h5.description,.team h5.description{margin-bottom:70px}.hestia-team img,.team img{transition:1s ease-in}.hestia-team .card-image a:hover,.team .card-image a:hover{opacity:1}.hestia-team .card-image a:hover img,.team .card-image a:hover img{-webkit-transform:scale3d(1.1,1.1,1);transform:scale3d(1.1,1.1,1)}.authors-on-blog{background:#121417;background:-moz-linear-gradient(top,#121417 0,#323437 100%);background:-webkit-gradient(left top,left bottom,color-stop(0,#121417),color-stop(100%,#323437));background:-webkit-linear-gradient(top,#121417 0,#323437 100%);background:-o-linear-gradient(top,#121417 0,#323437 100%);background:-ms-linear-gradient(top,#121417 0,#323437 100%);background:linear-gradient(to bottom,#121417 0,#323437 100%);background-position:center center;background-size:cover}.authors-on-blog .card-title{color:#fff}.authors-on-blog .footer a:hover{color:#fff}.footer-menu a[href*="facebook.com"],.hestia-team .footer a[href*="facebook.com"],.team .footer a[href*="facebook.com"]{color:#3b5998}.footer-menu a[href*="twitter.com"],.hestia-team .footer a[href*="twitter.com"],.team .footer a[href*="twitter.com"]{color:#55acee}.footer-menu a[href*="pinterest.com"],.hestia-team .footer a[href*="pinterest.com"],.team .footer a[href*="pinterest.com"]{color:#cc2127}.footer-menu a[href*="google.com"],.hestia-team .footer a[href*="google.com"],.team .footer a[href*="google.com"]{color:#dd4b39}.footer-menu a[href*="linkedin.com"],.hestia-team .footer a[href*="linkedin.com"],.team .footer a[href*="linkedin.com"]{color:#0976b4}.footer-menu a[href*="dribbble.com"],.hestia-team .footer a[href*="dribbble.com"],.team .footer a[href*="dribbble.com"]{color:#ea4c89}.footer-menu a[href*="github.com"],.hestia-team .footer a[href*="github.com"],.team .footer a[href*="github.com"]{color:#000}.footer-menu a[href*="youtube.com"],.hestia-team .footer a[href*="youtube.com"],.team .footer a[href*="youtube.com"]{color:#e52d27}.footer-menu a[href*="instagram.com"],.hestia-team .footer a[href*="instagram.com"],.team .footer a[href*="instagram.com"]{color:#125688}.footer-menu a[href*="reddit.com"],.hestia-team .footer a[href*="reddit.com"],.team .footer a[href*="reddit.com"]{color:#ff4500}.footer-menu a[href*="tumblr.com"],.hestia-team .footer a[href*="tumblr.com"],.team .footer a[href*="tumblr.com"]{color:#35465c}.footer-menu a[href*="behance.com"],.hestia-team .footer a[href*="behance.com"],.team .footer a[href*="behance.com"]{color:#1769ff}.footer-menu a[href*="snapchat.com"],.hestia-team .footer a[href*="snapchat.com"],.team .footer a[href*="snapchat.com"]{color:#fffc00}.footer-menu a[href*="deviantart.com"],.hestia-team .footer a[href*="deviantart.com"],.team .footer a[href*="deviantart.com"]{color:#05cc47}.footer-menu a[href*="vimeo.com"],.hestia-team .footer a[href*="vimeo.com"],.team .footer a[href*="vimeo.com"]{color:#1ab7ea}.card-pricing{text-align:center}.card-pricing .card-title{margin-top:30px}.card-pricing .content{padding:15px!important}.card-pricing small:first-child{position:relative;top:-17px}.card-pricing ul{max-width:240px;margin:10px auto;padding:0;list-style:none}.card-pricing ul li{padding:12px 0;border-bottom:1px solid rgba(153,153,153,.3);color:#999;text-align:center}.card-pricing ul li:last-child{border:0}.card-pricing ul li b{color:#3c4858}.card-pricing .hestia-pricing-icon-wrapper{border-radius:50%;border:1px solid #e5e5e5;width:80px;height:80px;margin:10px auto 0}.card-pricing .hestia-pricing-icon-wrapper i{color:inherit;font-size:30px;line-height:80px}.card-pricing .hestia-pricing-icon-wrapper.pricing-has-icon+.card-title{font-size:25px;margin-top:20px}.card-pricing .hestia-pricing-icon-wrapper.pricing-has-icon+.card-title small{color:inherit;top:0;font-size:inherit;font-weight:inherit;line-height:inherit}.card-pricing .card-pricing.card-plain .hestia-pricing-icon-wrapper{border-color:#d6d1d1}.hestia-ribbon{background-attachment:fixed;padding:100px 0}@media (max-width:991px){.hestia-subscribe-button{margin-top:40px}}.subscribe-line{padding:65px 0}.subscribe-line .card{margin-top:30px}.subscribe-line .card .content .row{margin:0}.subscribe-line .card .input-group{display:table}.subscribe-line .card .input-group .input-group-addon{display:table-cell;padding:0 15px 0 0;width:1%}.subscribe-line .card .input-group .form-group{display:table-cell;padding-bottom:0}.subscribe-line .card .btn,.subscribe-line .card input[type=button],.subscribe-line .card input[type=submit]{white-space:nowrap}.subscribe-line.subscribe-line-image{position:relative;background-position:top center;background-size:cover}.subscribe-line.subscribe-line-image .hestia-title,.subscribe-line.subscribe-line-image .title{color:#fff}.subscribe-line.subscribe-line-image:after{display:block;position:absolute;z-index:1;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.66);content:""}.subscribe-line.subscribe-line-image .container{position:relative;z-index:2}.subscribe-line .card h5,.subscribe-line .sib_loader{display:none!important}#sib_signup_form_1{text-align:center}#sib_signup_form_1 .input-group-addon{width:20px;display:inline-block;vertical-align:bottom;text-align:center;margin-right:10px;font-size:16px;margin-bottom:15px}#sib_signup_form_1 p.form-group{display:inline-block;width:calc(100% - 30px);margin-bottom:15px;text-align:left;position:relative;z-index:0}#sib_signup_form_1 p.form-group label{z-index:-1;top:10px;position:absolute;font-weight:400;color:#909090}#sib_signup_form_1 p.form-group:not(.is-empty) label{display:none}.hestia-blogs article .card-image img{transition:1s ease-out}.hestia-blogs article .card-image a:hover{opacity:1}.hestia-blogs article .card-image a:hover img{-webkit-transform:scale3d(1.1,1.1,1);transform:scale3d(1.1,1.1,1)}.hestia-blogs article .category a:not(:last-child):after{content:", "}.footer .widget h5{margin-bottom:20px}.footer a{color:#3c4858}.footer-big{color:#999;padding:30px 0 18px;text-align:center}.footer-big ul{margin-bottom:0;padding:0;list-style:none}.footer-big ul li a{display:inline-block;position:relative;padding:5px 0;border-radius:3px;text-decoration:none;text-transform:uppercase}.footer-big ul li a:hover{text-decoration:none}.footer-big ul li .btn{margin:0}.footer-big p{color:#999}.footer-big .footer-menu li{display:inline-block}.footer-big .footer-menu li a{padding:15px}.footer-big .copyright{padding:15px 0}.footer-big .content{text-align:left}.footer-big hr{margin-top:10px}footer.footer{background:#fff}footer.footer.footer-black{background:#323437}footer.footer.footer-black a{opacity:.86;color:#fff}footer.footer.footer-black a:focus,footer.footer.footer-black a:hover{opacity:1}footer.footer.footer-black .copyright,footer.footer.footer-black h4,footer.footer.footer-black h5,footer.footer.footer-black i{color:#fff}footer.footer.footer-black hr{border-color:rgba(255,255,255,.2)}.hestia-bottom-footer-content{position:relative}.hestia-center{width:100%;text-align:center}.footer-big .footer-menu li a[href*="mailto:"],.footer-big .footer-menu li a[href*="tel:"]{color:transparent;padding:10px}.footer-big .footer-menu li a[href*="mailto:"]:before,.footer-big .footer-menu li a[href*="tel:"]:before{color:#fff;font-family:"Font Awesome 5 Brands";font-weight:900}.footer-big .footer-menu li a[href*="mailto:"]:hover:before,.footer-big .footer-menu li a[href*="tel:"]:hover:before{color:#999}.footer-big .footer-menu li a[href*="mailto:"]:before,.footer-big .footer-menu li a[href*="tel:"]:before{display:inline-block;width:16px;height:16px;background-repeat:no-repeat;content:'';background-color:#fff}.footer-big .footer-menu li a[href*="mailto:"]:before{mask-image:url('data:image/svg+xml;utf8,');-webkit-mask-image:url('data:image/svg+xml;utf8,')}.footer-big .footer-menu li a[href*="tel:"]:before{mask-image:url('data:image/svg+xml;utf8,');-webkit-mask-image:url('data:image/svg+xml;utf8,')}.hestia-scroll-to-top{position:fixed;bottom:15px;right:15px;z-index:999;opacity:0;transition:opacity .25s ease-in-out;-moz-transition:opacity .25s ease-in-out;-webkit-transition:opacity .25s ease-in-out;padding:0;margin:0;border-radius:50%;width:50px;height:50px;text-align:center;line-height:50px;font-size:20px;background-color:#999;-webkit-box-shadow:none;box-shadow:none}.hestia-scroll-to-top:hover{background-color:#999;-webkit-box-shadow:0 14px 26px -12px rgba(49,49,49,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(49,49,49,.42);box-shadow:0 14px 26px -12px rgba(49,49,49,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(49,49,49,.2)}.hestia-scroll-to-top:focus{background-color:#999;-webkit-box-shadow:0 14px 26px -12px rgba(49,49,49,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(49,49,49,.42);box-shadow:0 14px 26px -12px rgba(49,49,49,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(49,49,49,.2)}.hestia-scroll-to-top svg{fill:#fff}.hestia-fade{opacity:1}.hestia-top-bar{height:40px;max-height:40px}.hestia-top-bar .col-md-12,.hestia-top-bar .col-md-6{max-height:40px}.hestia-top-bar .col-md-12.pull-right,.hestia-top-bar .col-md-6.pull-right{text-align:right}.hestia-top-bar .col-md-12.pull-right .widget.widget_shopping_cart .cart_list,.hestia-top-bar .col-md-6.pull-right .widget.widget_shopping_cart .cart_list{left:auto;right:0}.hestia-top-bar .col-md-12 li a:before,.hestia-top-bar .col-md-6 li a:before{font-family:"Font Awesome 5 Brands"}.hestia-top-bar .widget{margin:0 10px 0 0}.hestia-top-bar .widget:last-of-type{margin-right:0}.hestia-top-bar .widget,.hestia-top-bar .widget .textwidget,.hestia-top-bar .widget h5{display:inline-block}.hestia-top-bar .widget h5{margin:0 5px 0 0}.hestia-top-bar .widget .btn{padding:3px 10px}.hestia-top-bar .widget.widget_categories h5,.hestia-top-bar .widget.widget_nav_menu h5,.hestia-top-bar .widget.widget_product_categories h5{display:none}.hestia-top-bar .widget.widget_product_search button[type=submit],.hestia-top-bar .widget.widget_product_search h5,.hestia-top-bar .widget.widget_search button[type=submit],.hestia-top-bar .widget.widget_search h5{display:none}.hestia-top-bar .widget.widget_product_search .label-floating,.hestia-top-bar .widget.widget_search .label-floating{display:inline-block;margin:0;padding:0;width:auto}.hestia-top-bar .widget.widget_product_search .label-floating .control-label,.hestia-top-bar .widget.widget_search .label-floating .control-label{padding:0}.hestia-top-bar .widget.widget_product_search .label-floating.is-empty .control-label,.hestia-top-bar .widget.widget_search .label-floating.is-empty .control-label{position:absolute;left:25px;top:12px;right:-25px;margin-top:0;text-align:left;opacity:1}.hestia-top-bar .widget.widget_product_search .label-floating.is-focused .control-label,.hestia-top-bar .widget.widget_search .label-floating.is-focused .control-label{opacity:0}.hestia-top-bar .widget.widget_product_search .label-floating:not(.is-empty) .control-label,.hestia-top-bar .widget.widget_search .label-floating:not(.is-empty) .control-label{opacity:0;left:25px;top:12px}.hestia-top-bar .widget.widget_product_search form:not(.form-group),.hestia-top-bar .widget.widget_search form:not(.form-group){opacity:0}.hestia-top-bar .widget.widget_product_search form.form-group,.hestia-top-bar .widget.widget_search form.form-group{opacity:1}.hestia-top-bar .widget.widget_product_search form.form-group input[type=search],.hestia-top-bar .widget.widget_search form.form-group input[type=search]{background:0 0;border:none;float:none;margin:2px 25px 0 25px;width:auto}.hestia-top-bar .widget.widget_product_search form.form-group input[type=submit],.hestia-top-bar .widget.widget_search form.form-group input[type=submit]{display:none}.hestia-top-bar .widget.widget_product_search form.form-group:after,.hestia-top-bar .widget.widget_search form.form-group:after{display:none}.hestia-top-bar .widget.widget_product_search form.form-group:before,.hestia-top-bar .widget.widget_search form.form-group:before{content:"";position:absolute;left:0;top:50%;width:18px;height:18px;mask-image:url('data:image/svg+xml;utf8,');-webkit-mask-image:url('data:image/svg+xml;utf8,');background-color:#fff;transform:translateY(-50%)}.hestia-top-bar .widget.widget_search .search-form{display:inline-block}.hestia-top-bar ul li{cursor:auto;display:inline-block;margin:0 5px}.hestia-top-bar ul li:first-child{margin-left:0}.hestia-top-bar ul li:last-child{margin-right:0}.hestia-top-bar ul li a{padding:0;text-transform:inherit}.hestia-top-bar ul li a:focus,.hestia-top-bar ul li a:hover{background-color:transparent;outline:0}.hestia-top-bar ul li a[href*="mailto:"]:before,.hestia-top-bar ul li a[href*="tel:"]:before{margin-right:7px;display:inline-block;width:16px;height:16px;background-repeat:no-repeat;content:'';background-color:#fff;vertical-align:text-bottom}.hestia-top-bar ul li a[href*="tel:"]:before{mask-image:url('data:image/svg+xml;utf8,');-webkit-mask-image:url('data:image/svg+xml;utf8,')}.hestia-top-bar ul li a[href*="mailto:"]:before{mask-image:url('data:image/svg+xml;utf8,');-webkit-mask-image:url('data:image/svg+xml;utf8,')}.hestia-top-bar ul li.dropdown .caret{display:none}.hestia-top-bar.placeholder{box-sizing:content-box;border:2px dashed}.hestia-top-bar.placeholder .top-widgets-placeholder{display:inline-block;cursor:pointer;position:relative;vertical-align:top}.hestia-clients-bar{padding:70px 0}.hestia-clients-bar .clients-bar-wrapper{list-style-type:none;margin:0;padding:0}.hestia-clients-bar .clients-bar-wrapper li{display:inline-block;margin:25px;vertical-align:middle}.hestia-clients-bar .clients-bar-wrapper li a{display:block;padding:5px}.hestia-clients-bar .clients-bar-wrapper li img{max-width:100%;height:auto}.hestia-clients-bar .row>div{padding:30px}.error404 .search-form,.search-no-results .search-form{margin-top:40px}#authors-on-blog{padding:80px 0}#authors-on-blog .card-profile{text-align:left}#authors-on-blog .col-ms-6:nth-child(2n+1){clear:both}.blog-post{word-wrap:break-word}.blog-post .section-text{padding-bottom:0}.blog-post .section-text p{margin-bottom:30px}.blog-post .section-blog-info{padding-top:15px}.blog-post .section-blog-info .entry-categories span{font-size:10px}.blog-post .section-blog-info .entry-categories,.blog-post .section-blog-info .entry-tags{word-break:break-all}.blog-post .section-blog-info .entry-categories span,.blog-post .section-blog-info .entry-tags span{display:inline-block;margin:5px}.blog-post .section-blog-info .entry-categories a{display:inline-block;padding:2px 2px;color:#fff}.blog-post .section-blog-info .card-profile{margin-top:0;text-align:left}dl dd,pre{margin-bottom:30px}.alignleft .avatar{margin-right:24px}.alignright .avatar{margin-left:24px}.aligncenter,img.centered{display:block;margin:0 auto 24px}img.alignnone{margin-bottom:12px}.alignleft{float:left;text-align:left}.alignright{float:right;text-align:right}.wp-caption.alignleft,img.alignleft{margin:0 24px 24px 0;margin:0 2.4rem 2.4rem 0}.wp-caption.alignright,img.alignright{margin:0 0 24px 24px}.wp-caption-text{padding-top:10px;text-align:center}.gallery-caption{padding-top:10px}.gallery .gallery-item{padding:5px}.gallery img{border:none!important;border-radius:6px;-webkit-box-shadow:0 16px 38px -12px rgba(0,0,0,.56),0 4px 25px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2);box-shadow:0 16px 38px -12px rgba(0,0,0,.56),0 4px 25px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2)}.bypostauthor{display:block}.related-posts .hestia-title{margin-bottom:50px}.related-posts .category a:not(:last-child):after{content:", "}.single-post .blog-post .section-text .title-in-content{margin-bottom:0}.blog-post .section-text .author.meta-in-content{opacity:.9;margin-bottom:20px;font-size:15px}.flex-row{display:flex;flex-wrap:wrap;flex-direction:row}.layout-alternative2 .category{padding-top:10px}.alignfull,.alignwide{width:unset;max-width:unset}.hestia-hidden{display:none}.wp-block-embed.is-type-video>.wp-block-embed__wrapper{position:relative;width:100%;height:0;padding-top:56.25%}.wp-block-embed.is-type-video>.wp-block-embed__wrapper iframe,.wp-block-embed.is-type-video>.wp-block-embed__wrapper>object{position:absolute;width:100%;height:100%;top:0;left:0;bottom:0;right:0}.media .avatar,.media-area .avatar,.media-body .avatar{overflow:hidden;width:64px;height:64px;margin:0 auto;margin-right:15px;border-radius:50%;-webkit-box-shadow:0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12),0 3px 5px -1px rgba(0,0,0,.2);box-shadow:0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12),0 3px 5px -1px rgba(0,0,0,.2)}.comment-respond .hestia-title,.media-area .hestia-title{margin-bottom:30px}.single-post .blog-post .section-comments .hestia-title{margin-bottom:30px;margin-top:20px}.comment .pull-left{padding-right:10px}.media-body div.avatar{margin:0 10px}.media{overflow:visible}.media .avatar img{width:100%}.media .media-heading{margin-top:0;margin-bottom:10px}.media .media-heading small{font-family:Roboto,Helvetica,Arial,sans-serif}.media .media-body{padding-right:10px}.media .media-body .media .media-body{padding-right:0}.media .media-footer .btn{margin-bottom:20px}.media .media-footer:after{display:table;clear:both;content:" "}.media p{color:#999}#comments .comment-notes{display:none}.section-comments ul.children .avatar img,.section-comments ul.children .comment-author.avatar{width:40px;height:40px}.blog-post .media p{color:#555}.blog-post .section-comments .title{margin-bottom:30px}.blog-post .section-comments .comment-respond .author{margin:15px 20px 0 0}.blog-post .section-comments .comment-respond .author img{border-radius:100%}.blog-post .comment-reply-link{text-transform:uppercase;float:right}.media-body{width:10000px;display:table-cell;overflow:visible}.widget{margin-bottom:30px;word-break:break-word}.widget ul{padding:0 0 0 10px;margin:0;list-style:none}.widget ul li{line-height:2.4;padding-top:5px}.widget ul li:first-child{padding-top:0}aside .widget .btn a{color:#fff}aside .widget a{color:#23527c}.widget a:hover{color:#89229b}.widget #searchform{margin-bottom:0;padding-bottom:0}.widget h5{font-family:"Roboto Slab","Times New Roman",serif;margin-bottom:10px}.widget select{width:100%}.hestia-widget-placeholder{border:1px dashed #b4b9be;padding:25px;text-align:center}.hestia-widget-placeholder .widget{margin:0}.single .hestia_right aside.blog-sidebar{padding:0}.hestia_right .hestia-widget-placeholder{padding:5px}.widget_calendar td,.widget_calendar th,.widget_calendar tr{padding:7px 0;text-align:center}.hestia-sidebar-toggle-container{clear:both}.hestia-sidebar-close,.hestia-sidebar-open{display:none;padding:10px}body.off-canvas .hestia-sidebar-close,body.off-canvas .hestia-sidebar-open{display:inline-block}body.off-canvas .shop-sidebar-wrapper{position:fixed;top:0;z-index:1030;height:100%;background:#fff;border-right:1px solid #f0f0f0;left:-100%;transition:.5s ease;padding:60px 20px 20px;overflow-y:scroll}body.off-canvas .shop-sidebar-wrapper.sidebar-open{left:0}body.off-canvas .shop-sidebar-wrapper .card{box-shadow:none}.row-sidebar-toggle{text-align:right}.row-sidebar-toggle .hestia-sidebar-close{padding:10px 13px}.row-sidebar-toggle.desktop{clear:both;text-align:left}.attachment .main-raised .blog-post{padding-bottom:130px}.attachment .sizes{margin-top:20px}.hestia-blog-featured-posts{padding:0}.hestia-blog-featured-posts article:nth-of-type(1) .card{margin-top:0}.hestia-blog-featured-posts article:nth-child(6n) .btn{background-color:#4caf50}.hestia-blog-featured-posts article:nth-child(6n+1) .btn{background-color:#89229b}.hestia-blog-featured-posts article:nth-child(6n+2) .btn{background-color:#00bcd4}.hestia-blog-featured-posts article:nth-child(6n+3) .btn{background-color:#f44336}.hestia-blog-featured-posts article:nth-child(6n+4) .btn{background-color:#ff9800}.hestia-blog-featured-posts article:nth-child(6n+5) .btn{background-color:#e91e63}.hestia-blog-featured-card .card-background{text-align:center}.hestia-blog-featured-card .card-background:after{position:absolute;z-index:1;width:100%;height:100%;display:block;left:0;top:0;content:"";background-color:rgba(0,0,0,.56);border-radius:6px;opacity:1}.hestia-blog-featured-card .card-background .card-body{position:relative;z-index:2;min-height:280px;padding-top:40px;padding-bottom:40px;max-width:440px;margin:0 auto}.hestia-blog-featured-card .card-background .card-body .card-description{color:rgba(255,255,255,.7)}.hestia-blog-featured-card .card-background .card-body .category a{color:rgba(255,255,255,.7)}.hestia-blog-featured-card .card-body{padding:15px 30px}.hestia-blog-featured-card.col-md-12 .card-body{max-width:750px}figure.wp-block-pullquote{border-left:none;border-top:4px solid;border-bottom:4px solid;margin:20px 0;padding:3em 0}figure.wp-block-pullquote p{font-size:28px;font-style:normal;margin-bottom:20px}figure.wp-block-pullquote blockquote{margin:1em;border:none}figure.wp-block-pullquote cite{text-transform:uppercase;font-size:13px;font-weight:300}.page-content-wrap .has-small-font-size,.single-post-wrap .has-small-font-size{font-size:13px}.page-content-wrap .has-medium-font-size,.single-post-wrap .has-medium-font-size{font-size:20px}.page-content-wrap .has-large-font-size,.single-post-wrap .has-large-font-size{font-size:36px}.page-content-wrap .has-huge-font-size,.single-post-wrap .has-huge-font-size{font-size:48px}.wp-block-separator{color:#eee;background-color:#eee;border:none}.wp-block-separator:not(.is-style-wide):not(.is-style-dots){height:2px;max-width:150px}.wp-block-separator .is-style-default{height:1px}.wp-block-separator.is-style-wide{max-width:100%;height:1px}.page-header .author,.page-header .author a,.page-header .container,.page-header .description,.page-header .hestia-title,.page-header .title{color:#fff}.page-content-wrap:after,.single-post-wrap:after{content:"";display:table;clear:both}#parallax_move~.item .page-header,#wp-custom-header~.item .page-header{overflow:inherit}.page-header{will-change:transform;overflow:hidden;margin:0;padding:0;border:0;background-position:center center;background-size:cover}.page-header .container{padding-top:30vh;color:#fff}.page-header .container .hestia-title,.page-header .container .title{margin:0 0 20px}.page-header.header-small .container .hestia-title,.page-header.header-small .container .title{margin:20px 0 10px}.page-header.header-small{min-height:300px;position:relative;height:auto}.page-header.header-small .container{padding-top:180px;padding-bottom:110px}.page-header.header-small .hestia-title,.page-header.header-small .title{font-family:Roboto,Helvetica,Arial,sans-serif}.boxed-layout-header{padding-bottom:60px}.header-filter-gradient{background:linear-gradient(45deg,#a81d84 0,#ea396f 100%)}.header-filter.header-filter-gradient:before{background-color:transparent}.header-filter{position:absolute;top:0;bottom:0;left:0;right:0;z-index:-1;background-position:center center;background-size:cover}.header-filter:after,.header-filter:before{display:block;position:absolute;top:0;left:0;width:100%;height:100%;content:""}.header-filter::before{background-color:rgba(0,0,0,.5)}.header-filter .container{position:relative}.carousel .header-filter:after,.carousel .header-filter:before{z-index:-1}.clear-filter:before{display:none}.header .wrapper{background:#ccc}.header .btn{margin:0}.header h6{margin-bottom:0}.phone-container img{width:100%}.main{position:relative;background:#fff}.main-raised{margin:-60px 30px 0;border-radius:6px 6px 0 0;-webkit-box-shadow:0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2);box-shadow:0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2)}.home .main-raised section:first-of-type{border-radius:6px 6px 0 0;overflow:hidden}.page-template-template-pagebuilder-blank .section{padding:0}.single .main-raised,.woocommerce.archive .main-raised{margin-top:-60px;margin-bottom:30px}.single .main-raised.classic-blog{margin-top:0}.content-sidebar-left{padding-left:30px;padding-right:0}.content-sidebar-right{padding-right:30px;padding-left:0}.shop-sidebar-wrapper{padding:0}.content-full.col-md-12{padding:0}.page:not(.home) .wrapper{display:flex;flex-direction:column;min-height:100vh}.page:not(.home) .wrapper .main{display:flex;flex-direction:column;flex:1 0 auto}.page:not(.home) .wrapper .main .blog-post{flex:1 0 auto}body:not(.home) .wrapper{display:flex;flex-direction:column;min-height:100vh}body:not(.home) .wrapper .main{display:flex;flex-direction:column;flex:1 0 auto}body:not(.home) .wrapper .main .hestia-blogs{flex:1 0 auto}body:not(.home) .wrapper .content-area{display:flex;flex-direction:column;flex:1 0 auto}@media (max-width:1199px){.contactus .row,.hestia-about .row,.hestia-features .row,.hestia-team .row,.hestia-testimonials .row,.hestia-work .row,.pricing .row,.products .row,section.hestia-blogs .row{padding:0 15px}.products .container{width:100%}.main-raised{margin:-60px 15px 0}}@media (max-width:991px){.navbar .navbar-nav>li{margin-right:10px;margin-left:10px}.page-header{height:auto;min-height:0}.card.card-raised .card-image{margin-top:-30px;display:block;margin-left:0;margin-right:0}.card.card-raised{padding:20px}.woocommerce-checkout .page-header{height:auto}.hestia-about .text-area{margin:0 0 10px}.blog .page-header.header-small h2{margin:0}.blog .page-header.header-small{height:auto;min-height:0}.page-header .iframe-container{padding:30px 0}.card-form-horizontal .form-group{padding-bottom:20px}.carousel .page-header{padding:0 30px}.btn.btn-simple{padding-right:0;padding-left:0;text-align:left}.hestia-work .col-md-4 .card-background .content,.hestia-work .col-md-6 .card-background .content{padding-top:15%}.about .row,.contactus .row,.features .row,.hestia-about .row,.hestia-features .row,.hestia-team .row,.hestia-testimonials .row,.hestia-work .row,.pricing .row,.products .row,.team .row,.testimonials .row,.work .row,section.hestia-blogs .row{padding:0 10px}.single aside.blog-sidebar{padding:40px 30px}.shop-sidebar.card{width:100%;text-align:initial}.shop-sidebar-wrapper{text-align:center}.products .shop-item:nth-of-type(2n+1){clear:both}.subscribe-line .card .content{padding:0}.subscribe-line .card .form-group{padding-bottom:0}.archive .hestia-blogs,.blog .hestia-blogs{padding-top:0}.archive .hestia-blogs .card-blog .card-image,.blog .hestia-blogs .card-blog .card-image{margin-bottom:30px}.archive #authors-on-blog,.blog #authors-on-blog{padding-bottom:40px}.home section.hestia-blogs{padding:30px 0 65px}.single.single-post .section-blog-info .card-profile .card-title,.single.single-post .section-blog-info .card-profile .description{text-align:center}.single.single-post .section-blog-info .card-profile .card-avatar{margin-bottom:20px}.hestia-sidebar-close,.hestia-sidebar-open{cursor:pointer;display:inline-block;margin:0;padding:12px 15px}.row-sidebar-toggle{margin:30px 15px 0;text-align:right}.row-sidebar-toggle.desktop{display:none}.page .row-sidebar-toggle{margin-top:0;margin-bottom:30px}.shop-sidebar-wrapper{position:fixed;top:0;z-index:1030;height:100%;background:#fff;border-right:1px solid #f0f0f0;left:-100%;transition:.5s ease;padding:60px 20px 20px;overflow-y:scroll}.shop-sidebar-wrapper.sidebar-open{left:0}.shop-sidebar-wrapper .card{box-shadow:none}.archive.woocommerce .hestia-sidebar-open{margin-top:15px}.archive.woocommerce .shop-sidebar-active{margin-top:10px}.archive.woocommerce .row-sidebar-toggle.col-sm-3{margin:0;text-align:left}.archive.woocommerce .row-sidebar-toggle.col-sm-3 .hestia-sidebar-open{margin:15px 0 0}.shop-sidebar.card.card-raised{box-shadow:none;margin:0;padding:0 15px}.hestia-top-bar .container{width:100%}.hestia-top-bar .col-md-6{width:50%}.hestia-team .card .content,.team .card .content{padding-top:15px}.hestia-team .card .content .footer .btn.btn-just-icon,.team .card .content .footer .btn.btn-just-icon{padding:12px;text-align:center}.pricing p.text-gray{margin-bottom:40px}.related-posts .hestia-title{margin-bottom:60px}.hestia-blog-featured-posts{padding-top:30px}.hestia-blog-featured-posts .card-raised{margin:30px 0}.hestia-blog-featured-posts .card-background .card-body{padding-top:20px;padding-bottom:20px;max-width:100%}.hestia-blog-featured-posts .card-body{padding:20px 15px}}@media (min-width:992px){.navbar .navbar-collapse{text-align:center}.card.card-raised .card-image{margin-left:0;margin-right:0}.navbar .navbar-center{display:inline-block;float:none}.navbar .navbar-nav>li{margin:0}.navbar .navbar-nav>li.btn{margin:0 10px}.navbar .navbar-nav>li.btn:last-child{margin-right:0}.entry-social{text-align:right}.footer .content{margin-left:-15px;margin-right:-15px}.footer .row{margin-left:-15px;margin-right:-15px}.footer .col-md-4{padding:0 30px}.blog-sidebar-wrapper,.shop-sidebar-wrapper{float:left;position:static;background:0 0}.big-title-sidebar-wrapper .pirate-forms-contact-widget{max-width:370px}.row-sidebar-toggle.desktop{display:block}.row-sidebar-toggle.mobile{display:none}}@media (min-width:783px) and (min-width:601px){body.admin-bar .navbar-default:not(.navbar-transparent){margin-top:32px}}@media (min-width:769px){.form-horizontal .control-label{padding-top:8px}.nav-cart.responsive-nav-cart{display:none}.navbar.hestia_left .title-logo-wrapper{min-width:250px}.navbar.hestia_right.navbar-scroll-point .header-sidebar-wrapper,.navbar.hestia_right.navbar-scroll-point .title-logo-wrapper{display:none}.navbar.hestia_right .title-logo-wrapper{min-width:250px}.navbar.hestia_right .navbar-collapse{min-width:100%}.navbar.hestia_center .navbar-brand{margin:0 auto}.navbar.hestia_center.navbar-scroll-point .title-logo-wrapper{display:none}.navbar.full-screen-menu .navbar-brand{float:none;margin:0;padding:0}.navbar.full-screen-menu .navbar-header{width:100%;display:flex}.navbar.full-screen-menu .navbar-toggle{z-index:999999}.navbar.full-screen-menu.navbar-scroll-point .title-logo-wrapper{display:block}.navbar.full-screen-menu .nav-cart:not(.responsive-nav-cart),.navbar.full-screen-menu .navbar-toggle{display:inline-block}.navbar.full-screen-menu .nav-cart .nav-cart-icon span{top:10px;left:15px}.navbar.full-screen-menu .navbar-nav{background-color:rgba(255,255,255,.9)}.navbar.full-screen-menu.hestia_center .navbar-header .title-logo-wrapper{left:50%;transform:translateX(-50%);position:relative}.navbar.full-screen-menu.hestia_right .navbar-header{max-width:100%}.navbar.full-screen-menu .navbar-nav.nav{opacity:0;display:flex;flex-direction:column;flex-wrap:inherit;justify-content:flex-start;transition:all .3s ease;visibility:hidden;pointer-events:none;z-index:9999;overflow-x:scroll;position:fixed;width:100%;background-color:rgba(255,255,255,.9);left:0;top:0;bottom:0;padding-top:100px}.navbar.full-screen-menu .navbar-nav.nav>li,.navbar.full-screen-menu .navbar-nav.nav>li.btn:last-child{display:table;margin:20px auto}.navbar.full-screen-menu .in .navbar-nav.nav{opacity:1;visibility:visible;pointer-events:inherit}.dropdown .dropdown-menu{display:block;visibility:hidden;margin-top:-20px;opacity:0;-webkit-transition:all 150ms linear;transition:all 150ms linear}.dropdown.open,.dropdown:hover{z-index:1}.dropdown.open>.dropdown-menu,.dropdown:hover>.dropdown-menu{visibility:visible;margin-top:1px;opacity:1;z-index:100}}@media (max-width:768px){li.nav-cart{display:none}li.nav-cart.responsive-nav-cart{display:block;margin-left:5px}.container .navbar-header{width:100%;display:flex;margin:0 auto}.navbar>.container{transition:padding .1s ease;padding:10px 15px;align-items:center;display:block}.navbar.navbar-transparent{background:#fff;color:#555}.navbar.navbar-transparent>.container{padding-top:10px}.navbar .nav.navbar-nav{display:block}.hestia-sidebar-header{display:none}.navbar.hestia_right .navbar-header{max-width:inherit}.navbar.navbar-default .dropdown.btn a .caret{border-color:#fff!important;color:#fff!important}.navbar.navbar-default .navbar-nav .menu-item.btn.active a,.navbar.navbar-default .navbar-nav .menu-item.btn.active a i,.navbar.navbar-default li.btn a,.navbar.navbar-default li.btn a i{color:#fff}.navbar.navbar-default li.btn:hover a,.navbar.navbar-default li.btn:hover i{color:#fff}.navbar.navbar-default li.btn:hover ul li i{color:#fff}.navbar.navbar-default li.btn ul li a,.navbar.navbar-default li.btn ul li i{opacity:1;color:#fff!important}.navbar.navbar-default li.btn ul li i,.navbar.navbar-default li.btn ul li:hover a{color:#fff!important}.navbar.navbar-fixed-top .navbar-collapse{max-height:calc(100% - 70px);margin-top:70px;overflow-y:auto;position:fixed;z-index:9999;background:#fff;width:100%;left:0;top:0;margin-left:0;margin-right:0;-webkit-overflow-scrolling:auto}.navbar.navbar-fixed-top.header-with-topbar:not(.navbar-scroll-point) .navbar-collapse{margin-top:110px}.navbar .navbar-nav{margin:7.5px 0}.navbar .navbar-nav li{box-sizing:border-box;float:left;margin:0;padding:0;width:100%;text-align:left}.navbar .navbar-nav li.btn{margin-top:10px}.navbar .navbar-nav .dropdown a .caret{border:1px solid #555;border-radius:2px;box-sizing:content-box;color:#555;cursor:pointer;display:inline-block;font-family:"Font Awesome 5 Free";font-weight:900;height:30px;margin-left:0;position:absolute;right:15px;text-align:center;top:10px;width:30px;z-index:100}.navbar .navbar-nav .dropdown a .caret svg{width:12.5px;margin:9px;transition:all .3s ease}.navbar .navbar-nav .dropdown a .caret-open .caret svg{transform:rotate(-180deg)}.navbar .navbar-nav .dropdown a>i{margin-right:12px}.navbar .navbar-nav .dropdown.open a>.caret:before{-webkit-transform:rotate(-180deg);-moz-transform:rotate(-180deg);-ms-transform:rotate(-180deg);-o-transform:rotate(-180deg);transform:rotate(-180deg)}.navbar .navbar-nav .dropdown.open .dropdown-menu{display:block!important}.navbar .navbar-nav .dropdown .dropdown-menu{background:0 0;box-shadow:none;position:static;margin-top:0;padding:0;width:100%}.navbar .navbar-nav .dropdown .dropdown-menu.open{display:block!important}.navbar .navbar-nav .dropdown .dropdown-menu li a{margin:0;padding:15px 0 15px 30px}.navbar .navbar-nav .dropdown .dropdown-menu li a:focus,.navbar .navbar-nav .dropdown .dropdown-menu li a:hover{background-color:transparent;color:#e91e63}.navbar .navbar-nav .dropdown .dropdown-menu li li a{padding:15px 0 15px 45px}.navbar .navbar-header .navbar-brand{padding-left:0}.navbar .navbar-brand h1,.navbar .navbar-brand p{padding:10px 0}.navbar .dropdown-submenu:hover .dropdown-menu{display:none!important}.navbar .dropdown-submenu.open>a{background:0 0!important;color:inherit;-webkit-box-shadow:none;box-shadow:none}.navbar.navbar-transparent .open .dropdown-menu>.active>a,.navbar.navbar-transparent .open .dropdown-menu>.active>a:focus,.navbar.navbar-transparent .open .dropdown-menu>.active>a:hover,.navbar.navbar-transparent .open .dropdown-menu>li>a:focus,.navbar.navbar-transparent .open .dropdown-menu>li>a:hover{color:inherit;background-color:transparent}.navbar.navbar-transparent .navbar-nav>.active>a{color:#555}.navbar .open .dropdown-menu>.active>a,.navbar .open .dropdown-menu>.active>a:focus,.navbar .open .dropdown-menu>.active>a:hover,.navbar .open .dropdown-menu>li>a:focus,.navbar .open .dropdown-menu>li>a:hover{color:#e91e63;background-color:transparent}.navbar .dropdown-menu li>a>i{opacity:1}.hestia_right .header-sidebar-wrapper{display:none}body.admin-bar .navbar{margin-top:45px}body.admin-bar .navbar.navbar-default .navbar-collapse{max-height:calc(100% - 115px);margin-top:115px}body.admin-bar .navbar.header-with-topbar{margin-top:0;top:85px}body.admin-bar .navbar.header-with-topbar.navbar-fixed-top .navbar-collapse{max-height:calc(100% - 155px);margin-top:155px}body.admin-bar .navbar.header-with-topbar.navbar-fixed-top.navbar-scroll-point .navbar-collapse{margin-top:115px}body.admin-bar .navbar.navbar-scroll-point.header-with-topbar{top:45px}body.admin-bar .navbar.navbar-scroll-point.navbar-fixed-top .navbar-collapse{max-height:calc(100% - 115px)}.big-title-sidebar-wrapper{width:100%;padding:0}.big-title-sidebar-wrapper .pirate-forms-contact-widget{max-width:370px;margin:0 auto}.single .section{padding:30px 0 0}.single .section.section-blog-info{padding:15px 0 30px}.media .avatar,.media-area .avatar,.media-body .avatar{margin:0;width:35px;height:35px}.subscribe-line .btn{margin-top:15px}ul.children{padding-left:5px;border-left:1px #cfcfcf solid}.blog-post .section-comments .comment-respond .author{display:none}.hestia-about .text-area{margin-bottom:20px}.home .main-raised section:first-of-type{border-radius:0}.footer.footer-big{padding:30px 0 26px}.footer .footer-menu{width:100%}.footer .copyright{display:inline-block;float:none!important;width:100%;padding:10px 0;text-align:center}.main-raised{margin-right:0;margin-left:0;border-radius:0}hr{margin-top:0}.hestia-about{padding-top:30px}.hestia-about h2{margin-top:0}.hestia-about .widget_sow-image .panel-widget-style{margin-top:-60px;padding:0 0 60px 0!important}.authors-on-blog .card-image,.hestia-team .card-image,.team .card-image{height:100px;margin:0 auto;width:100px}.authors-on-blog .card-image img,.hestia-team .card-image img,.team .card-image img{object-fit:cover}.authors-on-blog .col-xs-6:nth-of-type(2n+1),.hestia-team .col-xs-6:nth-of-type(2n+1),.team .col-xs-6:nth-of-type(2n+1){clear:both}.authors-on-blog .card .content,.hestia-team .card .content,.team .card .content{text-align:center}.authors-on-blog .card .content .card-description,.hestia-team .card .content .card-description,.team .card .content .card-description{display:none}.authors-on-blog .card .content .footer,.hestia-team .card .content .footer,.team .card .content .footer{margin-left:0;margin-top:0}.authors-on-blog .card .content .footer .btn.btn-just-icon,.hestia-team .card .content .footer .btn.btn-just-icon,.team .card .content .footer .btn.btn-just-icon{margin:0 5px;padding:0}.authors-on-blog .card .content .footer .btn.btn-just-icon i,.hestia-team .card .content .footer .btn.btn-just-icon i,.team .card .content .footer .btn.btn-just-icon i{width:auto}.hestia-work .card{cursor:pointer}.pricing{padding:60px 0 40px}.contactus .card-contact{margin-top:90px}.contactus .form_captcha_wrap .pirate-forms-google-recaptcha>div{margin:0 auto}.contactus .contact_submit_wrap{text-align:center}.hestia-clear-top-padding{margin-top:-30px}.single.single-post .section-blog-info .entry-social{margin:15px 0 30px}.single.single-post .section-blog-info .card-profile{margin-top:20px}.page .section.section-text{padding:30px 0}.archive .page-header.header-small,.blog .page-header.header-small,.category .page-header.header-small,.page .page-header.header-small,.single-post .page-header.header-small{min-height:0}.archive .page-header.header-small .container,.blog .page-header.header-small .container,.category .page-header.header-small .container,.page .page-header.header-small .container,.single-post .page-header.header-small .container{padding:120px 15px 50px}.archive .page-header.header-small .container .hestia-title,.blog .page-header.header-small .container .hestia-title,.category .page-header.header-small .container .hestia-title,.page .page-header.header-small .container .hestia-title,.single-post .page-header.header-small .container .hestia-title{margin-top:0}.hestia-top-bar{overflow:hidden}.hestia-top-bar .col-md-6{text-align:center;width:100%}.hestia-top-bar .col-md-6.pull-right{display:none}.hestia-top-bar .col-md-12,.hestia-top-bar .col-md-12.pull-right{float:none!important;text-align:center}.hestia-top-bar .widget.widget_shopping_cart{display:none}.home:not(.blog) .main-raised{margin-top:0}.home:not(.blog) .page-header{min-height:0}.header .carousel .item .container{padding-top:170px;padding-bottom:100px}.header .buttons>.btn-right~.btn-left{margin-top:40px}.header.header-with-topbar .carousel .item .container{padding-top:210px}.header .carousel .carousel-control{margin-top:35px}.header.header-with-topbar .carousel .carousel-control{margin-top:55px}.obfx-sharing-bottom{left:0}.carousel .buttons .btn-left,.carousel .buttons .btn-left+.btn-right,.carousel .buttons .btn-right{margin:0 15px 15px}.navbar.navbar-transparent .hestia-hide-if-transparent{display:block}.navbar.navbar-transparent .hestia-transparent-logo{display:none}}@media (max-width:767px){.carousel .page-header .row{flex-direction:column;justify-content:center;padding:0;text-align:center}.carousel .page-header .row .margin-left-auto,.carousel .page-header .row .margin-right-auto{margin:inherit}.carousel .page-header .row .big-title-slider-content{text-align:center}.carousel .item .container.container-height-auto{top:0;transform:none}.carousel .carousel-control.left i{left:10px}.carousel .carousel-control.right i{right:10px}}@media (max-width:600px){body.admin-bar .navbar{margin-top:0}}@media (max-width:600px){body.admin-bar .navbar.navbar-scroll-point{top:0}body.admin-bar .navbar.navbar-scroll-point.header-with-topbar{top:0}body.admin-bar .navbar.navbar-scroll-point.navbar-transparent{margin-top:0;top:46px}body.admin-bar .navbar.navbar-not-transparent{margin-top:0}body.admin-bar .navbar.navbar-scroll-point.header-with-topbar.navbar-fixed-top .navbar-collapse,body.admin-bar .navbar.navbar-scroll-point.navbar-fixed-top .navbar-collapse{max-height:calc(100% - 70px);margin-top:70px}body.admin-bar .navbar.navbar-scroll-point.header-with-topbar.navbar-fixed-top.navbar-transparent .navbar-collapse,body.admin-bar .navbar.navbar-scroll-point.navbar-fixed-top.navbar-transparent .navbar-collapse{max-height:calc(100% - 70px);margin-top:115px}}@media (max-width:480px){.single .main-raised{margin:-60px 0 30px}.comment-respond .form-submit input{display:block;float:none!important;margin:0 auto}.hestia-features{padding:40px 0 55px}.alternative-blog-row{display:table;width:100%;margin:0 auto;table-layout:fixed}.alternative-blog-row div:first-child{display:table-footer-group}.alternative-blog-row div:last-child{padding:0;display:block}.contactus .hestia-contact-form-col{padding:0 5px}.contactus .card-contact{margin-top:30px}.contactus .card-contact .content{padding:30px 15px 0}.contactus .pirate_forms_wrap .pirate-forms-footer .form_captcha_wrap{margin-bottom:0;padding:0}.contactus .pirate_forms_wrap .form_captcha_wrap>div>div{transform:scale(.8);overflow:visible}}.col-ms-1,.col-ms-10,.col-ms-11,.col-ms-12,.col-ms-2,.col-ms-3,.col-ms-4,.col-ms-5,.col-ms-6,.col-ms-7,.col-ms-8,.col-ms-9{position:relative;min-height:1px;padding-left:15px;padding-right:15px}@media (min-width:481px) and (max-width:767px){.col-ms-1,.col-ms-10,.col-ms-11,.col-ms-2,.col-ms-3,.col-ms-4,.col-ms-5,.col-ms-6,.col-ms-7,.col-ms-8,.col-ms-9{float:left}.col-ms-1{width:8.33333%}.col-ms-2{width:16.66667%}.col-ms-3{width:25%}.col-ms-4{width:33.33333%}.col-ms-5{width:41.66667%}.col-ms-6{width:50%}.col-ms-7{width:58.33333%}.col-ms-8{width:66.66667%}.col-ms-9{width:75%}.col-ms-10{width:83.33333%}.col-ms-11{width:91.66667%}.col-ms-12{width:100%}.col-ms-push-1{left:8.33333%}.col-ms-push-2{left:16.66667%}.col-ms-push-3{left:25%}.col-ms-push-4{left:33.33333%}.col-ms-push-5{left:41.66667%}.col-ms-push-6{left:50%}.col-ms-push-7{left:58.33333%}.col-ms-push-8{left:66.66667%}.col-ms-push-9{left:75%}.col-ms-push-10{left:83.33333%}.col-ms-push-11{left:91.66667%}.col-ms-pull-1{right:8.33333%}.col-ms-pull-2{right:16.66667%}.col-ms-pull-3{right:25%}.col-ms-pull-4{right:33.33333%}.col-ms-pull-5{right:41.66667%}.col-ms-pull-6{right:50%}.col-ms-pull-7{right:58.33333%}.col-ms-pull-8{right:66.66667%}.col-ms-pull-9{right:75%}.col-ms-pull-10{right:83.33333%}.col-ms-pull-11{right:91.66667%}.col-ms-offset-1{margin-left:8.33333%}.col-ms-offset-2{margin-left:16.66667%}.col-ms-offset-3{margin-left:25%}.col-ms-offset-4{margin-left:33.33333%}.col-ms-offset-5{margin-left:41.66667%}.col-ms-offset-6{margin-left:50%}.col-ms-offset-7{margin-left:58.33333%}.col-ms-offset-8{margin-left:66.66667%}.col-ms-offset-9{margin-left:75%}.col-ms-offset-10{margin-left:83.33333%}.col-ms-offset-11{margin-left:91.66667%}}@media (min-width:480px) and (max-width:767px){.form-horizontal .form-group .control-label{text-align:right}} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/47633012384f5200df0dba40c8f9cdd9fe96b801.00000500.xml b/www/.content.EZtzwPjb/html/47633012384f5200df0dba40c8f9cdd9fe96b801.00000500.xml new file mode 100644 index 0000000..491676c --- /dev/null +++ b/www/.content.EZtzwPjb/html/47633012384f5200df0dba40c8f9cdd9fe96b801.00000500.xml @@ -0,0 +1,37 @@ + + + + HugoPoi » réseau + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Sat, 14 Sep 2013 23:01:40 +0000 + fr-FR + hourly + 1 + http://wordpress.org/?v=3.6 + + Démonter un Switch Cisco 2950T + http://blog.hugopoi.net/2013/02/09/demonter-un-switch-cisco-2950t/ + http://blog.hugopoi.net/2013/02/09/demonter-un-switch-cisco-2950t/#comments + Sat, 09 Feb 2013 11:41:20 +0000 + HugoPoi + + + + + + http://blog.hugopoi.net/?p=716 + Lire la suite »

                ]]>
                + http://blog.hugopoi.net/2013/02/09/demonter-un-switch-cisco-2950t/feed/ + 1 +
                +
                +
                diff --git a/www/.content.EZtzwPjb/html/47b3adc8005869878b84952c10a866276176bdca.00000033.html b/www/.content.EZtzwPjb/html/47b3adc8005869878b84952c10a866276176bdca.00000033.html new file mode 100644 index 0000000..a9b559e --- /dev/null +++ b/www/.content.EZtzwPjb/html/47b3adc8005869878b84952c10a866276176bdca.00000033.html @@ -0,0 +1,661 @@ + + + + + + + + GET to POST – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                +
                +
                +
                + +
                +
                +
                +
                +
                +
                +

                Il est 00h16, comme d’habitude je suis en train de développer un truc useless pour passer le temps donc je vais le mettre histoire de dire que ça va peut-être servir à plus d’une personne.

                +

                Language : JavaScript

                +

                Dépendance : Aucune

                +

                Type d’exécution : Local

                +

                Description : Ce script sert à transformer une requête HTTP de type GET via URL en méthode POST.

                +

                Fonctionnement : Il prend les arguments passés en get dans l’url et les envois via un formulaire de type hidden créé à la volée.

                +

                Exemple : https://blog.hugopoi.net/wp-content/uploads/2010/12/script.html?urlserverpage=http://fr.php.net/search.php&pattern=test&lang=en&show=quickref

                +

                Download : Script Get to Post

                +

                Note: pour télécharge le fichier en lien ci-dessus faites un clic droit « enregistrer la cible sous ».

                +
                +
                +
                +
                +
                Catégories : DéveloppementNews
                +
                +
                +
                + + + + + + + + + +
                +
                +
                +
                +
                +
                +
                +

                + 9 commentaires

                +
                + +
                +
                +
                +
                +

                + watchix + · 12 juillet 2011 à 17 h 50 min +

                +

                Merci mon bon Hugo :-)
                +J’étais en train de chercher ce genre de script lorsque je suis tombé sur le blog de Camille Descombes, puis ensuite sur ton commentaire :-)
                +Internet est petit dans le monde des développeurs ^^

                + +
                +
                + +
                + +
                +
                +
                +
                +

                + mou7a + · 25 mai 2012 à 13 h 01 min +

                +

                bonjour, Je sais que l’article date un peu mais je n’arrive pas à récupérer la source elle n’est plus disponible merci!!!

                + +
                +
                +
                  +
                  + +
                  +
                  +
                  +
                  +

                  + HugoPoi + · 14 juin 2012 à 23 h 00 min +

                  +

                  la source est dans le fichier HTML.

                  + +
                  +
                  + +
                + +
                + +
                +
                +
                +
                +

                + houhou + · 10 juillet 2012 à 9 h 29 min +

                +

                Bonjour HugoPoi;
                +j’ai besoin du script pour récupérer le contenu d’une div généré en js,l’envoyer à une autre page de traitement pour le convertir en pdf.c’est urgent,merci!!!

                + +
                +
                + + +
                + +
                +
                +
                +
                +

                + Geolocalise Ip + · 25 avril 2014 à 10 h 42 min +

                +

                Bonjour,
                +Merci beaucoup pour l’idée, mais ta page : http://blog.hugopoi.net/wp-content/uploads/2010/12/script.html est morte …

                +

                Quant à « houhou », il est formidable, je prendrai bien son adresse IP à celui là pour voir de quel pays il vient !!!! Grrr ….
                +Bon c’était en 2012, il a dû changer de métiers depuis !

                + +
                +
                +
                  +
                  + +
                  +
                  +
                  +
                  +

                  + HugoPoi + · 9 mai 2014 à 18 h 12 min +

                  +

                  Le lien n’est pas mort mais le script se lance même sans paramètres valide donc tu es redirigé quand tu clic.
                  +Fait un clic droit enregistrer sous.

                  + +
                  +
                  + +
                + +
                + +
                +
                +
                +
                +

                + Gab Wink + · 13 février 2015 à 0 h 06 min +

                +

                Merci, ceci m’a été utile (et c’est toujours cool de le dire).

                + +
                +
                + +
                +
                +
                +

                Répondre à Geolocalise Ip Annuler la réponse

                Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                +
                +
                +

                + +

                +
                +
                +
                +
                +
                +
                + +
                +
                +
                +
                +
                +
                + + +
                + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/47b71f097d800f291cbf846478143fc7d5084734.00000613.css b/www/.content.EZtzwPjb/html/47b71f097d800f291cbf846478143fc7d5084734.00000613.css new file mode 100644 index 0000000..fe440fe --- /dev/null +++ b/www/.content.EZtzwPjb/html/47b71f097d800f291cbf846478143fc7d5084734.00000613.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;background:#fff;border:1px +solid #f00;font-size:10pt;width:280px;padding:2px}span.wpcf7-not-valid-tip-no-ajax{color:#f00;font-size:10pt;display:block}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/4850537bdae2cd7ef32cf2b083c63bd730ce9a44.00000450.html b/www/.content.EZtzwPjb/html/4850537bdae2cd7ef32cf2b083c63bd730ce9a44.00000450.html new file mode 100644 index 0000000..3e189a2 --- /dev/null +++ b/www/.content.EZtzwPjb/html/4850537bdae2cd7ef32cf2b083c63bd730ce9a44.00000450.html @@ -0,0 +1,364 @@ + + + + + + + Mint – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                +
                +
                +
                + +
                +
                +
                +
                +
                +

                Pourquoi je suis sous Linux bordel !

                Début d’année 2017, 6 mois que j’ai pas écrit sur le blog ! Cette année j’ai pris une résolution un choix de merde je n’installerais plus Windaube que se soit pour moi ou pour la dépanne, les amis, la famille, mon chat … Bref pendant les fêtes j’avais de la maintenance à faire comme d’habitude fallait faire une réinstallation pour la famille « met moi Windows 7 ça me suffit et au moins il y tout qui marche dessus » ça faisait environ plus 1 an que j’avais pas installé de windaube. Je me dit que ça va me prendre une petite demi journée. J’ai mis plus d’une journée si on compte le temps de faire les mises à jour. (suite…)

                +
                Par HugoPoi, il y a
                +
                + +
                +
                +
                +
                + +
                +
                + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/48995fe74e7329e0afd74322ed1e6e777e15cc12.00000350.xml b/www/.content.EZtzwPjb/html/48995fe74e7329e0afd74322ed1e6e777e15cc12.00000350.xml new file mode 100644 index 0000000..c1c20d7 --- /dev/null +++ b/www/.content.EZtzwPjb/html/48995fe74e7329e0afd74322ed1e6e777e15cc12.00000350.xml @@ -0,0 +1,43 @@ + + + + HugoPoi » blu-ray + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Sat, 14 Sep 2013 23:01:40 +0000 + fr-FR + hourly + 1 + http://wordpress.org/?v=3.6 + + Home Cinéma + http://blog.hugopoi.net/2012/12/26/home-cinema/ + http://blog.hugopoi.net/2012/12/26/home-cinema/#comments + Wed, 26 Dec 2012 14:42:16 +0000 + HugoPoi + + + + + + + + + + + + http://blog.hugopoi.net/?p=518 + Lire la suite »

                ]]>
                + http://blog.hugopoi.net/2012/12/26/home-cinema/feed/ + 0 +
                +
                +
                diff --git a/www/.content.EZtzwPjb/html/48bd88f74ce72549f2936c9b8fdcb1ffaa3e05d6.00000456.xml b/www/.content.EZtzwPjb/html/48bd88f74ce72549f2936c9b8fdcb1ffaa3e05d6.00000456.xml new file mode 100644 index 0000000..a19620a --- /dev/null +++ b/www/.content.EZtzwPjb/html/48bd88f74ce72549f2936c9b8fdcb1ffaa3e05d6.00000456.xml @@ -0,0 +1,38 @@ + + + + HugoPoi » musique + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Sat, 14 Sep 2013 23:01:40 +0000 + fr-FR + hourly + 1 + http://wordpress.org/?v=3.6 + + Pascal Negre tu m’emmerdes + http://blog.hugopoi.net/2012/01/07/pascal-negre-tu-memmerdes/ + http://blog.hugopoi.net/2012/01/07/pascal-negre-tu-memmerdes/#comments + Sat, 07 Jan 2012 14:32:47 +0000 + HugoPoi + + + + + + + http://blog.hugopoi.net/?p=574 + Lire la suite »

                ]]>
                + http://blog.hugopoi.net/2012/01/07/pascal-negre-tu-memmerdes/feed/ + 4 +
                +
                +
                diff --git a/www/.content.EZtzwPjb/html/491a870e691b2ae0d50876ffa83790d0f4387700.00000279.html b/www/.content.EZtzwPjb/html/491a870e691b2ae0d50876ffa83790d0f4387700.00000279.html new file mode 100644 index 0000000..35946da --- /dev/null +++ b/www/.content.EZtzwPjb/html/491a870e691b2ae0d50876ffa83790d0f4387700.00000279.html @@ -0,0 +1,364 @@ + + + + + + + Cuisine – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                +
                +
                +
                + +
                +
                +
                +
                +
                +
                +
                + +
                +
                +
                +
                + +
                +
                + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/49744ef709a28afe3c2fddab26bbeea1900636e7.00000236.html b/www/.content.EZtzwPjb/html/49744ef709a28afe3c2fddab26bbeea1900636e7.00000236.html new file mode 100644 index 0000000..f207116 --- /dev/null +++ b/www/.content.EZtzwPjb/html/49744ef709a28afe3c2fddab26bbeea1900636e7.00000236.html @@ -0,0 +1,333 @@ + + + + + + + Screenshot_test-uefi-install-mok_2018-12-23_17:29:02 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                +
                +
                +
                +
                +
                +
                +
                + + + +

                +
                +
                +
                +
                +

                + 0 commentaire

                +
                +
                +
                +

                Laisser un commentaire

                Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                +
                +
                +

                + +

                +
                +
                +
                +
                +
                +
                +
                +
                + +
                + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/49aa6a881adb30e5b2e130afea4ba9d71645047d.00000503.xml b/www/.content.EZtzwPjb/html/49aa6a881adb30e5b2e130afea4ba9d71645047d.00000503.xml new file mode 100644 index 0000000..e7410b2 --- /dev/null +++ b/www/.content.EZtzwPjb/html/49aa6a881adb30e5b2e130afea4ba9d71645047d.00000503.xml @@ -0,0 +1,43 @@ + + + rtmp – HugoPoi + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Mon, 22 Aug 2016 14:10:26 +0000 + fr-FR + hourly + 1 + https://wordpress.org/?v=4.6.1 + + Et si on faisait sans Twitch et sans Youtube + http://blog.hugopoi.net/2015/10/24/et-si-on-faisait-sans-twitch-et-sans-youtube/ + http://blog.hugopoi.net/2015/10/24/et-si-on-faisait-sans-twitch-et-sans-youtube/#respond + Sat, 24 Oct 2015 13:07:55 +0000 + + + + + + + + + + + + + + http://blog.hugopoi.net/?p=909 + Lire la suite »

                ]]>
                + http://blog.hugopoi.net/2015/10/24/et-si-on-faisait-sans-twitch-et-sans-youtube/feed/ + 0 +
                +
                +
                diff --git a/www/.content.EZtzwPjb/html/49b71ab0346fd0bb184e4f85b110ccf3b16ef525.00000147.html b/www/.content.EZtzwPjb/html/49b71ab0346fd0bb184e4f85b110ccf3b16ef525.00000147.html new file mode 100644 index 0000000..3797ffd --- /dev/null +++ b/www/.content.EZtzwPjb/html/49b71ab0346fd0bb184e4f85b110ccf3b16ef525.00000147.html @@ -0,0 +1,320 @@ + + + + + + Asus U36 et OCZ Vertex 3 la suite | HugoPoi + + + + + + + + + + + + + + + + + +
                + +
                +
                +

                Asus U36 et OCZ Vertex 3 la suite

                + +
                +
                + +

                Après un mois d’attente auprès de Cdiscount, pour au final m’annoncer le remboursement de mon SSD Vertex 2 qui est mort subitement, j’ai donc décidé de commander un Vertex 3 qui va remplacer le mort au sein de mon Asus U36JC. Et pour ne pas l’ouvrir juste pour un banal remplacement de SSD j’ai décidé de remplacer par la même occasion la carte wifi, une Intel N-1000 par une Intel N-6320. Celle-ci disposant en plus du bluetooth. J’en ai donc profité pour prendre des photos supplémentaires du démontage pour compléter mon précédent article : Démontage d’un Asus U36. Vous pouvez d’abord lire mon ancien article avant d’attaquer celui-ci, je ne ferai qu’apporter des informations complémentaires pour le démontage.

                +

                On commence par ouvrir le capot arrière, puis enlever les deux petites nappes, il faut faire attention car celle de droite est fragile, il faut soulever la partie noire et la positionner vers le haut à 90° par rapport à la carte mère.

                +

                +

                Une fois ceci fais, vous pouvez dévisser toutes les vis du châssis. Ensuite on retourne le pc pour enlever la partie supérieure.

                +

                +

                Le reste c’est du gâteau, je vous laisse faire le changement de disque. Moi j’y place mon SSD Vertex 3 fraîchement reçu.

                +

                +

                Puis avant de remonter le support disque, je vais démonter l’extension de carte mère qui comporte la carte wifi. Une seule vis est nécessaire à enlever en plus des deux qui étaient sur la fixation du disque, voir la photo ci-dessous :

                +

                +

                Il suffit de soulever délicatement l’extension à la main, celle-ci est un peu collée avec de l’adhésif double face. Une fois décollé, vous pouvez la tirer vers vous pour la déconnecter de la carte mère.

                +

                +

                Vous pouvez maintenant changer la carte wifi et la pile du BIOS si nécessaire. Moi je vais changer la carte wifi par une N-6230 que j’ai achetée sur Amazon pour 30€ environ. Après remontage complet, tout fonctionne. Pensez à mettre à jour votre SSD avant d’installer votre OS. Pour OCZ le mieux est de faire une clé USB bootable avec leur image linux. Une fois sous Windows j’ai fais un petit test des performances :

                +
                -----------------------------------------------------------------------
                +CrystalDiskMark 3.0.1 x64 (C) 2007-2010 hiyohiyo
                +                           Crystal Dew World : http://crystalmark.info/
                +-----------------------------------------------------------------------
                +* MB/s = 1,000,000 byte/s [SATA/300 = 300,000,000 byte/s]
                + 
                +           Sequential Read :   221.359 MB/s
                +          Sequential Write :   168.989 MB/s
                +         Random Read 512KB :   214.565 MB/s
                +        Random Write 512KB :   166.993 MB/s
                +    Random Read 4KB (QD=1) :    19.163 MB/s [  4678.5 IOPS]
                +   Random Write 4KB (QD=1) :    29.546 MB/s [  7213.4 IOPS]
                +   Random Read 4KB (QD=32) :   116.214 MB/s [ 28372.5 IOPS]
                +  Random Write 4KB (QD=32) :   158.578 MB/s [ 38715.3 IOPS]
                + 
                +  Test : 1000 MB [C: 26.3% (29.4/111.7 GB)] (x5)
                +  Date : 2012/03/29 14:26:15
                +    OS : Windows 7 Ultimate Edition SP1 [6.1 Build 7601] (x64)
                +

                Évidemment les performances sont décevantes en terme de débit brut mais cela est surtout dû au contrôleur SATA-2 qui limite la vitesse des transferts. Enfin j’ai pris quelques photos supplémentaires pour vous aider dans votre démontage. En tout cas, je trouve ce PC Asus génial car hyper facile à démonter, léger, bien équipé. Vous pouvez acheter un Asus U36SD encore mieux les yeux fermés.

                + + +
                +
                +
                + + +
                + + +
                  +
                1. +
                  +
                  + Plutonion + +
                  +
                  +

                  Salut,
                  +je viens d’acheter un Asus u36sg (ça fait un moment que je lorgnait déjà sur les JC et SD…).
                  +Bien qu’il possède déjà le Bluetooth, je vais également l’équiper d’une carte n-6230.
                  +Sinon je vais y coller un SSD Crucial M4 de 128 Go.
                  +J’espère ainsi m’approcher de ma config tant rêvé !
                  +Merci pour les photos, ça me permettra de démonter/remonter sans soucis !
                  +@+

                  +
                  + +
                  +
                2. +
                + +
                +

                Répondre à Plutonion ¬
                Annuler la réponse

                +
                +

                + +

                +

                NOTE - Vous pouvez utiliser les éléments et attributs HTML tags and attributes:
                <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

                + + + +

                +

                +
                +
                +
                +
                + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/49d85fe90d104280a6a18412c17dc37997035f34.00000657.css b/www/.content.EZtzwPjb/html/49d85fe90d104280a6a18412c17dc37997035f34.00000657.css new file mode 100644 index 0000000..8043bbf --- /dev/null +++ b/www/.content.EZtzwPjb/html/49d85fe90d104280a6a18412c17dc37997035f34.00000657.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;background:#fff;border:1px +solid #f00;font-size:10pt;width:280px;padding:2px}span.wpcf7-not-valid-tip-no-ajax{color:#f00;font-size:10pt;display:block}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/4a1d0b760cc19306b3328b05399e26e7d1c1b423.00000440.html b/www/.content.EZtzwPjb/html/4a1d0b760cc19306b3328b05399e26e7d1c1b423.00000440.html new file mode 100644 index 0000000..96bd964 --- /dev/null +++ b/www/.content.EZtzwPjb/html/4a1d0b760cc19306b3328b05399e26e7d1c1b423.00000440.html @@ -0,0 +1,372 @@ + + + + + + + machine virtuel – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                +
                +
                +
                + +
                +
                +
                +
                +
                +

                Installer Mac OS X Mavericks avec VirtualBox

                Capture Installation Mac OS X MavericksComme Apple c’est des blaireaux et que j’avais besoin d’un environnement de développement pour iDaube. J’ai du me résoudre à installer un Mac OS X dans une machine virtuel.

                +

                Ce dont vous avez besoin :

                + +

                Moi je travail sous Linux Mint mais vous devriez réussir à faire les manipulations sous Windaube. (suite…)

                +
                Par HugoPoi, il y a
                +
                + +
                +
                +
                +
                + +
                +
                + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/4a25d6e6e5261492d5e871293ee12fc2b7b04201.00000568.js b/www/.content.EZtzwPjb/html/4a25d6e6e5261492d5e871293ee12fc2b7b04201.00000568.js new file mode 100644 index 0000000..3a5be8a --- /dev/null +++ b/www/.content.EZtzwPjb/html/4a25d6e6e5261492d5e871293ee12fc2b7b04201.00000568.js @@ -0,0 +1,30 @@ +var ak_js = document.getElementById( "ak_js" ); + +if ( ! ak_js ) { + ak_js = document.createElement( 'input' ); + ak_js.setAttribute( 'id', 'ak_js' ); + ak_js.setAttribute( 'name', 'ak_js' ); + ak_js.setAttribute( 'type', 'hidden' ); +} +else { + ak_js.parentNode.removeChild( ak_js ); +} + +ak_js.setAttribute( 'value', ( new Date() ).getTime() ); + +var commentForm = document.getElementById( 'commentform' ); + +if ( commentForm ) { + commentForm.appendChild( ak_js ); +} +else { + var replyRowContainer = document.getElementById( 'replyrow' ); + + if ( replyRowContainer ) { + var children = replyRowContainer.getElementsByTagName( 'td' ); + + if ( children.length > 0 ) { + children[0].appendChild( ak_js ); + } + } +} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/4a456febf670509eff42791239f0134f652d500b.00000608.css b/www/.content.EZtzwPjb/html/4a456febf670509eff42791239f0134f652d500b.00000608.css new file mode 100644 index 0000000..20df2bb --- /dev/null +++ b/www/.content.EZtzwPjb/html/4a456febf670509eff42791239f0134f652d500b.00000608.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7 .screen-reader-response{position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);height:1px;width:1px;margin:0;padding:0;border:0}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{color:#f00;font-size:1em;display:block}.use-floating-validation-tip span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;border:1px +solid #f00;background:#fff;padding: .2em .8em}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/4a4ac020ff108bb669fdf8e722ca0613645e73bf.00000501.html b/www/.content.EZtzwPjb/html/4a4ac020ff108bb669fdf8e722ca0613645e73bf.00000501.html new file mode 100644 index 0000000..9bbe82a --- /dev/null +++ b/www/.content.EZtzwPjb/html/4a4ac020ff108bb669fdf8e722ca0613645e73bf.00000501.html @@ -0,0 +1,364 @@ + + + + + + + revolution – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                +
                +
                +
                + +
                +
                +
                +
                +
                +
                +
                + +
                +
                +
                +
                + +
                +
                + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/4a7a86ebdc3572929ba82dbeaa9c67a07268c3d6.00000347.html b/www/.content.EZtzwPjb/html/4a7a86ebdc3572929ba82dbeaa9c67a07268c3d6.00000347.html new file mode 100644 index 0000000..1f36db1 --- /dev/null +++ b/www/.content.EZtzwPjb/html/4a7a86ebdc3572929ba82dbeaa9c67a07268c3d6.00000347.html @@ -0,0 +1,364 @@ + + + + + + + beurre noisette – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                +
                +
                +
                + +
                +
                +
                +
                +
                +
                +
                + +
                +
                +
                +
                + +
                +
                + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/4a84fbb76c443a36cb17db5d78dc08e8b2b140c3.00000151.xml b/www/.content.EZtzwPjb/html/4a84fbb76c443a36cb17db5d78dc08e8b2b140c3.00000151.xml new file mode 100644 index 0000000..34d16de --- /dev/null +++ b/www/.content.EZtzwPjb/html/4a84fbb76c443a36cb17db5d78dc08e8b2b140c3.00000151.xml @@ -0,0 +1,17 @@ + + + Commentaires sur : Redimensionner une partition NTFS + + http://blog.hugopoi.net/2012/12/23/redimensionner-une-partition-ntfs/ + Internet, Hardware et Bidouille + Wed, 21 Aug 2013 17:11:00 +0000 + hourly + 1 + http://wordpress.org/?v=3.6 + + diff --git a/www/.content.EZtzwPjb/html/4aa861cbd5bd9b0824d921cd8ed18ea7bb5b6691.00000600.js b/www/.content.EZtzwPjb/html/4aa861cbd5bd9b0824d921cd8ed18ea7bb5b6691.00000600.js new file mode 100644 index 0000000..a2688ac --- /dev/null +++ b/www/.content.EZtzwPjb/html/4aa861cbd5bd9b0824d921cd8ed18ea7bb5b6691.00000600.js @@ -0,0 +1,529 @@ +( function( $ ) { + + 'use strict'; + + if ( typeof wpcf7 === 'undefined' || wpcf7 === null ) { + return; + } + + wpcf7 = $.extend( { + cached: 0, + inputs: [] + }, wpcf7 ); + + $( function() { + wpcf7.supportHtml5 = ( function() { + var features = {}; + var input = document.createElement( 'input' ); + + features.placeholder = 'placeholder' in input; + + var inputTypes = [ 'email', 'url', 'tel', 'number', 'range', 'date' ]; + + $.each( inputTypes, function( index, value ) { + input.setAttribute( 'type', value ); + features[ value ] = input.type !== 'text'; + } ); + + return features; + } )(); + + $( 'div.wpcf7 > form' ).each( function() { + var $form = $( this ); + wpcf7.initForm( $form ); + + if ( wpcf7.cached ) { + wpcf7.refill( $form ); + } + } ); + } ); + + wpcf7.getId = function( form ) { + return parseInt( $( 'input[name="_wpcf7"]', form ).val(), 10 ); + }; + + wpcf7.initForm = function( form ) { + var $form = $( form ); + + $form.submit( function( event ) { + if ( typeof window.FormData !== 'function' ) { + return; + } + + wpcf7.submit( $form ); + event.preventDefault(); + } ); + + $( '.wpcf7-submit', $form ).after( '' ); + + wpcf7.toggleSubmit( $form ); + + $form.on( 'click', '.wpcf7-acceptance', function() { + wpcf7.toggleSubmit( $form ); + } ); + + // Exclusive Checkbox + $( '.wpcf7-exclusive-checkbox', $form ).on( 'click', 'input:checkbox', function() { + var name = $( this ).attr( 'name' ); + $form.find( 'input:checkbox[name="' + name + '"]' ).not( this ).prop( 'checked', false ); + } ); + + // Free Text Option for Checkboxes and Radio Buttons + $( '.wpcf7-list-item.has-free-text', $form ).each( function() { + var $freetext = $( ':input.wpcf7-free-text', this ); + var $wrap = $( this ).closest( '.wpcf7-form-control' ); + + if ( $( ':checkbox, :radio', this ).is( ':checked' ) ) { + $freetext.prop( 'disabled', false ); + } else { + $freetext.prop( 'disabled', true ); + } + + $wrap.on( 'change', ':checkbox, :radio', function() { + var $cb = $( '.has-free-text', $wrap ).find( ':checkbox, :radio' ); + + if ( $cb.is( ':checked' ) ) { + $freetext.prop( 'disabled', false ).focus(); + } else { + $freetext.prop( 'disabled', true ); + } + } ); + } ); + + // Placeholder Fallback + if ( ! wpcf7.supportHtml5.placeholder ) { + $( '[placeholder]', $form ).each( function() { + $( this ).val( $( this ).attr( 'placeholder' ) ); + $( this ).addClass( 'placeheld' ); + + $( this ).focus( function() { + if ( $( this ).hasClass( 'placeheld' ) ) { + $( this ).val( '' ).removeClass( 'placeheld' ); + } + } ); + + $( this ).blur( function() { + if ( '' === $( this ).val() ) { + $( this ).val( $( this ).attr( 'placeholder' ) ); + $( this ).addClass( 'placeheld' ); + } + } ); + } ); + } + + if ( wpcf7.jqueryUi && ! wpcf7.supportHtml5.date ) { + $form.find( 'input.wpcf7-date[type="date"]' ).each( function() { + $( this ).datepicker( { + dateFormat: 'yy-mm-dd', + minDate: new Date( $( this ).attr( 'min' ) ), + maxDate: new Date( $( this ).attr( 'max' ) ) + } ); + } ); + } + + if ( wpcf7.jqueryUi && ! wpcf7.supportHtml5.number ) { + $form.find( 'input.wpcf7-number[type="number"]' ).each( function() { + $( this ).spinner( { + min: $( this ).attr( 'min' ), + max: $( this ).attr( 'max' ), + step: $( this ).attr( 'step' ) + } ); + } ); + } + + // Character Count + $( '.wpcf7-character-count', $form ).each( function() { + var $count = $( this ); + var name = $count.attr( 'data-target-name' ); + var down = $count.hasClass( 'down' ); + var starting = parseInt( $count.attr( 'data-starting-value' ), 10 ); + var maximum = parseInt( $count.attr( 'data-maximum-value' ), 10 ); + var minimum = parseInt( $count.attr( 'data-minimum-value' ), 10 ); + + var updateCount = function( target ) { + var $target = $( target ); + var length = $target.val().length; + var count = down ? starting - length : length; + $count.attr( 'data-current-value', count ); + $count.text( count ); + + if ( maximum && maximum < length ) { + $count.addClass( 'too-long' ); + } else { + $count.removeClass( 'too-long' ); + } + + if ( minimum && length < minimum ) { + $count.addClass( 'too-short' ); + } else { + $count.removeClass( 'too-short' ); + } + }; + + $( ':input[name="' + name + '"]', $form ).each( function() { + updateCount( this ); + + $( this ).keyup( function() { + updateCount( this ); + } ); + } ); + } ); + + // URL Input Correction + $form.on( 'change', '.wpcf7-validates-as-url', function() { + var val = $.trim( $( this ).val() ); + + if ( val + && ! val.match( /^[a-z][a-z0-9.+-]*:/i ) + && -1 !== val.indexOf( '.' ) ) { + val = val.replace( /^\/+/, '' ); + val = 'http://' + val; + } + + $( this ).val( val ); + } ); + }; + + wpcf7.submit = function( form ) { + if ( typeof window.FormData !== 'function' ) { + return; + } + + var $form = $( form ); + + $( '.ajax-loader', $form ).addClass( 'is-active' ); + + $( '[placeholder].placeheld', $form ).each( function( i, n ) { + $( n ).val( '' ); + } ); + + wpcf7.clearResponse( $form ); + + var formData = new FormData( $form.get( 0 ) ); + + var detail = { + id: $form.closest( 'div.wpcf7' ).attr( 'id' ), + status: 'init', + inputs: [], + formData: formData + }; + + $.each( $form.serializeArray(), function( i, field ) { + if ( '_wpcf7' == field.name ) { + detail.contactFormId = field.value; + } else if ( '_wpcf7_version' == field.name ) { + detail.pluginVersion = field.value; + } else if ( '_wpcf7_locale' == field.name ) { + detail.contactFormLocale = field.value; + } else if ( '_wpcf7_unit_tag' == field.name ) { + detail.unitTag = field.value; + } else if ( '_wpcf7_container_post' == field.name ) { + detail.containerPostId = field.value; + } else if ( field.name.match( /^_wpcf7_\w+_free_text_/ ) ) { + var owner = field.name.replace( /^_wpcf7_\w+_free_text_/, '' ); + detail.inputs.push( { + name: owner + '-free-text', + value: field.value + } ); + } else if ( field.name.match( /^_/ ) ) { + // do nothing + } else { + detail.inputs.push( field ); + } + } ); + + wpcf7.triggerEvent( $form.closest( 'div.wpcf7' ), 'beforesubmit', detail ); + + var ajaxSuccess = function( data, status, xhr, $form ) { + detail.id = $( data.into ).attr( 'id' ); + detail.status = data.status; + detail.apiResponse = data; + + var $message = $( '.wpcf7-response-output', $form ); + + switch ( data.status ) { + case 'validation_failed': + $.each( data.invalidFields, function( i, n ) { + $( n.into, $form ).each( function() { + wpcf7.notValidTip( this, n.message ); + $( '.wpcf7-form-control', this ).addClass( 'wpcf7-not-valid' ); + $( '[aria-invalid]', this ).attr( 'aria-invalid', 'true' ); + } ); + } ); + + $message.addClass( 'wpcf7-validation-errors' ); + $form.addClass( 'invalid' ); + + wpcf7.triggerEvent( data.into, 'invalid', detail ); + break; + case 'acceptance_missing': + $message.addClass( 'wpcf7-acceptance-missing' ); + $form.addClass( 'unaccepted' ); + + wpcf7.triggerEvent( data.into, 'unaccepted', detail ); + break; + case 'spam': + $message.addClass( 'wpcf7-spam-blocked' ); + $form.addClass( 'spam' ); + + $( '[name="g-recaptcha-response"]', $form ).each( function() { + if ( '' === $( this ).val() ) { + var $recaptcha = $( this ).closest( '.wpcf7-form-control-wrap' ); + wpcf7.notValidTip( $recaptcha, wpcf7.recaptcha.messages.empty ); + } + } ); + + wpcf7.triggerEvent( data.into, 'spam', detail ); + break; + case 'aborted': + $message.addClass( 'wpcf7-aborted' ); + $form.addClass( 'aborted' ); + + wpcf7.triggerEvent( data.into, 'aborted', detail ); + break; + case 'mail_sent': + $message.addClass( 'wpcf7-mail-sent-ok' ); + $form.addClass( 'sent' ); + + wpcf7.triggerEvent( data.into, 'mailsent', detail ); + break; + case 'mail_failed': + $message.addClass( 'wpcf7-mail-sent-ng' ); + $form.addClass( 'failed' ); + + wpcf7.triggerEvent( data.into, 'mailfailed', detail ); + break; + default: + var customStatusClass = 'custom-' + + data.status.replace( /[^0-9a-z]+/i, '-' ); + $message.addClass( 'wpcf7-' + customStatusClass ); + $form.addClass( customStatusClass ); + } + + wpcf7.refill( $form, data ); + + wpcf7.triggerEvent( data.into, 'submit', detail ); + + if ( 'mail_sent' == data.status ) { + $form.each( function() { + this.reset(); + } ); + } + + $form.find( '[placeholder].placeheld' ).each( function( i, n ) { + $( n ).val( $( n ).attr( 'placeholder' ) ); + } ); + + $message.html( '' ).append( data.message ).slideDown( 'fast' ); + $message.attr( 'role', 'alert' ); + + $( '.screen-reader-response', $form.closest( '.wpcf7' ) ).each( function() { + var $response = $( this ); + $response.html( '' ).attr( 'role', '' ).append( data.message ); + + if ( data.invalidFields ) { + var $invalids = $( '
                  ' ); + + $.each( data.invalidFields, function( i, n ) { + if ( n.idref ) { + var $li = $( '
                • ' ).append( $( '' ).attr( 'href', '#' + n.idref ).append( n.message ) ); + } else { + var $li = $( '
                • ' ).append( n.message ); + } + + $invalids.append( $li ); + } ); + + $response.append( $invalids ); + } + + $response.attr( 'role', 'alert' ).focus(); + } ); + }; + + $.ajax( { + type: 'POST', + url: wpcf7.apiSettings.getRoute( + '/contact-forms/' + wpcf7.getId( $form ) + '/feedback' ), + data: formData, + dataType: 'json', + processData: false, + contentType: false + } ).done( function( data, status, xhr ) { + ajaxSuccess( data, status, xhr, $form ); + $( '.ajax-loader', $form ).removeClass( 'is-active' ); + } ).fail( function( xhr, status, error ) { + var $e = $( '
                  ' ).text( error.message ); + $form.after( $e ); + } ); + }; + + wpcf7.triggerEvent = function( target, name, detail ) { + var $target = $( target ); + + /* DOM event */ + var event = new CustomEvent( 'wpcf7' + name, { + bubbles: true, + detail: detail + } ); + + $target.get( 0 ).dispatchEvent( event ); + + /* jQuery event */ + $target.trigger( 'wpcf7:' + name, detail ); + $target.trigger( name + '.wpcf7', detail ); // deprecated + }; + + wpcf7.toggleSubmit = function( form, state ) { + var $form = $( form ); + var $submit = $( 'input:submit', $form ); + + if ( typeof state !== 'undefined' ) { + $submit.prop( 'disabled', ! state ); + return; + } + + if ( $form.hasClass( 'wpcf7-acceptance-as-validation' ) ) { + return; + } + + $submit.prop( 'disabled', false ); + + $( '.wpcf7-acceptance', $form ).each( function() { + var $span = $( this ); + var $input = $( 'input:checkbox', $span ); + + if ( ! $span.hasClass( 'optional' ) ) { + if ( $span.hasClass( 'invert' ) && $input.is( ':checked' ) + || ! $span.hasClass( 'invert' ) && ! $input.is( ':checked' ) ) { + $submit.prop( 'disabled', true ); + return false; + } + } + } ); + }; + + wpcf7.notValidTip = function( target, message ) { + var $target = $( target ); + $( '.wpcf7-not-valid-tip', $target ).remove(); + $( '' ) + .text( message ).appendTo( $target ); + + if ( $target.is( '.use-floating-validation-tip *' ) ) { + var fadeOut = function( target ) { + $( target ).not( ':hidden' ).animate( { + opacity: 0 + }, 'fast', function() { + $( this ).css( { 'z-index': -100 } ); + } ); + }; + + $target.on( 'mouseover', '.wpcf7-not-valid-tip', function() { + fadeOut( this ); + } ); + + $target.on( 'focus', ':input', function() { + fadeOut( $( '.wpcf7-not-valid-tip', $target ) ); + } ); + } + }; + + wpcf7.refill = function( form, data ) { + var $form = $( form ); + + var refillCaptcha = function( $form, items ) { + $.each( items, function( i, n ) { + $form.find( ':input[name="' + i + '"]' ).val( '' ); + $form.find( 'img.wpcf7-captcha-' + i ).attr( 'src', n ); + var match = /([0-9]+)\.(png|gif|jpeg)$/.exec( n ); + $form.find( 'input:hidden[name="_wpcf7_captcha_challenge_' + i + '"]' ).attr( 'value', match[ 1 ] ); + } ); + }; + + var refillQuiz = function( $form, items ) { + $.each( items, function( i, n ) { + $form.find( ':input[name="' + i + '"]' ).val( '' ); + $form.find( ':input[name="' + i + '"]' ).siblings( 'span.wpcf7-quiz-label' ).text( n[ 0 ] ); + $form.find( 'input:hidden[name="_wpcf7_quiz_answer_' + i + '"]' ).attr( 'value', n[ 1 ] ); + } ); + }; + + if ( typeof data === 'undefined' ) { + $.ajax( { + type: 'GET', + url: wpcf7.apiSettings.getRoute( + '/contact-forms/' + wpcf7.getId( $form ) + '/refill' ), + beforeSend: function( xhr ) { + var nonce = $form.find( ':input[name="_wpnonce"]' ).val(); + + if ( nonce ) { + xhr.setRequestHeader( 'X-WP-Nonce', nonce ); + } + }, + dataType: 'json' + } ).done( function( data, status, xhr ) { + if ( data.captcha ) { + refillCaptcha( $form, data.captcha ); + } + + if ( data.quiz ) { + refillQuiz( $form, data.quiz ); + } + } ); + + } else { + if ( data.captcha ) { + refillCaptcha( $form, data.captcha ); + } + + if ( data.quiz ) { + refillQuiz( $form, data.quiz ); + } + } + }; + + wpcf7.clearResponse = function( form ) { + var $form = $( form ); + $form.removeClass( 'invalid spam sent failed' ); + $form.siblings( '.screen-reader-response' ).html( '' ).attr( 'role', '' ); + + $( '.wpcf7-not-valid-tip', $form ).remove(); + $( '[aria-invalid]', $form ).attr( 'aria-invalid', 'false' ); + $( '.wpcf7-form-control', $form ).removeClass( 'wpcf7-not-valid' ); + + $( '.wpcf7-response-output', $form ) + .hide().empty().removeAttr( 'role' ) + .removeClass( 'wpcf7-mail-sent-ok wpcf7-mail-sent-ng wpcf7-validation-errors wpcf7-spam-blocked' ); + }; + + wpcf7.apiSettings.getRoute = function( path ) { + var url = wpcf7.apiSettings.root; + + url = url.replace( + wpcf7.apiSettings.namespace, + wpcf7.apiSettings.namespace + path ); + + return url; + }; + +} )( jQuery ); + +/* + * Polyfill for Internet Explorer + * See https://developer.mozilla.org/en-US/docs/Web/API/CustomEvent/CustomEvent + */ +( function () { + if ( typeof window.CustomEvent === "function" ) return false; + + function CustomEvent ( event, params ) { + params = params || { bubbles: false, cancelable: false, detail: undefined }; + var evt = document.createEvent( 'CustomEvent' ); + evt.initCustomEvent( event, + params.bubbles, params.cancelable, params.detail ); + return evt; + } + + CustomEvent.prototype = window.Event.prototype; + + window.CustomEvent = CustomEvent; +} )(); diff --git a/www/.content.EZtzwPjb/html/4b139622f775b85f81a5fc00c98bda05d88284bb.00000432.html b/www/.content.EZtzwPjb/html/4b139622f775b85f81a5fc00c98bda05d88284bb.00000432.html new file mode 100644 index 0000000..f80ea28 --- /dev/null +++ b/www/.content.EZtzwPjb/html/4b139622f775b85f81a5fc00c98bda05d88284bb.00000432.html @@ -0,0 +1,372 @@ + + + + + + + libre – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + +
                  +
                  +
                  +
                  + +
                  +
                  +
                  +
                  +
                  +
                  +
                  + +
                  +
                  +
                  +
                  + +
                  +
                  + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/4b14c8e79694e1ff82c6542182b871d67de45979.00000726.css b/www/.content.EZtzwPjb/html/4b14c8e79694e1ff82c6542182b871d67de45979.00000726.css new file mode 100644 index 0000000..fe9245c --- /dev/null +++ b/www/.content.EZtzwPjb/html/4b14c8e79694e1ff82c6542182b871d67de45979.00000726.css @@ -0,0 +1,28 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7 .screen-reader-response{position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);height:1px;width:1px;margin:0;padding:0;border:0}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{color:#f00;font-size:1em;display:block}.use-floating-validation-tip span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;border:1px +solid #f00;background:#fff;padding: .2em .8em}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wpcf7-recaptcha +iframe{margin-bottom:0}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/4b5524bcb8f62a7bebda420812479ee51ee259ce.00000215.html b/www/.content.EZtzwPjb/html/4b5524bcb8f62a7bebda420812479ee51ee259ce.00000215.html new file mode 100644 index 0000000..9632678 --- /dev/null +++ b/www/.content.EZtzwPjb/html/4b5524bcb8f62a7bebda420812479ee51ee259ce.00000215.html @@ -0,0 +1,494 @@ + + + + + + + + Et si on faisait sans Twitch et sans Youtube – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                  +
                  +
                  +
                  + +
                  +
                  +
                  +
                  +
                  +
                  +

                  Longtemps que j’ai pas fait d’article surement trop occupé sur plein de projet à la con. Bref petit article pour expliquer ce que j’ai fait pour streamer occasionnellement des jeux vidéos et autres conneries sur la page Live du blog.

                  +

                  Donc pour la partie upload de la source vidéo j’utilise OBS Open Broadcaster Software, un logiciel open source qui permet de capturer votre écran et/ou vos fenêtres et d’envoyer un flux RTMP vers le serveur de votre choix. Ensuite pour récupérer ce flux j’utilise LE plugin RTMP de nginx.

                  +

                  Nginx RTMP module

                  +

                  Ce plugin est aujourd’hui la seule solution open source viable que j’ai trouvé pour faire du live streaming de façon simple. Je remercie grandement toute la communauté de développeur autour de ce projet qui passe du temps à maintenir le truc. Ce logiciel est une aussi une des seules implémentation de la spécification DASH qui permet le live stream avec une balise vidéo html5 et un bout de javascript qui permet de s’affranchir de flash !

                  +

                  Pour le compiler sous Debian ça se passe par la : https://placenet.fr/2015/02/28/paquet-nginx-extras-avec-rtmp-sous-gnulinux-debian-jessie/

                  +

                  DASH

                  +

                  Donc coté navigateur la seul chose nécessaire est le support de la balise video html5 et la librairie dash.js. Le fonctionnement de DASH est assez simple, c’est juste des morceaux vidéos qui sont chargés au fur et à mesure du stream de façon circulaire, la liste des fichiers à téléchargé étant fournit dans manifeste au format xml. Le script js lit le manifeste et télécharge les morceaux pour les lancer au bon moment.

                  +

                  L’avantage de cette solution et qu’il n’y a aucun ré-encodage coté serveur même si il est possible de le faire avec la possibilité de piper vers ffmpeg.

                  +

                  Premiers pas

                  +

                  J’ai mis en place le truc de façon tout simple après je penses que je vais devoir regardé comment mettre en place une version bas débit car pour l’instant je stream uniquement la source en 720p débit de 3Mbits environ ce qui est déjà beaucoup pour une connexion ADSL. Je joue uniquement sous Linux, le but étant d’utiliser du logiciel libre de A à Z. Niveau audience je penses que je peux tenir environ 50 personnes avec le flux 720p pour un coût de 20€ par mois.

                  +
                  +
                  + +
                  +
                  +
                  +
                  +
                  +

                  + 0 commentaire

                  +
                  +
                  +
                  +

                  Laisser un commentaire

                  Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                  +
                  +
                  +

                  + +

                  +
                  +
                  +
                  +
                  +
                  +
                  + +
                  +
                  +
                  +
                  +
                  +
                  + + +
                  + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/4b565ae3e59c457624f8e0a6b4953b4dc0a1a995.00001319.xml b/www/.content.EZtzwPjb/html/4b565ae3e59c457624f8e0a6b4953b4dc0a1a995.00001319.xml new file mode 100644 index 0000000..af1456f --- /dev/null +++ b/www/.content.EZtzwPjb/html/4b565ae3e59c457624f8e0a6b4953b4dc0a1a995.00001319.xml @@ -0,0 +1,7 @@ + +1.0HugoPoihttp://blog.hugopoi.netHugoPoihttp://blog.hugopoi.net/author/hugopoi/Liverich600338<blockquote class="wp-embedded-content"><a href="/live/">Live</a></blockquote> +<script type='text/javascript'> +<!--//--><![CDATA[//><!-- + !function(a,b){"use strict";function c(){if(!e){e=!0;var a,c,d,f,g=-1!==navigator.appVersion.indexOf("MSIE 10"),h=!!navigator.userAgent.match(/Trident.*rv:11\./),i=b.querySelectorAll("iframe.wp-embedded-content");for(c=0;c<i.length;c++){if(d=i[c],!d.getAttribute("data-secret"))f=Math.random().toString(36).substr(2,10),d.src+="#?secret="+f,d.setAttribute("data-secret",f);if(g||h)a=d.cloneNode(!0),a.removeAttribute("security"),d.parentNode.replaceChild(a,d)}}}var d=!1,e=!1;if(b.querySelector)if(a.addEventListener)d=!0;if(a.wp=a.wp||{},!a.wp.receiveEmbedMessage)if(a.wp.receiveEmbedMessage=function(c){var d=c.data;if(d.secret||d.message||d.value)if(!/[^a-zA-Z0-9]/.test(d.secret)){var e,f,g,h,i,j=b.querySelectorAll('iframe[data-secret="'+d.secret+'"]'),k=b.querySelectorAll('blockquote[data-secret="'+d.secret+'"]');for(e=0;e<k.length;e++)k[e].style.display="none";for(e=0;e<j.length;e++)if(f=j[e],c.source===f.contentWindow){if(f.removeAttribute("style"),"height"===d.message){if(g=parseInt(d.value,10),g>1e3)g=1e3;else if(~~g<200)g=200;f.height=g}if("link"===d.message)if(h=b.createElement("a"),i=b.createElement("a"),h.href=f.getAttribute("src"),i.href=d.value,i.host===h.host)if(b.activeElement===f)a.top.location.href=d.value}else;}},d)a.addEventListener("message",a.wp.receiveEmbedMessage,!1),b.addEventListener("DOMContentLoaded",c,!1),a.addEventListener("load",c,!1)}(window,document); +//--><!]]> +</script><iframe sandbox="allow-scripts" security="restricted" src="/live/embed/" width="600" height="338" title="« Live » — HugoPoi" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" class="wp-embedded-content"></iframe> diff --git a/www/.content.EZtzwPjb/html/4b60115e03907f4192712d2a53694436a80208d4.00000559.xml b/www/.content.EZtzwPjb/html/4b60115e03907f4192712d2a53694436a80208d4.00000559.xml new file mode 100644 index 0000000..ad4830a --- /dev/null +++ b/www/.content.EZtzwPjb/html/4b60115e03907f4192712d2a53694436a80208d4.00000559.xml @@ -0,0 +1,43 @@ + + + + HugoPoi » Yamaha + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Sat, 14 Sep 2013 23:01:40 +0000 + fr-FR + hourly + 1 + http://wordpress.org/?v=3.6 + + Home Cinéma + http://blog.hugopoi.net/2012/12/26/home-cinema/ + http://blog.hugopoi.net/2012/12/26/home-cinema/#comments + Wed, 26 Dec 2012 14:42:16 +0000 + HugoPoi + + + + + + + + + + + + http://blog.hugopoi.net/?p=518 + Lire la suite »

                  ]]>
                  + http://blog.hugopoi.net/2012/12/26/home-cinema/feed/ + 0 +
                  +
                  +
                  diff --git a/www/.content.EZtzwPjb/html/4c1d2055ea54f79401e107f2f3c9340369bbb53d.00000732.css b/www/.content.EZtzwPjb/html/4c1d2055ea54f79401e107f2f3c9340369bbb53d.00000732.css new file mode 100644 index 0000000..e06789b --- /dev/null +++ b/www/.content.EZtzwPjb/html/4c1d2055ea54f79401e107f2f3c9340369bbb53d.00000732.css @@ -0,0 +1,97 @@ +.wp_syntax { + color : #100; + background-color: #f9f9f9; + border : 1px solid silver; + margin : 0 0 1.5em 0; + overflow : auto; +} + +/* IE FIX */ +.wp_syntax { + overflow-x : auto; + overflow-y : hidden; + padding-bottom: expression(this.scrollWidth > this.offsetWidth ? 15 : 0); + width : 99%; +} + +.wp_syntax table { + border : none !important; + border-collapse: collapse !important; + margin : 0 !important; + padding : 0 !important; + width : 100% !important +} + +.wp_syntax caption { + margin : 0 !important; + padding : 2px 0 !important; + width : 100% !important; + background-color: #def !important; + text-align : left !important; + font-family : monospace !important; + font-size : 12px !important; + line-height : 1.2em !important; +} + +.wp_syntax caption a { + color : #1982d1 !important; + text-align : left !important; + font-family : monospace !important; + font-size : 12px !important; + line-height : 16px !important; + text-decoration: none !important; +} + +.wp_syntax caption a:hover { + color : #1982d1 !important; + text-decoration: underline !important; +} + +.wp_syntax div, .wp_syntax td { + border : none !important; + text-align : left !important; + padding : 0 !important; + vertical-align: top !important; +} + +.wp_syntax td.code{ + background-color: #EEE; + background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% ); + background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% ); + background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% ); + background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% ); + background-image: linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% ); + background-size : 1px 32px; + line-height : normal !important; + white-space : normal !important; + width : 100% !important; +} + +/* potential overrides for other styles */ +.wp_syntax pre { + background : transparent !important; + border : none !important; + margin : 0 !important; + width : auto !important; + float : none !important; + clear : none !important; + overflow : visible !important; + font-family : monospace !important; + font-size : 14px !important; + line-height : 16px !important; + padding : 0 4px !important; + white-space : pre !important; + -moz-box-shadow : 0 0 0 rgba(0, 0, 0, 0) !important; /* FF3.5+ */ + -webkit-box-shadow : 0 0 0 rgba(0, 0, 0, 0) !important; /* Saf3.0+, Chrome */ + box-shadow : 0 0 0 rgba(0, 0, 0, 0) !important; /* Opera 10.5, IE 9.0 */ + -webkit-border-radius: 0 !important; + -moz-border-radius : 0 !important; + border-radius : 0 !important; +} + +.wp_syntax td.line_numbers pre { + background-color: #def !important; + color : gray !important; + text-align : right !important; + min-width : 16px !important; +} diff --git a/www/.content.EZtzwPjb/html/4c3dd4f925ed9b6139778042b4317f0294e171ed.00000683.css b/www/.content.EZtzwPjb/html/4c3dd4f925ed9b6139778042b4317f0294e171ed.00000683.css new file mode 100644 index 0000000..20df2bb --- /dev/null +++ b/www/.content.EZtzwPjb/html/4c3dd4f925ed9b6139778042b4317f0294e171ed.00000683.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7 .screen-reader-response{position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);height:1px;width:1px;margin:0;padding:0;border:0}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{color:#f00;font-size:1em;display:block}.use-floating-validation-tip span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;border:1px +solid #f00;background:#fff;padding: .2em .8em}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/4c477a244492fd402252a668be08a1f8950baa31.00000441.xml b/www/.content.EZtzwPjb/html/4c477a244492fd402252a668be08a1f8950baa31.00000441.xml new file mode 100644 index 0000000..584e029 --- /dev/null +++ b/www/.content.EZtzwPjb/html/4c477a244492fd402252a668be08a1f8950baa31.00000441.xml @@ -0,0 +1,38 @@ + + + machine virtuel – HugoPoi + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Mon, 22 Aug 2016 14:10:26 +0000 + fr-FR + hourly + 1 + https://wordpress.org/?v=4.6.1 + + Installer Mac OS X Mavericks avec VirtualBox + http://blog.hugopoi.net/2013/12/27/installer-mac-os-x-mavericks-avec-virtualbox/ + http://blog.hugopoi.net/2013/12/27/installer-mac-os-x-mavericks-avec-virtualbox/#comments + Fri, 27 Dec 2013 21:40:28 +0000 + + + + + + + + + http://blog.hugopoi.net/?p=802 + Lire la suite »

                  ]]>
                  + http://blog.hugopoi.net/2013/12/27/installer-mac-os-x-mavericks-avec-virtualbox/feed/ + 6 +
                  +
                  +
                  diff --git a/www/.content.EZtzwPjb/html/4c4e3cd54dd83c2d560e762e5a6d3ba955a91550.00000598.js b/www/.content.EZtzwPjb/html/4c4e3cd54dd83c2d560e762e5a6d3ba955a91550.00000598.js new file mode 100644 index 0000000..1e2c999 --- /dev/null +++ b/www/.content.EZtzwPjb/html/4c4e3cd54dd83c2d560e762e5a6d3ba955a91550.00000598.js @@ -0,0 +1,480 @@ +( function( $ ) { + + 'use strict'; + + if ( typeof wpcf7 === 'undefined' || wpcf7 === null ) { + return; + } + + wpcf7 = $.extend( { + cached: 0, + inputs: [] + }, wpcf7 ); + + $( function() { + wpcf7.supportHtml5 = ( function() { + var features = {}; + var input = document.createElement( 'input' ); + + features.placeholder = 'placeholder' in input; + + var inputTypes = [ 'email', 'url', 'tel', 'number', 'range', 'date' ]; + + $.each( inputTypes, function( index, value ) { + input.setAttribute( 'type', value ); + features[ value ] = input.type !== 'text'; + } ); + + return features; + } )(); + + $( 'div.wpcf7 > form' ).each( function() { + var $form = $( this ); + + $form.submit( function( event ) { + if ( typeof window.FormData !== 'function' ) { + return; + } + + wpcf7.submit( $form ); + event.preventDefault(); + } ); + + $( '.wpcf7-submit', $form ).after( '' ); + + wpcf7.toggleSubmit( $form ); + + $form.on( 'click', '.wpcf7-acceptance', function() { + wpcf7.toggleSubmit( $form ); + } ); + + // Exclusive Checkbox + $( '.wpcf7-exclusive-checkbox', $form ).on( 'click', 'input:checkbox', function() { + var name = $( this ).attr( 'name' ); + $form.find( 'input:checkbox[name="' + name + '"]' ).not( this ).prop( 'checked', false ); + } ); + + // Free Text Option for Checkboxes and Radio Buttons + $( '.wpcf7-list-item.has-free-text', $form ).each( function() { + var $freetext = $( ':input.wpcf7-free-text', this ); + var $wrap = $( this ).closest( '.wpcf7-form-control' ); + + if ( $( ':checkbox, :radio', this ).is( ':checked' ) ) { + $freetext.prop( 'disabled', false ); + } else { + $freetext.prop( 'disabled', true ); + } + + $wrap.on( 'change', ':checkbox, :radio', function() { + var $cb = $( '.has-free-text', $wrap ).find( ':checkbox, :radio' ); + + if ( $cb.is( ':checked' ) ) { + $freetext.prop( 'disabled', false ).focus(); + } else { + $freetext.prop( 'disabled', true ); + } + } ); + } ); + + // Placeholder Fallback + if ( ! wpcf7.supportHtml5.placeholder ) { + $( '[placeholder]', $form ).each( function() { + $( this ).val( $( this ).attr( 'placeholder' ) ); + $( this ).addClass( 'placeheld' ); + + $( this ).focus( function() { + if ( $( this ).hasClass( 'placeheld' ) ) { + $( this ).val( '' ).removeClass( 'placeheld' ); + } + } ); + + $( this ).blur( function() { + if ( '' === $( this ).val() ) { + $( this ).val( $( this ).attr( 'placeholder' ) ); + $( this ).addClass( 'placeheld' ); + } + } ); + } ); + } + + if ( wpcf7.jqueryUi && ! wpcf7.supportHtml5.date ) { + $form.find( 'input.wpcf7-date[type="date"]' ).each( function() { + $( this ).datepicker( { + dateFormat: 'yy-mm-dd', + minDate: new Date( $( this ).attr( 'min' ) ), + maxDate: new Date( $( this ).attr( 'max' ) ) + } ); + } ); + } + + if ( wpcf7.jqueryUi && ! wpcf7.supportHtml5.number ) { + $form.find( 'input.wpcf7-number[type="number"]' ).each( function() { + $( this ).spinner( { + min: $( this ).attr( 'min' ), + max: $( this ).attr( 'max' ), + step: $( this ).attr( 'step' ) + } ); + } ); + } + + // Character Count + $( '.wpcf7-character-count', $form ).each( function() { + var $count = $( this ); + var name = $count.attr( 'data-target-name' ); + var down = $count.hasClass( 'down' ); + var starting = parseInt( $count.attr( 'data-starting-value' ), 10 ); + var maximum = parseInt( $count.attr( 'data-maximum-value' ), 10 ); + var minimum = parseInt( $count.attr( 'data-minimum-value' ), 10 ); + + var updateCount = function( target ) { + var $target = $( target ); + var length = $target.val().length; + var count = down ? starting - length : length; + $count.attr( 'data-current-value', count ); + $count.text( count ); + + if ( maximum && maximum < length ) { + $count.addClass( 'too-long' ); + } else { + $count.removeClass( 'too-long' ); + } + + if ( minimum && length < minimum ) { + $count.addClass( 'too-short' ); + } else { + $count.removeClass( 'too-short' ); + } + }; + + $( ':input[name="' + name + '"]', $form ).each( function() { + updateCount( this ); + + $( this ).keyup( function() { + updateCount( this ); + } ); + } ); + } ); + + $form.on( 'change', '.wpcf7-validates-as-url', function() { + var val = $.trim( $( this ).val() ); + + // check the scheme part + if ( val && ! val.match( /^[a-z][a-z0-9.+-]*:/i ) ) { + val = val.replace( /^\/+/, '' ); + val = 'http://' + val; + } + + $( this ).val( val ); + } ); + + if ( wpcf7.cached ) { + wpcf7.refill( $form ); + } + } ); + } ); + + wpcf7.getId = function( form ) { + return parseInt( $( 'input[name="_wpcf7"]', form ).val(), 10 ); + }; + + wpcf7.submit = function( form ) { + var $form = $( form ); + + $( '[placeholder].placeheld', $form ).each( function( i, n ) { + $( n ).val( '' ); + } ); + + wpcf7.clearResponse( $form ); + $( '.ajax-loader', $form ).addClass( 'is-active' ); + + if ( typeof window.FormData !== 'function' ) { + return; + } + + var formData = new FormData( $form.get( 0 ) ); + + var ajaxSuccess = function( data, status, xhr, $form ) { + var detail = { + id: $( data.into ).attr( 'id' ), + status: data.status, + inputs: [] + }; + + $.each( $form.serializeArray(), function( i, field ) { + if ( '_wpcf7' == field.name ) { + detail.contactFormId = field.value; + } else if ( '_wpcf7_version' == field.name ) { + detail.pluginVersion = field.value; + } else if ( '_wpcf7_locale' == field.name ) { + detail.contactFormLocale = field.value; + } else if ( '_wpcf7_unit_tag' == field.name ) { + detail.unitTag = field.value; + } else if ( '_wpcf7_container_post' == field.name ) { + detail.containerPostId = field.value; + } else if ( field.name.match( /^_/ ) ) { + // do nothing + } else { + detail.inputs.push( field ); + } + } ); + + var $message = $( '.wpcf7-response-output', $form ); + + switch ( data.status ) { + case 'validation_failed': + $.each( data.invalidFields, function( i, n ) { + $( n.into, $form ).each( function() { + wpcf7.notValidTip( this, n.message ); + $( '.wpcf7-form-control', this ).addClass( 'wpcf7-not-valid' ); + $( '[aria-invalid]', this ).attr( 'aria-invalid', 'true' ); + } ); + } ); + + $message.addClass( 'wpcf7-validation-errors' ); + $form.addClass( 'invalid' ); + + wpcf7.triggerEvent( data.into, 'invalid', detail ); + break; + case 'spam': + $message.addClass( 'wpcf7-spam-blocked' ); + $form.addClass( 'spam' ); + + $( '[name="g-recaptcha-response"]', $form ).each( function() { + if ( '' === $( this ).val() ) { + var $recaptcha = $( this ).closest( '.wpcf7-form-control-wrap' ); + wpcf7.notValidTip( $recaptcha, wpcf7.recaptcha.messages.empty ); + } + } ); + + wpcf7.triggerEvent( data.into, 'spam', detail ); + break; + case 'mail_sent': + $message.addClass( 'wpcf7-mail-sent-ok' ); + $form.addClass( 'sent' ); + + if ( data.onSentOk ) { + $.each( data.onSentOk, function( i, n ) { eval( n ) } ); + } + + wpcf7.triggerEvent( data.into, 'mailsent', detail ); + break; + case 'mail_failed': + case 'acceptance_missing': + default: + $message.addClass( 'wpcf7-mail-sent-ng' ); + $form.addClass( 'failed' ); + + wpcf7.triggerEvent( data.into, 'mailfailed', detail ); + } + + wpcf7.refill( $form, data ); + + if ( data.onSubmit ) { + $.each( data.onSubmit, function( i, n ) { eval( n ) } ); + } + + wpcf7.triggerEvent( data.into, 'submit', detail ); + + if ( 'mail_sent' == data.status ) { + $form.each( function() { + this.reset(); + } ); + } + + $form.find( '[placeholder].placeheld' ).each( function( i, n ) { + $( n ).val( $( n ).attr( 'placeholder' ) ); + } ); + + $message.append( data.message ).slideDown( 'fast' ); + $message.attr( 'role', 'alert' ); + + $( '.screen-reader-response', $form.closest( '.wpcf7' ) ).each( function() { + var $response = $( this ); + $response.html( '' ).attr( 'role', '' ).append( data.message ); + + if ( data.invalidFields ) { + var $invalids = $( '
                    ' ); + + $.each( data.invalidFields, function( i, n ) { + if ( n.idref ) { + var $li = $( '
                  • ' ).append( $( '' ).attr( 'href', '#' + n.idref ).append( n.message ) ); + } else { + var $li = $( '
                  • ' ).append( n.message ); + } + + $invalids.append( $li ); + } ); + + $response.append( $invalids ); + } + + $response.attr( 'role', 'alert' ).focus(); + } ); + }; + + $.ajax( { + type: 'POST', + url: wpcf7.apiSettings.root + wpcf7.apiSettings.namespace + + '/contact-forms/' + wpcf7.getId( $form ) + '/feedback', + data: formData, + dataType: 'json', + processData: false, + contentType: false + } ).done( function( data, status, xhr ) { + ajaxSuccess( data, status, xhr, $form ); + $( '.ajax-loader', $form ).removeClass( 'is-active' ); + } ).fail( function( xhr, status, error ) { + var $e = $( '
                    ' ).text( error.message ); + $form.after( $e ); + } ); + }; + + wpcf7.triggerEvent = function( target, name, detail ) { + var $target = $( target ); + + /* DOM event */ + var event = new CustomEvent( 'wpcf7' + name, { + bubbles: true, + detail: detail + } ); + + $target.get( 0 ).dispatchEvent( event ); + + /* jQuery event */ + $target.trigger( 'wpcf7:' + name, detail ); + $target.trigger( name + '.wpcf7', detail ); // deprecated + }; + + wpcf7.toggleSubmit = function( form, state ) { + var $form = $( form ); + var $submit = $( 'input:submit', $form ); + + if ( typeof state !== 'undefined' ) { + $submit.prop( 'disabled', ! state ); + return; + } + + if ( $form.hasClass( 'wpcf7-acceptance-as-validation' ) ) { + return; + } + + $submit.prop( 'disabled', false ); + + $( 'input:checkbox.wpcf7-acceptance', $form ).each( function() { + var $a = $( this ); + + if ( $a.hasClass( 'wpcf7-invert' ) && $a.is( ':checked' ) + || ! $a.hasClass( 'wpcf7-invert' ) && ! $a.is( ':checked' ) ) { + $submit.prop( 'disabled', true ); + return false; + } + } ); + }; + + wpcf7.notValidTip = function( target, message ) { + var $target = $( target ); + $( '.wpcf7-not-valid-tip', $target ).remove(); + $( '' ) + .text( message ).appendTo( $target ); + + if ( $target.is( '.use-floating-validation-tip *' ) ) { + var fadeOut = function( target ) { + $( target ).not( ':hidden' ).animate( { + opacity: 0 + }, 'fast', function() { + $( this ).css( { 'z-index': -100 } ); + } ); + } + + $target.on( 'mouseover', '.wpcf7-not-valid-tip', function() { + fadeOut( this ); + } ); + + $target.on( 'focus', ':input', function() { + fadeOut( $( '.wpcf7-not-valid-tip', $target ) ); + } ); + } + } + + wpcf7.refill = function( form, data ) { + var $form = $( form ); + + var refillCaptcha = function( $form, items ) { + $.each( items, function( i, n ) { + $form.find( ':input[name="' + i + '"]' ).val( '' ); + $form.find( 'img.wpcf7-captcha-' + i ).attr( 'src', n ); + var match = /([0-9]+)\.(png|gif|jpeg)$/.exec( n ); + $form.find( 'input:hidden[name="_wpcf7_captcha_challenge_' + i + '"]' ).attr( 'value', match[ 1 ] ); + } ); + }; + + var refillQuiz = function( $form, items ) { + $.each( items, function( i, n ) { + $form.find( ':input[name="' + i + '"]' ).val( '' ); + $form.find( ':input[name="' + i + '"]' ).siblings( 'span.wpcf7-quiz-label' ).text( n[ 0 ] ); + $form.find( 'input:hidden[name="_wpcf7_quiz_answer_' + i + '"]' ).attr( 'value', n[ 1 ] ); + } ); + }; + + if ( typeof data === 'undefined' ) { + $.ajax( { + type: 'GET', + url: wpcf7.apiSettings.root + wpcf7.apiSettings.namespace + + '/contact-forms/' + wpcf7.getId( $form ) + '/refill', + dataType: 'json' + } ).done( function( data, status, xhr ) { + if ( data.captcha ) { + refillCaptcha( $form, data.captcha ); + } + + if ( data.quiz ) { + refillQuiz( $form, data.quiz ); + } + } ); + + } else { + if ( data.captcha ) { + refillCaptcha( $form, data.captcha ); + } + + if ( data.quiz ) { + refillQuiz( $form, data.quiz ); + } + } + }; + + wpcf7.clearResponse = function( form ) { + var $form = $( form ); + $form.removeClass( 'invalid spam sent failed' ); + $form.siblings( '.screen-reader-response' ).html( '' ).attr( 'role', '' ); + + $( '.wpcf7-not-valid-tip', $form ).remove(); + $( '[aria-invalid]', $form ).attr( 'aria-invalid', 'false' ); + $( '.wpcf7-form-control', $form ).removeClass( 'wpcf7-not-valid' ); + + $( '.wpcf7-response-output', $form ) + .hide().empty().removeAttr( 'role' ) + .removeClass( 'wpcf7-mail-sent-ok wpcf7-mail-sent-ng wpcf7-validation-errors wpcf7-spam-blocked' ); + }; + +} )( jQuery ); + +/* + * Polyfill for Internet Explorer + * See https://developer.mozilla.org/en-US/docs/Web/API/CustomEvent/CustomEvent + */ +( function () { + if ( typeof window.CustomEvent === "function" ) return false; + + function CustomEvent ( event, params ) { + params = params || { bubbles: false, cancelable: false, detail: undefined }; + var evt = document.createEvent( 'CustomEvent' ); + evt.initCustomEvent( event, + params.bubbles, params.cancelable, params.detail ); + return evt; + } + + CustomEvent.prototype = window.Event.prototype; + + window.CustomEvent = CustomEvent; +} )(); diff --git a/www/.content.EZtzwPjb/html/4cc123c59c6a864e8db63db5714666d78d87ebf7.00000626.css b/www/.content.EZtzwPjb/html/4cc123c59c6a864e8db63db5714666d78d87ebf7.00000626.css new file mode 100644 index 0000000..8043bbf --- /dev/null +++ b/www/.content.EZtzwPjb/html/4cc123c59c6a864e8db63db5714666d78d87ebf7.00000626.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;background:#fff;border:1px +solid #f00;font-size:10pt;width:280px;padding:2px}span.wpcf7-not-valid-tip-no-ajax{color:#f00;font-size:10pt;display:block}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/4d6684c887bab1d28531592f2045dd927a5bdfaa.00000277.html b/www/.content.EZtzwPjb/html/4d6684c887bab1d28531592f2045dd927a5bdfaa.00000277.html new file mode 100644 index 0000000..db93b7d --- /dev/null +++ b/www/.content.EZtzwPjb/html/4d6684c887bab1d28531592f2045dd927a5bdfaa.00000277.html @@ -0,0 +1,383 @@ + + + + + + + Bidouille – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +
                    Prototype téléinformation compteur linky

                    Linky opendata my ass

                    Pour résumer la seule API utilisable en production est l’API Enedis qui est accèssible uniquement aux société (personne morale) ayant montré pate blanche auprès d’Enedis. Si vous voulez la version longue c’est ici. De ce que j’en ai vu vous n’aurez que des données journalière de consommation via leur API, Lire la suite…

                    +

                    L’homme du milieu avec DD-WRT

                    J’avais besoin de faire un MITM entre un ONT et la box SFR NB6 pour pouvoir capturer les identifiants PPP pour le tunnel ipv6. Je n’avais pas de hub ou de machine avec 2 interfaces Ethernet pour pouvoir le faire de façon passive sans faire du spoofing ARP. Et je n’avais pas envie d’envoyer des trames ARP sur l’infrastructure réseau SFR. J’avais un Netgear WNR3500Lv1 dans un coin, je me suis dit qu’il y avais moyen d’utiliser ce genre de routeur pour faire du tapping passif.

                    +

                    (suite…)

                    +
                    Par HugoPoi, il y a

                    Reflow Dell Inspiron 1546

                    +
                    Les choses n’ont pas beaucoup changé en terme d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un cadeau empoisonné de la belle-famille « Essaye de faire ce que tu peux pour récupérer mes photos, j’en rachèterais un ». Le pc portable en question était dans un état de mort certain.
                    + (suite…)
                    +
                    +
                    Par HugoPoi, il y a
                    +
                    + +
                    +
                    +
                    +
                    + +
                    +
                    + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/4db0e44e6cd05382c9544cf85754679365b21d5d.00000396.html b/www/.content.EZtzwPjb/html/4db0e44e6cd05382c9544cf85754679365b21d5d.00000396.html new file mode 100644 index 0000000..f1214dd --- /dev/null +++ b/www/.content.EZtzwPjb/html/4db0e44e6cd05382c9544cf85754679365b21d5d.00000396.html @@ -0,0 +1,364 @@ + + + + + + + download – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +

                    Download-Day

                    Bon voilà, je vais officialiser ma participation au D-Day organisé par LinuxManua, en date du 1er novembre 2010. Le but de l’opération étant de télécharger 20 Go et cela uniquement sur les réseaux Peer to Peer de préférence pas anonyme : Edonkey2000, Gnutella, Bitorrent, etc. Alors comme je suis joueur, je Lire la suite…

                    +
                    +
                    + +
                    +
                    +
                    +
                    + +
                    +
                    + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/4e5bee7d535e95b047d6a5c3f09e80fe4e8f32d8.00000043.xml b/www/.content.EZtzwPjb/html/4e5bee7d535e95b047d6a5c3f09e80fe4e8f32d8.00000043.xml new file mode 100644 index 0000000..b0bd8ed --- /dev/null +++ b/www/.content.EZtzwPjb/html/4e5bee7d535e95b047d6a5c3f09e80fe4e8f32d8.00000043.xml @@ -0,0 +1,17 @@ + + + Commentaires sur : Sapin de noël + + http://blog.hugopoi.net/2010/12/24/sapin-de-noel/ + Internet, Hardware et Bidouille + Mon, 22 Aug 2016 14:09:10 +0000 + hourly + 1 + https://wordpress.org/?v=4.6.1 + + diff --git a/www/.content.EZtzwPjb/html/4e798cb7b5c4d18d54977bf6ebe36eb4fe9f3600.00000306.html b/www/.content.EZtzwPjb/html/4e798cb7b5c4d18d54977bf6ebe36eb4fe9f3600.00000306.html new file mode 100644 index 0000000..68924d3 --- /dev/null +++ b/www/.content.EZtzwPjb/html/4e798cb7b5c4d18d54977bf6ebe36eb4fe9f3600.00000306.html @@ -0,0 +1,389 @@ + + + + + + + Internet – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +

                    Le cloud maison

                    Voilà un petit moment que je me devais de faire cet article pour vous en dire un peu plus sur comment je gère mes données numériques au quotidien. Et après plusieurs essais et échecs, je peux enfin dire que j’ai trouvé des outils simples et maintenus pour cette quête. Même Lire la suite…

                    +
                    Par HugoPoi, il y a

                    Liste de Noël

                    Bonjour cher Père Noël des Internets 2.0,

                    +

                    Alors je me permets de te déposer ma liste de noël sur mon blog car je suis sûr que tu as demandé à Google et Facebook de t’aider pour satisfaire tout le monde sur la terre(N’oublie pas les petits africains qui crèvent la dalle). Comme je suis égoïste un minimum humain et que je ne saurais dire ce que représente noël pour moi à part manger, boire, dormir, du sexe, avoir des cadeaux et en offrir, cela fait de bonnes raisons pour faire une liste de noël. (suite…)

                    +
                    Par HugoPoi, il y a

                    SOPA, PIPA, pipeau et plein d’autre

                    Bonsoir à tous, En ce jour, nous marquons une journée de silence sur les Internets contre les lois liberticides qui entravent la liberté d’expression. Comme vous pouvez le savoir, moi, petit blogueur, je ne représente qu’un petit atome dans la marre au canard des Internets, donc j’ai décidé de ne Lire la suite…

                    +
                    Par HugoPoi, il y a

                    Pascal Negre tu m’emmerdes

                    Bon sérieux, Pascal Negre il commence à me les briser sec. Après Deezer qui est devenu une belle merde car il n’y a plus que les Black Eyed Peas, Justin et Britney, la plateforme est devenue complètement payante et cela reste cher au vu du catalogue proposé. Puis l’année dernière Lire la suite…

                    +
                    Par HugoPoi, il y a

                    Quel age pour s’inscrire sur Facebook ?

                    Pour commencer définition et contexte:

                    +

                    Facebook est un réseau social créé par Mark Zuckerberg dont le but premier était de mettre un nom sur un visage et ainsi de permettre de contacter facilement une personne faisant parti de votre réseau universitaire. Exemple, vous voulez « pécho » ce soir, vous allez sur Facebook vous faites le tour des amis de vos amis et c’est bon. Depuis, le réseau a un peu évolué au vu de son augmentation de popularité mais le principe est inchangé. (suite…)

                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    + +
                    +
                    + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/4f28b20fd3cc26fe5975347a721aa23a3a004339.00000287.html b/www/.content.EZtzwPjb/html/4f28b20fd3cc26fe5975347a721aa23a3a004339.00000287.html new file mode 100644 index 0000000..a141b68 --- /dev/null +++ b/www/.content.EZtzwPjb/html/4f28b20fd3cc26fe5975347a721aa23a3a004339.00000287.html @@ -0,0 +1,393 @@ + + + + + + + Aventure Serveur – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +

                    Le cloud maison

                    Voilà un petit moment que je me devais de faire cet article pour vous en dire un peu plus sur comment je gère mes données numériques au quotidien. Et après plusieurs essais et échecs, je peux enfin dire que j’ai trouvé des outils simples et maintenus pour cette quête. Même Lire la suite…

                    +
                    Par HugoPoi, il y a

                    Vos données sauvegardées

                    Dans le monde d’aujourd’hui, le numérique est omniprésent, tout ce que vous faites est ou peut être numérisé. Qu’il s’agisse de vos photos de vacances, de votre CV ou votre liste de course, vos contacts et tous les documents que vous utilisez pour travailler sont surement numériques. L’informatique est partout et aide à gérer votre comptabilité, vos contacts pro ou perso et même bientôt votre frigo. Quand je pense qu’il y a 10 ans, beaucoup de professions géraient leur base clients avec des fiches papiers, et que ça existe encore… Pourtant, c’est une perte de temps importante de gérer des clientèles de plus 100 personnes, trier les fiches à la main dans l’ordre alphabétique. Imaginez devoir sortir tous les clients que vous n’avez pas contacté depuis 2 mois, même avec uniquement 100 personnes vous allez y passer au moins une 1 heure avant que votre liste soit faite, avec une base de données, cela est fait en moins d’1 seconde. Tous ça pour dire que l’informatique facilite grandement votre vie jusqu’au jour où ça tombe en panne ! J’ai donc quelques propositions à vous faire concernant la protection de vos données. (suite…)

                    +
                    Par HugoPoi, il y a

                    Préparation Migration

                    Après réception de ma freebox revolution et son switch gigabit il est temps de s’occuper de mon home serveur :

                    +

                    Windows est facile mais chiant pour certains trucs… Trop de contraintes pour un usage à la maison et oui je suis sûr que certain vont troller car chez moi j’ai un serveur avec comme OS Windows Server 2008 R2. Mais pourquoi Windows Server? Première raison, tous les postes à la maison sont sous windows 7 (pour jouer c’est mieux ;). Deuxième raison, j’avais envie de me faire la main sur 2008 avec son lot de nouveautés dont la gestion des machines virtuelles VM qui est très pratique. Mais c’est vraiment trop lourd comme OS, il faut 10 minutes pour installer un service style DNS et la majorité des services réseaux ont besoin de Active Directory pour fonctionner. Dès que j’ai installé AD, ça a foutu la merde partout sur les trucs déjà configurés donc je suis retourné en arrière. Aussi IIS c’est un peu la foire pour trouver un paramètre donc je préfère utiliser un Apache. (suite…)

                    +
                    Par HugoPoi, il y a
                    +
                    + +
                    +
                    +
                    +
                    + +
                    +
                    + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/4f6a33e19f39a652d970847aa1b38e0ecba6b5a7.00000146.xml b/www/.content.EZtzwPjb/html/4f6a33e19f39a652d970847aa1b38e0ecba6b5a7.00000146.xml new file mode 100644 index 0000000..5b692d1 --- /dev/null +++ b/www/.content.EZtzwPjb/html/4f6a33e19f39a652d970847aa1b38e0ecba6b5a7.00000146.xml @@ -0,0 +1,39 @@ + + + Commentaires sur : Asus U36 et OCZ Vertex 3 la suite + + http://blog.hugopoi.net/2012/03/30/asus-u36-et-ocz-vertex-3-la-suite/ + Internet, Hardware et Bidouille + Mon, 22 Aug 2016 14:09:10 +0000 + hourly + 1 + https://wordpress.org/?v=4.6.1 + + Par : Plutonion + http://blog.hugopoi.net/2012/03/30/asus-u36-et-ocz-vertex-3-la-suite/#comment-98 + + Tue, 22 May 2012 13:49:23 +0000 + http://blog.hugopoi.net/?p=635#comment-98 + + Salut,
                    +je viens d’acheter un Asus u36sg (ça fait un moment que je lorgnait déjà sur les JC et SD…).
                    +Bien qu’il possède déjà le Bluetooth, je vais également l’équiper d’une carte n-6230.
                    +Sinon je vais y coller un SSD Crucial M4 de 128 Go.
                    +J’espère ainsi m’approcher de ma config tant rêvé !
                    +Merci pour les photos, ça me permettra de démonter/remonter sans soucis !
                    +@+

                    +]]>
                    +
                    +
                    +
                    diff --git a/www/.content.EZtzwPjb/html/4fce9c907c4dc3de4198af4daf8e75d576294474.00000381.xml b/www/.content.EZtzwPjb/html/4fce9c907c4dc3de4198af4daf8e75d576294474.00000381.xml new file mode 100644 index 0000000..0e9d295 --- /dev/null +++ b/www/.content.EZtzwPjb/html/4fce9c907c4dc3de4198af4daf8e75d576294474.00000381.xml @@ -0,0 +1,38 @@ + + + + HugoPoi » Deezer + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Sat, 14 Sep 2013 23:01:40 +0000 + fr-FR + hourly + 1 + http://wordpress.org/?v=3.6 + + Pascal Negre tu m’emmerdes + http://blog.hugopoi.net/2012/01/07/pascal-negre-tu-memmerdes/ + http://blog.hugopoi.net/2012/01/07/pascal-negre-tu-memmerdes/#comments + Sat, 07 Jan 2012 14:32:47 +0000 + HugoPoi + + + + + + + http://blog.hugopoi.net/?p=574 + Lire la suite »

                    ]]>
                    + http://blog.hugopoi.net/2012/01/07/pascal-negre-tu-memmerdes/feed/ + 4 +
                    +
                    +
                    diff --git a/www/.content.EZtzwPjb/html/4fd566851a46f738962d0ccf4c46891764454d64.00000523.xml b/www/.content.EZtzwPjb/html/4fd566851a46f738962d0ccf4c46891764454d64.00000523.xml new file mode 100644 index 0000000..f001fe0 --- /dev/null +++ b/www/.content.EZtzwPjb/html/4fd566851a46f738962d0ccf4c46891764454d64.00000523.xml @@ -0,0 +1,38 @@ + + + SVF15N1C5E – HugoPoi + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Mon, 22 Aug 2016 14:10:26 +0000 + fr-FR + hourly + 1 + https://wordpress.org/?v=4.6.1 + + Test et démontage d’un Sony Multi Flip 15 SVF15N1C5E + http://blog.hugopoi.net/2014/08/04/test-et-demontage-dun-sony-multi-flip-15-svf15n1c5e/ + http://blog.hugopoi.net/2014/08/04/test-et-demontage-dun-sony-multi-flip-15-svf15n1c5e/#respond + Mon, 04 Aug 2014 13:25:59 +0000 + + + + + + + + + http://blog.hugopoi.net/?p=856 + Lire la suite »

                    ]]>
                    + http://blog.hugopoi.net/2014/08/04/test-et-demontage-dun-sony-multi-flip-15-svf15n1c5e/feed/ + 0 +
                    +
                    +
                    diff --git a/www/.content.EZtzwPjb/html/502df965fd6311d267ef983adea416907030c6f9.00000265.html b/www/.content.EZtzwPjb/html/502df965fd6311d267ef983adea416907030c6f9.00000265.html new file mode 100644 index 0000000..98546e8 --- /dev/null +++ b/www/.content.EZtzwPjb/html/502df965fd6311d267ef983adea416907030c6f9.00000265.html @@ -0,0 +1,613 @@ + + + + + + + + Linky opendata my ass – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +
                    +

                    Pour résumer la seule API utilisable en production est l’API Enedis qui est accèssible uniquement aux société (personne morale) ayant montré pate blanche auprès d’Enedis.
                    +Si vous voulez la version longue c’est ici.

                    +

                    De ce que j’en ai vu vous n’aurez que des données journalière de consommation via leur API, alors que le compteur envoit un point de mesure toute les heures. Donc le plus « simple » reste le port de téléinformation déjà présent sur les anciens compteurs électroniques donc pourquoi les changer …

                    +

                    Le matos

                    +

                    Les tutorials sur comment faire sont nombreux et bien écrit voilà la lecture pour la partie matériel.

                    +
                      +
                    1. Les spécifications de la téléinformation
                    2. +
                    3. Tutorial complet téléinformation avec un raspberrypi
                    4. +
                    5. Quelques informations suplémentaires avec un schema d’application beaucoup plus compliqué
                    6. +
                    +

                    Pour résumer il vous faut

                    +
                      +
                    • Un raspberrypi n’importe quel version (on en a tous un qui traine), à defaut une board qui dispose d’un port série matériel
                    • +
                    • Un opto coupleur alternatif ref SFH620A
                    • +
                    • Quelques résistances
                    • +
                    +

                    Prototypage

                    + + +

                    Sous RaspianOs vous aurez besoin d’éditer /boot/config.txt et y ajouter puis rebooter.

                    +
                    [all]
                    +enable_uart=1
                    +
                    +

                    Pour tester que tout fonctionne et que la téléinformation marche bien, lancer stty -F /dev/ttyAMA0 1200 sane evenp parenb cs7 -crtscts pour configurer le port série correctement.
                    +Puis screen /dev/ttyAMA0 vous devriez avoir un truc du style

                    +
                    ADCO 524563565245 /
                    +OPTARIF HC.. <
                    +ISOUSC 20 8
                    +HCHC 001065963 _
                    +HCHP 001521211 '
                    +PTEC HC.. S
                    +IINST 001 I
                    +IMAX 008 2
                    +PMAX 06030 3
                    +PAPP 01250 +
                    +HHPHC E 0
                    +MOTDETAT 000000 B
                    +PPOT 00 #
                    +ADCO 524563565245 /
                    +OPTARIF HC.. <
                    +ISOUSC 20 8
                    +
                    +

                    La board définitive

                    +

                    Teleinformation carte d'acquisition

                    +

                    L’installation complète

                    +

                    Installation teleinformation linky raspberrypi

                    +

                    Pour la partie logiciel

                    +

                    Dans le tutorial sur Magdiblog cité plus haut la partie logiciel est réalisé en php et n’a pas d’intégration autre que la consultation sur une page web directement hébergé sur le RaspberryPi, les données étant stocké dans une base mysqllite. Ayant commencé à jouer avec Home Assistant, je me suis dit que ce serait rigolo d’avoir les données de ma consommation électrique en live dans Home Assistant pour pouvoir réaliser des automatisations ou faire des bilans et des optimisations.
                    +Il fallait donc réaliser le bout de logiciel qui permettrait d’acquérir les données de téléinformation sur le port série pour les partager à une instance Home Assistant. Comme je déteste re-faire la roue, dans un premier temps je suis tombé sur un bout de code pour publier la téléinformation dans InfluxDB. Puis en cherchant un peu mieux car il y a déjà 40 developpeurs qui se sont tous pas coordonnées pour refaire la roue 40 fois, je suis tombé sur teleinfo-mqtt pas parfait mais qui fait le job out of the box.

                    +

                    Installer Docker

                    +

                    Faut suivre la documentation pour Debian Buster cependant j’ai rencontré un souci avec apt-add-repository qui ne marchait pas voir ici.

                    +

                    Teleinfo-mqtt

                    +

                    Créer un fichier teleinfo.env

                    +
                    SERIAL=/dev/ttyAMA0
                    +MQTT_URL=mqtt://mosquito_ip:1883
                    +MQTT_USER=user
                    +MQTT_PASSWORD=password
                    +
                    +

                    Lancer le container avec la commande suivante

                    +
                    sudo docker run --detach --name teleinfo-mqtt --device=/dev/ttyAMA0:/dev/ttyAMA0 --env-file teleinfo.env --restart always fmartinou/teleinfo-mqtt
                    +
                    +

                    A partir de ce point vous avez à minima la consommation instanté qui s’affiche dans Home-Assistant !

                    +

                    Home-Assistant teleinfo instantané en VA

                    +

                    Configuration de Home-Assistant

                    +

                    Dans le fichier /config/configuration.yaml

                    +
                    sensor:
                    +# Cette partie permet déclarer les valeurs non déclaré automatiquement par teleinfo-mqtt
                    +# J'ajoute donc le compteur de Wh heures pleines
                    +  - platform: mqtt
                    +    name: teleinfo_base
                    +    icon: mdi:power-plug
                    +    state_topic: teleinfo
                    +    json_attributes_topic: teleinfo
                    +    value_template: "{{ value_json.BASE.value }}"
                    +    unit_of_measurement: Wh
                    +    device_class: energy
                    +# Ici c'est pour ajouter des segments de comptage pour avoir des "buckets" de comptage dans Home-Assistant
                    +# Permet d'avoir ma consommation journalière et mensuelle extraite de teleinfo_base qui est la valeur du compteur en Wh.
                    +utility_meter:
                    +  daily_energy:
                    +    source: sensor.teleinfo_base
                    +    cycle: daily
                    +  monthly_energy:
                    +    source: sensor.teleinfo_base
                    +    cycle: monthly
                    +
                    +

                    Cela donne

                    +

                    Home Assistant téléinformation

                    +

                    Home-Assistant consommation journalière via téléinformation

                    +

                    Problèmes connues

                    +
                      +
                    • teleinfo-mqtt pourrait avoir un paramètre pour configurer la fréquence de mise à jour, on est sur une fois par seconde par defaut c’est un peu violent pour Home-Assistant qui galère avec un jeux de données aussi précis.
                    • +
                    • Les compteurs mensuel / journalier sont pas hyper exploitable en l’état (je suis un noob concernant Home-Assistant)
                    • +
                    • J’ai mis toutes les valeurs en Wh mais il est possible de faire une division par 1000 pour avoir kWh mais on perd la précision aussi dans la DB de Home-Assistant.
                    • +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +

                    + 0 commentaire

                    +
                    +
                    +
                    +

                    Laisser un commentaire

                    Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                    +
                    +
                    +

                    + +

                    +
                    +
                    +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +
                    + + +
                    + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/503a2bdb261cec796d4d75a7a17faede863eb229.00000716.css b/www/.content.EZtzwPjb/html/503a2bdb261cec796d4d75a7a17faede863eb229.00000716.css new file mode 100644 index 0000000..fe9245c --- /dev/null +++ b/www/.content.EZtzwPjb/html/503a2bdb261cec796d4d75a7a17faede863eb229.00000716.css @@ -0,0 +1,28 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7 .screen-reader-response{position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);height:1px;width:1px;margin:0;padding:0;border:0}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{color:#f00;font-size:1em;display:block}.use-floating-validation-tip span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;border:1px +solid #f00;background:#fff;padding: .2em .8em}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wpcf7-recaptcha +iframe{margin-bottom:0}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/504383b67bbeb813a35c307d5f4a28e14b6fdbdf.00000385.xml b/www/.content.EZtzwPjb/html/504383b67bbeb813a35c307d5f4a28e14b6fdbdf.00000385.xml new file mode 100644 index 0000000..d58ca4e --- /dev/null +++ b/www/.content.EZtzwPjb/html/504383b67bbeb813a35c307d5f4a28e14b6fdbdf.00000385.xml @@ -0,0 +1,43 @@ + + + + HugoPoi » démarrage + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Sat, 14 Sep 2013 23:01:40 +0000 + fr-FR + hourly + 1 + http://wordpress.org/?v=3.6 + + Réparations Samsung SyncMaster 2232BW + http://blog.hugopoi.net/2012/01/15/reparations-samsung-syncmaster-2232bw/ + http://blog.hugopoi.net/2012/01/15/reparations-samsung-syncmaster-2232bw/#comments + Sun, 15 Jan 2012 16:00:25 +0000 + HugoPoi + + + + + + + + + + + + http://blog.hugopoi.net/?p=586 + Lire la suite »

                    ]]>
                    + http://blog.hugopoi.net/2012/01/15/reparations-samsung-syncmaster-2232bw/feed/ + 16 +
                    +
                    +
                    diff --git a/www/.content.EZtzwPjb/html/50a00de6386694329dea56bb49cae9f7e70e0d6b.00000315.html b/www/.content.EZtzwPjb/html/50a00de6386694329dea56bb49cae9f7e70e0d6b.00000315.html new file mode 100644 index 0000000..be8617e --- /dev/null +++ b/www/.content.EZtzwPjb/html/50a00de6386694329dea56bb49cae9f7e70e0d6b.00000315.html @@ -0,0 +1,388 @@ + + + + + + + News – Page 3 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +

                    Plugin WordPress

                    Cela va faire plus d’un mois que j’ai ouvert mon blog, j’ai donc pu prendre en main le CMS WordPress. Alors je vais faire un petit retour sur les plugins que j’ai trouvés et plus particulièrement ceux que j’utilise.

                    +

                    Dans la catégorie Décoration j’ai adopté :

                    +

                    TweetMeme Retweet Button

                    +

                    Ajoute un joli bouton TweetMeme pour RT mes articles.

                    +

                    TwitterWidget

                    +

                    Ajoute un Widget qui permet d’afficher ma Timeline Twitter sur la sidebar du blog.

                    +

                    Contact Form 7

                    +

                    Permet de créer des formulaires de contact, c’est simple et sobre. Je l’ai utilisé pour ma page contact.

                    +

                    Dans la catégorie Administration et Maintenance :

                    +

                    WP Maintenance Mode

                    +

                    Cette extension permet de passer le blog en mode maintenance, avec la possibilité de personnaliser la page affichée et elle dispose d’un compte à rebours.

                    +

                    (suite…)

                    +
                    Par HugoPoi, il y a

                    Cloud Computing

                    Dans les nouvelles TPME, PME et autres entreprises un peu plus grandes, il y a un nouveau phénomène qui se met doucement en place: le Cloud Computing. C’est quoi ce truc ? C’est une nouvelle façon de gérer son infrastructure de S.I. en entreprise. Avant, quand on voulait avoir un Lire la suite…

                    +

                    Download-Day

                    Bon voilà, je vais officialiser ma participation au D-Day organisé par LinuxManua, en date du 1er novembre 2010. Le but de l’opération étant de télécharger 20 Go et cela uniquement sur les réseaux Peer to Peer de préférence pas anonyme : Edonkey2000, Gnutella, Bitorrent, etc. Alors comme je suis joueur, je Lire la suite…

                    +

                    Trolling

                    Apple New MacBook Air

                    +

                    J’avais envie de me défouler un peu donc je vais troller sur la sortie du nouveau MacBook Air. Alors oui il est beau, il est léger, la finition est nikel Chrome. Mais c’est du Apple donc c’est cher le prix d’entrée est de 999€ ouch ! pour la version 11 pouces … (suite…)

                    +
                    Par HugoPoi, il y a

                    Présentation

                    Un petit message pour remercier le créateur de ce blog de m’avoir intégré à son projet. Je suis là officiellement pour corriger les fautes d’orthographe, mais je vous annonce que j’en laisserais plusieurs par choix… officiellement ^^ Bonne lecture à tous et à bientôt !

                    +
                    Par Calcifer, il y a
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +
                    +
                    +
                    +
                    +
                    + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/510ac6d38108210560986cfeaa0aa47c683017e2.00000746.css b/www/.content.EZtzwPjb/html/510ac6d38108210560986cfeaa0aa47c683017e2.00000746.css new file mode 100644 index 0000000..7e1b326 --- /dev/null +++ b/www/.content.EZtzwPjb/html/510ac6d38108210560986cfeaa0aa47c683017e2.00000746.css @@ -0,0 +1 @@ +.carousel .hestia-title{font-size:67px}.carousel span.sub-title{font-size:18px}@media (max-width: 768px){.carousel .hestia-title,h1.hestia-title,.page-header.header-small .hestia-title,.page-header.header-small .title{font-size:36px}}h2.hestia-title,h2.title{font-size:37px}@media (max-width: 768px){h2.hestia-title,h2.title{font-size:24px}}.woocommerce div.product .product_title,.woocommerce .related.products h2{font-size:32px}.subscribe-line h3.hestia-title,#comments .hestia-title,.woocommerce .comment-reply-title,.woocommerce-cart .blog-post h1.hestia-title,.woocommerce-checkout .blog-post h1.hestia-title{font-size:27px}h5.description,h5.subscribe-description{font-size:18px}.subscribe-line .description{font-size:14px}.woocommerce-cart .blog-post h1.hestia-title,.woocommerce-checkout .blog-post h1.hestia-title{font-size:27px}.hestia-work .card-title,.woocommerce .cart-collaterals h2,.woocommerce .cross-sells h2,.woocommerce.single-product .summary .price,.woocommerce-checkout .blog-post .section form.woocommerce-checkout h3:not(#ship-to-different-address){font-size:23px}h4.card-title,.hestia-info h4.info-title,.footer .widget h5,section.contactus h4.hestia-title{font-size:18px}.blog .card-blog .card-title,.archive .card-blog .card-title,.blog .hestia-blog-featured-card .card-title{font-size:25px}h6.category{font-size:12px}.woocommerce .product .card-product .card-description p,.card-description,section.pricing p.text-gray,.woocommerce.single-product .woocommerce-product-details__short-description{font-size:14px}.hestia-features .hestia-info p{font-size:16px}h1,.single-post-wrap h1,.page-content-wrap h1,.hestia-title.title-in-content{font-size:42px}@media (max-width: 768px){.hestia-title.title-in-content{font-size:36px}}h2,.single-post-wrap h2,.page-content-wrap h2{font-size:37px}h3,.single-post-wrap h3,.page-content-wrap h3{font-size:32px}h4,.single-post-wrap h4,.page-content-wrap h4{font-size:27px}h5,.single-post-wrap h5,.page-content-wrap h5{font-size:23px}h6,.single-post-wrap h6,.page-content-wrap h6{font-size:18px}@media (max-width: 768px){h1,.single-post-wrap h1,.page-content-wrap h1,.page-template-template-fullwidth article h1{font-size:36px}h2,.single-post-wrap h2,.page-content-wrap h2,.page-template-template-fullwidth article h2{font-size:32px}h3,.single-post-wrap h3,.page-content-wrap h3,.page-template-template-fullwidth article h3{font-size:28px}h4,.single-post-wrap h4,.page-content-wrap h4,.page-template-template-fullwidth article h4{font-size:24px}h5,.single-post-wrap h5,.page-content-wrap h5,.page-template-template-fullwidth article h5{font-size:21px}h6,.single-post-wrap h6,.page-content-wrap h6,.page-template-template-fullwidth article h6{font-size:18px}}.single-post-wrap p,.page-content-wrap p,.single-post-wrap ul,.page-content-wrap ul,.single-post-wrap ol,.page-content-wrap ol,.single-post-wrap dl,.page-content-wrap dl,.single-post-wrap table,.page-content-wrap table,.page-template-template-fullwidth article p,.page-template-template-fullwidth article ul,.page-template-template-fullwidth article ol,.page-template-template-fullwidth article dl,.page-template-template-fullwidth article table{font-size:18px}@media (max-width: 768px){.single-post-wrap p,.page-content-wrap p,.single-post-wrap ul,.page-content-wrap ul,.single-post-wrap ol,.page-content-wrap ol,.single-post-wrap dl,.page-content-wrap dl,.single-post-wrap table,.page-content-wrap table,.page-template-template-fullwidth article p,.page-template-template-fullwidth article ul,.page-template-template-fullwidth article ol,.page-template-template-fullwidth article dl,.page-template-template-fullwidth article table{font-size:16px}}body{font-size:14px}.navbar a{font-size:12px} diff --git a/www/.content.EZtzwPjb/html/513b9585c168f883bfb8cbe8795c9ccc644f5abc.00001266.xml b/www/.content.EZtzwPjb/html/513b9585c168f883bfb8cbe8795c9ccc644f5abc.00001266.xml new file mode 100644 index 0000000..bba914b --- /dev/null +++ b/www/.content.EZtzwPjb/html/513b9585c168f883bfb8cbe8795c9ccc644f5abc.00001266.xml @@ -0,0 +1,7 @@ + +1.0HugoPoihttp://blog.hugopoi.netHugoPoihttp://blog.hugopoi.net/author/hugopoi/Stop au terme piraterich600338<blockquote class="wp-embedded-content"><a href="/2010/11/25/stop-au-terme-pirate/">Stop au terme pirate</a></blockquote> +<script type='text/javascript'> +<!--//--><![CDATA[//><!-- + !function(a,b){"use strict";function c(){if(!e){e=!0;var a,c,d,f,g=-1!==navigator.appVersion.indexOf("MSIE 10"),h=!!navigator.userAgent.match(/Trident.*rv:11\./),i=b.querySelectorAll("iframe.wp-embedded-content");for(c=0;c<i.length;c++)if(d=i[c],!d.getAttribute("data-secret")){if(f=Math.random().toString(36).substr(2,10),d.src+="#?secret="+f,d.setAttribute("data-secret",f),g||h)a=d.cloneNode(!0),a.removeAttribute("security"),d.parentNode.replaceChild(a,d)}else;}}var d=!1,e=!1;if(b.querySelector)if(a.addEventListener)d=!0;if(a.wp=a.wp||{},!a.wp.receiveEmbedMessage)if(a.wp.receiveEmbedMessage=function(c){var d=c.data;if(d.secret||d.message||d.value)if(!/[^a-zA-Z0-9]/.test(d.secret)){var e,f,g,h,i,j=b.querySelectorAll('iframe[data-secret="'+d.secret+'"]'),k=b.querySelectorAll('blockquote[data-secret="'+d.secret+'"]');for(e=0;e<k.length;e++)k[e].style.display="none";for(e=0;e<j.length;e++)if(f=j[e],c.source===f.contentWindow){if(f.removeAttribute("style"),"height"===d.message){if(g=parseInt(d.value,10),g>1e3)g=1e3;else if(~~g<200)g=200;f.height=g}if("link"===d.message)if(h=b.createElement("a"),i=b.createElement("a"),h.href=f.getAttribute("src"),i.href=d.value,i.host===h.host)if(b.activeElement===f)a.top.location.href=d.value}else;}},d)a.addEventListener("message",a.wp.receiveEmbedMessage,!1),b.addEventListener("DOMContentLoaded",c,!1),a.addEventListener("load",c,!1)}(window,document); +//--><!]]> +</script><iframe sandbox="allow-scripts" security="restricted" src="/2010/11/25/stop-au-terme-pirate/embed/" width="600" height="338" title="« Stop au terme pirate » — HugoPoi" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" class="wp-embedded-content"></iframe> diff --git a/www/.content.EZtzwPjb/html/52157f6a38f7a73b814f8988bb715299f0806f4b.00000753.css b/www/.content.EZtzwPjb/html/52157f6a38f7a73b814f8988bb715299f0806f4b.00000753.css new file mode 100644 index 0000000..540440c --- /dev/null +++ b/www/.content.EZtzwPjb/html/52157f6a38f7a73b814f8988bb715299f0806f4b.00000753.css @@ -0,0 +1,4 @@ +/*! + * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto} diff --git a/www/.content.EZtzwPjb/html/52d333cce41e58f2f7f429fc9525aa032652b1a3.00000362.html b/www/.content.EZtzwPjb/html/52d333cce41e58f2f7f429fc9525aa032652b1a3.00000362.html new file mode 100644 index 0000000..a3798db --- /dev/null +++ b/www/.content.EZtzwPjb/html/52d333cce41e58f2f7f429fc9525aa032652b1a3.00000362.html @@ -0,0 +1,370 @@ + + + + + + + chatons – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +

                    Pourquoi je suis sous Linux bordel !

                    Début d’année 2017, 6 mois que j’ai pas écrit sur le blog ! Cette année j’ai pris une résolution un choix de merde je n’installerais plus Windaube que se soit pour moi ou pour la dépanne, les amis, la famille, mon chat … Bref pendant les fêtes j’avais de la maintenance à faire comme d’habitude fallait faire une réinstallation pour la famille « met moi Windows 7 ça me suffit et au moins il y tout qui marche dessus » ça faisait environ plus 1 an que j’avais pas installé de windaube. Je me dit que ça va me prendre une petite demi journée. J’ai mis plus d’une journée si on compte le temps de faire les mises à jour. (suite…)

                    +
                    Par HugoPoi, il y a
                    +
                    + +
                    +
                    +
                    +
                    + +
                    +
                    + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/52d3cb3d922fd475b34aa8b4dc430346b97340d5.00000001.html b/www/.content.EZtzwPjb/html/52d3cb3d922fd475b34aa8b4dc430346b97340d5.00000001.html new file mode 100644 index 0000000..cfd2596 --- /dev/null +++ b/www/.content.EZtzwPjb/html/52d3cb3d922fd475b34aa8b4dc430346b97340d5.00000001.html @@ -0,0 +1,421 @@ + + + + + + + HugoPoi – Internet, Hardware et Bidouille + + + + + + + + + + + + + + + + + + + + + + + + + +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +

                    Je me barre de Facebook

                    Cela fait un long moment que je me dis que je vais supprimer mon compte Facebook, voilà mes raisons et pourquoi j’ai du mal a partir. Pourquoi Comme on m’a largement devancé sur pourquoi il faut se barrer à tout Lire la suite…

                    +
                    Par HugoPoi, il y a
                    +
                    +
                    + +
                    +
                    +
                    +
                    + +
                    +
                    + + + + + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/52d9da7e4ef301dbfc208de30a041e80e1436e4c.00000298.xml b/www/.content.EZtzwPjb/html/52d9da7e4ef301dbfc208de30a041e80e1436e4c.00000298.xml new file mode 100644 index 0000000..e3d6301 --- /dev/null +++ b/www/.content.EZtzwPjb/html/52d9da7e4ef301dbfc208de30a041e80e1436e4c.00000298.xml @@ -0,0 +1,43 @@ + + + Gaming – HugoPoi + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Sat, 11 Feb 2017 17:37:20 +0000 + fr-FR + hourly + 1 + https://wordpress.org/?v=4.7.2 + + Et si on faisait sans Twitch et sans Youtube + http://blog.hugopoi.net/2015/10/24/et-si-on-faisait-sans-twitch-et-sans-youtube/ + http://blog.hugopoi.net/2015/10/24/et-si-on-faisait-sans-twitch-et-sans-youtube/#respond + Sat, 24 Oct 2015 13:07:55 +0000 + + + + + + + + + + + + + + http://blog.hugopoi.net/?p=909 + Lire la suite »

                    ]]>
                    + http://blog.hugopoi.net/2015/10/24/et-si-on-faisait-sans-twitch-et-sans-youtube/feed/ + 0 +
                    +
                    +
                    diff --git a/www/.content.EZtzwPjb/html/5344f64f364335ee794ad0931b1c8b1744f9bfa1.00000710.css b/www/.content.EZtzwPjb/html/5344f64f364335ee794ad0931b1c8b1744f9bfa1.00000710.css new file mode 100644 index 0000000..20df2bb --- /dev/null +++ b/www/.content.EZtzwPjb/html/5344f64f364335ee794ad0931b1c8b1744f9bfa1.00000710.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7 .screen-reader-response{position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);height:1px;width:1px;margin:0;padding:0;border:0}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{color:#f00;font-size:1em;display:block}.use-floating-validation-tip span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;border:1px +solid #f00;background:#fff;padding: .2em .8em}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/5367d06a14969cd72e24fc99c4c3d152ddc4973c.00000473.html b/www/.content.EZtzwPjb/html/5367d06a14969cd72e24fc99c4c3d152ddc4973c.00000473.html new file mode 100644 index 0000000..f4df5cd --- /dev/null +++ b/www/.content.EZtzwPjb/html/5367d06a14969cd72e24fc99c4c3d152ddc4973c.00000473.html @@ -0,0 +1,371 @@ + + + + + + + nvidia – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +

                    Optimus vs Mégatron

                    Je suis l’heureux acquéreur #oupas d’un pc portable avec technologie Optimus de Nvidia (voir Asus U36JC). Après quelques jours de recherches et de tests je vais essayer de vous faire un résumé complet sur le pourquoi de comment ça fonctionne. (suite…)

                    +
                    Par HugoPoi, il y a
                    +
                    + +
                    +
                    +
                    +
                    + +
                    +
                    + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/540c3547714f7825bdd07cdccb218c2ee8cb643a.00000712.css b/www/.content.EZtzwPjb/html/540c3547714f7825bdd07cdccb218c2ee8cb643a.00000712.css new file mode 100644 index 0000000..20df2bb --- /dev/null +++ b/www/.content.EZtzwPjb/html/540c3547714f7825bdd07cdccb218c2ee8cb643a.00000712.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7 .screen-reader-response{position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);height:1px;width:1px;margin:0;padding:0;border:0}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{color:#f00;font-size:1em;display:block}.use-floating-validation-tip span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;border:1px +solid #f00;background:#fff;padding: .2em .8em}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/54a7db92b6183815f0220c2583f59066ed7abbbb.00000442.html b/www/.content.EZtzwPjb/html/54a7db92b6183815f0220c2583f59066ed7abbbb.00000442.html new file mode 100644 index 0000000..faef7e4 --- /dev/null +++ b/www/.content.EZtzwPjb/html/54a7db92b6183815f0220c2583f59066ed7abbbb.00000442.html @@ -0,0 +1,372 @@ + + + + + + + mac os x – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +

                    Installer Mac OS X Mavericks avec VirtualBox

                    Capture Installation Mac OS X MavericksComme Apple c’est des blaireaux et que j’avais besoin d’un environnement de développement pour iDaube. J’ai du me résoudre à installer un Mac OS X dans une machine virtuel.

                    +

                    Ce dont vous avez besoin :

                    + +

                    Moi je travail sous Linux Mint mais vous devriez réussir à faire les manipulations sous Windaube. (suite…)

                    +
                    Par HugoPoi, il y a
                    +
                    + +
                    +
                    +
                    +
                    + +
                    +
                    + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/552240f5933c2437efafb188f8a3ff52e52b125f.00000663.css b/www/.content.EZtzwPjb/html/552240f5933c2437efafb188f8a3ff52e52b125f.00000663.css new file mode 100644 index 0000000..8043bbf --- /dev/null +++ b/www/.content.EZtzwPjb/html/552240f5933c2437efafb188f8a3ff52e52b125f.00000663.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;background:#fff;border:1px +solid #f00;font-size:10pt;width:280px;padding:2px}span.wpcf7-not-valid-tip-no-ajax{color:#f00;font-size:10pt;display:block}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/5533c36e063d47d4ff4d06cb1210051f660848b1.00000401.html b/www/.content.EZtzwPjb/html/5533c36e063d47d4ff4d06cb1210051f660848b1.00000401.html new file mode 100644 index 0000000..98ac833 --- /dev/null +++ b/www/.content.EZtzwPjb/html/5533c36e063d47d4ff4d06cb1210051f660848b1.00000401.html @@ -0,0 +1,371 @@ + + + + + + + education – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +

                    Honte Télévisuelle

                    Je viens de déménager à Belfort et dans mon 19m² je n’ai pas de télévision mais je suis l’actualité via internet grâce à twitter. Je me suis aperçu que ces dernier mois, le nombre d’émissions abordant le sujet d’internet et compagnie était assez conséquent. (suite…)

                    +
                    Par HugoPoi, il y a
                    +
                    + +
                    +
                    +
                    +
                    + +
                    +
                    + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/559ed939181e88890fbf49366e865ecc1f524f07.00001264.xml b/www/.content.EZtzwPjb/html/559ed939181e88890fbf49366e865ecc1f524f07.00001264.xml new file mode 100644 index 0000000..1fb3647 --- /dev/null +++ b/www/.content.EZtzwPjb/html/559ed939181e88890fbf49366e865ecc1f524f07.00001264.xml @@ -0,0 +1,7 @@ + +1.0HugoPoihttp://blog.hugopoi.netHugoPoihttp://blog.hugopoi.net/author/hugopoi/Cloud Computingrich600338<blockquote class="wp-embedded-content"><a href="/2010/11/15/cloud-computing/">Cloud Computing</a></blockquote> +<script type='text/javascript'> +<!--//--><![CDATA[//><!-- + !function(a,b){"use strict";function c(){if(!e){e=!0;var a,c,d,f,g=-1!==navigator.appVersion.indexOf("MSIE 10"),h=!!navigator.userAgent.match(/Trident.*rv:11\./),i=b.querySelectorAll("iframe.wp-embedded-content");for(c=0;c<i.length;c++)if(d=i[c],!d.getAttribute("data-secret")){if(f=Math.random().toString(36).substr(2,10),d.src+="#?secret="+f,d.setAttribute("data-secret",f),g||h)a=d.cloneNode(!0),a.removeAttribute("security"),d.parentNode.replaceChild(a,d)}else;}}var d=!1,e=!1;if(b.querySelector)if(a.addEventListener)d=!0;if(a.wp=a.wp||{},!a.wp.receiveEmbedMessage)if(a.wp.receiveEmbedMessage=function(c){var d=c.data;if(d.secret||d.message||d.value)if(!/[^a-zA-Z0-9]/.test(d.secret)){var e,f,g,h,i,j=b.querySelectorAll('iframe[data-secret="'+d.secret+'"]'),k=b.querySelectorAll('blockquote[data-secret="'+d.secret+'"]');for(e=0;e<k.length;e++)k[e].style.display="none";for(e=0;e<j.length;e++)if(f=j[e],c.source===f.contentWindow){if(f.removeAttribute("style"),"height"===d.message){if(g=parseInt(d.value,10),g>1e3)g=1e3;else if(~~g<200)g=200;f.height=g}if("link"===d.message)if(h=b.createElement("a"),i=b.createElement("a"),h.href=f.getAttribute("src"),i.href=d.value,i.host===h.host)if(b.activeElement===f)a.top.location.href=d.value}else;}},d)a.addEventListener("message",a.wp.receiveEmbedMessage,!1),b.addEventListener("DOMContentLoaded",c,!1),a.addEventListener("load",c,!1)}(window,document); +//--><!]]> +</script><iframe sandbox="allow-scripts" security="restricted" src="/2010/11/15/cloud-computing/embed/" width="600" height="338" title="« Cloud Computing » — HugoPoi" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" class="wp-embedded-content"></iframe> diff --git a/www/.content.EZtzwPjb/html/561f9c9103a28c72e116fb4ca3d0e8abb9a20b1e.00000627.css b/www/.content.EZtzwPjb/html/561f9c9103a28c72e116fb4ca3d0e8abb9a20b1e.00000627.css new file mode 100644 index 0000000..8043bbf --- /dev/null +++ b/www/.content.EZtzwPjb/html/561f9c9103a28c72e116fb4ca3d0e8abb9a20b1e.00000627.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;background:#fff;border:1px +solid #f00;font-size:10pt;width:280px;padding:2px}span.wpcf7-not-valid-tip-no-ajax{color:#f00;font-size:10pt;display:block}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/5691bf90854e669f8d907050f26c931e82aea885.00001244.js b/www/.content.EZtzwPjb/html/5691bf90854e669f8d907050f26c931e82aea885.00001244.js new file mode 100644 index 0000000..69c1f01 --- /dev/null +++ b/www/.content.EZtzwPjb/html/5691bf90854e669f8d907050f26c931e82aea885.00001244.js @@ -0,0 +1 @@ +!function(a,b){"use strict";function c(){if(!e){e=!0;var a,c,d,f,g=-1!==navigator.appVersion.indexOf("MSIE 10"),h=!!navigator.userAgent.match(/Trident.*rv:11\./),i=b.querySelectorAll("iframe.wp-embedded-content");for(c=0;c1e3)g=1e3;else if(~~g<200)g=200;f.height=g}if("link"===d.message)if(h=b.createElement("a"),i=b.createElement("a"),h.href=f.getAttribute("src"),i.href=d.value,i.host===h.host)if(b.activeElement===f)a.top.location.href=d.value}else;}},d)a.addEventListener("message",a.wp.receiveEmbedMessage,!1),b.addEventListener("DOMContentLoaded",c,!1),a.addEventListener("load",c,!1)}(window,document); \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/5703694d98ab1e5ea9c311cb92b671324a3c4995.00001291.xml b/www/.content.EZtzwPjb/html/5703694d98ab1e5ea9c311cb92b671324a3c4995.00001291.xml new file mode 100644 index 0000000..af1e6fe --- /dev/null +++ b/www/.content.EZtzwPjb/html/5703694d98ab1e5ea9c311cb92b671324a3c4995.00001291.xml @@ -0,0 +1,7 @@ + +1.0HugoPoihttp://blog.hugopoi.netHugoPoihttp://blog.hugopoi.net/author/hugopoi/Pascal Negre tu m'emmerdesrich600338<blockquote class="wp-embedded-content"><a href="/2012/01/07/pascal-negre-tu-memmerdes/">Pascal Negre tu m’emmerdes</a></blockquote> +<script type='text/javascript'> +<!--//--><![CDATA[//><!-- + !function(a,b){"use strict";function c(){if(!e){e=!0;var a,c,d,f,g=-1!==navigator.appVersion.indexOf("MSIE 10"),h=!!navigator.userAgent.match(/Trident.*rv:11\./),i=b.querySelectorAll("iframe.wp-embedded-content");for(c=0;c<i.length;c++)if(d=i[c],!d.getAttribute("data-secret")){if(f=Math.random().toString(36).substr(2,10),d.src+="#?secret="+f,d.setAttribute("data-secret",f),g||h)a=d.cloneNode(!0),a.removeAttribute("security"),d.parentNode.replaceChild(a,d)}else;}}var d=!1,e=!1;if(b.querySelector)if(a.addEventListener)d=!0;if(a.wp=a.wp||{},!a.wp.receiveEmbedMessage)if(a.wp.receiveEmbedMessage=function(c){var d=c.data;if(d.secret||d.message||d.value)if(!/[^a-zA-Z0-9]/.test(d.secret)){var e,f,g,h,i,j=b.querySelectorAll('iframe[data-secret="'+d.secret+'"]'),k=b.querySelectorAll('blockquote[data-secret="'+d.secret+'"]');for(e=0;e<k.length;e++)k[e].style.display="none";for(e=0;e<j.length;e++)if(f=j[e],c.source===f.contentWindow){if(f.removeAttribute("style"),"height"===d.message){if(g=parseInt(d.value,10),g>1e3)g=1e3;else if(~~g<200)g=200;f.height=g}if("link"===d.message)if(h=b.createElement("a"),i=b.createElement("a"),h.href=f.getAttribute("src"),i.href=d.value,i.host===h.host)if(b.activeElement===f)a.top.location.href=d.value}else;}},d)a.addEventListener("message",a.wp.receiveEmbedMessage,!1),b.addEventListener("DOMContentLoaded",c,!1),a.addEventListener("load",c,!1)}(window,document); +//--><!]]> +</script><iframe sandbox="allow-scripts" security="restricted" src="/2012/01/07/pascal-negre-tu-memmerdes/embed/" width="600" height="338" title="« Pascal Negre tu m’emmerdes » — HugoPoi" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" class="wp-embedded-content"></iframe> diff --git a/www/.content.EZtzwPjb/html/573275236569fe5abb700d3abeffe1c2fcf4c5e3.00000750.css b/www/.content.EZtzwPjb/html/573275236569fe5abb700d3abeffe1c2fcf4c5e3.00000750.css new file mode 100644 index 0000000..06c5ba2 --- /dev/null +++ b/www/.content.EZtzwPjb/html/573275236569fe5abb700d3abeffe1c2fcf4c5e3.00000750.css @@ -0,0 +1 @@ +.carousel .hestia-title{font-size:67px}.carousel span.sub-title{font-size:18px}@media (max-width:768px){.carousel .hestia-title,h1.hestia-title{font-size:36px}.page-header.header-small .hestia-title,.page-header.header-small .title{font-size:26px}}h2.hestia-title,h2.title{font-size:37px}@media (max-width:768px){h2.hestia-title,h2.title{font-size:24px}}.woocommerce .exclusive-products h2,.woocommerce .related.products h2,.woocommerce div.product .product_title{font-size:32px}@media (max-width:768px){.woocommerce .exclusive-products h2,.woocommerce .related.products h2,.woocommerce div.product .product_title{font-size:24px}}#comments .hestia-title,.subscribe-line h3.hestia-title,.woocommerce .comment-reply-title,.woocommerce-cart .blog-post h1.hestia-title,.woocommerce-checkout .blog-post h1.hestia-title{font-size:27px}h5.description,h5.subscribe-description{font-size:18px}.subscribe-line .description{font-size:14px}.woocommerce-cart .blog-post h1.hestia-title,.woocommerce-checkout .blog-post h1.hestia-title{font-size:27px}.hestia-work .card-title,.woocommerce .cart-collaterals h2,.woocommerce .cross-sells h2,.woocommerce-checkout .blog-post .section form.woocommerce-checkout h3:not(#ship-to-different-address),.woocommerce.single-product .summary .price{font-size:23px}.footer .widget h5,.hestia-info h4.info-title,h4.card-title,section.contactus h4.hestia-title{font-size:18px}.archive .card-blog .card-title,.blog .card-blog .card-title,.blog .hestia-blog-featured-card .card-title{font-size:25px}h6.category{font-size:12px}.card-description,.woocommerce .product .card-product .card-description p,.woocommerce.single-product .woocommerce-product-details__short-description,section.pricing p.text-gray{font-size:14px}.hestia-features .hestia-info p{font-size:16px}.hestia-title.title-in-content,.page-content-wrap h1,.single-post-wrap h1,h1{font-size:42px}@media (max-width:768px){.hestia-title.title-in-content{font-size:36px}}.page-content-wrap h2,.single-post-wrap h2,h2{font-size:37px}.page-content-wrap h3,.single-post-wrap h3,h3{font-size:32px}.page-content-wrap h4,.single-post-wrap h4,h4{font-size:27px}.page-content-wrap h5,.single-post-wrap h5,h5{font-size:23px}.page-content-wrap h6,.single-post-wrap h6,h6{font-size:18px}@media (max-width:768px){.page-content-wrap h1,.page-template-template-fullwidth article h1,.single-post-wrap h1,h1{font-size:30px}.page-content-wrap h2,.page-template-template-fullwidth article h2,.single-post-wrap h2,h2{font-size:28px}.page-content-wrap h3,.page-template-template-fullwidth article h3,.single-post-wrap h3,h3{font-size:24px}.page-content-wrap h4,.page-template-template-fullwidth article h4,.single-post-wrap h4,h4{font-size:22px}.page-content-wrap h5,.page-template-template-fullwidth article h5,.single-post-wrap h5,h5{font-size:20px}.page-content-wrap h6,.page-template-template-fullwidth article h6,.single-post-wrap h6,h6{font-size:18px}}.page-content-wrap dl,.page-content-wrap ol,.page-content-wrap p,.page-content-wrap table,.page-content-wrap ul,.page-template-template-fullwidth article dl,.page-template-template-fullwidth article ol,.page-template-template-fullwidth article p,.page-template-template-fullwidth article table,.page-template-template-fullwidth article ul,.single-post-wrap dl,.single-post-wrap ol,.single-post-wrap p,.single-post-wrap table,.single-post-wrap ul{font-size:18px}@media (max-width:768px){.page-content-wrap dl,.page-content-wrap ol,.page-content-wrap p,.page-content-wrap table,.page-content-wrap ul,.page-template-template-fullwidth article dl,.page-template-template-fullwidth article ol,.page-template-template-fullwidth article p,.page-template-template-fullwidth article table,.page-template-template-fullwidth article ul,.single-post-wrap dl,.single-post-wrap ol,.single-post-wrap p,.single-post-wrap table,.single-post-wrap ul{font-size:16px}}body{font-size:14px}.navbar a{font-size:12px} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/576c2426cba71c7454bbed21c9637f22b9e781d8.00001247.js b/www/.content.EZtzwPjb/html/576c2426cba71c7454bbed21c9637f22b9e781d8.00001247.js new file mode 100644 index 0000000..c6a2aa9 --- /dev/null +++ b/www/.content.EZtzwPjb/html/576c2426cba71c7454bbed21c9637f22b9e781d8.00001247.js @@ -0,0 +1 @@ +!function(d,l){"use strict";var e=!1,o=!1;if(l.querySelector)if(d.addEventListener)e=!0;if(d.wp=d.wp||{},!d.wp.receiveEmbedMessage)if(d.wp.receiveEmbedMessage=function(e){var t=e.data;if(t)if(t.secret||t.message||t.value)if(!/[^a-zA-Z0-9]/.test(t.secret)){var r,a,i,s,n,o=l.querySelectorAll('iframe[data-secret="'+t.secret+'"]'),c=l.querySelectorAll('blockquote[data-secret="'+t.secret+'"]');for(r=0;r this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/58c32e9f2b6a795937f58d57ba1b453755069e2f.00000197.html b/www/.content.EZtzwPjb/html/58c32e9f2b6a795937f58d57ba1b453755069e2f.00000197.html new file mode 100644 index 0000000..567813d --- /dev/null +++ b/www/.content.EZtzwPjb/html/58c32e9f2b6a795937f58d57ba1b453755069e2f.00000197.html @@ -0,0 +1,645 @@ + + + + + + + + Réparer et transformer une clé USB de 4Go en 8Go – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +
                    +

                    J’étais en train de bosser sur un projet Java quand ma belle mère me demande si je peux regarder une clé USB Maxell 4GB qui ne marche plus.Clé USB Maxell

                    +

                    Je branche et la clé se connecte correctement mais pas de table des partitions et la clé indiquait 0 octet de disponible. Je tente un « diskpart.exe » celui-ci me dit « pas de media ». Autre symptôme la LED sur la clé restait continuellement allumé. Je commence à me dire que c’est mort puis comme d’habitude je fais une recherche Google et je tombe sur ça http://www.easytutoriel.com/flasher-reparer-cle-usb-memoire/(ce lien est à moitié mort la DB est cassée) . Donc je télécharge ChipGenius_v4_00_0022_RC3 et il reconnait ma clé il me dit que c’est un controleur Phison PS2251-67(PS2267) et une puce mémoire Toshiba de type TLC.ChipGenius4

                    +

                    Rien de bien exceptionnel je vais sur http://flashboot.ru/iflash/ je farfouille je trouve des noms de logiciels mais pas de lien téléchargement qui marche puis pour finir je vais sur http://dl.mydigit.net/special/up/phison.html, sans traduire je comprends vite que c’est une mine d’or ce site web, tout un tas de nom de logiciel récupérer chez les fabricants de puces en tout genre de quoi flasher n’importe quoi. J’arrive à ça http://rghost.net/39050058, je télécharge j’exécute GetInfo.exe  (sans les droits administrateur) qui me donne les même infos que ChipGenius.GetInfo V3.8.3.2

                    +

                    Après il y a deux soft MPALL_F1_8400_v360_0B.exe et MPALL_F2_v360_0B.exe . Au hasard je lance le premier (sans les droits administrateur) et je clic sur Update sans vraiment savoir ce que ça allait vraiment faire. Et la ça reconnait la clé dans la liste et surprise il me dit que la puce de mémoire est une 8Go au début je crois à une erreur.MPAll 8400 3.60.0B

                    +

                    N’ayant plus rien à perdre je clic sur Start et cela lance la procédure de flash du firmware du contrôleur, pas de documentation donc je peux pas vraiment savoir ce que ça fait réellement. DRAME ça affiche une erreur et un beau fail, je ne désespère pas je débranche rebranche la clé. Et c’est un ………………….WIN Windaube m’affiche le beau panneau voulez-vous formater cette merde. Deuxième WIN de taille, la clé est reconnu comme une clé de 8 Go LOL. Je mets plus de 4 Go de données dedans je fais un checksum des fichiers et ça marche !!!

                    +

                    L’erreur survenu à la fin du flash peu provenir du fait que je n’avais pas lancé l’exécutable avec des privilèges élevés donc le programme n’a pas pu effectuer le formatage.

                    +

                    Maintenant la grande question comment ce fait t’il que Maxell qui est l’assembleur de cet clé USB nous vend t’il des clé USB 4GB comme sont en réalité des clé de 8Go. J’ai trois début de réponse :

                    +

                    1) Soit Maxell se fout de notre gueule sur les prix et du coup au lieu d’acheter 4000 puces Toshiba de 4 Go et 4000 de puces de 8Go , Maxell achète 8000 puces de 8Go et bidouille les firmware des contrôleurs pour faire des clés USB de 4 et 8 Go.

                    +

                    2) Maxell utilise des puces 8Go qui ont des défauts d’usines et utilise uniquement une parti de la puce. Ce qui expliquerait les problèmes que j’ai rencontré avec cette clé au début.

                    +

                    3) Maxell utilise les 4 Go restant pour faire du over-provisioning pour les cellules de mémoire défectueuse en écriture étant donné que je penses que ce genre de mémoire n’a pas beaucoup de cycle d’écriture mais c’est très peu probable que ce type technologie propre aux SSD soit dans de vulgaire clé USB bas de gamme.

                    +
                    +
                    +
                    +
                    +
                    Catégories : BidouilleHardwareNews
                    +
                    +
                    +
                    + + + + + + + + + +
                    +
                    +
                    +
                    +
                    +
                    +
                    +

                    + 8 commentaires

                    +
                    + +
                    +
                    +
                    +
                    +

                    + 2Pi informatique + · 16 mai 2013 à 9 h 01 min +

                    +

                    Je n’avais jamais entendu parler de ce genre de manip, et du gain potentiel de capacité.

                    +

                    C’est assez étonnant, et je me demande si tous les constructeurs « brident » la capacité des clés usb …

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Amedoumba + · 22 juillet 2013 à 14 h 15 min +

                    +

                    Hello !
                    +Intéressant comme manip. J’ai une de mes clés USB avec le même genre de probleme. Je vais donc tester et voir si cela fonctionne. Je n’ai rien à perdre de toute façon.
                    +Merci en tout cas.

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + diop + · 14 novembre 2013 à 15 h 11 min +

                    +

                    pour répéré cle usb

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + diop + · 14 novembre 2013 à 15 h 12 min +

                    +

                    salut pour ma cle usb

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + watchix + · 28 décembre 2013 à 10 h 40 min +

                    +

                    « File is deleted » :-(

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + HugoPoi + · 4 janvier 2014 à 12 h 38 min +

                      +

                      à moitié réparer ;-)

                      + +
                      +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Jean + · 22 avril 2015 à 20 h 18 min +

                    +

                    Je penche pour ma part pour les raisons 1 et 2.

                    +

                    La première raison car le coût de la flash est diminuée plus on en commande, et aussi ça évite d’avoir deux chaines d’assemblage pour le PCB de la clé.

                    +

                    La seconde raison car c’est ce qui est pratiqué par pas mal de fabricants du domaine du semi-conducteur pour « créer » une gamme : AMD n’hésitait pas à vendre en entrée de gamme des processeurs amputés de certains coeurs défectueux. Et si il manque des processeurs défectueux … et bien on désactive quand même des coeurs !

                    +

                    Il y a aussi un paramètre à prendre en compte : la redevance sur la copie privée. Elle est proportionnelle à la capacité du support de stockage (cf. http://www.culturecommunication.gouv.fr/Politiques-ministerielles/Propriete-litteraire-et-artistique/Commission-pour-la-remuneration-de-la-copie-privee/Questions-pratiques/Les-montants-de-la-Remuneration-pour-Copie-Privee). Elle est de 0,64€ pour une clé de 4 Go, et 1,04€ pour une clé de 8 Go.

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Pila + · 10 décembre 2015 à 21 h 45 min +

                    +

                    Salut,
                    +Je pense qu’il s’agit de puce MLC ( je crois que c’est le terme ? ), qui ont de très bonne performances sur la première moitié de leur capacité, et des très mauvaises sur la seconde moitié, car celle-ci est obtenu par réécriture sur la première partie.

                    +

                    En tout cas merci pour les différentes infos que tu as glanées !

                    + +
                    +
                    + +
                    +
                    +
                    +

                    Répondre à HugoPoi Annuler la réponse

                    Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                    +
                    +
                    +

                    + +

                    +
                    +
                    +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +
                    + + +
                    + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/59090b5dc616e6d84d766b77babf2f701f234e6c.00001265.json b/www/.content.EZtzwPjb/html/59090b5dc616e6d84d766b77babf2f701f234e6c.00001265.json new file mode 100644 index 0000000..c6abc51 --- /dev/null +++ b/www/.content.EZtzwPjb/html/59090b5dc616e6d84d766b77babf2f701f234e6c.00001265.json @@ -0,0 +1 @@ +{"version":"1.0","provider_name":"HugoPoi","provider_url":"http:\/\/blog.hugopoi.net","author_name":"HugoPoi","author_url":"http:\/\/blog.hugopoi.net\/author\/hugopoi\/","title":"Stop au terme pirate","type":"rich","width":600,"height":338,"html":"
                    Stop au terme pirate<\/a><\/blockquote>\n + + + + + + + + + + + + + + + + + + + + + + + + +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +
                    +

                    Il est 00h16, comme d’habitude je suis en train de développer un truc useless pour passer le temps donc je vais le mettre histoire de dire que ça va peut-être servir à plus d’une personne.

                    +

                    Language : JavaScript

                    +

                    Dépendance : Aucune

                    +

                    Type d’exécution : Local

                    +

                    Description : Ce script sert à transformer une requête HTTP de type GET via URL en méthode POST.

                    +

                    Fonctionnement : Il prend les arguments passés en get dans l’url et les envois via un formulaire de type hidden créé à la volée.

                    +

                    Exemple : https://blog.hugopoi.net/wp-content/uploads/2010/12/script.html?urlserverpage=http://fr.php.net/search.php&pattern=test&lang=en&show=quickref

                    +

                    Download : Script Get to Post

                    +

                    Note: pour télécharge le fichier en lien ci-dessus faites un clic droit « enregistrer la cible sous ».

                    +
                    +
                    +
                    +
                    +
                    Catégories : DéveloppementNews
                    +
                    +
                    +
                    + + + + + + + + + +
                    +
                    +
                    +
                    +
                    +
                    +
                    +

                    + 9 commentaires

                    +
                    + +
                    +
                    +
                    +
                    +

                    + watchix + · 12 juillet 2011 à 17 h 50 min +

                    +

                    Merci mon bon Hugo :-)
                    +J’étais en train de chercher ce genre de script lorsque je suis tombé sur le blog de Camille Descombes, puis ensuite sur ton commentaire :-)
                    +Internet est petit dans le monde des développeurs ^^

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + mou7a + · 25 mai 2012 à 13 h 01 min +

                    +

                    bonjour, Je sais que l’article date un peu mais je n’arrive pas à récupérer la source elle n’est plus disponible merci!!!

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + HugoPoi + · 14 juin 2012 à 23 h 00 min +

                      +

                      la source est dans le fichier HTML.

                      + +
                      +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + houhou + · 10 juillet 2012 à 9 h 29 min +

                    +

                    Bonjour HugoPoi;
                    +j’ai besoin du script pour récupérer le contenu d’une div généré en js,l’envoyer à une autre page de traitement pour le convertir en pdf.c’est urgent,merci!!!

                    + +
                    +
                    + + +
                    + +
                    +
                    +
                    +
                    +

                    + Geolocalise Ip + · 25 avril 2014 à 10 h 42 min +

                    +

                    Bonjour,
                    +Merci beaucoup pour l’idée, mais ta page : http://blog.hugopoi.net/wp-content/uploads/2010/12/script.html est morte …

                    +

                    Quant à « houhou », il est formidable, je prendrai bien son adresse IP à celui là pour voir de quel pays il vient !!!! Grrr ….
                    +Bon c’était en 2012, il a dû changer de métiers depuis !

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + HugoPoi + · 9 mai 2014 à 18 h 12 min +

                      +

                      Le lien n’est pas mort mais le script se lance même sans paramètres valide donc tu es redirigé quand tu clic.
                      +Fait un clic droit enregistrer sous.

                      + +
                      +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Gab Wink + · 13 février 2015 à 0 h 06 min +

                    +

                    Merci, ceci m’a été utile (et c’est toujours cool de le dire).

                    + +
                    +
                    + +
                    +
                    +
                    +

                    Laisser un commentaire

                    Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                    +
                    +
                    +

                    + +

                    +
                    +
                    +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +
                    + + +
                    + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/5a6cdba56a6ee15e424867b64bdabff902732013.00000133.html b/www/.content.EZtzwPjb/html/5a6cdba56a6ee15e424867b64bdabff902732013.00000133.html new file mode 100644 index 0000000..1388d13 --- /dev/null +++ b/www/.content.EZtzwPjb/html/5a6cdba56a6ee15e424867b64bdabff902732013.00000133.html @@ -0,0 +1,1370 @@ + + + + + + + + Réparations Samsung SyncMaster 2232BW – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +
                    +

                    Allô docteur on a un problème,

                    +

                    En ce dimanche calme avant la fin de mes partiels, mon écran Samsung SyncMaster 2232BW commençait à faire des siennes. Celui-ci depuis un mois ou deux clignotait de façon systématique au démarrage, au début pendant seulement quelques secondes, puis au fur et à mesure, de plus en plus jusqu’à devoir attendre 10 minutes pour que je puisse l’utiliser. Après 3 ans et 4 mois de bons et loyaux services, il voulait me quitter. J’ai tenté le support Samsung par email avec peu d’espoir car l’écran a dépassé sa garantie de 4 mois (oui oui les bâtards -> obsolescence programmée). Et donc j’ai eu le droit à un joli mail automatique me disant de contacter un numéro non surtaxé (mais avec combien de temps d’attente ?), ce que je n’ai pas fait car je n’avais pas envie de passer 30min au téléphone pour au final avoir un « On est désolé mais on ne peut rien faire pour vous car la garantie est dépassée, mais on peut envoyer votre écran en SAV pour faire un devis pour seulement 50 boules ». Concernant le support email de Samsung France, je leur donne une note de 0/20 puisque ce n’est pas un support mais une redirection vers le téléphone.

                    +

                    +

                    Symptômes

                    +

                    Clignotements de l’écran et de la LED power systématiques à chaque démarrage de l’écran. Je me suis tout de suite douté d’un problème d’alimentation et après quelques recherches sur google, confirmation du problème sur beaucoup d’écrans et téléviseurs. Dans 99% des cas ce clignotement est dû à des condensateurs défectueux qu’il faut simplement changer :-D

                    +

                    Démontage

                    +

                    Donc après avoir cerné le problème, j’ai ouvert l’écran pour chercher les condos défectueux. J’ai trouvé une petite vidéo pour mon écran :

                    +

                    +

                    Voici quelques photos en plus pour vous aider :

                    +

                    Les outils que j’ai utilisé pour le démontage

                    +

                    Position des clips

                    +

                    Carte d’alimentation dans son emplacement

                    +

                    Et voici les condensateurs qui posent problèmes. Comme vous pouvez le voir sur la photo, ils sont très facilement identifiable car ils sont bombés sur le dessus.

                    +

                    Condensateurs défectueux

                    +

                    Vous devez donc acheter des condensateurs de remplacement, par exemple sur Conrad.

                    +

                    Mes condensateurs suivant étaient endommagés:

                    +
                      +
                    • 1 de 330uF 25V remplacé par un 470uF 25V
                    • +
                    • 3 de 820uF 25V remplacé par des 1000uF 50V
                    • +
                    +

                    Pour la réparation, il vous faut un fer à souder avec une panne pas trop grosse mais d’une grosse puissance car les soudures sont très solides (j’ai galéré avec un fer pro qui monte jusqu’à 400°).

                    +

                    Tout remarche nickel après remontage, plus de clignotement pour seulement quelques euros.

                    +

                    edit du 19 aout 2014 : j’ai trouvé le service manuel de l’écran si besoin samsung_2232bw_chassis_lpe22bs_sm

                    + + +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +

                    + 41 commentaires

                    +
                    + +
                    +
                    +
                    +
                    +

                    + c'est_moi + · 30 janvier 2012 à 18 h 57 min +

                    +

                    Mille mercis et mille félicitations pour cette fiche technique si pédagogue.

                    +

                    J’espère que le partiels se passent plus que parfait !!

                    +

                    J’ai gardé l’url de la page pour réparer mon écran dans un petit mois : j’espère que la page soit toujours là ;-)

                    +

                    Merci encore.

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Maxime + · 5 mai 2012 à 12 h 31 min +

                    +

                    Bonjour HugoPoi!

                    +

                    Merci pour toutes vos infos et votre topic, je voulais avoir quelques précisions sur les condos à changer pour samsung 2232bw, je veux passer commande mais j’ai un problème avec les dimensions des condos, si vous pouvez m’informer de ce que je pourrais acheter car il y a trop de références. En vous remerciant A+ Maxime

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + HugoPoi + · 14 juin 2012 à 22 h 56 min +

                      +

                      N’importe quel condensateur polarisé avec des caractéristiques proches devrait marché.

                      + +
                      +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + gaubjezj + · 14 juin 2012 à 22 h 32 min +

                    +

                    Merci pour le tuto qui m’a bien aidé.
                    +J’ai utilisé un fer de 40 W avec une panne fine et
                    +une pompe à dessouder et j’ai retiré les condensateurs sans problème.
                    +Merci encore (3€40 pour le dépannage).

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + DragonTribal + · 2 juillet 2012 à 12 h 02 min +

                    +

                    super merci pour manifique tuto.
                    +Est-il possible de changer les 5 condensateurs 820uF 25V par des 1000uF 50V? car moi mes 5 condensateurs sont presque HS ;-)

                    +

                    Cordialement

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + HugoPoi + · 2 juillet 2012 à 12 h 25 min +

                      +

                      Oui je penses que ça marchera étant donné que c’est des valeurs plus grandes.

                      + +
                      +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + FRED + · 11 juillet 2012 à 19 h 11 min +

                    +

                    Bravo, MERCI.
                    +Je n’ai encore rien fait…mais j’ai le même problème, et tu me donnes la solution.
                    +Super.

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + daninpet + · 31 août 2012 à 10 h 10 min +

                    +

                    Merci mille fois!

                    +

                    J’avais ce problème, et j’ai emmener la photo des trucs a remplacer chez le réparateur du coin et voila!! Ça m’a coûté 7 Euros (mais j’habite en Thaïlande)

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + moi + · 15 novembre 2012 à 15 h 25 min +

                    +

                    super mon 2232bw vient de lâcher, les 3 + 1 condos sont gonflés j ai trouvé un 330 en 35v qui traîné sur un écran mort et j’ai commander 5 1000uf 35v sur ebay pour moins de 3 dollars, ca devrait le faire j’espere j’attend d’être livré merci! par contre j’ai qu’un gros pistolet a soudure et un gros fil d’étain, c’est pas évident mais bon ca le fait quand même =)

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + moi + · 7 décembre 2012 à 9 h 33 min +

                      +

                      parfait je vient de recevoir les condos; j ai meuler la panne du fer a souder pour la tailler en mine de crayon et j ai reussi a les souder facilement ils étaient un peu plus gros mais ca passe tout juste, mais attention ne pas prendre des plus gros! l écran fonctionne nickel maintenant.

                      + +
                      +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Croco + · 19 janvier 2013 à 18 h 39 min +

                    +

                    Je souhaiterai savoir si tu as utilisé un fer à souder bien précis étant donné que la carte est une multi couche.
                    +Merci

                    + +
                    +
                    + + +
                    + +
                    +
                    +
                    +
                    +

                    + momo + · 10 juin 2013 à 13 h 15 min +

                    +

                    slut je voudrai savoir ou trouvé les condansateur a changer sur mon ecran qui clignote

                    + +
                    +
                    + + +
                    + +
                    +
                    +
                    +
                    +

                    + lokmane + · 5 juillet 2013 à 16 h 08 min +

                    +

                    merci j’avais un ecran rouge ! et c’etais la tresse qui relie mon ecran votre page m’a aider a l’ouvrir et a le reparer merci bien

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + ML + · 21 août 2013 à 19 h 11 min +

                    +

                    Merci ! Ecran réparé. Halte à l’obsolescence programmée.

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + raymond + · 31 octobre 2013 à 13 h 20 min +

                    +

                    ai vu votre vidéo et les explications pour la reparation de mon écran , apparemment le méme probléme l écran passe au noir apres quelque seconde , j ai vu un le condensateur en bas a gauche gonflé , je l ai fait changé (10€) les autre condensateur étant toujour bon d après la personne qui me l a changé , mais j ai toujour le méme probléme cela peut il venir de la carte video a gauche ?

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + HugoPoi + · 20 décembre 2013 à 12 h 27 min +

                      +

                      Si la led bleu du bouton power s’éteint aussi c’est un problème d’alimentation sinon c’est plus compliqué et ça peut provenir de condensateurs sur la partie vidéo. Changé tous les plus gros condensateurs sur la partie alimentation pourrait être un bon début même si ils ne paraissent pas endommagé.

                      + +
                      +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + damien + · 4 novembre 2013 à 0 h 29 min +

                    +

                    bonjour,

                    +

                    j’ai des crasses coincées entres l’écran et le truc juste derrière, est ce qu’on sais les enlever en démontant la dalle ?

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + HugoPoi + · 20 décembre 2013 à 12 h 28 min +

                      +

                      Je ne sais si cette partie de la dalle est démontable, je penses que c’est collé mais vous pouvez essayer.

                      + +
                      +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + mac + · 1 décembre 2013 à 17 h 30 min +

                    +

                    Merci HugoPoi, avec ces excellents conseils et tuto vidéo, mon écran est reparti pour une nouvelle vie.
                    +Pour les composants, si vous êtes sur Paris ou proche. La boutique RAM électroniques est une bonne adresse, 138 bd Diderot 75012 Paris (Place de la Nation).

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Bouddhid + · 16 janvier 2014 à 19 h 21 min +

                    +

                    Merci beaucoup pour ces conseils ! J’étais à 2 doigts de jeter mon écran, le voilà comme neuf pour moins de 5€ ! Vive la bricole !

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Vincent + · 17 mai 2014 à 16 h 45 min +

                    +

                    Alors là merci.

                    +

                    Pour ce post, les photos, la vidéo, tout y est.

                    +

                    J’ai démonté l’écran assez vite, enlevé la carte, regarder quel condensateurs étaient gonflés,(il y en avaient 4), un magasin d’électronique sur lyon et une heure de démontage, soudure, remontage plus tard, voilà, c’est tout beau.
                    +Ca ne clignote plus, ça s’allume comme avant, comme neuf.

                    +

                    Et dire que j’allais jeter cet écran et claquer 350 euros pour un neuf…

                    +

                    Coût de l’opération pour 4 condensateurs, du fil d’étain 7 euros.

                    +

                    Je précise que je n’avais jamais fais de soudure sur composant électronique auparavant.
                    +Comme quoi cette opération de réparation est à la portée de tous.

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Julot + · 6 juillet 2014 à 13 h 49 min +

                    +

                    Site vraiment détaillé et très claire. J’ai pu dépanner mon écran avec succès. Merci beaucoup pour ces précieuses explications.

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + PaniK31 + · 29 juillet 2014 à 9 h 21 min +

                    +

                    Pas besoin d’une grosse puissance pour le fer, il faut au préalable gratter le vernis sur l’étain afin de pouvoir le faire fondre plus facilement

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + R211_IP-45130B + · 20 août 2014 à 14 h 04 min +

                    +

                    Bonjour à tous,

                    +

                    Une âme charitable peut-elle me communiquer ce qui est gravé sur la résistance CMS R211 de la carte d’alimentation/inverter IP-45130B qui équipe le SAMSUNG 2232BW ? Cette résistance a pris un coup de tournevis et je n’arrive pas à déterminer sa valeur de résistance car son marquage est effacé et comme le composant est abimé la mesure à l’ohmmètre indique l’infinie.

                    +

                    Merci par avance.

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + roger + · 24 octobre 2014 à 17 h 21 min +

                    +

                    Ca refonctionne après échange de 4 condensateurs :
                    +-un 330uf25v remplacé à l’identique.
                    +-trois 820uf25v remplacés par 1000uf25v.
                    +Le tout pour quelques €. Le plus dur était le dessoudage, la tresse n’était pas très efficace contrairement à la pompe.
                    +Grand merci à HugoPoi.

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Max + · 26 février 2015 à 16 h 28 min +

                    +

                    ENORME MERCI!! J’ai réparé mon écran en 20mn pour 3,50€, il était à 2 doigts de partir à la déchetterie. Ca faisait des mois qu’il clignotait, et l’allumage mettait parfois plus d’une demi heure. J’ai changé 5 condos 820uf25v et 1 330uf25v, par exactement les mêmes en neuf, et là il démarre au quart de tour! Ca fait plaisir! :)

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + rocco michelle + · 7 octobre 2015 à 10 h 16 min +

                      +

                      Bonjour je ne sais si vous verrez mon message mais je tente…je cherche quelqu’un qui accepterait de changer mes condensateurs sur mon samsung, les réparateurs me demandent 70 à 80 euros et encore ils n’ont pss envie de le faire et me disent d’acheter un nouvel écran. j’aurais bien tenter mais je n’ai pas de matériel et j’ai lu que les condo pouvaient être très dangereux s’ils avaient de la charge alors j’ai la trouille de bidouiller pq je n’y connais rien. si vous êtes de lyon acccepteriez vous de changer mes condensateurs pour 45 euros? merci de votre réponse.

                      + +
                      +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + lecakeseb + · 27 juillet 2015 à 15 h 26 min +

                    +

                    Bonjour,

                    +

                    J’ai utilisé la vidéo pour démonter mon écran afin de le nettoyer de 4 bêtes d’orage infiltrés entre le premier écran (noir) et la dalle (blanche) de mon samsung SyncMaster 2232W

                    +

                    Petits conseils afin de modérer ce que j’ai pu voir dans cette vidéo :

                    +

                    0 : aspirez, nettoyez l’extérieur de l’écran avant de l’ouvrir et nettoyez la table qui vous servira d’atelier, pour éviter les poussières qui s’infiltreront forcément plus tard si vous ne le faites pas…
                    +1 : pour ouvrir, utilisez plutôt un couteau à enduire pour la première partie (le cadre). Vous n’abîmerez ainsi pas du tout l’écran. Soyez patients, ne forcez pas ! ça viendra doucement, mais ça viendra. Il m’a fallu à peine 10 minutes, sans détériorer l’écran, sans le griffer… Il est encore nickel !
                    +2 : attention à ne pas déconnecter les fils reliant le cadre à la carte. Inutile pour simplement nettoyer l’écran.
                    +3 : pour séparer les deux éléments de la dalle entre lesquels les bêtes se sont infiltrées, les doigts suffisent, pas besoin d’outils qui viendraient les endommager. La dalle blanche reste à l’horizontale, l’écran noir sera tenu à la verticale.
                    +4 : utiliser un chiffon doux ne peluchant pas pour enlever les bêtes (faites-vous aider de quelqu’un qui les enlèvera pendant que vous tenez l’écran extérieur en position verticale).
                    +5 : repositionnez la colle d’étanchéité qui aurait pu se déplacer, avant de repositionner les deux écrans.
                    +6 : commencer par refermer par le bas de l’écran (sinon les éléments de réglage situés au bas de l’écran – luminosité, contraste,…- ne se replaceront pas correctement).
                    +7 : Une fois l’écran refermé, j’ai appliqué un peu de « barrage aux insectes », avec un chiffon à l’arrière de mon écran en insistant surtout sur les bouches d’aération par lesquelles les maudites bestioles ont du s’infiltrer. En espérant ne pas avoir à ouvrir !

                    +

                    Bon courage à vous !

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Michel Jousserandot + · 20 janvier 2017 à 20 h 41 min +

                    +

                    Merci pour les conseils au démontage.
                    +J’avais un problème un peu différent :l’écran ne s’allumait plus du tout. Avec un copain beaucoup plus malin que moi, on a détecté 2 fusibles dont l’un était fichu. On l’a remplacé par un petit fil de cuivre. Et tout a remarché comme avant.
                    +Il faut surtout faire attention quand on teste la partie haute tension
                    +Michel.

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Crec + · 14 juillet 2017 à 10 h 20 min +

                    +

                    Bonjour. Très bons conseils avertis. Merci beaucoup.
                    +Peut-on avoir les mêmes conseils pour un écran BX2250.
                    +Merci par avance.
                    +Crec

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + HugoPoi + · 6 août 2017 à 14 h 03 min +

                      +

                      J’ai pas de BX2250 donc dans le détails non mais si c’est les même symptômes ça doit la même procédure.

                      + +
                      +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Ferronnier + · 10 août 2017 à 17 h 42 min +

                    +

                    Un grand merci !
                    +J’ai changé tous les condensateurs de la partie alimentation de la carte, en déportant certains qui n’avaient pas le même format qu’à l’origine, et ça tourne nickel !

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Nours + · 1 décembre 2017 à 15 h 17 min +

                    +

                    Ca fait des années que j’ai cet article enregistré dans un coin, en nourrissant l’espoir d’avoir un jour le courage de réparer ce foutu écran… Après plus de cinq ans c’est chose faite \o/
                    +Un giga, hypra, immense merci pour ce tutoriel tellement bien expliqué et facile d’accès (je n’avais pas touché à un fer à souder depuis… Oh boy 15 ans déjà).
                    +Après une longue pause, l’écran reprend du service… Jusqu’à la prochaine panne /o/

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Alex + · 11 août 2018 à 13 h 28 min +

                    +

                    Quelqu’un sait qui pourrait me le faire svp j ai le même problème mais aucun matériel

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + David + · 5 février 2019 à 21 h 06 min +

                    +

                    Merci Hugo pour ce tuto qui m’a déjà servi en 2013 et qui va me resservir aujourd’hui car mon 2ème 2232bw commence à avoir les mêmes symptômes.

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + yvan + · 23 novembre 2019 à 17 h 14 min +

                    +

                    Bonjour
                    +j’ai tenté de changer le condensateur qui avait l’air naze mais ça n’a pas marché … toujours le bouton bleu allumé, l’écran est reconnu par Windows 10 même si l’écran est éteint
                    +grâce au service manuel de l’écran fourni plus haut, j’ai vérifié les tensions jusque sur la carte de la dalle et elles sont correctes, ainsi que sur la carte elle-même, tout est ok, donc je pense que ce n’est plus un problème de condensateur
                    +pour les fusibles, ils ressemblent plutôt à des composants qu’à de simple fusibles, mais comme j’ai les bonnes tension, je ne pense pas que ça vienne de là
                    +j’ai bien peur que ce soit la dalle qui soit naze ? quelqu’un a t il des idées supplémentaires avant que je le jette avec grand regret (c’est un 2032bw, mais c’est la même chose, même si ma carte électronique est un peu différente car plus récente
                    +merci d’avance pour vos conseils

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + yvan + · 24 novembre 2019 à 17 h 26 min +

                    +

                    finalement j’ai trouvé, c’est un petit fusible vert qui ressemble à une résistance mais tout vert avec écrit 4A LF qui assure l’alimentation de la dalle.
                    +En le shuntant, mon écran a retrouvé l’image.
                    +après enquête il s’agit d’un fusible pico de 4ampères de chez little fuse, pas du tout évident à trouver
                    +Résolu !

                    + +
                    +
                    + +
                    +
                    +

                    + Reflow Dell 1546 | HugoPoi + · 22 août 2016 à 16 h 09 min +

                    +

                    […] « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable de marque Dell un 1546 pour être précis. Encore […]

                    + +
                    +
                    + +
                    +
                    +

                    + Reflow Dell Inspiron 1546 – HugoPoi + · 23 juin 2017 à 23 h 18 min +

                    +

                    […] d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un […]

                    + +
                    +
                    + +
                    +
                    +
                    +

                    Répondre à David Annuler la réponse

                    Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                    +
                    +
                    +

                    + +

                    +
                    +
                    +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +
                    + + +
                    + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/5a6ddb0c1f2ec6ce17f2ef583b731aa0631136ac.00000190.xml b/www/.content.EZtzwPjb/html/5a6ddb0c1f2ec6ce17f2ef583b731aa0631136ac.00000190.xml new file mode 100644 index 0000000..96c2424 --- /dev/null +++ b/www/.content.EZtzwPjb/html/5a6ddb0c1f2ec6ce17f2ef583b731aa0631136ac.00000190.xml @@ -0,0 +1,99 @@ + + + Commentaires sur : Réparer et transformer une clé USB de 4Go en 8Go + + http://blog.hugopoi.net/2013/05/11/reparer-et-transformer-une-cle-usb-de-4go-en-8go/ + Internet, Hardware et Bidouille + Sat, 24 Oct 2015 11:39:13 +0000 + hourly + 1 + https://wordpress.org/?v=4.4.2 + + Par : Jean + http://blog.hugopoi.net/2013/05/11/reparer-et-transformer-une-cle-usb-de-4go-en-8go/#comment-13947 + + Wed, 22 Apr 2015 18:18:32 +0000 + http://blog.hugopoi.net/?p=768#comment-13947 + + Je penche pour ma part pour les raisons 1 et 2.

                    +

                    La première raison car le coût de la flash est diminuée plus on en commande, et aussi ça évite d’avoir deux chaines d’assemblage pour le PCB de la clé.

                    +

                    La seconde raison car c’est ce qui est pratiqué par pas mal de fabricants du domaine du semi-conducteur pour « créer » une gamme : AMD n’hésitait pas à vendre en entrée de gamme des processeurs amputés de certains coeurs défectueux. Et si il manque des processeurs défectueux … et bien on désactive quand même des coeurs !

                    +

                    Il y a aussi un paramètre à prendre en compte : la redevance sur la copie privée. Elle est proportionnelle à la capacité du support de stockage (cf. http://www.culturecommunication.gouv.fr/Politiques-ministerielles/Propriete-litteraire-et-artistique/Commission-pour-la-remuneration-de-la-copie-privee/Questions-pratiques/Les-montants-de-la-Remuneration-pour-Copie-Privee). Elle est de 0,64€ pour une clé de 4 Go, et 1,04€ pour une clé de 8 Go.

                    +]]>
                    +
                    + + Par : HugoPoi + http://blog.hugopoi.net/2013/05/11/reparer-et-transformer-une-cle-usb-de-4go-en-8go/#comment-238 + + Sat, 04 Jan 2014 11:38:15 +0000 + http://blog.hugopoi.net/?p=768#comment-238 + + à moitié réparer ;-)

                    +]]>
                    +
                    + + Par : watchix + http://blog.hugopoi.net/2013/05/11/reparer-et-transformer-une-cle-usb-de-4go-en-8go/#comment-236 + + Sat, 28 Dec 2013 09:40:53 +0000 + http://blog.hugopoi.net/?p=768#comment-236 + + « File is deleted » :-(

                    +]]>
                    +
                    + + Par : diop + http://blog.hugopoi.net/2013/05/11/reparer-et-transformer-une-cle-usb-de-4go-en-8go/#comment-232 + + Thu, 14 Nov 2013 14:12:34 +0000 + http://blog.hugopoi.net/?p=768#comment-232 + + salut pour ma cle usb

                    +]]>
                    +
                    + + Par : diop + http://blog.hugopoi.net/2013/05/11/reparer-et-transformer-une-cle-usb-de-4go-en-8go/#comment-231 + + Thu, 14 Nov 2013 14:11:34 +0000 + http://blog.hugopoi.net/?p=768#comment-231 + + pour répéré cle usb

                    +]]>
                    +
                    + + Par : Amedoumba + http://blog.hugopoi.net/2013/05/11/reparer-et-transformer-une-cle-usb-de-4go-en-8go/#comment-149 + + Mon, 22 Jul 2013 12:15:48 +0000 + http://blog.hugopoi.net/?p=768#comment-149 + + Hello !
                    +Intéressant comme manip. J’ai une de mes clés USB avec le même genre de probleme. Je vais donc tester et voir si cela fonctionne. Je n’ai rien à perdre de toute façon.
                    +Merci en tout cas.

                    +]]>
                    +
                    + + Par : 2Pi informatique + http://blog.hugopoi.net/2013/05/11/reparer-et-transformer-une-cle-usb-de-4go-en-8go/#comment-140 + + Thu, 16 May 2013 07:01:40 +0000 + http://blog.hugopoi.net/?p=768#comment-140 + + Je n’avais jamais entendu parler de ce genre de manip, et du gain potentiel de capacité.

                    +

                    C’est assez étonnant, et je me demande si tous les constructeurs « brident » la capacité des clés usb …

                    +]]>
                    +
                    +
                    +
                    diff --git a/www/.content.EZtzwPjb/html/5b71793225e3dc653bb7c31a2dd46daa2156b080.00000477.xml b/www/.content.EZtzwPjb/html/5b71793225e3dc653bb7c31a2dd46daa2156b080.00000477.xml new file mode 100644 index 0000000..a65710b --- /dev/null +++ b/www/.content.EZtzwPjb/html/5b71793225e3dc653bb7c31a2dd46daa2156b080.00000477.xml @@ -0,0 +1,43 @@ + + + open broadcaster studio – HugoPoi + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Mon, 22 Aug 2016 14:10:26 +0000 + fr-FR + hourly + 1 + https://wordpress.org/?v=4.6.1 + + Et si on faisait sans Twitch et sans Youtube + http://blog.hugopoi.net/2015/10/24/et-si-on-faisait-sans-twitch-et-sans-youtube/ + http://blog.hugopoi.net/2015/10/24/et-si-on-faisait-sans-twitch-et-sans-youtube/#respond + Sat, 24 Oct 2015 13:07:55 +0000 + + + + + + + + + + + + + + http://blog.hugopoi.net/?p=909 + Lire la suite »

                    ]]>
                    + http://blog.hugopoi.net/2015/10/24/et-si-on-faisait-sans-twitch-et-sans-youtube/feed/ + 0 +
                    +
                    +
                    diff --git a/www/.content.EZtzwPjb/html/5ba67cd5fe38870d8e7e0c34bfffb030e5b6ccd0.00001269.json b/www/.content.EZtzwPjb/html/5ba67cd5fe38870d8e7e0c34bfffb030e5b6ccd0.00001269.json new file mode 100644 index 0000000..c719f57 --- /dev/null +++ b/www/.content.EZtzwPjb/html/5ba67cd5fe38870d8e7e0c34bfffb030e5b6ccd0.00001269.json @@ -0,0 +1 @@ +{"version":"1.0","provider_name":"HugoPoi","provider_url":"http:\/\/blog.hugopoi.net","author_name":"HugoPoi","author_url":"http:\/\/blog.hugopoi.net\/author\/hugopoi\/","title":"IPv6 - Intro","type":"rich","width":600,"height":338,"html":"
                    IPv6 – Intro<\/a><\/blockquote>\n + + + + + + + + + + + + + + + + + +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +

                    Optimus vs Mégatron

                    Je suis l’heureux acquéreur #oupas d’un pc portable avec technologie Optimus de Nvidia (voir Asus U36JC). Après quelques jours de recherches et de tests je vais essayer de vous faire un résumé complet sur le pourquoi de comment ça fonctionne. (suite…)

                    +
                    Par HugoPoi, il y a
                    +
                    + +
                    +
                    +
                    +
                    + +
                    +
                    + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/5c405998aef4e907bccfa3acb4c08227c7164c61.00000380.html b/www/.content.EZtzwPjb/html/5c405998aef4e907bccfa3acb4c08227c7164c61.00000380.html new file mode 100644 index 0000000..e5a6b8d --- /dev/null +++ b/www/.content.EZtzwPjb/html/5c405998aef4e907bccfa3acb4c08227c7164c61.00000380.html @@ -0,0 +1,364 @@ + + + + + + + Deezer – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +

                    Pascal Negre tu m’emmerdes

                    Bon sérieux, Pascal Negre il commence à me les briser sec. Après Deezer qui est devenu une belle merde car il n’y a plus que les Black Eyed Peas, Justin et Britney, la plateforme est devenue complètement payante et cela reste cher au vu du catalogue proposé. Puis l’année dernière Lire la suite…

                    +
                    Par HugoPoi, il y a
                    +
                    + +
                    +
                    +
                    +
                    + +
                    +
                    + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/5caa3770b945841dd291bf473257f93a4e7a560e.00001314.json b/www/.content.EZtzwPjb/html/5caa3770b945841dd291bf473257f93a4e7a560e.00001314.json new file mode 100644 index 0000000..a6a9e27 --- /dev/null +++ b/www/.content.EZtzwPjb/html/5caa3770b945841dd291bf473257f93a4e7a560e.00001314.json @@ -0,0 +1 @@ +{"version":"1.0","provider_name":"HugoPoi","provider_url":"http:\/\/blog.hugopoi.net","author_name":"HugoPoi","author_url":"http:\/\/blog.hugopoi.net\/author\/hugopoi\/","title":"Reflow Dell Inspiron 1546","type":"rich","width":600,"height":338,"html":"
                    Reflow Dell Inspiron 1546<\/a><\/blockquote>\n + + + + + + + + + + + + + + + + + +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +

                    Plugin WordPress

                    Cela va faire plus d’un mois que j’ai ouvert mon blog, j’ai donc pu prendre en main le CMS WordPress. Alors je vais faire un petit retour sur les plugins que j’ai trouvés et plus particulièrement ceux que j’utilise.

                    +

                    Dans la catégorie Décoration j’ai adopté :

                    +

                    TweetMeme Retweet Button

                    +

                    Ajoute un joli bouton TweetMeme pour RT mes articles.

                    +

                    TwitterWidget

                    +

                    Ajoute un Widget qui permet d’afficher ma Timeline Twitter sur la sidebar du blog.

                    +

                    Contact Form 7

                    +

                    Permet de créer des formulaires de contact, c’est simple et sobre. Je l’ai utilisé pour ma page contact.

                    +

                    Dans la catégorie Administration et Maintenance :

                    +

                    WP Maintenance Mode

                    +

                    Cette extension permet de passer le blog en mode maintenance, avec la possibilité de personnaliser la page affichée et elle dispose d’un compte à rebours.

                    +

                    (suite…)

                    +
                    Par HugoPoi, il y a
                    +
                    + +
                    +
                    +
                    +
                    + +
                    +
                    + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/5d1b2ef2f5fd4f108bb63476a123c2b58ff1ebf8.00000344.html b/www/.content.EZtzwPjb/html/5d1b2ef2f5fd4f108bb63476a123c2b58ff1ebf8.00000344.html new file mode 100644 index 0000000..bbb75f9 --- /dev/null +++ b/www/.content.EZtzwPjb/html/5d1b2ef2f5fd4f108bb63476a123c2b58ff1ebf8.00000344.html @@ -0,0 +1,365 @@ + + + + + + + Asus N53SN – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +

                    Écran miraculé d’un Asus N53SN

                    Comme d’habitude tantine vient me voir pour me dire que son écran d’ordinateur ne marche plus. Le pc portable, un Asus N53SN d’un plus de 2 ans de services, présente un écran noir complètement éteint mais le portable fonctionne parfaitement sur un écran externe. Ni une ni deux je commence par démonter la bête pour récupérer la référence exacte du moniteur.

                    +

                    asusn53sn_open_lcd_front (suite…)

                    +
                    Par HugoPoi, il y a
                    +
                    + +
                    +
                    +
                    +
                    + +
                    +
                    + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/5d3fc64a00090bc524ed7153b3bee5ed3623bd04.00000209.html b/www/.content.EZtzwPjb/html/5d3fc64a00090bc524ed7153b3bee5ed3623bd04.00000209.html new file mode 100644 index 0000000..0fadaab --- /dev/null +++ b/www/.content.EZtzwPjb/html/5d3fc64a00090bc524ed7153b3bee5ed3623bd04.00000209.html @@ -0,0 +1,680 @@ + + + + + + + + Installer Mac OS X Mavericks avec VirtualBox – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +
                    +

                    Capture Installation Mac OS X MavericksComme Apple c’est des blaireaux et que j’avais besoin d’un environnement de développement pour iDaube. J’ai du me résoudre à installer un Mac OS X dans une machine virtuel.

                    +

                    Ce dont vous avez besoin :

                    + +

                    Moi je travail sous Linux Mint mais vous devriez réussir à faire les manipulations sous Windaube.

                    +

                    1) Préparer la clé pour pouvoir booter dans la VM

                    +

                    Au début j’ai essayer de convertir le .dmg en ISO avec un outil de conversion mais cela ne marche pas car l’opération doit endommager le système de boot mis en place par Niresh. Donc la seul solution que j’ai trouvé c’est de faire une clé USB comme indiqué par Niresh avec dd.

                    +

                    Sous Mint/ubuntu/debian :

                    +

                    Une façon simple sous Linux d’identifier votre clé usb c’est avec la commande « mount », cela va lister toutes les partitions monter avec les périphériques correspondants.

                    +
                    hugo@hugo-NB ~ $ mount
                    +/dev/sda2 on /boot type ext3 (rw)
                    +/dev/mapper/lmvg-home on /home type ext4 (rw)
                    +/dev/mapper/lmvg-var on /var type ext4 (rw,errors=remount-ro)
                    +/dev/sda1 on /boot/efi type vfat (rw)
                    +binfmt_misc on /proc/sys/fs/binfmt_misc type binfmt_misc (rw,noexec,nosuid,nodev)
                    +gvfsd-fuse on /run/user/hugo/gvfs type fuse.gvfsd-fuse (rw,nosuid,nodev,user=hugo)
                    +/dev/mapper/lmvg-games on /media/hugo/90d3426d-d8b2-4ba4-a7df-98363b9b40d9 type ext4 (rw,nosuid,nodev,uhelper=udisks2)
                    +/dev/sdb1 on /media/hugo/HugoKey type ext4
                    +

                    Moi ma clé usb c’est /dev/sdb. Donc après la commande pour balancer le dmg sur la clé :

                    +

                    ATTENTION LA COMMANDE DD ci-dessous peut casser votre système si vous le faites sur le mauvais périphérique.

                    +
                    hugo@hugo-NB ~ $ sudo umount /media/hugo/HugoKey
                    +hugo@hugo-NB ~ $ sudo dd if=mavericks.dmg of=/dev/sdb bs=1M
                    +

                    Sous Windaube

                    +

                    Je ne vais pas détailler la procédure mais vous avez 2 solutions, soit vous utilisez la commande dd disponible avec MinGW dans les outils Msys. Ou vous utilisez Win32DiskImager (je vous recommande cette solution qui est la plus simple).

                    +

                    2) Configurer votre VM dans VirtualBox

                    +

                    Voilà les paramètres que j’ai utilisé pour installer:

                    +
                      +
                    • OSType : Mac OSX 10.9 64bits
                    • +
                    • RAM : 2048Mo
                    • +
                    • Activer l’accélération Graphique 3D
                    • +
                    • Mémoire Vidéo : 128Mo
                    • +
                    • Désactiver l’EFI
                    • +
                    • VT activé
                    • +
                    • Pagination Imbriqué activé
                    • +
                    • IO-APIC activé
                    • +
                    • Horloge UTC désactivé
                    • +
                    • Son désactivé (uniquement pendant l’installation)
                    • +
                    • Réseau désactivé (uniquement pendant l’installation)
                    • +
                    • Un disque virtuel de 20 Go
                    • +
                    +

                    3) Booter sur la clé USB dans VirtualBox

                    +

                    Je n’ai pas réussi à booter sur la clé avec l’ajout d’un filtre USB dans la VM, donc la solution que j’ai trouvé sur le net est de créer un fichier lien de disque physique. Pour le créer c’est relativement simple :

                    +
                    hugo@hugo-NB ~ $ vboxmanage internalcommands createrawvmdk -filename usb.vmdk -rawdisk /dev/sdb
                    +

                    Une fois votre fichier vmdk créé vous pouvez l’ajouter dans votre VM comme un disque virtuel existant, prenez soins de mettre ce disque sur le port SATA 0 car VirtualBox ce base sur l’ordre des disques pour le boot. Moi j’ai eu des problèmes de droits avec mes périphériques USB donc j’ai exécuté la commande vboxmanage avec sudo puis j’ai aussi lancé virtualbox avec sudo.

                    +

                    Pour Windows la procédure plus en détaille est disponible sur ce blog.

                    +

                    4) Lancer l’installation dans VirtualBox

                    +

                    Vous lancez la vm et ça boot. Si vous avez une erreur du type Fatal impossible de trouver de quoi booter, vérifiez que vous avez bien mis la clé USB en disque SATA sur le port 0 et le disque virtuel sur le 1 ou plus. Moi ça été un peu long avant d’afficher le choix de la langue environ 60 secondes, cela doit être dû à la vérification de l’image d’installation. Au moment de choisir la partition d’installation, vous devez lancer l’outil de disque pour créer une partition sur le disque virtuel (dans le menu en haut), ensuite vous le fermez et l’installateur continu.

                    +

                    Pour information ma vm ne s’arrête pas correctement au niveau de l’affichage, je penses qu’il y a un problème de driver mais j’y connais que dalle en iDaube OSX. Une fois l’installation finit vous pouvez passer la connexion iCloud et laisser le script finir l’installation. Ensuite vous devez créer un utilisateur administrateur pour ne pas utiliser le compte root. Et je n’ai pas encore réussi à avoir du son peut-être en laissant activé pendant l’installation mais je sais que ça peut poser problème.

                    +

                    Les identifiants de connexion sont :

                    +
                      +
                    • login : root
                    • +
                    • mot de passe : niresh
                    • +
                    +

                    5) Configurer pour avoir une résolution correcte

                    +

                    Pour cela il faut éditer le fichier /Extra/com.chameleon.Boot.plist dans votre OS X fraichement installé et rajouter/éditer les balises suivantes :

                    +
                    <key>GraphicsEnabler</key>
                    +<string>y</string>
                    +<key>Graphics Mode</key>
                    +<string>1366x768x32</string>
                    +<key>Kernel Flags</key>
                    +<string>"Graphics Mode"="1366x768x32"</string>
                    +

                    Dans la balise string Kernel Flags, des flags sont surement déjà présent donc moi je les ai laissé, j’ai rajouter « Graphics Mode »= »1366x768x32 » à la fin.

                    +

                    Ensuite vous devez éditer votre fichier de configuration vbox avec les commandes suivantes :

                    +
                    hugo@hugo-NB ~ $ vboxmanage setextradata "MAC OS X" "CustomVideoMode1" "1366x768x32"
                    +hugo@hugo-NB ~ $ vboxmanage setextradata "MAC OS X" "GUI/CustomVideoMode1" "1366x768x32"
                    +

                    Voilà après c’est sans garantie de fonctionnement …

                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +

                    + 6 commentaires

                    +
                    + +
                    +
                    +
                    +
                    +

                    + sc + · 2 mars 2014 à 23 h 44 min +

                    +

                    Merci, excellent tuto ! En suivant les étapes ça passe tout seul.

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Djow + · 5 mars 2014 à 16 h 50 min +

                    +

                    Salut et merci pour le tuto , je suis bloqué a l instal « missing bluetooth controller transport » tester différente manip mais rien y fais . Une idée?

                    + +
                    +
                    + + +
                    + +
                    +
                    +
                    +
                    +

                    + LeKingduWar + · 7 mars 2014 à 10 h 22 min +

                    +

                    Hugo stp il me demande un controlleur bluetooth.

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + mac + · 7 mars 2014 à 14 h 03 min +

                    +

                    Thanks, I’m installing it right now. The usb key step wasnt necessary however, you can convert it directly from dmg to vdi with: « VBoxManage convertdd yourdmgfile.dmg yournewvdiimage.vdi ». Then boot from the converted .vdi file. Worked for me on Ubuntu 12.04 with Virtualbox 4.3.6.

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Niamor + · 16 avril 2014 à 10 h 30 min +

                    +

                    Bonjour à tous,
                    +Effectivement, l’étape avec la clé USB n’est pas nécessaire.
                    +Il est tout à fait possible d’installer l’OS directement en bootant sur l’iso qui sera préalablement monté via le lecteur virtuel.
                    +En tout cas, merci pour le tuto et les sources.
                    +Bonne continuation

                    + +
                    +
                    + +
                    +
                    +
                    +

                    Répondre à Niamor Annuler la réponse

                    Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                    +
                    +
                    +

                    + +

                    +
                    +
                    +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +
                    + + +
                    + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/5d637fbab704b3e83eb3b215e473e1e97729af95.00000249.html b/www/.content.EZtzwPjb/html/5d637fbab704b3e83eb3b215e473e1e97729af95.00000249.html new file mode 100644 index 0000000..7dd7ed7 --- /dev/null +++ b/www/.content.EZtzwPjb/html/5d637fbab704b3e83eb3b215e473e1e97729af95.00000249.html @@ -0,0 +1,817 @@ + + + + + + + + Install RancherOs on FreeNas 11.3 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +
                    +

                    Install RancherOs on FreeNas 11.3

                    +
                      +
                    • The automated RancherOs installation aka Docker VM has been removed in
                      +11.3
                    • +
                    • RancherOs doesn’t support EFI boot out of the box
                    • +
                    • Thanks to MKinney howto
                    • +
                    • This howto is provided without warranty
                    • +
                    • TODO the proper way of doing it is somewhere here
                    • +
                    • Some stuff about losetup
                    • +
                    +

                    1. Make a EFI bootable RancherOs image

                    + +
                      +
                    1. wget https://releases.rancher.com/os/v1.5.5/rancheros.iso
                    2. +
                    3. wget http://releases.ubuntu.com/18.04/ubuntu-18.04.4-live-server-amd64.iso
                    4. +
                    5. mkdir tmpubuntu tmprancheros tmprancheros_dest
                    6. +
                    7. sudo mount ubuntuserverlive.iso tmpubuntu
                    8. +
                    9. sudo mount rancheros.iso tmprancheros
                    10. +
                    11. fallocate -l 150M rancheros.img
                    12. +
                    13. gdisk rancheros.img o,y,n,enter,enter,ef00,w,Y
                    14. +
                    15. sudo losetup --partscan --show --find rancheros.img
                    16. +
                    17. sudo mkfs.fat /dev/loop2p1
                    18. +
                    19. sudo mount /dev/loop2p1 rancheros_dest
                    20. +
                    21. sudo cp -r tmprancheros/* tmprancheros_dest/
                    22. +
                    23. sudo cp -r tmpubuntu/EFI tmprancheros_dest/
                    24. +
                    25. Replace the content of tmprancheros_dest/boot/grub/grub.cfg with:
                    26. +
                    +
                    set timeout=5
                    +menuentry "Install Rancher" {
                    +    linux   /boot/vmlinuz-4.14.138-rancher rancher.autologin=tty1 rancher.autologin=ttyS0 rancher.autologin=ttyS1 console=tty1 console=ttyS0 console=ttyS1 printk.devkmsg=on panic=10 ---
                    +    initrd  /boot/initrd-v1.5.5
                    +}
                    +
                    +
                      +
                    1. sudo umount tmprancheros_dest
                    2. +
                    3. sudo losetup -d /dev/loop2
                    4. +
                    5. sudo umount tmpubuntu tmprancheros
                    6. +
                    +

                    2. Installation in FreeNas as Vm

                    +
                      +
                    1. Create a VM with EFI boot 2GB RAM choose virtio for all the driver
                      +better performance with linux
                    2. +
                    3. Add a RAW device and select your rancheros.img
                    4. +
                    5. Start the VM
                    6. +
                    7. Go to serial and in the shell cu -l /dev/nmdmXX at this point you should
                      +have a rancher shell
                    8. +
                    9. sudo fdisk /dev/vda then g,n,1,+200M,t,1,n,enter,enter,w you
                      +should something like at the end
                    10. +
                    +
                    Disk /dev/vda: 10 GiB, 10737418240 bytes, 20971520 sectors
                    +Units: sectors of 1 * 512 = 512 bytes
                    +Sector size (logical/physical): 512 bytes / 16384 bytes
                    +I/O size (minimum/optimal): 16384 bytes / 16384 bytes
                    +Disklabel type: gpt
                    +Disk identifier: 2B56EE14-44BF-6443-A197-EF73723B715F
                    +Device      Start      End  Sectors  Size Type
                    +/dev/vda1    2048   411647   409600  200M EFI System
                    +/dev/vda2  411648 20971486 20559839  9.8G Linux filesystem
                    +
                    +
                      +
                    1. Format the boot partition sudo mkdosfs -n RANCHER -F 32 /dev/vda1
                    2. +
                    3. Format the main filesystem sudo mkfs.ext4 -L RANCHER_STATE /dev/vda2
                    4. +
                    5. Create a cloud-config.yml see https://rancher.com/docs/os/v1.x/en/installation/running-rancheros/server/install-to-disk/ for minimum content
                    6. +
                    7. sudo mkdir /dev/sr0 for installer checking about iso mounted before
                      +install
                    8. +
                    9. Install ros with sudo ros install -t gptsyslinux -c cloud-config.yml -d /dev/vda -p /dev/vda2
                    10. +
                    11. mkdir /mnt/efipart && sudo mount /dev/vda1 /mnt/efipart
                    12. +
                    13. mkdir /mnt/installer && sudo mount /dev/vdb1 /mnt/installer
                    14. +
                    15. sudo cp -r /mnt/installer/EFI /mnt/efipart
                    16. +
                    17. Add a grub.cfg in /mnt/efipart/EFI/BOOT/grub.cfg with in it:
                      +You might want to add/remove autologin as you wish below

                      +
                        +
                      • tty0 I think is VNC but I havent tested it
                      • +
                      • ttyS0 is serial (I have autologin enable in serial see below)
                      • +
                      +
                    18. +
                    +
                    set timeout=1
                    +menuentry "Rancher from GPT" {
                    +    search --no-floppy --set=root --label RANCHER_STATE
                    +    linux    /boot/vmlinuz-4.14.138-rancher printk.devkmsg=on rancher.state.dev=LABEL=RANCHER_STATE rancher.state.wait panic=10 console=tty0 console=ttyS0 rancher.autologin=ttyS0
                    +    initrd    /boot/initrd-v1.5.5
                    +}
                    +
                    +
                      +
                    1. sudo umount /mnt/*
                    2. +
                    3. sudo reboot
                    4. +
                    5. You are good to go
                    6. +
                    7. You can remove the RAW device in the VM config in FreeNas
                    8. +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +

                    + 12 commentaires

                    +
                    + +
                    +
                    +
                    +
                    +

                    + Rudi Pittman + · 18 mars 2020 à 17 h 46 min +

                    +

                    Can I or can I not use my existing rancher img that was previously being used by freenas? ie

                    +

                    -rw-r–r– 1 root wheel 21474836480 Mar 18 02:13 rancher.img_docker1

                    +

                    I have around 10 different docker containers defined inside and I really don’t want to have to redo all of them.

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + HugoPoi + · 11 avril 2020 à 16 h 32 min +

                      +

                      If the image is a VM image like a zvol, I think it will work, but I’m not sure, it will only work if the 11.2 behavior is EFI compatible.
                      +You may patch your existing image/snapshot by justing installing the efi bootloader aka grub in it.

                      + +
                      +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Rob RD + · 4 avril 2020 à 19 h 36 min +

                    +

                    Parfait – Merci Beaucoup! :)

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + dario + · 12 avril 2020 à 14 h 07 min +

                    +

                    Thanks for this guide. I am stuck at Step 12:
                    +> sudo mount /dev/vdb1 /mnt/installer
                    +ther is no /dev/vdb1, regardingless if I choose to boot at step 10 or not

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + HugoPoi + · 22 avril 2020 à 23 h 34 min +

                      +

                      Your installer may be on a different disk if you choose SCSI in place of virtio when you add the raw image device in Freenas, you can identified with

                      +

                      cat /proc/partitions

                      +

                      and

                      +

                      mount

                      +

                      it should be /dev/sda1 maybe

                      + +
                      +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + somebody + · 19 avril 2020 à 13 h 07 min +

                    +

                    Thank you so much for the step by step guide, it was very helpful. With this I can finally transition from my old Docker VM inherited from FreeNAS 11.1.

                    +

                    Going to state the obvious (for some) and mention that when new version gets released and you run

                    +

                    sudo ros os upgrade

                    +

                    to upgrade you’ll also need to update initrd command in your grub.cfg file on EFI partition, otherwise you’re just going to boot into the same version.

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + Rudi Pittman + · 1 juin 2020 à 1 h 58 min +

                      +

                      The problem I have is even though grub is specifying 4.14.138 and initird-v1.5.5 on reboot it tells me those don’t exist. Doing a grub edit and using autocomplete the files it ACTUALLY find are /boot/vmlinuz-4.14.73-rancher and /boot/initrd-v1.4.2. Where the heck are those coming from? When I look on /dev/vda2/boot I see the 4.14.138 and initrd-v1.5.5 as the grub reflects. /mnt/efipart/EFI/BOOT has:

                      +

                      -rwxr-xr-x 1 root root 1334816 May 30 15:13 BOOTx64.EFI
                      +-rwxr-xr-x 1 root root 316 May 30 15:15 grub.cfg
                      +-rwxr-xr-x 1 root root 1146744 May 30 15:13 grubx64.efi

                      + +
                      +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Max + · 3 mai 2020 à 16 h 40 min +

                    +

                    The image i downloaded does not start. Stuck at step4 in the bhyve shell. Any idea how to proceed from there?

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + HugoPoi + · 10 mai 2020 à 14 h 53 min +

                      +

                      Try to change the device order to a lower or higher number to be sure it try to load the good bootloader.

                      + +
                      +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Rudi Pittman + · 1 juin 2020 à 18 h 28 min +

                    +

                    If you do a « ros os version » on your efi image it’s NOT v1.5.5. It’s v1.4.2 and running the command although it MAY download the files does nothing to actually make the grub.cfg FIND those new files. It’s still looking for vmlinuz-4.14.73 and initrd-v1.4.2.

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + Johnny Z + · 25 juin 2020 à 8 h 49 min +

                      +

                      I found them. The guide doesn’t necessarily state where or when to get the files. You should be able to do this to find and copy the files

                      +

                      cd /mnt/installer/boot/
                      +ls -asl
                      +(here you will find the two files)
                      +cp vmlinuz-4.14.138-rancher ../../efipart/efi/boot/
                      +cp initrd-v1.5.5.5 ../../efipart/efi/boot

                      +

                      Double check my paths here but that should basically get you the files so the kernel can load proper

                      + +
                      +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Toohai + · 16 septembre 2020 à 8 h 18 min +

                    +

                    Missing step after 12 in part 1?

                    +

                    sudo cp -r tmpubuntu/boot/grub tmprancheros_dest/boot/

                    + +
                    +
                    + +
                    +
                    +
                    +

                    Répondre à dario Annuler la réponse

                    Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                    +
                    +
                    +

                    + +

                    +
                    +
                    +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +
                    + + +
                    + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/5d7b690764c3a60152fc42db20c9290a66c8b57b.00001304.json b/www/.content.EZtzwPjb/html/5d7b690764c3a60152fc42db20c9290a66c8b57b.00001304.json new file mode 100644 index 0000000..adbb281 --- /dev/null +++ b/www/.content.EZtzwPjb/html/5d7b690764c3a60152fc42db20c9290a66c8b57b.00001304.json @@ -0,0 +1 @@ +{"version":"1.0","provider_name":"HugoPoi","provider_url":"http:\/\/blog.hugopoi.net","author_name":"HugoPoi","author_url":"http:\/\/blog.hugopoi.net\/author\/hugopoi\/","title":"Orange et consort, impossible d'obtenir le d\u00e9simlockage","type":"rich","width":600,"height":338,"html":"
                    Orange et consort, impossible d’obtenir le d\u00e9simlockage<\/a><\/blockquote>\n + + + + + + + + + + + + + + + + + +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +

                    Quel age pour s’inscrire sur Facebook ?

                    Pour commencer définition et contexte:

                    +

                    Facebook est un réseau social créé par Mark Zuckerberg dont le but premier était de mettre un nom sur un visage et ainsi de permettre de contacter facilement une personne faisant parti de votre réseau universitaire. Exemple, vous voulez « pécho » ce soir, vous allez sur Facebook vous faites le tour des amis de vos amis et c’est bon. Depuis, le réseau a un peu évolué au vu de son augmentation de popularité mais le principe est inchangé. (suite…)

                    +

                    Honte Télévisuelle

                    Je viens de déménager à Belfort et dans mon 19m² je n’ai pas de télévision mais je suis l’actualité via internet grâce à twitter. Je me suis aperçu que ces dernier mois, le nombre d’émissions abordant le sujet d’internet et compagnie était assez conséquent. (suite…)

                    +
                    Par HugoPoi, il y a

                    World Community Grid, quoi ?

                    Oui je sais, ça fait longtemps que je n’ai pas pondu d’article mais je fais plein de trucs en ce moment, donc occupé à faire autre chose que construire des phrases. Aujourd’hui, votre pc est allumé pour lire cet article mais à part ça, lorsqu’il est allumé  le reste du Lire la suite…

                    +
                    Par HugoPoi, il y a

                    Coup de gueule

                    http://www.flickr.com/photos/wgyuri/

                    +

                    En ce jour, je passe mon coup de gueule  à tous les opérateurs de téléphonie mobile qui osent mettre la mention « internet illimité » dans leurs contrats alors qu’il n’en n’est rien. Premièrement, toutes les offres pour particuliers avec un tarif décent utilisent un système de quota de donnée avec le plus souvent deux issues possible une fois la limite atteinte : réduction de débit ou coupure complète. Après la deuxième limitation est la discrimination de contenu et de protocole effectué par les opérateurs. Pour résumer, le terme « Internet » pour les opérateur signifie accès HTTP et rien d’autre. Ensuite je ne parlerais pas du filtrage en temps réel effectué sur votre trafic avec usage certain du DPI… (suite…)

                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    + +
                    +
                    + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/5f20e4dff06168b68c4f92fba29571316d749fda.00000699.css b/www/.content.EZtzwPjb/html/5f20e4dff06168b68c4f92fba29571316d749fda.00000699.css new file mode 100644 index 0000000..20df2bb --- /dev/null +++ b/www/.content.EZtzwPjb/html/5f20e4dff06168b68c4f92fba29571316d749fda.00000699.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7 .screen-reader-response{position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);height:1px;width:1px;margin:0;padding:0;border:0}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{color:#f00;font-size:1em;display:block}.use-floating-validation-tip span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;border:1px +solid #f00;background:#fff;padding: .2em .8em}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/5f81e6ba32b8c62c359f8966b7b83bc4a3533358.00001233.js b/www/.content.EZtzwPjb/html/5f81e6ba32b8c62c359f8966b7b83bc4a3533358.00001233.js new file mode 100644 index 0000000..fa958f6 --- /dev/null +++ b/www/.content.EZtzwPjb/html/5f81e6ba32b8c62c359f8966b7b83bc4a3533358.00001233.js @@ -0,0 +1,12 @@ +/*! + * MediaElement.js + * http://www.mediaelementjs.com/ + * + * Wrapper that mimics native HTML5 MediaElement (audio and video) + * using a variety of technologies (pure JavaScript, Flash, iframe) + * + * Copyright 2010-2017, John Dyer (http://j.hn/) + * License: MIT + * + */ +!function a(o,s,u){function c(n,e){if(!s[n]){if(!o[n]){var t="function"==typeof require&&require;if(!e&&t)return t(n,!0);if(l)return l(n,!0);var r=new Error("Cannot find module '"+n+"'");throw r.code="MODULE_NOT_FOUND",r}var i=s[n]={exports:{}};o[n][0].call(i.exports,function(e){var t=o[n][1][e];return c(t||e)},i,i.exports,a,o,s,u)}return s[n].exports}for(var l="function"==typeof require&&require,e=0;e").get(0).files!==undefined;c.formdata=window.FormData!==undefined;var e=!!f.fn.prop;f.fn.attr2=function(){if(!e){return this.attr.apply(this,arguments)}var g=this.prop.apply(this,arguments);if((g&&g.jquery)||typeof g==="string"){return g}return this.attr.apply(this,arguments)};f.fn.ajaxSubmit=function(j){if(!this.length){d("ajaxSubmit: skipping submit process - no element selected");return this}var i,C,m,o=this;if(typeof j=="function"){j={success:j}}else{if(j===undefined){j={}}}i=j.type||this.attr2("method");C=j.url||this.attr2("action");m=(typeof C==="string")?f.trim(C):"";m=m||window.location.href||"";if(m){m=(m.match(/^([^#]+)/)||[])[1]}j=f.extend(true,{url:m,success:f.ajaxSettings.success,type:i||f.ajaxSettings.type,iframeSrc:/^https/i.test(window.location.href||"")?"javascript:false":"about:blank"},j);var u={};this.trigger("form-pre-serialize",[this,j,u]);if(u.veto){d("ajaxSubmit: submit vetoed via form-pre-serialize trigger");return this}if(j.beforeSerialize&&j.beforeSerialize(this,j)===false){d("ajaxSubmit: submit aborted via beforeSerialize callback");return this}var n=j.traditional;if(n===undefined){n=f.ajaxSettings.traditional}var s=[];var E,F=this.formToArray(j.semantic,s);if(j.data){j.extraData=j.data;E=f.param(j.data,n)}if(j.beforeSubmit&&j.beforeSubmit(F,this,j)===false){d("ajaxSubmit: submit aborted via beforeSubmit callback");return this}this.trigger("form-submit-validate",[F,this,j,u]);if(u.veto){d("ajaxSubmit: submit vetoed via form-submit-validate trigger");return this}var y=f.param(F,n);if(E){y=(y?(y+"&"+E):E)}if(j.type.toUpperCase()=="GET"){j.url+=(j.url.indexOf("?")>=0?"&":"?")+y;j.data=null}else{j.data=y}var H=[];if(j.resetForm){H.push(function(){o.resetForm()})}if(j.clearForm){H.push(function(){o.clearForm(j.includeHidden)})}if(!j.dataType&&j.target){var l=j.success||function(){};H.push(function(q){var k=j.replaceTarget?"replaceWith":"html";f(j.target)[k](q).each(l,arguments)})}else{if(j.success){H.push(j.success)}}j.success=function(K,q,L){var J=j.context||this;for(var I=0,k=H.length;I0;var B="multipart/form-data";var x=(o.attr("enctype")==B||o.attr("encoding")==B);var w=c.fileapi&&c.formdata;d("fileAPI :"+w);var r=(p||x)&&!w;var v;if(j.iframe!==false&&(j.iframe||r)){if(j.closeKeepAlive){f.get(j.closeKeepAlive,function(){v=G(F)})}else{v=G(F)}}else{if((p||x)&&w){v=t(F)}else{v=f.ajax(j)}}o.removeData("jqxhr").data("jqxhr",v);for(var A=0;A');N.css({position:"absolute",top:"-1000px",left:"-1000px"})}Q=N[0];O={aborted:0,responseText:null,responseXML:null,status:0,statusText:"n/a",getAllResponseHeaders:function(){},getResponseHeader:function(){},setRequestHeader:function(){},abort:function(aj){var ak=(aj==="timeout"?"timeout":"aborted");d("aborting upload... "+ak);this.aborted=1;try{if(Q.contentWindow.document.execCommand){Q.contentWindow.document.execCommand("Stop")}}catch(al){}N.attr("src",V.iframeSrc);O.error=ak;if(V.error){V.error.call(V.context,O,ak,aj)}if(ad){f.event.trigger("ajaxError",[O,V,ak])}if(V.complete){V.complete.call(V.context,O,ak)}}};ad=V.global;if(ad&&0===f.active++){f.event.trigger("ajaxStart")}if(ad){f.event.trigger("ajaxSend",[O,V])}if(V.beforeSend&&V.beforeSend.call(V.context,O,V)===false){if(V.global){f.active--}ai.reject();return ai}if(O.aborted){ai.reject();return ai}P=L.clk;if(P){Z=P.name;if(Z&&!P.disabled){V.extraData=V.extraData||{};V.extraData[Z]=P.value;if(P.type=="image"){V.extraData[Z+".x"]=L.clk_x;V.extraData[Z+".y"]=L.clk_y}}}var U=1;var R=2;function S(al){var ak=null;try{if(al.contentWindow){ak=al.contentWindow.document}}catch(aj){d("cannot get iframe.contentWindow document: "+aj)}if(ak){return ak}try{ak=al.contentDocument?al.contentDocument:al.document}catch(aj){d("cannot get iframe.contentDocument: "+aj);ak=al.document}return ak}var J=f("meta[name=csrf-token]").attr("content");var I=f("meta[name=csrf-param]").attr("content");if(I&&J){V.extraData=V.extraData||{};V.extraData[I]=J}function aa(){var ar=o.attr2("target"),an=o.attr2("action"),al="multipart/form-data",ao=o.attr("enctype")||o.attr("encoding")||al;L.setAttribute("target",Y);if(!i||/post/i.test(i)){L.setAttribute("method","POST")}if(an!=V.url){L.setAttribute("action",V.url)}if(!V.skipEncodingOverride&&(!i||/post/i.test(i))){o.attr({encoding:"multipart/form-data",enctype:"multipart/form-data"})}if(V.timeout){T=setTimeout(function(){ac=true;X(U)},V.timeout)}function ap(){try{var at=S(Q).readyState;d("state = "+at);if(at&&at.toLowerCase()=="uninitialized"){setTimeout(ap,50)}}catch(au){d("Server abort: ",au," (",au.name,")");X(R);if(T){clearTimeout(T)}T=undefined}}var aq=[];try{if(V.extraData){for(var ak in V.extraData){if(V.extraData.hasOwnProperty(ak)){if(f.isPlainObject(V.extraData[ak])&&V.extraData[ak].hasOwnProperty("name")&&V.extraData[ak].hasOwnProperty("value")){aq.push(f('').val(V.extraData[ak].value).appendTo(L)[0])}else{aq.push(f('').val(V.extraData[ak]).appendTo(L)[0])}}}}if(!V.iframeTarget){N.appendTo("body")}if(Q.attachEvent){Q.attachEvent("onload",X)}else{Q.addEventListener("load",X,false)}setTimeout(ap,15);try{L.submit()}catch(am){var aj=document.createElement("form").submit;aj.apply(L)}}finally{L.setAttribute("action",an);L.setAttribute("enctype",ao);if(ar){L.setAttribute("target",ar)}else{o.removeAttr("target")}f(aq).remove()}}if(V.forceSync){aa()}else{setTimeout(aa,10)}var ag,ah,ae=50,M;function X(ap){if(O.aborted||M){return}ah=S(Q);if(!ah){d("cannot access response document");ap=R}if(ap===U&&O){O.abort("timeout");ai.reject(O,"timeout");return}else{if(ap==R&&O){O.abort("server abort");ai.reject(O,"error","server abort");return}}if(!ah||ah.location.href==V.iframeSrc){if(!ac){return}}if(Q.detachEvent){Q.detachEvent("onload",X)}else{Q.removeEventListener("load",X,false)}var an="success",ar;try{if(ac){throw"timeout"}var am=V.dataType=="xml"||ah.XMLDocument||f.isXMLDoc(ah);d("isXml="+am);if(!am&&window.opera&&(ah.body===null||!ah.body.innerHTML)){if(--ae){d("requeing onLoad callback, DOM not available");setTimeout(X,250);return}}var at=ah.body?ah.body:ah.documentElement;O.responseText=at?at.innerHTML:null;O.responseXML=ah.XMLDocument?ah.XMLDocument:ah;if(am){V.dataType="xml"}O.getResponseHeader=function(aw){var av={"content-type":V.dataType};return av[aw.toLowerCase()]};if(at){O.status=Number(at.getAttribute("status"))||O.status;O.statusText=at.getAttribute("statusText")||O.statusText}var aj=(V.dataType||"").toLowerCase();var aq=/(json|script|text)/.test(aj);if(aq||V.textarea){var ao=ah.getElementsByTagName("textarea")[0];if(ao){O.responseText=ao.value;O.status=Number(ao.getAttribute("status"))||O.status;O.statusText=ao.getAttribute("statusText")||O.statusText}else{if(aq){var ak=ah.getElementsByTagName("pre")[0];var au=ah.getElementsByTagName("body")[0];if(ak){O.responseText=ak.textContent?ak.textContent:ak.innerText}else{if(au){O.responseText=au.textContent?au.textContent:au.innerText}}}}}else{if(aj=="xml"&&!O.responseXML&&O.responseText){O.responseXML=W(O.responseText)}}try{ag=k(O,aj,V)}catch(al){an="parsererror";O.error=ar=(al||an)}}catch(al){d("error caught: ",al);an="error";O.error=ar=(al||an)}if(O.aborted){d("upload aborted");an=null}if(O.status){an=(O.status>=200&&O.status<300||O.status===304)?"success":"error"}if(an==="success"){if(V.success){V.success.call(V.context,ag,"success",O)}ai.resolve(O.responseText,"success",O);if(ad){f.event.trigger("ajaxSuccess",[O,V])}}else{if(an){if(ar===undefined){ar=O.statusText}if(V.error){V.error.call(V.context,O,an,ar)}ai.reject(O,"error",ar);if(ad){f.event.trigger("ajaxError",[O,V,ar])}}}if(ad){f.event.trigger("ajaxComplete",[O,V])}if(ad&&!--f.active){f.event.trigger("ajaxStop")}if(V.complete){V.complete.call(V.context,O,an)}M=true;if(V.timeout){clearTimeout(T)}setTimeout(function(){if(!V.iframeTarget){N.remove()}else{N.attr("src",V.iframeSrc)}O.responseXML=null},100)}var W=f.parseXML||function(aj,ak){if(window.ActiveXObject){ak=new ActiveXObject("Microsoft.XMLDOM");ak.async="false";ak.loadXML(aj)}else{ak=(new DOMParser()).parseFromString(aj,"text/xml")}return(ak&&ak.documentElement&&ak.documentElement.nodeName!="parsererror")?ak:null};var q=f.parseJSON||function(aj){return window["eval"]("("+aj+")")};var k=function(ao,am,al){var ak=ao.getResponseHeader("content-type")||"",aj=am==="xml"||!am&&ak.indexOf("xml")>=0,an=aj?ao.responseXML:ao.responseText;if(aj&&an.documentElement.nodeName==="parsererror"){if(f.error){f.error("parsererror")}}if(al&&al.dataFilter){an=al.dataFilter(an,am)}if(typeof an==="string"){if(am==="json"||!am&&ak.indexOf("json")>=0){an=q(an)}else{if(am==="script"||!am&&ak.indexOf("javascript")>=0){f.globalEval(an)}}}return an};return ai}};f.fn.ajaxForm=function(g){g=g||{};g.delegation=g.delegation&&f.isFunction(f.fn.on);if(!g.delegation&&this.length===0){var h={s:this.selector,c:this.context};if(!f.isReady&&h.s){d("DOM not ready, queuing ajaxForm");f(function(){f(h.s,h.c).ajaxForm(g)});return this}d("terminating; zero elements found by selector"+(f.isReady?"":" (DOM not ready)"));return this}if(g.delegation){f(document).off("submit.form-plugin",this.selector,b).off("click.form-plugin",this.selector,a).on("submit.form-plugin",this.selector,g,b).on("click.form-plugin",this.selector,g,a);return this}return this.ajaxFormUnbind().bind("submit.form-plugin",g,b).bind("click.form-plugin",g,a)};function b(h){var g=h.data;if(!h.isDefaultPrevented()){h.preventDefault();f(h.target).ajaxSubmit(g)}}function a(k){var j=k.target;var h=f(j);if(!(h.is("[type=submit],[type=image]"))){var g=h.closest("[type=submit]");if(g.length===0){return}j=g[0]}var i=this;i.clk=j;if(j.type=="image"){if(k.offsetX!==undefined){i.clk_x=k.offsetX;i.clk_y=k.offsetY}else{if(typeof f.fn.offset=="function"){var l=h.offset();i.clk_x=k.pageX-l.left;i.clk_y=k.pageY-l.top}else{i.clk_x=k.pageX-j.offsetLeft;i.clk_y=k.pageY-j.offsetTop}}}setTimeout(function(){i.clk=i.clk_x=i.clk_y=null},100)}f.fn.ajaxFormUnbind=function(){return this.unbind("submit.form-plugin click.form-plugin")};f.fn.formToArray=function(x,g){var w=[];if(this.length===0){return w}var l=this[0];var z=this.attr("id");var q=x?l.getElementsByTagName("*"):l.elements;var A;if(q&&!/MSIE [678]/.test(navigator.userAgent)){q=f(q).get()}if(z){A=f(":input[form="+z+"]").get();if(A.length){q=(q||[]).concat(A)}}if(!q||!q.length){return w}var r,p,o,y,m,t,k;for(r=0,t=q.length;r this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/6029697f498ea6171812cec0c6681dd5e8886c59.00000008.xml b/www/.content.EZtzwPjb/html/6029697f498ea6171812cec0c6681dd5e8886c59.00000008.xml new file mode 100644 index 0000000..a8432de --- /dev/null +++ b/www/.content.EZtzwPjb/html/6029697f498ea6171812cec0c6681dd5e8886c59.00000008.xml @@ -0,0 +1,75 @@ + + + Commentaires sur : Anonymat I2P, TOR et les VPN + + http://blog.hugopoi.net/2010/10/21/anonymat-i2p-tor-et-les-vpn/ + Internet, Hardware et Bidouille + Wed, 29 Apr 2015 14:19:48 +0000 + hourly + 1 + http://wordpress.org/?v=4.2.4 + + Par : HugoPoi + http://blog.hugopoi.net/2010/10/21/anonymat-i2p-tor-et-les-vpn/#comment-63 + + Thu, 12 May 2011 11:47:01 +0000 + http://blog.hugopoi.net/?p=71#comment-63 + + tu ne peux pas vérifier si il log tes connexions … Mais bon si il est à l’étranger ça limite le traçage :)

                    +]]>
                    +
                    + + Par : Denis + http://blog.hugopoi.net/2010/10/21/anonymat-i2p-tor-et-les-vpn/#comment-62 + + Thu, 12 May 2011 08:40:51 +0000 + http://blog.hugopoi.net/?p=71#comment-62 + + pour 4.90 euros par mois j utilise http://www.vpn-discount.com qui me procure une grande satisfaction au niveau fiabilite,securite,rapidite et surete….un super vpn

                    +]]>
                    +
                    + + Par : HugoPoi + http://blog.hugopoi.net/2010/10/21/anonymat-i2p-tor-et-les-vpn/#comment-46 + + Mon, 24 Jan 2011 15:51:24 +0000 + http://blog.hugopoi.net/?p=71#comment-46 + + Se cacher derrière une connexion cryptée qui utilise des systèmes centralisés de type marchand de VPN à 10€/mois pour faire du p2p derrière ça mène à ça : http://www.numerama.com/magazine/17851-la-neutralite-du-net-est-dependante-de-la-sante-du-p2p.html

                    +]]>
                    +
                    + + Par : Lamoroso + http://blog.hugopoi.net/2010/10/21/anonymat-i2p-tor-et-les-vpn/#comment-45 + + Sat, 22 Jan 2011 20:42:22 +0000 + http://blog.hugopoi.net/?p=71#comment-45 + + quote : « le VPN c’est de l’anti-internet, cela revient à supprimer le plus grand intérêt d’internet, à savoir l’échange direct possible entre tous »…
                    +Un FTP sous SSL chez moi via mon VPN nordique va bien pour mes amis… Je ne comprends pas votre argument…
                    +Une plus fine explication?
                    +Merci.

                    +]]>
                    +
                    + + Par : Mickael + http://blog.hugopoi.net/2010/10/21/anonymat-i2p-tor-et-les-vpn/#comment-9 + + Sat, 13 Nov 2010 22:24:05 +0000 + http://blog.hugopoi.net/?p=71#comment-9 + + Yop Hugo, il est cool ton blog mais pour être tranquille avec HADOPI faut faire du wawa :)
                    +Ca peut être une idée d’article :p

                    +]]>
                    +
                    +
                    +
                    diff --git a/www/.content.EZtzwPjb/html/60de62faa25b0127ff15a7095d35408d354df638.00000134.html b/www/.content.EZtzwPjb/html/60de62faa25b0127ff15a7095d35408d354df638.00000134.html new file mode 100644 index 0000000..4e99142 --- /dev/null +++ b/www/.content.EZtzwPjb/html/60de62faa25b0127ff15a7095d35408d354df638.00000134.html @@ -0,0 +1,1370 @@ + + + + + + + + Réparations Samsung SyncMaster 2232BW – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +
                    +

                    Allô docteur on a un problème,

                    +

                    En ce dimanche calme avant la fin de mes partiels, mon écran Samsung SyncMaster 2232BW commençait à faire des siennes. Celui-ci depuis un mois ou deux clignotait de façon systématique au démarrage, au début pendant seulement quelques secondes, puis au fur et à mesure, de plus en plus jusqu’à devoir attendre 10 minutes pour que je puisse l’utiliser. Après 3 ans et 4 mois de bons et loyaux services, il voulait me quitter. J’ai tenté le support Samsung par email avec peu d’espoir car l’écran a dépassé sa garantie de 4 mois (oui oui les bâtards -> obsolescence programmée). Et donc j’ai eu le droit à un joli mail automatique me disant de contacter un numéro non surtaxé (mais avec combien de temps d’attente ?), ce que je n’ai pas fait car je n’avais pas envie de passer 30min au téléphone pour au final avoir un « On est désolé mais on ne peut rien faire pour vous car la garantie est dépassée, mais on peut envoyer votre écran en SAV pour faire un devis pour seulement 50 boules ». Concernant le support email de Samsung France, je leur donne une note de 0/20 puisque ce n’est pas un support mais une redirection vers le téléphone.

                    +

                    +

                    Symptômes

                    +

                    Clignotements de l’écran et de la LED power systématiques à chaque démarrage de l’écran. Je me suis tout de suite douté d’un problème d’alimentation et après quelques recherches sur google, confirmation du problème sur beaucoup d’écrans et téléviseurs. Dans 99% des cas ce clignotement est dû à des condensateurs défectueux qu’il faut simplement changer :-D

                    +

                    Démontage

                    +

                    Donc après avoir cerné le problème, j’ai ouvert l’écran pour chercher les condos défectueux. J’ai trouvé une petite vidéo pour mon écran :

                    +

                    +

                    Voici quelques photos en plus pour vous aider :

                    +

                    Les outils que j’ai utilisé pour le démontage

                    +

                    Position des clips

                    +

                    Carte d’alimentation dans son emplacement

                    +

                    Et voici les condensateurs qui posent problèmes. Comme vous pouvez le voir sur la photo, ils sont très facilement identifiable car ils sont bombés sur le dessus.

                    +

                    Condensateurs défectueux

                    +

                    Vous devez donc acheter des condensateurs de remplacement, par exemple sur Conrad.

                    +

                    Mes condensateurs suivant étaient endommagés:

                    +
                      +
                    • 1 de 330uF 25V remplacé par un 470uF 25V
                    • +
                    • 3 de 820uF 25V remplacé par des 1000uF 50V
                    • +
                    +

                    Pour la réparation, il vous faut un fer à souder avec une panne pas trop grosse mais d’une grosse puissance car les soudures sont très solides (j’ai galéré avec un fer pro qui monte jusqu’à 400°).

                    +

                    Tout remarche nickel après remontage, plus de clignotement pour seulement quelques euros.

                    +

                    edit du 19 aout 2014 : j’ai trouvé le service manuel de l’écran si besoin samsung_2232bw_chassis_lpe22bs_sm

                    + + +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +

                    + 41 commentaires

                    +
                    + +
                    +
                    +
                    +
                    +

                    + c'est_moi + · 30 janvier 2012 à 18 h 57 min +

                    +

                    Mille mercis et mille félicitations pour cette fiche technique si pédagogue.

                    +

                    J’espère que le partiels se passent plus que parfait !!

                    +

                    J’ai gardé l’url de la page pour réparer mon écran dans un petit mois : j’espère que la page soit toujours là ;-)

                    +

                    Merci encore.

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Maxime + · 5 mai 2012 à 12 h 31 min +

                    +

                    Bonjour HugoPoi!

                    +

                    Merci pour toutes vos infos et votre topic, je voulais avoir quelques précisions sur les condos à changer pour samsung 2232bw, je veux passer commande mais j’ai un problème avec les dimensions des condos, si vous pouvez m’informer de ce que je pourrais acheter car il y a trop de références. En vous remerciant A+ Maxime

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + HugoPoi + · 14 juin 2012 à 22 h 56 min +

                      +

                      N’importe quel condensateur polarisé avec des caractéristiques proches devrait marché.

                      + +
                      +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + gaubjezj + · 14 juin 2012 à 22 h 32 min +

                    +

                    Merci pour le tuto qui m’a bien aidé.
                    +J’ai utilisé un fer de 40 W avec une panne fine et
                    +une pompe à dessouder et j’ai retiré les condensateurs sans problème.
                    +Merci encore (3€40 pour le dépannage).

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + DragonTribal + · 2 juillet 2012 à 12 h 02 min +

                    +

                    super merci pour manifique tuto.
                    +Est-il possible de changer les 5 condensateurs 820uF 25V par des 1000uF 50V? car moi mes 5 condensateurs sont presque HS ;-)

                    +

                    Cordialement

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + HugoPoi + · 2 juillet 2012 à 12 h 25 min +

                      +

                      Oui je penses que ça marchera étant donné que c’est des valeurs plus grandes.

                      + +
                      +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + FRED + · 11 juillet 2012 à 19 h 11 min +

                    +

                    Bravo, MERCI.
                    +Je n’ai encore rien fait…mais j’ai le même problème, et tu me donnes la solution.
                    +Super.

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + daninpet + · 31 août 2012 à 10 h 10 min +

                    +

                    Merci mille fois!

                    +

                    J’avais ce problème, et j’ai emmener la photo des trucs a remplacer chez le réparateur du coin et voila!! Ça m’a coûté 7 Euros (mais j’habite en Thaïlande)

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + moi + · 15 novembre 2012 à 15 h 25 min +

                    +

                    super mon 2232bw vient de lâcher, les 3 + 1 condos sont gonflés j ai trouvé un 330 en 35v qui traîné sur un écran mort et j’ai commander 5 1000uf 35v sur ebay pour moins de 3 dollars, ca devrait le faire j’espere j’attend d’être livré merci! par contre j’ai qu’un gros pistolet a soudure et un gros fil d’étain, c’est pas évident mais bon ca le fait quand même =)

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + moi + · 7 décembre 2012 à 9 h 33 min +

                      +

                      parfait je vient de recevoir les condos; j ai meuler la panne du fer a souder pour la tailler en mine de crayon et j ai reussi a les souder facilement ils étaient un peu plus gros mais ca passe tout juste, mais attention ne pas prendre des plus gros! l écran fonctionne nickel maintenant.

                      + +
                      +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Croco + · 19 janvier 2013 à 18 h 39 min +

                    +

                    Je souhaiterai savoir si tu as utilisé un fer à souder bien précis étant donné que la carte est une multi couche.
                    +Merci

                    + +
                    +
                    + + +
                    + +
                    +
                    +
                    +
                    +

                    + momo + · 10 juin 2013 à 13 h 15 min +

                    +

                    slut je voudrai savoir ou trouvé les condansateur a changer sur mon ecran qui clignote

                    + +
                    +
                    + + +
                    + +
                    +
                    +
                    +
                    +

                    + lokmane + · 5 juillet 2013 à 16 h 08 min +

                    +

                    merci j’avais un ecran rouge ! et c’etais la tresse qui relie mon ecran votre page m’a aider a l’ouvrir et a le reparer merci bien

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + ML + · 21 août 2013 à 19 h 11 min +

                    +

                    Merci ! Ecran réparé. Halte à l’obsolescence programmée.

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + raymond + · 31 octobre 2013 à 13 h 20 min +

                    +

                    ai vu votre vidéo et les explications pour la reparation de mon écran , apparemment le méme probléme l écran passe au noir apres quelque seconde , j ai vu un le condensateur en bas a gauche gonflé , je l ai fait changé (10€) les autre condensateur étant toujour bon d après la personne qui me l a changé , mais j ai toujour le méme probléme cela peut il venir de la carte video a gauche ?

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + HugoPoi + · 20 décembre 2013 à 12 h 27 min +

                      +

                      Si la led bleu du bouton power s’éteint aussi c’est un problème d’alimentation sinon c’est plus compliqué et ça peut provenir de condensateurs sur la partie vidéo. Changé tous les plus gros condensateurs sur la partie alimentation pourrait être un bon début même si ils ne paraissent pas endommagé.

                      + +
                      +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + damien + · 4 novembre 2013 à 0 h 29 min +

                    +

                    bonjour,

                    +

                    j’ai des crasses coincées entres l’écran et le truc juste derrière, est ce qu’on sais les enlever en démontant la dalle ?

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + HugoPoi + · 20 décembre 2013 à 12 h 28 min +

                      +

                      Je ne sais si cette partie de la dalle est démontable, je penses que c’est collé mais vous pouvez essayer.

                      + +
                      +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + mac + · 1 décembre 2013 à 17 h 30 min +

                    +

                    Merci HugoPoi, avec ces excellents conseils et tuto vidéo, mon écran est reparti pour une nouvelle vie.
                    +Pour les composants, si vous êtes sur Paris ou proche. La boutique RAM électroniques est une bonne adresse, 138 bd Diderot 75012 Paris (Place de la Nation).

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Bouddhid + · 16 janvier 2014 à 19 h 21 min +

                    +

                    Merci beaucoup pour ces conseils ! J’étais à 2 doigts de jeter mon écran, le voilà comme neuf pour moins de 5€ ! Vive la bricole !

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Vincent + · 17 mai 2014 à 16 h 45 min +

                    +

                    Alors là merci.

                    +

                    Pour ce post, les photos, la vidéo, tout y est.

                    +

                    J’ai démonté l’écran assez vite, enlevé la carte, regarder quel condensateurs étaient gonflés,(il y en avaient 4), un magasin d’électronique sur lyon et une heure de démontage, soudure, remontage plus tard, voilà, c’est tout beau.
                    +Ca ne clignote plus, ça s’allume comme avant, comme neuf.

                    +

                    Et dire que j’allais jeter cet écran et claquer 350 euros pour un neuf…

                    +

                    Coût de l’opération pour 4 condensateurs, du fil d’étain 7 euros.

                    +

                    Je précise que je n’avais jamais fais de soudure sur composant électronique auparavant.
                    +Comme quoi cette opération de réparation est à la portée de tous.

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Julot + · 6 juillet 2014 à 13 h 49 min +

                    +

                    Site vraiment détaillé et très claire. J’ai pu dépanner mon écran avec succès. Merci beaucoup pour ces précieuses explications.

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + PaniK31 + · 29 juillet 2014 à 9 h 21 min +

                    +

                    Pas besoin d’une grosse puissance pour le fer, il faut au préalable gratter le vernis sur l’étain afin de pouvoir le faire fondre plus facilement

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + R211_IP-45130B + · 20 août 2014 à 14 h 04 min +

                    +

                    Bonjour à tous,

                    +

                    Une âme charitable peut-elle me communiquer ce qui est gravé sur la résistance CMS R211 de la carte d’alimentation/inverter IP-45130B qui équipe le SAMSUNG 2232BW ? Cette résistance a pris un coup de tournevis et je n’arrive pas à déterminer sa valeur de résistance car son marquage est effacé et comme le composant est abimé la mesure à l’ohmmètre indique l’infinie.

                    +

                    Merci par avance.

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + roger + · 24 octobre 2014 à 17 h 21 min +

                    +

                    Ca refonctionne après échange de 4 condensateurs :
                    +-un 330uf25v remplacé à l’identique.
                    +-trois 820uf25v remplacés par 1000uf25v.
                    +Le tout pour quelques €. Le plus dur était le dessoudage, la tresse n’était pas très efficace contrairement à la pompe.
                    +Grand merci à HugoPoi.

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Max + · 26 février 2015 à 16 h 28 min +

                    +

                    ENORME MERCI!! J’ai réparé mon écran en 20mn pour 3,50€, il était à 2 doigts de partir à la déchetterie. Ca faisait des mois qu’il clignotait, et l’allumage mettait parfois plus d’une demi heure. J’ai changé 5 condos 820uf25v et 1 330uf25v, par exactement les mêmes en neuf, et là il démarre au quart de tour! Ca fait plaisir! :)

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + rocco michelle + · 7 octobre 2015 à 10 h 16 min +

                      +

                      Bonjour je ne sais si vous verrez mon message mais je tente…je cherche quelqu’un qui accepterait de changer mes condensateurs sur mon samsung, les réparateurs me demandent 70 à 80 euros et encore ils n’ont pss envie de le faire et me disent d’acheter un nouvel écran. j’aurais bien tenter mais je n’ai pas de matériel et j’ai lu que les condo pouvaient être très dangereux s’ils avaient de la charge alors j’ai la trouille de bidouiller pq je n’y connais rien. si vous êtes de lyon acccepteriez vous de changer mes condensateurs pour 45 euros? merci de votre réponse.

                      + +
                      +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + lecakeseb + · 27 juillet 2015 à 15 h 26 min +

                    +

                    Bonjour,

                    +

                    J’ai utilisé la vidéo pour démonter mon écran afin de le nettoyer de 4 bêtes d’orage infiltrés entre le premier écran (noir) et la dalle (blanche) de mon samsung SyncMaster 2232W

                    +

                    Petits conseils afin de modérer ce que j’ai pu voir dans cette vidéo :

                    +

                    0 : aspirez, nettoyez l’extérieur de l’écran avant de l’ouvrir et nettoyez la table qui vous servira d’atelier, pour éviter les poussières qui s’infiltreront forcément plus tard si vous ne le faites pas…
                    +1 : pour ouvrir, utilisez plutôt un couteau à enduire pour la première partie (le cadre). Vous n’abîmerez ainsi pas du tout l’écran. Soyez patients, ne forcez pas ! ça viendra doucement, mais ça viendra. Il m’a fallu à peine 10 minutes, sans détériorer l’écran, sans le griffer… Il est encore nickel !
                    +2 : attention à ne pas déconnecter les fils reliant le cadre à la carte. Inutile pour simplement nettoyer l’écran.
                    +3 : pour séparer les deux éléments de la dalle entre lesquels les bêtes se sont infiltrées, les doigts suffisent, pas besoin d’outils qui viendraient les endommager. La dalle blanche reste à l’horizontale, l’écran noir sera tenu à la verticale.
                    +4 : utiliser un chiffon doux ne peluchant pas pour enlever les bêtes (faites-vous aider de quelqu’un qui les enlèvera pendant que vous tenez l’écran extérieur en position verticale).
                    +5 : repositionnez la colle d’étanchéité qui aurait pu se déplacer, avant de repositionner les deux écrans.
                    +6 : commencer par refermer par le bas de l’écran (sinon les éléments de réglage situés au bas de l’écran – luminosité, contraste,…- ne se replaceront pas correctement).
                    +7 : Une fois l’écran refermé, j’ai appliqué un peu de « barrage aux insectes », avec un chiffon à l’arrière de mon écran en insistant surtout sur les bouches d’aération par lesquelles les maudites bestioles ont du s’infiltrer. En espérant ne pas avoir à ouvrir !

                    +

                    Bon courage à vous !

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Michel Jousserandot + · 20 janvier 2017 à 20 h 41 min +

                    +

                    Merci pour les conseils au démontage.
                    +J’avais un problème un peu différent :l’écran ne s’allumait plus du tout. Avec un copain beaucoup plus malin que moi, on a détecté 2 fusibles dont l’un était fichu. On l’a remplacé par un petit fil de cuivre. Et tout a remarché comme avant.
                    +Il faut surtout faire attention quand on teste la partie haute tension
                    +Michel.

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Crec + · 14 juillet 2017 à 10 h 20 min +

                    +

                    Bonjour. Très bons conseils avertis. Merci beaucoup.
                    +Peut-on avoir les mêmes conseils pour un écran BX2250.
                    +Merci par avance.
                    +Crec

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + HugoPoi + · 6 août 2017 à 14 h 03 min +

                      +

                      J’ai pas de BX2250 donc dans le détails non mais si c’est les même symptômes ça doit la même procédure.

                      + +
                      +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Ferronnier + · 10 août 2017 à 17 h 42 min +

                    +

                    Un grand merci !
                    +J’ai changé tous les condensateurs de la partie alimentation de la carte, en déportant certains qui n’avaient pas le même format qu’à l’origine, et ça tourne nickel !

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Nours + · 1 décembre 2017 à 15 h 17 min +

                    +

                    Ca fait des années que j’ai cet article enregistré dans un coin, en nourrissant l’espoir d’avoir un jour le courage de réparer ce foutu écran… Après plus de cinq ans c’est chose faite \o/
                    +Un giga, hypra, immense merci pour ce tutoriel tellement bien expliqué et facile d’accès (je n’avais pas touché à un fer à souder depuis… Oh boy 15 ans déjà).
                    +Après une longue pause, l’écran reprend du service… Jusqu’à la prochaine panne /o/

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Alex + · 11 août 2018 à 13 h 28 min +

                    +

                    Quelqu’un sait qui pourrait me le faire svp j ai le même problème mais aucun matériel

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + David + · 5 février 2019 à 21 h 06 min +

                    +

                    Merci Hugo pour ce tuto qui m’a déjà servi en 2013 et qui va me resservir aujourd’hui car mon 2ème 2232bw commence à avoir les mêmes symptômes.

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + yvan + · 23 novembre 2019 à 17 h 14 min +

                    +

                    Bonjour
                    +j’ai tenté de changer le condensateur qui avait l’air naze mais ça n’a pas marché … toujours le bouton bleu allumé, l’écran est reconnu par Windows 10 même si l’écran est éteint
                    +grâce au service manuel de l’écran fourni plus haut, j’ai vérifié les tensions jusque sur la carte de la dalle et elles sont correctes, ainsi que sur la carte elle-même, tout est ok, donc je pense que ce n’est plus un problème de condensateur
                    +pour les fusibles, ils ressemblent plutôt à des composants qu’à de simple fusibles, mais comme j’ai les bonnes tension, je ne pense pas que ça vienne de là
                    +j’ai bien peur que ce soit la dalle qui soit naze ? quelqu’un a t il des idées supplémentaires avant que je le jette avec grand regret (c’est un 2032bw, mais c’est la même chose, même si ma carte électronique est un peu différente car plus récente
                    +merci d’avance pour vos conseils

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + yvan + · 24 novembre 2019 à 17 h 26 min +

                    +

                    finalement j’ai trouvé, c’est un petit fusible vert qui ressemble à une résistance mais tout vert avec écrit 4A LF qui assure l’alimentation de la dalle.
                    +En le shuntant, mon écran a retrouvé l’image.
                    +après enquête il s’agit d’un fusible pico de 4ampères de chez little fuse, pas du tout évident à trouver
                    +Résolu !

                    + +
                    +
                    + +
                    +
                    +

                    + Reflow Dell 1546 | HugoPoi + · 22 août 2016 à 16 h 09 min +

                    +

                    […] « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable de marque Dell un 1546 pour être précis. Encore […]

                    + +
                    +
                    + +
                    +
                    +

                    + Reflow Dell Inspiron 1546 – HugoPoi + · 23 juin 2017 à 23 h 18 min +

                    +

                    […] d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un […]

                    + +
                    +
                    + +
                    +
                    +
                    +

                    Répondre à yvan Annuler la réponse

                    Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                    +
                    +
                    +

                    + +

                    +
                    +
                    +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +
                    + + +
                    + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/61528dc03ca950a2896b892c4f23cd847b5e30c4.00000117.html b/www/.content.EZtzwPjb/html/61528dc03ca950a2896b892c4f23cd847b5e30c4.00000117.html new file mode 100644 index 0000000..e944ca8 --- /dev/null +++ b/www/.content.EZtzwPjb/html/61528dc03ca950a2896b892c4f23cd847b5e30c4.00000117.html @@ -0,0 +1,1370 @@ + + + + + + + + Réparations Samsung SyncMaster 2232BW – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +
                    +

                    Allô docteur on a un problème,

                    +

                    En ce dimanche calme avant la fin de mes partiels, mon écran Samsung SyncMaster 2232BW commençait à faire des siennes. Celui-ci depuis un mois ou deux clignotait de façon systématique au démarrage, au début pendant seulement quelques secondes, puis au fur et à mesure, de plus en plus jusqu’à devoir attendre 10 minutes pour que je puisse l’utiliser. Après 3 ans et 4 mois de bons et loyaux services, il voulait me quitter. J’ai tenté le support Samsung par email avec peu d’espoir car l’écran a dépassé sa garantie de 4 mois (oui oui les bâtards -> obsolescence programmée). Et donc j’ai eu le droit à un joli mail automatique me disant de contacter un numéro non surtaxé (mais avec combien de temps d’attente ?), ce que je n’ai pas fait car je n’avais pas envie de passer 30min au téléphone pour au final avoir un « On est désolé mais on ne peut rien faire pour vous car la garantie est dépassée, mais on peut envoyer votre écran en SAV pour faire un devis pour seulement 50 boules ». Concernant le support email de Samsung France, je leur donne une note de 0/20 puisque ce n’est pas un support mais une redirection vers le téléphone.

                    +

                    +

                    Symptômes

                    +

                    Clignotements de l’écran et de la LED power systématiques à chaque démarrage de l’écran. Je me suis tout de suite douté d’un problème d’alimentation et après quelques recherches sur google, confirmation du problème sur beaucoup d’écrans et téléviseurs. Dans 99% des cas ce clignotement est dû à des condensateurs défectueux qu’il faut simplement changer :-D

                    +

                    Démontage

                    +

                    Donc après avoir cerné le problème, j’ai ouvert l’écran pour chercher les condos défectueux. J’ai trouvé une petite vidéo pour mon écran :

                    +

                    +

                    Voici quelques photos en plus pour vous aider :

                    +

                    Les outils que j’ai utilisé pour le démontage

                    +

                    Position des clips

                    +

                    Carte d’alimentation dans son emplacement

                    +

                    Et voici les condensateurs qui posent problèmes. Comme vous pouvez le voir sur la photo, ils sont très facilement identifiable car ils sont bombés sur le dessus.

                    +

                    Condensateurs défectueux

                    +

                    Vous devez donc acheter des condensateurs de remplacement, par exemple sur Conrad.

                    +

                    Mes condensateurs suivant étaient endommagés:

                    +
                      +
                    • 1 de 330uF 25V remplacé par un 470uF 25V
                    • +
                    • 3 de 820uF 25V remplacé par des 1000uF 50V
                    • +
                    +

                    Pour la réparation, il vous faut un fer à souder avec une panne pas trop grosse mais d’une grosse puissance car les soudures sont très solides (j’ai galéré avec un fer pro qui monte jusqu’à 400°).

                    +

                    Tout remarche nickel après remontage, plus de clignotement pour seulement quelques euros.

                    +

                    edit du 19 aout 2014 : j’ai trouvé le service manuel de l’écran si besoin samsung_2232bw_chassis_lpe22bs_sm

                    + + +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +

                    + 41 commentaires

                    +
                    + +
                    +
                    +
                    +
                    +

                    + c'est_moi + · 30 janvier 2012 à 18 h 57 min +

                    +

                    Mille mercis et mille félicitations pour cette fiche technique si pédagogue.

                    +

                    J’espère que le partiels se passent plus que parfait !!

                    +

                    J’ai gardé l’url de la page pour réparer mon écran dans un petit mois : j’espère que la page soit toujours là ;-)

                    +

                    Merci encore.

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Maxime + · 5 mai 2012 à 12 h 31 min +

                    +

                    Bonjour HugoPoi!

                    +

                    Merci pour toutes vos infos et votre topic, je voulais avoir quelques précisions sur les condos à changer pour samsung 2232bw, je veux passer commande mais j’ai un problème avec les dimensions des condos, si vous pouvez m’informer de ce que je pourrais acheter car il y a trop de références. En vous remerciant A+ Maxime

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + HugoPoi + · 14 juin 2012 à 22 h 56 min +

                      +

                      N’importe quel condensateur polarisé avec des caractéristiques proches devrait marché.

                      + +
                      +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + gaubjezj + · 14 juin 2012 à 22 h 32 min +

                    +

                    Merci pour le tuto qui m’a bien aidé.
                    +J’ai utilisé un fer de 40 W avec une panne fine et
                    +une pompe à dessouder et j’ai retiré les condensateurs sans problème.
                    +Merci encore (3€40 pour le dépannage).

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + DragonTribal + · 2 juillet 2012 à 12 h 02 min +

                    +

                    super merci pour manifique tuto.
                    +Est-il possible de changer les 5 condensateurs 820uF 25V par des 1000uF 50V? car moi mes 5 condensateurs sont presque HS ;-)

                    +

                    Cordialement

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + HugoPoi + · 2 juillet 2012 à 12 h 25 min +

                      +

                      Oui je penses que ça marchera étant donné que c’est des valeurs plus grandes.

                      + +
                      +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + FRED + · 11 juillet 2012 à 19 h 11 min +

                    +

                    Bravo, MERCI.
                    +Je n’ai encore rien fait…mais j’ai le même problème, et tu me donnes la solution.
                    +Super.

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + daninpet + · 31 août 2012 à 10 h 10 min +

                    +

                    Merci mille fois!

                    +

                    J’avais ce problème, et j’ai emmener la photo des trucs a remplacer chez le réparateur du coin et voila!! Ça m’a coûté 7 Euros (mais j’habite en Thaïlande)

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + moi + · 15 novembre 2012 à 15 h 25 min +

                    +

                    super mon 2232bw vient de lâcher, les 3 + 1 condos sont gonflés j ai trouvé un 330 en 35v qui traîné sur un écran mort et j’ai commander 5 1000uf 35v sur ebay pour moins de 3 dollars, ca devrait le faire j’espere j’attend d’être livré merci! par contre j’ai qu’un gros pistolet a soudure et un gros fil d’étain, c’est pas évident mais bon ca le fait quand même =)

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + moi + · 7 décembre 2012 à 9 h 33 min +

                      +

                      parfait je vient de recevoir les condos; j ai meuler la panne du fer a souder pour la tailler en mine de crayon et j ai reussi a les souder facilement ils étaient un peu plus gros mais ca passe tout juste, mais attention ne pas prendre des plus gros! l écran fonctionne nickel maintenant.

                      + +
                      +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Croco + · 19 janvier 2013 à 18 h 39 min +

                    +

                    Je souhaiterai savoir si tu as utilisé un fer à souder bien précis étant donné que la carte est une multi couche.
                    +Merci

                    + +
                    +
                    + + +
                    + +
                    +
                    +
                    +
                    +

                    + momo + · 10 juin 2013 à 13 h 15 min +

                    +

                    slut je voudrai savoir ou trouvé les condansateur a changer sur mon ecran qui clignote

                    + +
                    +
                    + + +
                    + +
                    +
                    +
                    +
                    +

                    + lokmane + · 5 juillet 2013 à 16 h 08 min +

                    +

                    merci j’avais un ecran rouge ! et c’etais la tresse qui relie mon ecran votre page m’a aider a l’ouvrir et a le reparer merci bien

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + ML + · 21 août 2013 à 19 h 11 min +

                    +

                    Merci ! Ecran réparé. Halte à l’obsolescence programmée.

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + raymond + · 31 octobre 2013 à 13 h 20 min +

                    +

                    ai vu votre vidéo et les explications pour la reparation de mon écran , apparemment le méme probléme l écran passe au noir apres quelque seconde , j ai vu un le condensateur en bas a gauche gonflé , je l ai fait changé (10€) les autre condensateur étant toujour bon d après la personne qui me l a changé , mais j ai toujour le méme probléme cela peut il venir de la carte video a gauche ?

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + HugoPoi + · 20 décembre 2013 à 12 h 27 min +

                      +

                      Si la led bleu du bouton power s’éteint aussi c’est un problème d’alimentation sinon c’est plus compliqué et ça peut provenir de condensateurs sur la partie vidéo. Changé tous les plus gros condensateurs sur la partie alimentation pourrait être un bon début même si ils ne paraissent pas endommagé.

                      + +
                      +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + damien + · 4 novembre 2013 à 0 h 29 min +

                    +

                    bonjour,

                    +

                    j’ai des crasses coincées entres l’écran et le truc juste derrière, est ce qu’on sais les enlever en démontant la dalle ?

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + HugoPoi + · 20 décembre 2013 à 12 h 28 min +

                      +

                      Je ne sais si cette partie de la dalle est démontable, je penses que c’est collé mais vous pouvez essayer.

                      + +
                      +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + mac + · 1 décembre 2013 à 17 h 30 min +

                    +

                    Merci HugoPoi, avec ces excellents conseils et tuto vidéo, mon écran est reparti pour une nouvelle vie.
                    +Pour les composants, si vous êtes sur Paris ou proche. La boutique RAM électroniques est une bonne adresse, 138 bd Diderot 75012 Paris (Place de la Nation).

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Bouddhid + · 16 janvier 2014 à 19 h 21 min +

                    +

                    Merci beaucoup pour ces conseils ! J’étais à 2 doigts de jeter mon écran, le voilà comme neuf pour moins de 5€ ! Vive la bricole !

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Vincent + · 17 mai 2014 à 16 h 45 min +

                    +

                    Alors là merci.

                    +

                    Pour ce post, les photos, la vidéo, tout y est.

                    +

                    J’ai démonté l’écran assez vite, enlevé la carte, regarder quel condensateurs étaient gonflés,(il y en avaient 4), un magasin d’électronique sur lyon et une heure de démontage, soudure, remontage plus tard, voilà, c’est tout beau.
                    +Ca ne clignote plus, ça s’allume comme avant, comme neuf.

                    +

                    Et dire que j’allais jeter cet écran et claquer 350 euros pour un neuf…

                    +

                    Coût de l’opération pour 4 condensateurs, du fil d’étain 7 euros.

                    +

                    Je précise que je n’avais jamais fais de soudure sur composant électronique auparavant.
                    +Comme quoi cette opération de réparation est à la portée de tous.

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Julot + · 6 juillet 2014 à 13 h 49 min +

                    +

                    Site vraiment détaillé et très claire. J’ai pu dépanner mon écran avec succès. Merci beaucoup pour ces précieuses explications.

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + PaniK31 + · 29 juillet 2014 à 9 h 21 min +

                    +

                    Pas besoin d’une grosse puissance pour le fer, il faut au préalable gratter le vernis sur l’étain afin de pouvoir le faire fondre plus facilement

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + R211_IP-45130B + · 20 août 2014 à 14 h 04 min +

                    +

                    Bonjour à tous,

                    +

                    Une âme charitable peut-elle me communiquer ce qui est gravé sur la résistance CMS R211 de la carte d’alimentation/inverter IP-45130B qui équipe le SAMSUNG 2232BW ? Cette résistance a pris un coup de tournevis et je n’arrive pas à déterminer sa valeur de résistance car son marquage est effacé et comme le composant est abimé la mesure à l’ohmmètre indique l’infinie.

                    +

                    Merci par avance.

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + roger + · 24 octobre 2014 à 17 h 21 min +

                    +

                    Ca refonctionne après échange de 4 condensateurs :
                    +-un 330uf25v remplacé à l’identique.
                    +-trois 820uf25v remplacés par 1000uf25v.
                    +Le tout pour quelques €. Le plus dur était le dessoudage, la tresse n’était pas très efficace contrairement à la pompe.
                    +Grand merci à HugoPoi.

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Max + · 26 février 2015 à 16 h 28 min +

                    +

                    ENORME MERCI!! J’ai réparé mon écran en 20mn pour 3,50€, il était à 2 doigts de partir à la déchetterie. Ca faisait des mois qu’il clignotait, et l’allumage mettait parfois plus d’une demi heure. J’ai changé 5 condos 820uf25v et 1 330uf25v, par exactement les mêmes en neuf, et là il démarre au quart de tour! Ca fait plaisir! :)

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + rocco michelle + · 7 octobre 2015 à 10 h 16 min +

                      +

                      Bonjour je ne sais si vous verrez mon message mais je tente…je cherche quelqu’un qui accepterait de changer mes condensateurs sur mon samsung, les réparateurs me demandent 70 à 80 euros et encore ils n’ont pss envie de le faire et me disent d’acheter un nouvel écran. j’aurais bien tenter mais je n’ai pas de matériel et j’ai lu que les condo pouvaient être très dangereux s’ils avaient de la charge alors j’ai la trouille de bidouiller pq je n’y connais rien. si vous êtes de lyon acccepteriez vous de changer mes condensateurs pour 45 euros? merci de votre réponse.

                      + +
                      +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + lecakeseb + · 27 juillet 2015 à 15 h 26 min +

                    +

                    Bonjour,

                    +

                    J’ai utilisé la vidéo pour démonter mon écran afin de le nettoyer de 4 bêtes d’orage infiltrés entre le premier écran (noir) et la dalle (blanche) de mon samsung SyncMaster 2232W

                    +

                    Petits conseils afin de modérer ce que j’ai pu voir dans cette vidéo :

                    +

                    0 : aspirez, nettoyez l’extérieur de l’écran avant de l’ouvrir et nettoyez la table qui vous servira d’atelier, pour éviter les poussières qui s’infiltreront forcément plus tard si vous ne le faites pas…
                    +1 : pour ouvrir, utilisez plutôt un couteau à enduire pour la première partie (le cadre). Vous n’abîmerez ainsi pas du tout l’écran. Soyez patients, ne forcez pas ! ça viendra doucement, mais ça viendra. Il m’a fallu à peine 10 minutes, sans détériorer l’écran, sans le griffer… Il est encore nickel !
                    +2 : attention à ne pas déconnecter les fils reliant le cadre à la carte. Inutile pour simplement nettoyer l’écran.
                    +3 : pour séparer les deux éléments de la dalle entre lesquels les bêtes se sont infiltrées, les doigts suffisent, pas besoin d’outils qui viendraient les endommager. La dalle blanche reste à l’horizontale, l’écran noir sera tenu à la verticale.
                    +4 : utiliser un chiffon doux ne peluchant pas pour enlever les bêtes (faites-vous aider de quelqu’un qui les enlèvera pendant que vous tenez l’écran extérieur en position verticale).
                    +5 : repositionnez la colle d’étanchéité qui aurait pu se déplacer, avant de repositionner les deux écrans.
                    +6 : commencer par refermer par le bas de l’écran (sinon les éléments de réglage situés au bas de l’écran – luminosité, contraste,…- ne se replaceront pas correctement).
                    +7 : Une fois l’écran refermé, j’ai appliqué un peu de « barrage aux insectes », avec un chiffon à l’arrière de mon écran en insistant surtout sur les bouches d’aération par lesquelles les maudites bestioles ont du s’infiltrer. En espérant ne pas avoir à ouvrir !

                    +

                    Bon courage à vous !

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Michel Jousserandot + · 20 janvier 2017 à 20 h 41 min +

                    +

                    Merci pour les conseils au démontage.
                    +J’avais un problème un peu différent :l’écran ne s’allumait plus du tout. Avec un copain beaucoup plus malin que moi, on a détecté 2 fusibles dont l’un était fichu. On l’a remplacé par un petit fil de cuivre. Et tout a remarché comme avant.
                    +Il faut surtout faire attention quand on teste la partie haute tension
                    +Michel.

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Crec + · 14 juillet 2017 à 10 h 20 min +

                    +

                    Bonjour. Très bons conseils avertis. Merci beaucoup.
                    +Peut-on avoir les mêmes conseils pour un écran BX2250.
                    +Merci par avance.
                    +Crec

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + HugoPoi + · 6 août 2017 à 14 h 03 min +

                      +

                      J’ai pas de BX2250 donc dans le détails non mais si c’est les même symptômes ça doit la même procédure.

                      + +
                      +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Ferronnier + · 10 août 2017 à 17 h 42 min +

                    +

                    Un grand merci !
                    +J’ai changé tous les condensateurs de la partie alimentation de la carte, en déportant certains qui n’avaient pas le même format qu’à l’origine, et ça tourne nickel !

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Nours + · 1 décembre 2017 à 15 h 17 min +

                    +

                    Ca fait des années que j’ai cet article enregistré dans un coin, en nourrissant l’espoir d’avoir un jour le courage de réparer ce foutu écran… Après plus de cinq ans c’est chose faite \o/
                    +Un giga, hypra, immense merci pour ce tutoriel tellement bien expliqué et facile d’accès (je n’avais pas touché à un fer à souder depuis… Oh boy 15 ans déjà).
                    +Après une longue pause, l’écran reprend du service… Jusqu’à la prochaine panne /o/

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Alex + · 11 août 2018 à 13 h 28 min +

                    +

                    Quelqu’un sait qui pourrait me le faire svp j ai le même problème mais aucun matériel

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + David + · 5 février 2019 à 21 h 06 min +

                    +

                    Merci Hugo pour ce tuto qui m’a déjà servi en 2013 et qui va me resservir aujourd’hui car mon 2ème 2232bw commence à avoir les mêmes symptômes.

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + yvan + · 23 novembre 2019 à 17 h 14 min +

                    +

                    Bonjour
                    +j’ai tenté de changer le condensateur qui avait l’air naze mais ça n’a pas marché … toujours le bouton bleu allumé, l’écran est reconnu par Windows 10 même si l’écran est éteint
                    +grâce au service manuel de l’écran fourni plus haut, j’ai vérifié les tensions jusque sur la carte de la dalle et elles sont correctes, ainsi que sur la carte elle-même, tout est ok, donc je pense que ce n’est plus un problème de condensateur
                    +pour les fusibles, ils ressemblent plutôt à des composants qu’à de simple fusibles, mais comme j’ai les bonnes tension, je ne pense pas que ça vienne de là
                    +j’ai bien peur que ce soit la dalle qui soit naze ? quelqu’un a t il des idées supplémentaires avant que je le jette avec grand regret (c’est un 2032bw, mais c’est la même chose, même si ma carte électronique est un peu différente car plus récente
                    +merci d’avance pour vos conseils

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + yvan + · 24 novembre 2019 à 17 h 26 min +

                    +

                    finalement j’ai trouvé, c’est un petit fusible vert qui ressemble à une résistance mais tout vert avec écrit 4A LF qui assure l’alimentation de la dalle.
                    +En le shuntant, mon écran a retrouvé l’image.
                    +après enquête il s’agit d’un fusible pico de 4ampères de chez little fuse, pas du tout évident à trouver
                    +Résolu !

                    + +
                    +
                    + +
                    +
                    +

                    + Reflow Dell 1546 | HugoPoi + · 22 août 2016 à 16 h 09 min +

                    +

                    […] « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable de marque Dell un 1546 pour être précis. Encore […]

                    + +
                    +
                    + +
                    +
                    +

                    + Reflow Dell Inspiron 1546 – HugoPoi + · 23 juin 2017 à 23 h 18 min +

                    +

                    […] d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un […]

                    + +
                    +
                    + +
                    +
                    +
                    +

                    Répondre à raymond Annuler la réponse

                    Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                    +
                    +
                    +

                    + +

                    +
                    +
                    +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +
                    + + +
                    + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/6178ffae96adeffd9b90b9a3b916daf1250db064.00000784.js b/www/.content.EZtzwPjb/html/6178ffae96adeffd9b90b9a3b916daf1250db064.00000784.js new file mode 100644 index 0000000..af125db --- /dev/null +++ b/www/.content.EZtzwPjb/html/6178ffae96adeffd9b90b9a3b916daf1250db064.00000784.js @@ -0,0 +1 @@ +jQuery(document).ready(function(r){function n(t){var e=r(t);e.prop("disabled")||e.closest(".form-group").addClass("is-focused")}function e(t){var o=!1;(t.is(r.material.options.checkboxElements)||t.is(r.material.options.radioElements))&&(o=!0),t.closest("label").hover(function(){var t,e,a=r(this).find("input"),i=a.prop("disabled");o&&(t=r(this),e=i,(t.hasClass("checkbox-inline")||t.hasClass("radio-inline")?t:t.closest(".checkbox").length?t.closest(".checkbox"):t.closest(".radio")).toggleClass("disabled",e)),i||n(a)},function(){a(r(this).find("input"))})}function a(t){r(t).closest(".form-group").removeClass("is-focused")}r.expr[":"].notmdproc=function(t){return!r(t).data("mdproc")},r.material={options:{validate:!0,input:!0,ripples:!0,checkbox:!0,togglebutton:!0,radio:!0,arrive:!0,autofill:!1,withRipples:[".btn:not(.btn-link)",".card-image",".navbar a:not(.withoutripple)",".dropdown-menu a",".nav-tabs a:not(.withoutripple)",".withripple",".pagination li:not(.active):not(.disabled) a:not(.withoutripple)"].join(","),inputElements:"input.form-control, textarea.form-control, select.form-control",checkboxElements:".checkbox > label > input[type=checkbox], label.checkbox-inline > input[type=checkbox]",togglebuttonElements:".togglebutton > label > input[type=checkbox]",radioElements:".radio > label > input[type=radio], label.radio-inline > input[type=radio]"},checkbox:function(t){e(r(t||this.options.checkboxElements).filter(":notmdproc").data("mdproc",!0).after(''))},togglebutton:function(t){e(r(t||this.options.togglebuttonElements).filter(":notmdproc").data("mdproc",!0).after(''))},radio:function(t){e(r(t||this.options.radioElements).filter(":notmdproc").data("mdproc",!0).after(''))},input:function(t){r(t||this.options.inputElements).filter(":notmdproc").data("mdproc",!0).each(function(){var a=r(this),i=a.closest(".form-group");if(0!==i.length||"hidden"===a.attr("type")||a.attr("hidden")||a.parents(".pirate_forms").length||(a.wrap('
                    '),i=a.closest(".form-group")),0===i.length&&"hidden"!==a.attr("type")&&!a.attr("hidden")&&a.parents(".pirate_forms").length){var t=a.prev();"checkbox"===a.attr("type")&&(t=a.next()),a.add(t).wrapAll('
                    '),i=a.closest(".form-group")}a.attr("data-hint")&&(a.after('

                    '+a.attr("data-hint")+"

                    "),a.removeAttr("data-hint"));if(r.each({"input-lg":"form-group-lg","input-sm":"form-group-sm"},function(t,e){a.hasClass(t)&&(a.removeClass(t),i.addClass(e))}),a.hasClass("floating-label")){var e=a.attr("placeholder");a.attr("placeholder",null).removeClass("floating-label");var o=a.attr("id"),n="";o&&(n='for="'+o+'"'),i.addClass("label-floating"),a.after("")}null!==a.val()&&"undefined"!==a.val()&&""!==a.val()||i.addClass("is-empty"),0 '+e+" ").insertBefore(t)}},l.hestia={init:function(){this.navSearch(),this.getPortfolioModalData(),this.fixHeaderPadding(),this.headerSpacingFrontpage(),this.initCarousel(),this.initCarouselSwipe(),this.scrollToTop(),this.detectIos(),this.parallaxHeader(),this.addViewCart(),this.setSearchSizeInput(),this.setControlLabel(),this.styleDefaultSubscribeWidget(),this.fixElementorTemplates(),this.handleGutenbergAlignment()},fixElementorTemplates:function(){if(l(".elementor").length<=0)return!1;var t=l(".navbar").outerHeight();return l(".elementor-template-full-width header").css("margin-bottom",t),l(".page-template-template-fullwidth .main.classic-blog").css("margin-top",t),!1},navSearch:function(){l(".hestia-toggle-search").on("click",function(){l(".navbar").toggleClass("nav-searching");var t=l(".nav-searching");t.find(".hestia-nav-search").addClass("is-focused"),t.find(".hestia-nav-search").find(".search-field").focus(),l(this).find("i").fadeOut(200,function(){l(this).toggleClass("fa-search"),l(this).toggleClass("fa-times")}).fadeIn(200)})},getPortfolioModalData:function(){l("#portfolio").find('a[data-toggle="modal"]').on("click",function(t){t.preventDefault();var e=l(this).data("pid");l.ajax({url:requestpost.ajaxurl,type:"post",data:{action:"hestia_get_portfolio_item_data",pid:e},success:function(t){var e=l(".hestia-portfolio-modal");e.find(".modal-content").html(t),e.on("hidden.bs.modal",function(){l(this).find(".modal-content").html('
                    ')})}})})},fixHeaderPadding:function(){var t=l(".navbar-fixed-top").outerHeight(),e=window.matchMedia("(max-width: 600px)");if(l("#wpadminbar").length&&e.matches?(l(".wrapper.classic-blog").find(".main").css("margin-top",t-46),l(".carousel .item .container").css("padding-top",t+50-46),l(".home.page.page-template-default .navbar").hasClass("no-slider")&&l(".home.page.page-template-default .main").css("margin-top",t-46)):(l(".header-layout-classic-blog").find(".main").css("margin-top",t),l(".carousel .item .container").css("padding-top",t+50),l(".home.page.page-template-default .navbar").hasClass("no-slider")&&l(".home.page.page-template-default .main").css("margin-top",t)),768 div[id^=product].product").css("margin-top",-o)}else l(".page-header.header-small .container , .woocommerce.single-product .blog-post .col-md-12 > div[id^=product].product").removeAttr("style");l(".no-content").length&&l(".page-header.header-small").css("min-height",t+230)},headerSpacingFrontpage:function(){if((!this.inIframe()||!this.isMobileUA())&&0')})},setSearchSizeInput:function(){0'),t.find("p.sib-NAME-area").before(''),t.find(".form-group").each(function(){l(this).addClass("is-empty")})},handleGutenbergAlignment:function(){var t=l("body");if(t.hasClass("page-template-template-pagebuilder-full-width")||t.hasClass("page-template-template-pagebuilder-blank")||t.hasClass("page-template-template-page-sidebar"))return!1;if(0a?e&&(e=!1,t.removeClass("navbar-transparent"),t.addClass("navbar-not-transparent")):e||(e=!0,t.addClass("navbar-transparent"),t.removeClass("navbar-not-transparent")))},17))}},handleResponsiveDropdowns:function(){if(768 a .caret-wrap").on("click touchend",function(t){var e=l(this);t.preventDefault(),t.stopPropagation(),l(e).toggleClass("caret-open"),l(e).parent().siblings().toggleClass("open")})},smoothScroll:function(){l('.navbar a[href*="#"], a.btn[href*="#"]').click(function(){if("#"===l(this).attr("href"))return!1;if(location.pathname.replace(/^\//,"")===this.pathname.replace(/^\//,"")&&location.hostname===this.hostname){var t=l(this.hash);if((t=t.length?t:l("[name="+this.hash.slice(1)+"]")).length)return l("html,body").animate({scrollTop:t.offset().top-l.utilitiesFunctions.verifyNavHeight()},1200),l(".navbar .navbar-collapse").hasClass("in")&&l(".navbar .navbar-collapse.in").removeClass("in"),l("body").hasClass("menu-open")&&(l("body").removeClass("menu-open"),l(".navbar-collapse").css("height","0"),l(".navbar-toggle").attr("aria-expanded","false")),!1}})},activeParentLink:function(){l(".navbar .dropdown > a").click(function(){return"#"===l(this).attr("href")||(location.href=this.href),!1})},highlightMenu:function(){l(window).on("scroll",function(){if(l("body").hasClass("home")&&751<=l(window).width()){var n=l(window).scrollTop(),r=l(".navbar").outerHeight(),s="no";l("#carousel-hestia-generic, section").each(function(){var t="#"+l(this).attr("id"),e=l(this).offset().top,a=l(this).outerHeight(),i=e-r,o=e+a-r;if(n+l.utilitiesFunctions.verifyNavHeight()>=i&&n+l.utilitiesFunctions.verifyNavHeight()<=o)return s="yes",l("nav .on-section").removeClass("on-section"),l('nav a[href$="'+t+'"]').parent("li").addClass("on-section"),!1;"no"===s&&l("nav .on-section").removeClass("on-section")})}})},setBodyOverflow:function(){var t=l("#main-navigation");t.on("show.bs.collapse",function(){l("body").addClass("menu-open")}),t.on("hidden.bs.collapse",function(){l("body").removeClass("menu-open")})},repositionDropdowns:function(){var n=window.innerWidth;if(n<=768)return!1;var t=l(".dropdown-menu");return 0===t.length||l.each(t,function(t,e){var a=l(e),i=a.offset().left;/webkit.*mobile/i.test(navigator.userAgent)&&(i-=window.scrollX);var o=a.outerWidth();n<=i+o&&l(e).css({right:"100%",left:"auto"})}),!1}};var e=0;l.hestiaNavBarScroll={checkNavbarScrollPoint:function(){if(0===l(".navbar-header").length)return!1;if(768<=l.utilitiesFunctions.getWidth()){if(void 0!==l(".navbar-header").offset()){var t=l(".navbar-header").offset().top;/webkit.*mobile/i.test(navigator.userAgent)&&(t-=window.scrollY),e=t+l(".navbar-header").height()}0===l(".hestia_left.header-with-topbar").length&&0===l(".full-screen-menu.header-with-topbar").length||(e=40)}else e=0!==l(".header-with-topbar").length?40:0},addScrollClass:function(){l(window).on("scroll",function(){l(document).scrollTop()>=e?l(".navbar").addClass("navbar-scroll-point"):l(".navbar").removeClass("navbar-scroll-point")})}}}(jQuery),jQuery(document).ready(function(){jQuery.material.init(),jQuery.hestia.init(),jQuery.navigation.init(),jQuery.hestiaFeatures.initAnimations(),jQuery.hestiaFeatures.initTooltips(),jQuery.hestiaNavBarScroll.checkNavbarScrollPoint(),jQuery.hestiaNavBarScroll.addScrollClass()}),jQuery(window).load(function(){jQuery.hestiaFeatures.initMasonry(),jQuery.hestia.sidebarToggle()}),jQuery(window).resize(function(){jQuery.hestiaFeatures.initMasonry(),jQuery.hestia.fixHeaderPadding(),jQuery.hestia.headerSpacingFrontpage(),jQuery.hestia.handleGutenbergAlignment(),jQuery.hestiaNavBarScroll.checkNavbarScrollPoint(),jQuery.navigation.repositionDropdowns()}); \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/618e48fd4d4fbff4cee7178276ff95f2115d64b2.00000634.css b/www/.content.EZtzwPjb/html/618e48fd4d4fbff4cee7178276ff95f2115d64b2.00000634.css new file mode 100644 index 0000000..8043bbf --- /dev/null +++ b/www/.content.EZtzwPjb/html/618e48fd4d4fbff4cee7178276ff95f2115d64b2.00000634.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;background:#fff;border:1px +solid #f00;font-size:10pt;width:280px;padding:2px}span.wpcf7-not-valid-tip-no-ajax{color:#f00;font-size:10pt;display:block}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/61a5957317cf5ba8695f583b62dcbd905a44eed0.00000779.js b/www/.content.EZtzwPjb/html/61a5957317cf5ba8695f583b62dcbd905a44eed0.00000779.js new file mode 100644 index 0000000..e1e810c --- /dev/null +++ b/www/.content.EZtzwPjb/html/61a5957317cf5ba8695f583b62dcbd905a44eed0.00000779.js @@ -0,0 +1,348 @@ +/* Credits: https://github.com/FezVrasta/bootstrap-material-design */ +jQuery(document).ready(function($) { + // Selector to select only not already processed elements + $.expr[':'].notmdproc = function(obj) { + if ($(obj).data('mdproc')) { + return false; + } else { + return true; + } + }; + + function _isChar(evt) { + if (typeof evt.which === 'undefined') { + return true; + } else if (typeof evt.which === 'number' && evt.which > 0) { + return (!evt.ctrlKey && + !evt.metaKey && + !evt.altKey && + evt.which !== 8 && // backspace + evt.which !== 9 && // tab + evt.which !== 13 && // enter + evt.which !== 16 && // shift + evt.which !== 17 && // ctrl + evt.which !== 20 && // caps lock + evt.which !== 27 // escape + ); + } + return false; + } + + function _addFormGroupFocus(element) { + var $element = $(element); + if (!$element.prop('disabled')) { // this is showing as undefined on chrome but works fine on firefox?? + $element.closest('.form-group').addClass('is-focused'); + } + } + + function _toggleDisabledState($element, state) { + var $target; + if ($element.hasClass('checkbox-inline') || $element.hasClass('radio-inline')) { + $target = $element; + } else { + $target = $element.closest('.checkbox').length ? $element.closest('.checkbox') : $element.closest('.radio'); + } + return $target.toggleClass('disabled', state); + } + + function _toggleTypeFocus($input) { + var disabledToggleType = false; + if ($input.is($.material.options.checkboxElements) || $input.is($.material.options.radioElements)) { + disabledToggleType = true; + } + $input.closest('label').hover(function() { + var $i = $(this).find('input'); + var isDisabled = $i.prop('disabled'); // hack because the _addFormGroupFocus() wasn't identifying the property on chrome + if (disabledToggleType) { + _toggleDisabledState($(this), isDisabled); + } + if (!isDisabled) { + _addFormGroupFocus($i); // need to find the input so we can check disablement + } + }, + function() { + _removeFormGroupFocus($(this).find('input')); + }); + } + + function _removeFormGroupFocus(element) { + $(element).closest('.form-group').removeClass('is-focused'); // remove class from form-group + } + + $.material = { + 'options': { + // These options set what will be started by $.material.init() + 'validate': true, + 'input': true, + 'ripples': true, + 'checkbox': true, + 'togglebutton': true, + 'radio': true, + 'arrive': true, + 'autofill': false, + + 'withRipples': [ + '.btn:not(.btn-link)', + '.card-image', + '.navbar a:not(.withoutripple)', + '.dropdown-menu a', + '.nav-tabs a:not(.withoutripple)', + '.withripple', + '.pagination li:not(.active):not(.disabled) a:not(.withoutripple)' + ].join(','), + 'inputElements': 'input.form-control, textarea.form-control, select.form-control', + 'checkboxElements': '.checkbox > label > input[type=checkbox], label.checkbox-inline > input[type=checkbox]', + 'togglebuttonElements': '.togglebutton > label > input[type=checkbox]', + 'radioElements': '.radio > label > input[type=radio], label.radio-inline > input[type=radio]' + }, + 'checkbox': function(selector) { + // Add fake-checkbox to material checkboxes + var $input = $((selector) ? selector : this.options.checkboxElements) + .filter(':notmdproc') + .data('mdproc', true) + .after(''); + + _toggleTypeFocus($input); + }, + 'togglebutton': function(selector) { + // Add fake-checkbox to material checkboxes + var $input = $((selector) ? selector : this.options.togglebuttonElements) + .filter(':notmdproc') + .data('mdproc', true) + .after(''); + + _toggleTypeFocus($input); + }, + 'radio': function(selector) { + // Add fake-radio to material radios + var $input = $((selector) ? selector : this.options.radioElements) + .filter(':notmdproc') + .data('mdproc', true) + .after(''); + + _toggleTypeFocus($input); + }, + 'input': function(selector) { + $((selector) ? selector : this.options.inputElements) + .filter(':notmdproc') + .data('mdproc', true) + .each(function() { + var $input = $(this); + + // Requires form-group standard markup (will add it if necessary) + var $formGroup = $input.closest('.form-group'); // note that form-group may be grandparent in the case of an input-group + if ($formGroup.length === 0 && $input.attr('type') !== 'hidden' && !$input.attr('hidden')) { + $input.wrap('
                    '); + $formGroup = $input.closest('.form-group'); // find node after attached (otherwise additional attachments don't work) + } + + // Legacy - Add hint label if using the old shorthand data-hint attribute on the input + if ($input.attr('data-hint')) { + $input.after('

                    ' + $input.attr('data-hint') + '

                    '); + $input.removeAttr('data-hint'); + } + + // Legacy - Change input-sm/lg to form-group-sm/lg instead (preferred standard and simpler css/less variants) + var legacySizes = { + 'input-lg': 'form-group-lg', + 'input-sm': 'form-group-sm' + }; + $.each(legacySizes, function(legacySize, standardSize) { + if ($input.hasClass(legacySize)) { + $input.removeClass(legacySize); + $formGroup.addClass(standardSize); + } + }); + + // Legacy - Add label-floating if using old shorthand + if ($input.hasClass('floating-label')) { + var placeholder = $input.attr('placeholder'); + $input.attr('placeholder', null).removeClass('floating-label'); + var id = $input.attr('id'); + var forAttribute = ''; + if (id) { + forAttribute = 'for="' + id + '"'; + } + $formGroup.addClass('label-floating'); + $input.after(''); + } + + // Set as empty if is empty (damn I must improve this...) + if ($input.val() === null || $input.val() === 'undefined' || $input.val() === '') { + $formGroup.addClass('is-empty'); + } + + // Support for file input + if ($formGroup.find('input[type=file]').length > 0) { + $formGroup.addClass('is-fileinput'); + } + }); + }, + 'attachInputEventHandlers': function() { + var validate = this.options.validate; + + $(document) + .on('keydown paste', '.form-control', function(e) { + if (_isChar(e)) { + $(this).closest('.form-group').removeClass('is-empty'); + } + }) + .on('keyup change', '.form-control', function() { + var $input = $(this); + var $formGroup = $input.closest('.form-group'); + var isValid = (typeof $input[0].checkValidity === 'undefined' || $input[0].checkValidity()); + + if ($input.val() === '') { + $formGroup.addClass('is-empty'); + } else { + $formGroup.removeClass('is-empty'); + } + + // Validation events do not bubble, so they must be attached directly to the input: http://jsfiddle.net/PEpRM/1/ + // Further, even the bind method is being caught, but since we are already calling #checkValidity here, just alter + // the form-group on change. + // + // NOTE: I'm not sure we should be intervening regarding validation, this seems better as a README and snippet of code. + // BUT, I've left it here for backwards compatibility. + if (validate) { + if (isValid) { + $formGroup.removeClass('has-error'); + } else { + $formGroup.addClass('has-error'); + } + } + }) + .on('focus', '.form-control, .form-group.is-fileinput', function() { + _addFormGroupFocus(this); + }) + .on('blur', '.form-control, .form-group.is-fileinput', function() { + _removeFormGroupFocus(this); + }) + // make sure empty is added back when there is a programmatic value change. + // NOTE: programmatic changing of value using $.val() must trigger the change event i.e. $.val('x').trigger('change') + .on('change', '.form-group input', function() { + var $input = $(this); + if ($input.attr('type') === 'file') { + return; + } + + var $formGroup = $input.closest('.form-group'); + var value = $input.val(); + if (value) { + $formGroup.removeClass('is-empty'); + } else { + $formGroup.addClass('is-empty'); + } + }) + // set the fileinput readonly field with the name of the file + .on('change', '.form-group.is-fileinput input[type="file"]', function() { + var $input = $(this); + var $formGroup = $input.closest('.form-group'); + var value = ''; + $.each(this.files, function(i, file) { + value += file.name + ', '; + }); + value = value.substring(0, value.length - 2); + if (value) { + $formGroup.removeClass('is-empty'); + } else { + $formGroup.addClass('is-empty'); + } + $formGroup.find('input.form-control[readonly]').val(value); + }); + }, + 'ripples': function(selector) { + $((selector) ? selector : this.options.withRipples).ripples(); + }, + 'autofill': function() { + // This part of code will detect autofill when the page is loading (username and password inputs for example) + var loading = setInterval(function() { + $('input[type!=checkbox]').each(function() { + var $this = $(this); + if ($this.val() && $this.val() !== $this.attr('value')) { + $this.trigger('change'); + } + }); + }, 100); + + // After 10 seconds we are quite sure all the needed inputs are autofilled then we can stop checking them + setTimeout(function() { + clearInterval(loading); + }, 10000); + }, + 'attachAutofillEventHandlers': function() { + // Listen on inputs of the focused form (because user can select from the autofill dropdown only when the input has focus) + var focused; + $(document) + .on('focus', 'input', function() { + var $inputs = $(this).parents('form').find('input').not('[type=file]'); + focused = setInterval(function() { + $inputs.each(function() { + var $this = $(this); + if ($this.val() !== $this.attr('value')) { + $this.trigger('change'); + } + }); + }, 100); + }) + .on('blur', '.form-group input', function() { + clearInterval(focused); + }); + }, + 'init': function(options) { + this.options = $.extend({}, this.options, options); + var $document = $(document); + + if ($.fn.ripples && this.options.ripples) { + this.ripples(); + } + if (this.options.input) { + this.input(); + this.attachInputEventHandlers(); + } + if (this.options.checkbox) { + this.checkbox(); + } + if (this.options.togglebutton) { + this.togglebutton(); + } + if (this.options.radio) { + this.radio(); + } + if (this.options.autofill) { + this.autofill(); + this.attachAutofillEventHandlers(); + } + + if (document.arrive && this.options.arrive) { + if ($.fn.ripples && this.options.ripples) { + $document.arrive(this.options.withRipples, function() { + $.material.ripples($(this)); + }); + } + if (this.options.input) { + $document.arrive(this.options.inputElements, function() { + $.material.input($(this)); + }); + } + if (this.options.checkbox) { + $document.arrive(this.options.checkboxElements, function() { + $.material.checkbox($(this)); + }); + } + if (this.options.radio) { + $document.arrive(this.options.radioElements, function() { + $.material.radio($(this)); + }); + } + if (this.options.togglebutton) { + $document.arrive(this.options.togglebuttonElements, function() { + $.material.togglebutton($(this)); + }); + } + + } + } + }; + +}); \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/61d5365c112f1a72e2f816fa9b1456afbb095173.00000676.css b/www/.content.EZtzwPjb/html/61d5365c112f1a72e2f816fa9b1456afbb095173.00000676.css new file mode 100644 index 0000000..20df2bb --- /dev/null +++ b/www/.content.EZtzwPjb/html/61d5365c112f1a72e2f816fa9b1456afbb095173.00000676.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7 .screen-reader-response{position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);height:1px;width:1px;margin:0;padding:0;border:0}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{color:#f00;font-size:1em;display:block}.use-floating-validation-tip span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;border:1px +solid #f00;background:#fff;padding: .2em .8em}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/61d53dd19812fca99e74914958bb5412fd5d95c5.00000259.html b/www/.content.EZtzwPjb/html/61d53dd19812fca99e74914958bb5412fd5d95c5.00000259.html new file mode 100644 index 0000000..348822e --- /dev/null +++ b/www/.content.EZtzwPjb/html/61d53dd19812fca99e74914958bb5412fd5d95c5.00000259.html @@ -0,0 +1,582 @@ + + + + + + + + How to backup FreeNas zvol to S3 storage – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +
                    +

                    Context

                    +
                      +
                    • I have a FreeNAS setup
                    • +
                    • I want a cheap offsite backup solution
                    • +
                    • Backblaze only offer S3 storage solution
                    • +
                    • I have virtual machines on zvol to backup (not just files)
                    • +
                    • ZFS send/receive is very convenient if you have another zfs system in other
                      +location
                    • +
                    +

                    I choose zfsbackup-go, this tool use zfs send/receive to generate archives on S3 storage space. This software is not ready for very critical use, still in « beta » missing some features like deletation on remote location from the command line.

                    +

                    Advantages

                    +
                      +
                    • Can backup zvol as well as dataset
                    • +
                    • Differential backups based on snapshots
                    • +
                    • Encrypted backups
                    • +
                    • Compressed backups
                    • +
                    • Compatible with all S3 solutions
                    • +
                    +

                    Drawbacks

                    +
                      +
                    • You can’t use backups without re-import in a ZFS pool (so real backups
                      +not a archives solution)
                    • +
                    • Still in beta
                    • +
                    +

                    How to

                    +
                      +
                    1. (Optional) Build zfsbackup-go for freebsd with crosscompile from a linux +
                        +
                      1. You need GO
                      2. +
                      3. git clone git@github.com:someone1/zfsbackup-go.git
                      4. +
                      5. GOOS=freebsd GOARCH=amd64 go build -o zfsbackup main.go
                      6. +
                      +
                    2. +
                    3. Generate a gpg key gpg --full-generate-key +

                      Learn gpg getting started

                      +
                    4. +
                    5. +

                      Export the private/public gpg keys

                      +
                        +
                      1. gpg --list-keys
                      2. +
                      3. gpg --export-secret-keys -a keyid
                      4. +
                      5. gpg --export -a keyid
                      6. +
                      +

                      How to export keys

                      +
                    6. +
                    7. +

                      Create the S3 credentials you need
                      +I use BackBlaze because it’s the cheapper one, but you can use every S3 storage service or implementation you want.

                      +
                    8. +
                    9. +

                      Configure periodic snapshot in FreeNas
                      +Freenas Periodical Snapshot

                      +
                    10. +
                    11. +

                      Configure zfsbackup cron task
                      +Crontask FreeNas

                      +
                        +
                      • You need to ensure the schedule is after the snapshot
                      • +
                      • I have develop a very little script to have a more simpler crontask because zfsbackup only support one Dataset at a time
                      • +
                      • Command DATASETS="Tank/Dataset1 Tank/Group/Data1" /root/zfsbackup.sh
                      • +
                      +
                      #!/bin/bash
                      +export B2_ACCOUNT_ID=
                      +export B2_ACCOUNT_KEY=
                      +export PGP_PASSPHRASE=
                      +PGP_EMAIL=
                      +PGP_PUBLIC_RING=
                      +PGP_PRIVATE_RING=
                      +S3_DEST=
                      +for dataset in $DATASETS
                      +do
                      +  /root/zfsbackup send --encryptTo $PGP_EMAIL --signFrom $PGP_EMAIL --publicKeyRingPath $PGP_PUBLIC_RING --secretKeyRingPath $PGP_PRIVATE_RING --fullIfOlderThan 2160h $dataset $S3_DEST
                      +done
                      +
                      +
                    12. +
                    +

                    Conclusion

                    +
                      +
                    • This solution offer very good performance like 15MB/s during backup operation with only 10% cpu usage on Xeon D1521. My Orange ISP uplink is the limitation here.
                    • +
                    • With incremental snapshot, BackBlaze is a very effective solution at low cost like less than 60€ a year for a 100GB on disk backuped VM.
                    • +
                    • DO BACKUPS
                    • +
                    • DO BACKUPS
                    • +
                    • DO BACKUPS
                    • +
                    +
                    +
                    +
                    +
                    +
                    Catégories : Aventure Serveur
                    +
                    +
                    +
                    + + + + + + + + + +
                    +
                    +
                    +
                    +
                    +
                    +
                    +

                    + 1 commentaire

                    +
                    + +
                    +
                    +
                    +
                    +

                    + Rudi Pittman + · 30 mai 2020 à 21 h 25 min +

                    +

                    I think I posted my question to another article by accident. Is there a way to transfer the configured containers from the old rancheros image to the new one?

                    + +
                    +
                    + +
                    +
                    +
                    +

                    Répondre à Rudi Pittman Annuler la réponse

                    Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                    +
                    +
                    +

                    + +

                    +
                    +
                    +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +
                    + + +
                    + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/61f3e8ceb8cf4641ee79a2e32ab5dab1dd3809b3.00000167.html b/www/.content.EZtzwPjb/html/61f3e8ceb8cf4641ee79a2e32ab5dab1dd3809b3.00000167.html new file mode 100644 index 0000000..8a0289a --- /dev/null +++ b/www/.content.EZtzwPjb/html/61f3e8ceb8cf4641ee79a2e32ab5dab1dd3809b3.00000167.html @@ -0,0 +1,869 @@ + + + + + + + + Réparer un Vidéoprojecteur Sony VPL-CX5 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +
                    +

                    Bon les cocos, j’ai récupéré un vidéo projecteur Sony VPL-CX5 en état décédé. Comme je sais que c’est encore et toujours ce problème d’obsolescence programmée j’ai donc décidé de le réparer.

                    +

                    Sony VPL-CX5

                    +

                    Première étape, identifier la panne

                    +

                    Le vidéoprojecteur ne donnait aucun signe de vie, aucune led ne s’allume quand je l’ai branché rien du tout même pas un petit crépitement d’alimentation. Je pense a un problème d’alimentation mais rien est sur tant que je ne l’ai pas démonté. Mais avant le dévissage je vais quand même faire une recherche Google car le Internet il est grand et il est beau. J’ai trouvé un truc qui m’a mis la puce à l’oreille sans même avoir enlever la première visse, sur un forum quelconque que je n’arrive plus à retrouver, un mec dit qu’il a changé un composant (un certain MCZ3001) sur une des cartes d’alimentation, et le vidéoprojecteur remarchait.

                    +

                    Démontage

                    +

                    Sony VPL-CX5

                    +

                    J’ai donc commencé par enlever les quelques visses, puis démonter toutes les cartes une par une, une vrai galère. Pour m’aider j’ai trouvé le « manuel de service » (or Service Manual) que je mets a disposition ici même : sony_vpl-cx5_cs5_servicemanual. J’ai mis dans la suite les références des connecteurs pour les mesures.

                    +

                    1) Premier test vérifier le fusible sur la première carte d’alimentation GA, faire le test avec la carte débranché, j’ai utilisé un voltmètre sur la position test de résistance : test OK.

                    +

                    2) Deuxième test, vérifier la tension continu fournie par cette carte GA sur le connecteur de sortie CN2001 environ 380V DC, DONC FAIRE CECI AVEC PRÉCAUTION (je l’ai fait avec un voltmètre de merde à 5€) : test OK j’ai 380 Volt en sortie. Sur cette carte il y un gros condensateur de 400V donc faire TRÈS ATTENTION MÊME QUAND LA CARTE EST DÉBRANCHÉ DU SECTEUR.(j’ai vérifier le condensateur se décharge assez vite j’ai mesuré 4V 10 secondes après avoir débranché)

                    +

                    3) Maintenant test de la carte GB qui transforme le 400V continu en basse tension continu ici du 24V d’après le SM. Donc j’ai le point de mesure parfait, c’est le connecteur CN3201.

                    +
                    N'oubliez d'ouvrir le manuel de service ça donne des infos précieuses pour le dépannage

                    N’oubliez d’ouvrir le manuel de service ça donne des infos précieuses pour le dépannage

                    +

                    Plusieurs points pour tester le plus pratique étant le petit connecteur blanc de 3 broches qui fournit la masse et VCC 24V. Après mesure sur ce connecteur j’ai une tension stable mais pas du 24VDC, les composants n’ont pas l’air endommagés donc je vérifie à l’entrée du fameux MCZ3001 il est bien alimenté correctement mais ne sort pas 24VDC. Pas de condensateurs chimiques endommagés.

                    +

                    Donc la panne est certainement dû à ce composant, achetons-le !

                    +

                    Trouver le composant de rechange

                    +

                    Au début j’ai cherché chez des e-commerçant d’électronique comme Farnell,Conrad, etc pas trouvé en france, puis j’ai fait les marchants Anglais et je l’ai trouvé mais à 30€ frais de port inclus. Et comme un con j’avais oublié de faire Ebay : encore un coup des chinois 4.27€ avec le support DIP et les frais de port inclus OMFG j’adore la mondialisation. J’en ai pris 2 pour mois de 10€ et comme les chinois ils sont trop fort j’ai tout reçu en moins de 2 semaines.

                    +

                    Capture-ebay-mcz3001

                    +

                    Dés-soudage

                    +

                    Bon j’avais des fer à souder de merde et du coup c’est le #FAIL, j’ai pas réussi à dés-souder proprement, j’ai donc été obligé d’investir dans une merde à 10€ :

                    +

                    Fer à souderEnsuite j’ai finalement réussi à dés-souder :

                    +

                    Carte GB MCZ3001 dés-soudéEt il me semble que sur cette photo j’avais nettoyer avec du dissolvant.

                    +

                    Remontage

                    +

                    Alors je suis désolé mais je n’ai pas de photos pour le MCZ soudé car j’avais déjà remonté le projecteur. Les étapes :

                    +
                      +
                    1. Souder un support fourni (au cas ou ce fameux MCZ rendrais encore l’âme)
                    2. +
                    3. Placer un MCZ neuf dans le support
                    4. +
                    5. Relier la carte GA et GB ensemble
                    6. +
                    7. Brancher sur le 220V
                    8. +
                    9. Tester le 24VDC sur le connecteur CN3201
                    10. +
                    11. #WIN
                    12. +
                    13. Remonter le projecteur
                    14. +
                    15. Tester en vrai
                    16. +
                    17. #WIN2
                    18. +
                    +

                    Conclusion

                    +

                    Oui c’est un WIN d’une valeur 4€ mais je tiens à préciser que ça représente environ 10 heures de travail continu. Entre les recherches Google et la lecture de la documentation, les heures passés au démontage, les quelques fois ou je me suis arraché les cheveux et risquer ma vie avec un voltmètre à 5€.

                    +

                    Mon banc de test

                    +

                    Banc de test chez HugoLa table du salon 2Les Tofs

                    + + +
                    +
                    +
                    + +
                    +
                    + + + + + + + + + +
                    +
                    +
                    +
                    +
                    +
                    +
                    +

                    + 16 commentaires

                    +
                    + +
                    +
                    +
                    +
                    +

                    + Georg + · 30 janvier 2014 à 12 h 22 min +

                    +

                    Hello,
                    +dear Hugo, at first: HAVE MANY THANKS FOR YOUR VERY INTERESTING BLOG!!!

                    +

                    I also have a cx5 and try to repair it.

                    +

                    It has the same problems like your projector…

                    +

                    I’ve measured the CN2001 but in my power supply there are only 320 V (stable).
                    +Are you sure, that there have to be 380V?
                    +In the service manual, I didn’t find a value (either 320V nor 380V)

                    +

                    Best Regards
                    +Your Georg

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + HugoPoi + · 21 février 2014 à 17 h 36 min +

                      +

                      Sorry to be so long to answer,
                      +320V seems to be OK, I have extrapolated the value from the schema ~ 220Vxrootsquare(2) but this depends of the quality of your current source. I think 320 will not impact the power for the next card.

                      +

                      Good repair !
                      +Thanks for the comment :-D

                      + +
                      +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + henri moine + · 2 février 2014 à 20 h 43 min +

                    +

                    Bonsoir,
                    +Merci beaucoup pour l’explication détaillée et les photos.
                    +Je vais pas tarder de m’attaquer à mon SONY VPL CS7 bizarrement inerte depuis quelques semaines…
                    +Bonne continuation !

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + florian + · 21 avril 2014 à 9 h 09 min +

                      +

                      Bonjour,
                      +Je possède également un sony VPL CS7, et depuis plusieurs mois il a quelques signes de faiblesses.

                      +

                      1) lorsque je le débranche du secteur et que je le rebranche, il faut que j’attende 24 à 48 h pour que le voyant on/off se mette à éclairer, donc je ne peux pas l’allumer pendant ce temps.

                      +

                      2) aujourd’hui j’ai beau le laisser brancher, aucun signe de vie plus rien ne s’allume.

                      +

                      As tu attaqué ton VPL, As tu trouvé quelque chose ?

                      +

                      Merci

                      + +
                      +
                      +
                        +
                        + +
                        +
                        +
                        +
                        +

                        + HugoPoi + · 9 mai 2014 à 17 h 50 min +

                        +

                        Le VPL que j’avais était en panne je l’ai réparé jusqu’à il y a 2 mois ou il retombé en panne. Ton problème d’allumage ressemble à un problème de condensateur cramé. tu peux regarder si tu en vois des gonflés en démontant.

                        + +
                        +
                        + +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Ghent + · 21 septembre 2014 à 12 h 48 min +

                    +

                    Bonjour,

                    +

                    Déjà, super tuto.
                    +Je rencontre un problème à priori similaire avec mon CX5: le bouton de mise sous tension n’est plus éclairé et il ne se passe rien quand j’appuie dessus.

                    +

                    Je me suis donc lancé, et j’ai démonté jusqu’à atteindre les cartes d’alimentation.
                    +J’ai mesuré donc au niveau du CN3201, et là j’ai 22V continu stable.
                    +D’où ma première question, ai-je le même problème que toi avec le MCZ3001, ou dois-je chercher autre part ?
                    +Faut-il 24V exactement ?

                    +

                    Ensuite, j’ai essayé de me rapprocher du composant lui-même, mais je ne sais pas où mesurer. Le diagramme indique le VC1 sur la patte 8, mais je ne sais pas où prendre la masse.
                    +Saurais-tu m’aider ?

                    +

                    J’ai enfin voulu tester la tension en sortie de la carte GB, le point 17V, mais même question, si je teste la patte 1 du connecteur, où prendre la masse pour vérifier qu’il y a bien 17V ?
                    +Cette partie est-elle alimentée malgré que l’appareil soit éteint ?

                    +

                    Dans tous les cas, j’ai commandé le MCZ3001D, mais je voudrais m’assurer qu’il est bien le responsable avant de le changer.

                    +

                    Merci d’avance pour tes réponses, et encore une fois, merci de partager ton travail !

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + HugoPoi + · 26 septembre 2014 à 15 h 01 min +

                      +

                      Je penses que si tu as 22V sur CN3201 le problème est sûrement ailleurs. Même si cela ne coûte rien de changer le MCZ3001D si tu as de quoi dessouder proprement. Regarde sur le service manuel pour tester les autres tensions qui sortent de la carte après les partie d’isolement, de mémoire il y a 3,3 V et du 5V.

                      + +
                      +
                      +
                        +
                        + +
                        +
                        +
                        +
                        +

                        + Neckron + · 12 décembre 2014 à 21 h 32 min +

                        +

                        Bonsoir, je déterre un peu ce vpl-cx5 que je possède et que je vends !!!
                        +Je voie qu’il y a encore des personnes qui s’y intéresse.
                        +Je précise juste que le mien est en excellent état de marche, il y a la télécommande et qu’il n’a servi QUE 220 Heures. Lampe d’origine. Je cherchais pendant un temps un moyen de l’upgrader pour l’image, mais finalement…. je change…

                        + +
                        +
                        + +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Jean-Marie + · 31 décembre 2014 à 14 h 43 min +

                    +

                    Bonjour Hugo.
                    +Merci pour ton partage d’expérience.
                    +Moi aussi, j’ai un VPL-CS7 inerte comme tu dis. Pas la moindre led s’allume ou clignote quand je le branche.
                    +Je l’ai complètement démonté. Je soupçonne un composant sur le bloc d’alim.
                    +As-tu réparé le tien ?
                    +Merci.
                    +JM.

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + HugoPoi + · 31 janvier 2015 à 15 h 13 min +

                      +

                      Moi j’ai bien réparé mon CX5 mais celui-ci est retombé en panne 6 mois plus tard. Cette fois-ci avec plus de composants endommagés :-(
                      +Bon courage pour les réparations.

                      + +
                      +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Sorce + · 14 mars 2015 à 16 h 05 min +

                    +

                    Bonjour ,j’ai un vpl cs6 ,qui ne s’allume pas rien du tous j’ai suivi tes étape et sur le connecteur con 2001 et la 325v bizarre bon je relie la carte gb pour tester au borne du con 3201 et la 15v et sa retombe et sa remonte a 15v peut tu m aider cdt richard (pense tu que je doi changer le mcz)

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + HugoPoi + · 29 avril 2015 à 16 h 18 min +

                      +

                      Vérifiez les autres tensions en sortie de la carte GB, de mémoire il doit y avoir 3,3 V du 5 V et du 15V. Si tout est OK, la carte-mère principale est peut-être endommagé et pas moyen de réparer sans changement.

                      + +
                      +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + Gilles + · 16 juin 2018 à 13 h 44 min +

                      +

                      Même chose que vous ?
                      +Avez-vous trouvé une solution ?
                      +Est-ce que c’est normal cette tension non stable ?

                      + +
                      +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Daoud Yacoub + · 20 octobre 2015 à 9 h 54 min +

                    +

                    Je remercie beaucoup l’equipe

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Daoud Yacoub + · 20 octobre 2015 à 10 h 02 min +

                    +

                    Aidez moi à depanner mon vidéo projecteur le tout ne s’allume pas ;jai démonté et nettoyer toutes les plaques alimentation et logique me rien ne se passe mais en toute sincérité si je peux avoir le document technique de réparation m’est indispensable

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + HugoPoi + · 24 octobre 2015 à 13 h 39 min +

                      +

                      Les commentaires n’ont pas pour vocation d’être un forum :-)

                      + +
                      +
                      + +
                    + +
                    +
                    +
                    +

                    Répondre à Ghent Annuler la réponse

                    Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                    +
                    +
                    +

                    + +

                    +
                    +
                    +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +
                    + + +
                    + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/62447557b4ed129c0f3fa008217a816db376099d.00001213.js b/www/.content.EZtzwPjb/html/62447557b4ed129c0f3fa008217a816db376099d.00001213.js new file mode 100644 index 0000000..bc1b451 --- /dev/null +++ b/www/.content.EZtzwPjb/html/62447557b4ed129c0f3fa008217a816db376099d.00001213.js @@ -0,0 +1,2 @@ +/*! This file is auto-generated */ +window.addComment=function(v){var I,C,h,E=v.document,b={commentReplyClass:"comment-reply-link",commentReplyTitleId:"reply-title",cancelReplyId:"cancel-comment-reply-link",commentFormId:"commentform",temporaryFormId:"wp-temp-form-div",parentIdFieldId:"comment_parent",postIdFieldId:"comment_post_ID"},e=v.MutationObserver||v.WebKitMutationObserver||v.MozMutationObserver,r="querySelector"in E&&"addEventListener"in v,n=!!E.documentElement.dataset;function t(){d(),e&&new e(o).observe(E.body,{childList:!0,subtree:!0})}function d(e){if(r&&(I=g(b.cancelReplyId),C=g(b.commentFormId),I)){I.addEventListener("touchstart",l),I.addEventListener("click",l);var t=function(e){if((e.metaKey||e.ctrlKey)&&13===e.keyCode)return C.removeEventListener("keydown",t),e.preventDefault(),C.submit.click(),!1};C&&C.addEventListener("keydown",t);for(var n,d=function(e){var t=b.commentReplyClass;e&&e.childNodes||(e=E);t=E.getElementsByClassName?e.getElementsByClassName(t):e.querySelectorAll("."+t);return t}(e),o=0,i=d.length;o + + +Sapin de Nol + + +

                    Ce script necessite jQuery pour fonctionner !

                    +
                    +
                    + + + \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/62b981b0610990bf4b05a8a8efc2f179f5f0f93d.00000263.html b/www/.content.EZtzwPjb/html/62b981b0610990bf4b05a8a8efc2f179f5f0f93d.00000263.html new file mode 100644 index 0000000..3456776 --- /dev/null +++ b/www/.content.EZtzwPjb/html/62b981b0610990bf4b05a8a8efc2f179f5f0f93d.00000263.html @@ -0,0 +1,552 @@ + + + + + + + + Je me barre de Facebook – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +
                    +

                    Cela fait un long moment que je me dis que je vais supprimer mon compte Facebook, voilà mes raisons et pourquoi j’ai du mal a partir.

                    +

                    Pourquoi

                    +

                    Comme on m’a largement devancé sur pourquoi il faut se barrer à tout prix, je vous recommande la lecture des 31 raisons de quitter Facebook.

                    +

                    Mes raisons en résumé :

                    +

                    Facebook est tentaculaire

                    +

                    WhatsApp, Messenger, Instagram, Facbook a presque toutes nos intéractions sociales surtout depuis 2020, pas les miennes, enfin juste des traces mais c’est déjà trop. Et même quand vous n’avez pas ces applications Facebook essaye de vous trackez via la miriade de site qui dispose de l’authentification Facebook pour chopper de la donnée sur vous.

                    +

                    Je suis captif

                    +

                    C’est devenu le plus grand annuaire de la terre, et ça marche bien.
                    +Facebook fait tout pour que vous ne puissiez partir, la preuve par le module d’export qui exporte moins de données que ce qui est accessible pour les annonceurs.
                    +Donc si vous voulez faire l’expérience vous pouvez « exporter vos données » ici, et dans le fichier friends.json vous retrouvez ceci :

                    +
                    {
                    +  "friends": [
                    +    {
                    +      "name": "Jean Jacques",
                    +      "timestamp": 1579443512
                    +    },
                    +    {
                    +      "name": "KikouDu76",
                    +      "timestamp": 1579296454
                    +    },
                    +    {
                    +      "name": "Oli Flow du 93",
                    +      "timestamp": 1538450689
                    +    },
                    +    {
                    +      "name": "Mike Dupont",
                    +      "timestamp": 1524253985
                    +    },
                    +
                    +

                    Un fichier inutilisable car vous avez uniquement le pseudo temporaire ainsi que la date d’ajout, que des informations parfaitements inutiles.
                    +Alors si vous voulez rendre ce fichier un peu plus utilisable, je vous invite à aller cocher cette l’option Autoriser mes amis à inclure mon adresse e-mail dans Télécharger vos informations sur cette page.

                    +

                    Option Facebook Autoriser mes amis à inclure mon adresse e-mail dans Télécharger vos informations.
                    +J’ai vérifié j’ai 4 emails sur 295 personnes dans mon fichier. Cela fait 1.4% si j’arrondis HOURA !

                    +

                    Je passe le paragraphe sur Cambridge Analytica

                    +

                    Vous ne choississez pas les clients de Facebook.
                    +Rappel : c’est grace aux données de Facebook dont 50 millions de profils que Cambridge Analytica une société de microciblage politique, a réussi à faire élire Donald Trump.
                    +Je vous laisse lire les 6 pages d’articles accablant sur Facebook sur NextInpact.

                    +

                    Les promesses de Facebook valent du vent

                    +

                    Le chiffrement de bout en bout, oui c’est beau sauf qu’ils controllent le code des applications donc rien empèche Facebook de lire vos messages directement dans l’application après déchiffrement …

                    +

                    BONUS 1

                    + +

                    BONUS 2

                    +

                    +

                    Comment je vais partir

                    +
                      +
                    1. Compte a rebours lancé ce jour Dimanche 8 Novembre 2020 pour une durée de 30 jours
                    2. +
                    3. Comme expliqué plus haut, vous pouvez activer la visibilité de votre email pour les exportations avant que mon compte ne soit supprimé pour que je puisse à minima avoir votre email.
                    4. +
                    5. Dans le délais du compte à rebours de suppression, vous pouvez prendre mes coordonnées pour utiliser une autre solution de communication
                    6. +
                    7. Fin du game le Mardi 8 Décembre 16h00 CET
                    8. +
                    +

                    Les alternatives

                    +
                      +
                    • Les emails pour les message directs et urgents ( c’est mieux quand c’est pas chez les GAFAM …)
                    • +
                    • Element aka Riot aka Matrix mon username @hugopoi:home.hugopoi.net
                    • +
                    • Pour les photos de chats nous avons Mastodon ou PixelFed
                    • +
                    • XMPP
                    • +
                    • IRC si vous etes nostolagique des vieux trucs
                    • +
                    +
                    +
                    +
                    +
                    +
                    Catégories : News
                    +
                    +
                    +
                    + + + + + + + + + +
                    +
                    +
                    +
                    +
                    +
                    +
                    +

                    + 0 commentaire

                    +
                    +
                    +
                    +

                    Laisser un commentaire

                    Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                    +
                    +
                    +

                    + +

                    +
                    +
                    +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +
                    + + +
                    + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/62c2180b22ad7e95bc288c3c7988fc27d4e255d8.00000538.xml b/www/.content.EZtzwPjb/html/62c2180b22ad7e95bc288c3c7988fc27d4e255d8.00000538.xml new file mode 100644 index 0000000..2d703f2 --- /dev/null +++ b/www/.content.EZtzwPjb/html/62c2180b22ad7e95bc288c3c7988fc27d4e255d8.00000538.xml @@ -0,0 +1,43 @@ + + + twitch – HugoPoi + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Mon, 22 Aug 2016 14:10:26 +0000 + fr-FR + hourly + 1 + https://wordpress.org/?v=4.6.1 + + Et si on faisait sans Twitch et sans Youtube + http://blog.hugopoi.net/2015/10/24/et-si-on-faisait-sans-twitch-et-sans-youtube/ + http://blog.hugopoi.net/2015/10/24/et-si-on-faisait-sans-twitch-et-sans-youtube/#respond + Sat, 24 Oct 2015 13:07:55 +0000 + + + + + + + + + + + + + + http://blog.hugopoi.net/?p=909 + Lire la suite »

                    ]]>
                    + http://blog.hugopoi.net/2015/10/24/et-si-on-faisait-sans-twitch-et-sans-youtube/feed/ + 0 +
                    +
                    +
                    diff --git a/www/.content.EZtzwPjb/html/63921d83bc11bb94102e19200a90f40fccfce27a.00001274.xml b/www/.content.EZtzwPjb/html/63921d83bc11bb94102e19200a90f40fccfce27a.00001274.xml new file mode 100644 index 0000000..861ff02 --- /dev/null +++ b/www/.content.EZtzwPjb/html/63921d83bc11bb94102e19200a90f40fccfce27a.00001274.xml @@ -0,0 +1,7 @@ + +1.0HugoPoihttp://blog.hugopoi.netHugoPoihttp://blog.hugopoi.net/author/hugopoi/Test du Samsung Galaxy Srich600338<blockquote class="wp-embedded-content"><a href="/2010/12/27/test-du-samsung-galaxy-s/">Test du Samsung Galaxy S</a></blockquote> +<script type='text/javascript'> +<!--//--><![CDATA[//><!-- + !function(a,b){"use strict";function c(){if(!e){e=!0;var a,c,d,f,g=-1!==navigator.appVersion.indexOf("MSIE 10"),h=!!navigator.userAgent.match(/Trident.*rv:11\./),i=b.querySelectorAll("iframe.wp-embedded-content");for(c=0;c<i.length;c++)if(d=i[c],!d.getAttribute("data-secret")){if(f=Math.random().toString(36).substr(2,10),d.src+="#?secret="+f,d.setAttribute("data-secret",f),g||h)a=d.cloneNode(!0),a.removeAttribute("security"),d.parentNode.replaceChild(a,d)}else;}}var d=!1,e=!1;if(b.querySelector)if(a.addEventListener)d=!0;if(a.wp=a.wp||{},!a.wp.receiveEmbedMessage)if(a.wp.receiveEmbedMessage=function(c){var d=c.data;if(d.secret||d.message||d.value)if(!/[^a-zA-Z0-9]/.test(d.secret)){var e,f,g,h,i,j=b.querySelectorAll('iframe[data-secret="'+d.secret+'"]'),k=b.querySelectorAll('blockquote[data-secret="'+d.secret+'"]');for(e=0;e<k.length;e++)k[e].style.display="none";for(e=0;e<j.length;e++)if(f=j[e],c.source===f.contentWindow){if(f.removeAttribute("style"),"height"===d.message){if(g=parseInt(d.value,10),g>1e3)g=1e3;else if(~~g<200)g=200;f.height=g}if("link"===d.message)if(h=b.createElement("a"),i=b.createElement("a"),h.href=f.getAttribute("src"),i.href=d.value,i.host===h.host)if(b.activeElement===f)a.top.location.href=d.value}else;}},d)a.addEventListener("message",a.wp.receiveEmbedMessage,!1),b.addEventListener("DOMContentLoaded",c,!1),a.addEventListener("load",c,!1)}(window,document); +//--><!]]> +</script><iframe sandbox="allow-scripts" security="restricted" src="/2010/12/27/test-du-samsung-galaxy-s/embed/" width="600" height="338" title="« Test du Samsung Galaxy S » — HugoPoi" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" class="wp-embedded-content"></iframe> diff --git a/www/.content.EZtzwPjb/html/63d3967b2bccd17e1d5515bfead749dab4c35b74.00000552.html b/www/.content.EZtzwPjb/html/63d3967b2bccd17e1d5515bfead749dab4c35b74.00000552.html new file mode 100644 index 0000000..a8efe21 --- /dev/null +++ b/www/.content.EZtzwPjb/html/63d3967b2bccd17e1d5515bfead749dab4c35b74.00000552.html @@ -0,0 +1,371 @@ + + + + + + + wifi – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +

                    Asus U36 et OCZ Vertex 3 la suite

                    Après un mois d’attente auprès de Cdiscount, pour au final m’annoncer le remboursement de mon SSD Vertex 2 qui est mort subitement, j’ai donc décidé de commander un Vertex 3 qui va remplacer le mort au sein de mon Asus U36JC. Et pour ne pas l’ouvrir juste pour un banal remplacement de SSD j’ai décidé de remplacer par la même occasion la carte wifi, une Intel N-1000 par une Intel N-6320. Celle-ci disposant en plus du bluetooth. J’en ai donc profité pour prendre des photos supplémentaires du démontage pour compléter mon précédent article : Démontage d’un Asus U36. Vous pouvez d’abord lire mon ancien article avant d’attaquer celui-ci, je ne ferai qu’apporter des informations complémentaires pour le démontage. (suite…)

                    +
                    Par HugoPoi, il y a
                    +
                    + +
                    +
                    +
                    +
                    + +
                    +
                    + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/63d914177ed6636d910d5a5cfb7a17c7657b89b4.00000160.html b/www/.content.EZtzwPjb/html/63d914177ed6636d910d5a5cfb7a17c7657b89b4.00000160.html new file mode 100644 index 0000000..5762474 --- /dev/null +++ b/www/.content.EZtzwPjb/html/63d914177ed6636d910d5a5cfb7a17c7657b89b4.00000160.html @@ -0,0 +1,869 @@ + + + + + + + + Réparer un Vidéoprojecteur Sony VPL-CX5 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +
                    +

                    Bon les cocos, j’ai récupéré un vidéo projecteur Sony VPL-CX5 en état décédé. Comme je sais que c’est encore et toujours ce problème d’obsolescence programmée j’ai donc décidé de le réparer.

                    +

                    Sony VPL-CX5

                    +

                    Première étape, identifier la panne

                    +

                    Le vidéoprojecteur ne donnait aucun signe de vie, aucune led ne s’allume quand je l’ai branché rien du tout même pas un petit crépitement d’alimentation. Je pense a un problème d’alimentation mais rien est sur tant que je ne l’ai pas démonté. Mais avant le dévissage je vais quand même faire une recherche Google car le Internet il est grand et il est beau. J’ai trouvé un truc qui m’a mis la puce à l’oreille sans même avoir enlever la première visse, sur un forum quelconque que je n’arrive plus à retrouver, un mec dit qu’il a changé un composant (un certain MCZ3001) sur une des cartes d’alimentation, et le vidéoprojecteur remarchait.

                    +

                    Démontage

                    +

                    Sony VPL-CX5

                    +

                    J’ai donc commencé par enlever les quelques visses, puis démonter toutes les cartes une par une, une vrai galère. Pour m’aider j’ai trouvé le « manuel de service » (or Service Manual) que je mets a disposition ici même : sony_vpl-cx5_cs5_servicemanual. J’ai mis dans la suite les références des connecteurs pour les mesures.

                    +

                    1) Premier test vérifier le fusible sur la première carte d’alimentation GA, faire le test avec la carte débranché, j’ai utilisé un voltmètre sur la position test de résistance : test OK.

                    +

                    2) Deuxième test, vérifier la tension continu fournie par cette carte GA sur le connecteur de sortie CN2001 environ 380V DC, DONC FAIRE CECI AVEC PRÉCAUTION (je l’ai fait avec un voltmètre de merde à 5€) : test OK j’ai 380 Volt en sortie. Sur cette carte il y un gros condensateur de 400V donc faire TRÈS ATTENTION MÊME QUAND LA CARTE EST DÉBRANCHÉ DU SECTEUR.(j’ai vérifier le condensateur se décharge assez vite j’ai mesuré 4V 10 secondes après avoir débranché)

                    +

                    3) Maintenant test de la carte GB qui transforme le 400V continu en basse tension continu ici du 24V d’après le SM. Donc j’ai le point de mesure parfait, c’est le connecteur CN3201.

                    +
                    N'oubliez d'ouvrir le manuel de service ça donne des infos précieuses pour le dépannage

                    N’oubliez d’ouvrir le manuel de service ça donne des infos précieuses pour le dépannage

                    +

                    Plusieurs points pour tester le plus pratique étant le petit connecteur blanc de 3 broches qui fournit la masse et VCC 24V. Après mesure sur ce connecteur j’ai une tension stable mais pas du 24VDC, les composants n’ont pas l’air endommagés donc je vérifie à l’entrée du fameux MCZ3001 il est bien alimenté correctement mais ne sort pas 24VDC. Pas de condensateurs chimiques endommagés.

                    +

                    Donc la panne est certainement dû à ce composant, achetons-le !

                    +

                    Trouver le composant de rechange

                    +

                    Au début j’ai cherché chez des e-commerçant d’électronique comme Farnell,Conrad, etc pas trouvé en france, puis j’ai fait les marchants Anglais et je l’ai trouvé mais à 30€ frais de port inclus. Et comme un con j’avais oublié de faire Ebay : encore un coup des chinois 4.27€ avec le support DIP et les frais de port inclus OMFG j’adore la mondialisation. J’en ai pris 2 pour mois de 10€ et comme les chinois ils sont trop fort j’ai tout reçu en moins de 2 semaines.

                    +

                    Capture-ebay-mcz3001

                    +

                    Dés-soudage

                    +

                    Bon j’avais des fer à souder de merde et du coup c’est le #FAIL, j’ai pas réussi à dés-souder proprement, j’ai donc été obligé d’investir dans une merde à 10€ :

                    +

                    Fer à souderEnsuite j’ai finalement réussi à dés-souder :

                    +

                    Carte GB MCZ3001 dés-soudéEt il me semble que sur cette photo j’avais nettoyer avec du dissolvant.

                    +

                    Remontage

                    +

                    Alors je suis désolé mais je n’ai pas de photos pour le MCZ soudé car j’avais déjà remonté le projecteur. Les étapes :

                    +
                      +
                    1. Souder un support fourni (au cas ou ce fameux MCZ rendrais encore l’âme)
                    2. +
                    3. Placer un MCZ neuf dans le support
                    4. +
                    5. Relier la carte GA et GB ensemble
                    6. +
                    7. Brancher sur le 220V
                    8. +
                    9. Tester le 24VDC sur le connecteur CN3201
                    10. +
                    11. #WIN
                    12. +
                    13. Remonter le projecteur
                    14. +
                    15. Tester en vrai
                    16. +
                    17. #WIN2
                    18. +
                    +

                    Conclusion

                    +

                    Oui c’est un WIN d’une valeur 4€ mais je tiens à préciser que ça représente environ 10 heures de travail continu. Entre les recherches Google et la lecture de la documentation, les heures passés au démontage, les quelques fois ou je me suis arraché les cheveux et risquer ma vie avec un voltmètre à 5€.

                    +

                    Mon banc de test

                    +

                    Banc de test chez HugoLa table du salon 2Les Tofs

                    + + +
                    +
                    +
                    + +
                    +
                    + + + + + + + + + +
                    +
                    +
                    +
                    +
                    +
                    +
                    +

                    + 16 commentaires

                    +
                    + +
                    +
                    +
                    +
                    +

                    + Georg + · 30 janvier 2014 à 12 h 22 min +

                    +

                    Hello,
                    +dear Hugo, at first: HAVE MANY THANKS FOR YOUR VERY INTERESTING BLOG!!!

                    +

                    I also have a cx5 and try to repair it.

                    +

                    It has the same problems like your projector…

                    +

                    I’ve measured the CN2001 but in my power supply there are only 320 V (stable).
                    +Are you sure, that there have to be 380V?
                    +In the service manual, I didn’t find a value (either 320V nor 380V)

                    +

                    Best Regards
                    +Your Georg

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + HugoPoi + · 21 février 2014 à 17 h 36 min +

                      +

                      Sorry to be so long to answer,
                      +320V seems to be OK, I have extrapolated the value from the schema ~ 220Vxrootsquare(2) but this depends of the quality of your current source. I think 320 will not impact the power for the next card.

                      +

                      Good repair !
                      +Thanks for the comment :-D

                      + +
                      +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + henri moine + · 2 février 2014 à 20 h 43 min +

                    +

                    Bonsoir,
                    +Merci beaucoup pour l’explication détaillée et les photos.
                    +Je vais pas tarder de m’attaquer à mon SONY VPL CS7 bizarrement inerte depuis quelques semaines…
                    +Bonne continuation !

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + florian + · 21 avril 2014 à 9 h 09 min +

                      +

                      Bonjour,
                      +Je possède également un sony VPL CS7, et depuis plusieurs mois il a quelques signes de faiblesses.

                      +

                      1) lorsque je le débranche du secteur et que je le rebranche, il faut que j’attende 24 à 48 h pour que le voyant on/off se mette à éclairer, donc je ne peux pas l’allumer pendant ce temps.

                      +

                      2) aujourd’hui j’ai beau le laisser brancher, aucun signe de vie plus rien ne s’allume.

                      +

                      As tu attaqué ton VPL, As tu trouvé quelque chose ?

                      +

                      Merci

                      + +
                      +
                      +
                        +
                        + +
                        +
                        +
                        +
                        +

                        + HugoPoi + · 9 mai 2014 à 17 h 50 min +

                        +

                        Le VPL que j’avais était en panne je l’ai réparé jusqu’à il y a 2 mois ou il retombé en panne. Ton problème d’allumage ressemble à un problème de condensateur cramé. tu peux regarder si tu en vois des gonflés en démontant.

                        + +
                        +
                        + +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Ghent + · 21 septembre 2014 à 12 h 48 min +

                    +

                    Bonjour,

                    +

                    Déjà, super tuto.
                    +Je rencontre un problème à priori similaire avec mon CX5: le bouton de mise sous tension n’est plus éclairé et il ne se passe rien quand j’appuie dessus.

                    +

                    Je me suis donc lancé, et j’ai démonté jusqu’à atteindre les cartes d’alimentation.
                    +J’ai mesuré donc au niveau du CN3201, et là j’ai 22V continu stable.
                    +D’où ma première question, ai-je le même problème que toi avec le MCZ3001, ou dois-je chercher autre part ?
                    +Faut-il 24V exactement ?

                    +

                    Ensuite, j’ai essayé de me rapprocher du composant lui-même, mais je ne sais pas où mesurer. Le diagramme indique le VC1 sur la patte 8, mais je ne sais pas où prendre la masse.
                    +Saurais-tu m’aider ?

                    +

                    J’ai enfin voulu tester la tension en sortie de la carte GB, le point 17V, mais même question, si je teste la patte 1 du connecteur, où prendre la masse pour vérifier qu’il y a bien 17V ?
                    +Cette partie est-elle alimentée malgré que l’appareil soit éteint ?

                    +

                    Dans tous les cas, j’ai commandé le MCZ3001D, mais je voudrais m’assurer qu’il est bien le responsable avant de le changer.

                    +

                    Merci d’avance pour tes réponses, et encore une fois, merci de partager ton travail !

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + HugoPoi + · 26 septembre 2014 à 15 h 01 min +

                      +

                      Je penses que si tu as 22V sur CN3201 le problème est sûrement ailleurs. Même si cela ne coûte rien de changer le MCZ3001D si tu as de quoi dessouder proprement. Regarde sur le service manuel pour tester les autres tensions qui sortent de la carte après les partie d’isolement, de mémoire il y a 3,3 V et du 5V.

                      + +
                      +
                      +
                        +
                        + +
                        +
                        +
                        +
                        +

                        + Neckron + · 12 décembre 2014 à 21 h 32 min +

                        +

                        Bonsoir, je déterre un peu ce vpl-cx5 que je possède et que je vends !!!
                        +Je voie qu’il y a encore des personnes qui s’y intéresse.
                        +Je précise juste que le mien est en excellent état de marche, il y a la télécommande et qu’il n’a servi QUE 220 Heures. Lampe d’origine. Je cherchais pendant un temps un moyen de l’upgrader pour l’image, mais finalement…. je change…

                        + +
                        +
                        + +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Jean-Marie + · 31 décembre 2014 à 14 h 43 min +

                    +

                    Bonjour Hugo.
                    +Merci pour ton partage d’expérience.
                    +Moi aussi, j’ai un VPL-CS7 inerte comme tu dis. Pas la moindre led s’allume ou clignote quand je le branche.
                    +Je l’ai complètement démonté. Je soupçonne un composant sur le bloc d’alim.
                    +As-tu réparé le tien ?
                    +Merci.
                    +JM.

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + HugoPoi + · 31 janvier 2015 à 15 h 13 min +

                      +

                      Moi j’ai bien réparé mon CX5 mais celui-ci est retombé en panne 6 mois plus tard. Cette fois-ci avec plus de composants endommagés :-(
                      +Bon courage pour les réparations.

                      + +
                      +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Sorce + · 14 mars 2015 à 16 h 05 min +

                    +

                    Bonjour ,j’ai un vpl cs6 ,qui ne s’allume pas rien du tous j’ai suivi tes étape et sur le connecteur con 2001 et la 325v bizarre bon je relie la carte gb pour tester au borne du con 3201 et la 15v et sa retombe et sa remonte a 15v peut tu m aider cdt richard (pense tu que je doi changer le mcz)

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + HugoPoi + · 29 avril 2015 à 16 h 18 min +

                      +

                      Vérifiez les autres tensions en sortie de la carte GB, de mémoire il doit y avoir 3,3 V du 5 V et du 15V. Si tout est OK, la carte-mère principale est peut-être endommagé et pas moyen de réparer sans changement.

                      + +
                      +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + Gilles + · 16 juin 2018 à 13 h 44 min +

                      +

                      Même chose que vous ?
                      +Avez-vous trouvé une solution ?
                      +Est-ce que c’est normal cette tension non stable ?

                      + +
                      +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Daoud Yacoub + · 20 octobre 2015 à 9 h 54 min +

                    +

                    Je remercie beaucoup l’equipe

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Daoud Yacoub + · 20 octobre 2015 à 10 h 02 min +

                    +

                    Aidez moi à depanner mon vidéo projecteur le tout ne s’allume pas ;jai démonté et nettoyer toutes les plaques alimentation et logique me rien ne se passe mais en toute sincérité si je peux avoir le document technique de réparation m’est indispensable

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + HugoPoi + · 24 octobre 2015 à 13 h 39 min +

                      +

                      Les commentaires n’ont pas pour vocation d’être un forum :-)

                      + +
                      +
                      + +
                    + +
                    +
                    +
                    +

                    Répondre à Daoud Yacoub Annuler la réponse

                    Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                    +
                    +
                    +

                    + +

                    +
                    +
                    +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +
                    + + +
                    + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/63e20690154bdb8a5f39818f47b11a2312f8dd84.00000029.html b/www/.content.EZtzwPjb/html/63e20690154bdb8a5f39818f47b11a2312f8dd84.00000029.html new file mode 100644 index 0000000..2fe5455 --- /dev/null +++ b/www/.content.EZtzwPjb/html/63e20690154bdb8a5f39818f47b11a2312f8dd84.00000029.html @@ -0,0 +1,661 @@ + + + + + + + + GET to POST – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +
                    +

                    Il est 00h16, comme d’habitude je suis en train de développer un truc useless pour passer le temps donc je vais le mettre histoire de dire que ça va peut-être servir à plus d’une personne.

                    +

                    Language : JavaScript

                    +

                    Dépendance : Aucune

                    +

                    Type d’exécution : Local

                    +

                    Description : Ce script sert à transformer une requête HTTP de type GET via URL en méthode POST.

                    +

                    Fonctionnement : Il prend les arguments passés en get dans l’url et les envois via un formulaire de type hidden créé à la volée.

                    +

                    Exemple : https://blog.hugopoi.net/wp-content/uploads/2010/12/script.html?urlserverpage=http://fr.php.net/search.php&pattern=test&lang=en&show=quickref

                    +

                    Download : Script Get to Post

                    +

                    Note: pour télécharge le fichier en lien ci-dessus faites un clic droit « enregistrer la cible sous ».

                    +
                    +
                    +
                    +
                    +
                    Catégories : DéveloppementNews
                    +
                    +
                    +
                    + + + + + + + + + +
                    +
                    +
                    +
                    +
                    +
                    +
                    +

                    + 9 commentaires

                    +
                    + +
                    +
                    +
                    +
                    +

                    + watchix + · 12 juillet 2011 à 17 h 50 min +

                    +

                    Merci mon bon Hugo :-)
                    +J’étais en train de chercher ce genre de script lorsque je suis tombé sur le blog de Camille Descombes, puis ensuite sur ton commentaire :-)
                    +Internet est petit dans le monde des développeurs ^^

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + mou7a + · 25 mai 2012 à 13 h 01 min +

                    +

                    bonjour, Je sais que l’article date un peu mais je n’arrive pas à récupérer la source elle n’est plus disponible merci!!!

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + HugoPoi + · 14 juin 2012 à 23 h 00 min +

                      +

                      la source est dans le fichier HTML.

                      + +
                      +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + houhou + · 10 juillet 2012 à 9 h 29 min +

                    +

                    Bonjour HugoPoi;
                    +j’ai besoin du script pour récupérer le contenu d’une div généré en js,l’envoyer à une autre page de traitement pour le convertir en pdf.c’est urgent,merci!!!

                    + +
                    +
                    + + +
                    + +
                    +
                    +
                    +
                    +

                    + Geolocalise Ip + · 25 avril 2014 à 10 h 42 min +

                    +

                    Bonjour,
                    +Merci beaucoup pour l’idée, mais ta page : http://blog.hugopoi.net/wp-content/uploads/2010/12/script.html est morte …

                    +

                    Quant à « houhou », il est formidable, je prendrai bien son adresse IP à celui là pour voir de quel pays il vient !!!! Grrr ….
                    +Bon c’était en 2012, il a dû changer de métiers depuis !

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + HugoPoi + · 9 mai 2014 à 18 h 12 min +

                      +

                      Le lien n’est pas mort mais le script se lance même sans paramètres valide donc tu es redirigé quand tu clic.
                      +Fait un clic droit enregistrer sous.

                      + +
                      +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Gab Wink + · 13 février 2015 à 0 h 06 min +

                    +

                    Merci, ceci m’a été utile (et c’est toujours cool de le dire).

                    + +
                    +
                    + +
                    +
                    +
                    +

                    Répondre à HugoPoi Annuler la réponse

                    Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                    +
                    +
                    +

                    + +

                    +
                    +
                    +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +
                    + + +
                    + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/64ded942a27f8d782c442f4cd9054844d000e45c.00000532.html b/www/.content.EZtzwPjb/html/64ded942a27f8d782c442f4cd9054844d000e45c.00000532.html new file mode 100644 index 0000000..d7b72a1 --- /dev/null +++ b/www/.content.EZtzwPjb/html/64ded942a27f8d782c442f4cd9054844d000e45c.00000532.html @@ -0,0 +1,364 @@ + + + + + + + test – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +

                    Test du Samsung Galaxy S

                    C’est une petite révolution pour moi qui passe d’un HTC Touch à un Galaxy S. Le Touch était bien en son temps, smartphone de première génération, mais vite dépassé par les évènements et l’avènement du web sur mobile. (suite…)

                    +
                    Par HugoPoi, il y a
                    +
                    + +
                    +
                    +
                    +
                    + +
                    +
                    + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/65070ff32d8e3e8a191b6c49dfe3acd505850ed0.00000398.html b/www/.content.EZtzwPjb/html/65070ff32d8e3e8a191b6c49dfe3acd505850ed0.00000398.html new file mode 100644 index 0000000..37e5075 --- /dev/null +++ b/www/.content.EZtzwPjb/html/65070ff32d8e3e8a191b6c49dfe3acd505850ed0.00000398.html @@ -0,0 +1,371 @@ + + + + + + + DRM – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    + +
                    +
                    + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/6559b2899e52bc8d3f694aa4249fd99c037afaf6.00001232.js b/www/.content.EZtzwPjb/html/6559b2899e52bc8d3f694aa4249fd99c037afaf6.00001232.js new file mode 100644 index 0000000..fa958f6 --- /dev/null +++ b/www/.content.EZtzwPjb/html/6559b2899e52bc8d3f694aa4249fd99c037afaf6.00001232.js @@ -0,0 +1,12 @@ +/*! + * MediaElement.js + * http://www.mediaelementjs.com/ + * + * Wrapper that mimics native HTML5 MediaElement (audio and video) + * using a variety of technologies (pure JavaScript, Flash, iframe) + * + * Copyright 2010-2017, John Dyer (http://j.hn/) + * License: MIT + * + */ +!function a(o,s,u){function c(n,e){if(!s[n]){if(!o[n]){var t="function"==typeof require&&require;if(!e&&t)return t(n,!0);if(l)return l(n,!0);var r=new Error("Cannot find module '"+n+"'");throw r.code="MODULE_NOT_FOUND",r}var i=s[n]={exports:{}};o[n][0].call(i.exports,function(e){var t=o[n][1][e];return c(t||e)},i,i.exports,a,o,s,u)}return s[n].exports}for(var l="function"==typeof require&&require,e=0;e + + Commentaires sur : Stockage numérique pour tous + + http://blog.hugopoi.net/2011/01/11/stockage-numerique-pour-tous/ + Internet, Hardware et Bidouille + Fri, 24 Oct 2014 15:21:07 +0000 + hourly + 1 + http://wordpress.org/?v=4.0 + + Par : Vos données sauvegardées | HugoPoi + http://blog.hugopoi.net/2011/01/11/stockage-numerique-pour-tous/#comment-77 + + Sat, 10 Dec 2011 00:00:08 +0000 + http://blog.hugopoi.net/?p=299#comment-77 + + [...] même le faire, vous pouvez récupérer les disques-dur que vous possédez déjà, vous pouvez démonter vos disques-dur externes et les placer dans un NAS.(Le Netgear Stora est trouvable pour 70€) Moi, j’ai opté pour [...]

                    +]]>
                    +
                    + + Par : Tweets that mention Stockage numérique pour tous | HugoPoi -- Topsy.com + http://blog.hugopoi.net/2011/01/11/stockage-numerique-pour-tous/#comment-50 + + Wed, 26 Jan 2011 22:58:08 +0000 + http://blog.hugopoi.net/?p=299#comment-50 + + [...] This post was mentioned on Twitter by HugoPoi, HugoPoi. HugoPoi said: [blog] Stockage numérique http://bim.im/wN [...]

                    +]]>
                    +
                    +
                    +
                    diff --git a/www/.content.EZtzwPjb/html/66433670bd49e6d296c561303b42384627b10641.00000607.css b/www/.content.EZtzwPjb/html/66433670bd49e6d296c561303b42384627b10641.00000607.css new file mode 100644 index 0000000..20df2bb --- /dev/null +++ b/www/.content.EZtzwPjb/html/66433670bd49e6d296c561303b42384627b10641.00000607.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7 .screen-reader-response{position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);height:1px;width:1px;margin:0;padding:0;border:0}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{color:#f00;font-size:1em;display:block}.use-floating-validation-tip span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;border:1px +solid #f00;background:#fff;padding: .2em .8em}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/66b39113c117ad60860848e98c66f8a9e27ef5c2.00000638.css b/www/.content.EZtzwPjb/html/66b39113c117ad60860848e98c66f8a9e27ef5c2.00000638.css new file mode 100644 index 0000000..8043bbf --- /dev/null +++ b/www/.content.EZtzwPjb/html/66b39113c117ad60860848e98c66f8a9e27ef5c2.00000638.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;background:#fff;border:1px +solid #f00;font-size:10pt;width:280px;padding:2px}span.wpcf7-not-valid-tip-no-ajax{color:#f00;font-size:10pt;display:block}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/66fdf6aa31784919ffd1f7e8b789e8fee6299d1f.00000271.xml b/www/.content.EZtzwPjb/html/66fdf6aa31784919ffd1f7e8b789e8fee6299d1f.00000271.xml new file mode 100644 index 0000000..eec6545 --- /dev/null +++ b/www/.content.EZtzwPjb/html/66fdf6aa31784919ffd1f7e8b789e8fee6299d1f.00000271.xml @@ -0,0 +1,201 @@ + + + HugoPoi – HugoPoi + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Sat, 11 Feb 2017 17:37:20 +0000 + fr-FR + hourly + 1 + https://wordpress.org/?v=4.7.2 + + Pourquoi je suis sous Linux bordel ! + http://blog.hugopoi.net/2017/02/11/pourquoi-je-suis-sous-linux-bordel/ + http://blog.hugopoi.net/2017/02/11/pourquoi-je-suis-sous-linux-bordel/#respond + Sat, 11 Feb 2017 17:37:20 +0000 + + + + + + + + http://blog.hugopoi.net/?p=947 + Lire la suite »

                    ]]>
                    + http://blog.hugopoi.net/2017/02/11/pourquoi-je-suis-sous-linux-bordel/feed/ + 0 +
                    + + Reflow Dell Inspiron 1546 + http://blog.hugopoi.net/2016/08/22/reflow-dell-1546/ + http://blog.hugopoi.net/2016/08/22/reflow-dell-1546/#respond + Mon, 22 Aug 2016 14:00:28 +0000 + + + + + + + + + + http://blog.hugopoi.net/?p=918 + Lire la suite »

                    ]]>
                    + http://blog.hugopoi.net/2016/08/22/reflow-dell-1546/feed/ + 0 +
                    + + Et si on faisait sans Twitch et sans Youtube + http://blog.hugopoi.net/2015/10/24/et-si-on-faisait-sans-twitch-et-sans-youtube/ + http://blog.hugopoi.net/2015/10/24/et-si-on-faisait-sans-twitch-et-sans-youtube/#respond + Sat, 24 Oct 2015 13:07:55 +0000 + + + + + + + + + + + + + + http://blog.hugopoi.net/?p=909 + Lire la suite »

                    ]]>
                    + http://blog.hugopoi.net/2015/10/24/et-si-on-faisait-sans-twitch-et-sans-youtube/feed/ + 0 +
                    + + Test et démontage d’un Sony Multi Flip 15 SVF15N1C5E + http://blog.hugopoi.net/2014/08/04/test-et-demontage-dun-sony-multi-flip-15-svf15n1c5e/ + http://blog.hugopoi.net/2014/08/04/test-et-demontage-dun-sony-multi-flip-15-svf15n1c5e/#respond + Mon, 04 Aug 2014 13:25:59 +0000 + + + + + + + + + http://blog.hugopoi.net/?p=856 + Lire la suite »

                    ]]>
                    + http://blog.hugopoi.net/2014/08/04/test-et-demontage-dun-sony-multi-flip-15-svf15n1c5e/feed/ + 0 +
                    + + Écran miraculé d’un Asus N53SN + http://blog.hugopoi.net/2014/08/02/ecran-miracule-dun-asus-n53sn/ + http://blog.hugopoi.net/2014/08/02/ecran-miracule-dun-asus-n53sn/#comments + Sat, 02 Aug 2014 17:53:57 +0000 + + + + + + + + http://blog.hugopoi.net/?p=819 + Lire la suite »

                    ]]>
                    + http://blog.hugopoi.net/2014/08/02/ecran-miracule-dun-asus-n53sn/feed/ + 1 +
                    + + Installer Mac OS X Mavericks avec VirtualBox + http://blog.hugopoi.net/2013/12/27/installer-mac-os-x-mavericks-avec-virtualbox/ + http://blog.hugopoi.net/2013/12/27/installer-mac-os-x-mavericks-avec-virtualbox/#comments + Fri, 27 Dec 2013 21:40:28 +0000 + + + + + + + + + http://blog.hugopoi.net/?p=802 + Lire la suite »

                    ]]>
                    + http://blog.hugopoi.net/2013/12/27/installer-mac-os-x-mavericks-avec-virtualbox/feed/ + 6 +
                    + + Orange et consort, impossible d’obtenir le désimlockage + http://blog.hugopoi.net/2013/09/15/orange-et-consort-impossible-dobtenir-le-desimlockage/ + http://blog.hugopoi.net/2013/09/15/orange-et-consort-impossible-dobtenir-le-desimlockage/#comments + Sat, 14 Sep 2013 23:01:40 +0000 + + + + + + + + + + http://blog.hugopoi.net/?p=794 + Lire la suite »

                    ]]>
                    + http://blog.hugopoi.net/2013/09/15/orange-et-consort-impossible-dobtenir-le-desimlockage/feed/ + 1 +
                    + + Réparer et transformer une clé USB de 4Go en 8Go + http://blog.hugopoi.net/2013/05/11/reparer-et-transformer-une-cle-usb-de-4go-en-8go/ + http://blog.hugopoi.net/2013/05/11/reparer-et-transformer-une-cle-usb-de-4go-en-8go/#comments + Sat, 11 May 2013 13:51:53 +0000 + + + + + + + + http://blog.hugopoi.net/?p=768 + Lire la suite »

                    ]]>
                    + http://blog.hugopoi.net/2013/05/11/reparer-et-transformer-une-cle-usb-de-4go-en-8go/feed/ + 8 +
                    + + Réparer un Vidéoprojecteur Sony VPL-CX5 + http://blog.hugopoi.net/2013/05/04/reparer-un-videoprojecteur-sony-vpl-cx5/ + http://blog.hugopoi.net/2013/05/04/reparer-un-videoprojecteur-sony-vpl-cx5/#comments + Sat, 04 May 2013 15:26:39 +0000 + + + + + + + + http://blog.hugopoi.net/?p=737 + Lire la suite »

                    ]]>
                    + http://blog.hugopoi.net/2013/05/04/reparer-un-videoprojecteur-sony-vpl-cx5/feed/ + 15 +
                    + + Démonter un Switch Cisco 2950T + http://blog.hugopoi.net/2013/02/09/demonter-un-switch-cisco-2950t/ + http://blog.hugopoi.net/2013/02/09/demonter-un-switch-cisco-2950t/#comments + Sat, 09 Feb 2013 11:41:20 +0000 + + + + + + + http://blog.hugopoi.net/?p=716 + Lire la suite »

                    ]]>
                    + http://blog.hugopoi.net/2013/02/09/demonter-un-switch-cisco-2950t/feed/ + 3 +
                    +
                    +
                    diff --git a/www/.content.EZtzwPjb/html/6718e47436703c49f439f0f8fc3549c4d621666f.00000332.html b/www/.content.EZtzwPjb/html/6718e47436703c49f439f0f8fc3549c4d621666f.00000332.html new file mode 100644 index 0000000..4a94056 --- /dev/null +++ b/www/.content.EZtzwPjb/html/6718e47436703c49f439f0f8fc3549c4d621666f.00000332.html @@ -0,0 +1,372 @@ + + + + + + + 2232BW – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +

                    Réparations Samsung SyncMaster 2232BW

                    Allô docteur on a un problème,

                    +

                    En ce dimanche calme avant la fin de mes partiels, mon écran Samsung SyncMaster 2232BW commençait à faire des siennes. Celui-ci depuis un mois ou deux clignotait de façon systématique au démarrage, au début pendant seulement quelques secondes, puis au fur et à mesure, de plus en plus jusqu’à devoir attendre 10 minutes pour que je puisse l’utiliser. Après 3 ans et 4 mois de bons et loyaux services, il voulait me quitter. J’ai tenté le support Samsung par email avec peu d’espoir car l’écran a dépassé sa garantie de 4 mois (oui oui les bâtards -> obsolescence programmée). Et donc j’ai eu le droit à un joli mail automatique me disant de contacter un numéro non surtaxé (mais avec combien de temps d’attente ?), ce que je n’ai pas fait car je n’avais pas envie de passer 30min au téléphone pour au final avoir un « On est désolé mais on ne peut rien faire pour vous car la garantie est dépassée, mais on peut envoyer votre écran en SAV pour faire un devis pour seulement 50 boules ». Concernant le support email de Samsung France, je leur donne une note de 0/20 puisque ce n’est pas un support mais une redirection vers le téléphone.

                    +

                    (suite…)

                    +
                    Par HugoPoi, il y a
                    +
                    + +
                    +
                    +
                    +
                    + +
                    +
                    + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/671a725cdc86d4c1d73da2330159d79893ed0674.00000031.html b/www/.content.EZtzwPjb/html/671a725cdc86d4c1d73da2330159d79893ed0674.00000031.html new file mode 100644 index 0000000..a65da20 --- /dev/null +++ b/www/.content.EZtzwPjb/html/671a725cdc86d4c1d73da2330159d79893ed0674.00000031.html @@ -0,0 +1,661 @@ + + + + + + + + GET to POST – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +
                    +

                    Il est 00h16, comme d’habitude je suis en train de développer un truc useless pour passer le temps donc je vais le mettre histoire de dire que ça va peut-être servir à plus d’une personne.

                    +

                    Language : JavaScript

                    +

                    Dépendance : Aucune

                    +

                    Type d’exécution : Local

                    +

                    Description : Ce script sert à transformer une requête HTTP de type GET via URL en méthode POST.

                    +

                    Fonctionnement : Il prend les arguments passés en get dans l’url et les envois via un formulaire de type hidden créé à la volée.

                    +

                    Exemple : https://blog.hugopoi.net/wp-content/uploads/2010/12/script.html?urlserverpage=http://fr.php.net/search.php&pattern=test&lang=en&show=quickref

                    +

                    Download : Script Get to Post

                    +

                    Note: pour télécharge le fichier en lien ci-dessus faites un clic droit « enregistrer la cible sous ».

                    +
                    +
                    +
                    +
                    +
                    Catégories : DéveloppementNews
                    +
                    +
                    +
                    + + + + + + + + + +
                    +
                    +
                    +
                    +
                    +
                    +
                    +

                    + 9 commentaires

                    +
                    + +
                    +
                    +
                    +
                    +

                    + watchix + · 12 juillet 2011 à 17 h 50 min +

                    +

                    Merci mon bon Hugo :-)
                    +J’étais en train de chercher ce genre de script lorsque je suis tombé sur le blog de Camille Descombes, puis ensuite sur ton commentaire :-)
                    +Internet est petit dans le monde des développeurs ^^

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + mou7a + · 25 mai 2012 à 13 h 01 min +

                    +

                    bonjour, Je sais que l’article date un peu mais je n’arrive pas à récupérer la source elle n’est plus disponible merci!!!

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + HugoPoi + · 14 juin 2012 à 23 h 00 min +

                      +

                      la source est dans le fichier HTML.

                      + +
                      +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + houhou + · 10 juillet 2012 à 9 h 29 min +

                    +

                    Bonjour HugoPoi;
                    +j’ai besoin du script pour récupérer le contenu d’une div généré en js,l’envoyer à une autre page de traitement pour le convertir en pdf.c’est urgent,merci!!!

                    + +
                    +
                    + + +
                    + +
                    +
                    +
                    +
                    +

                    + Geolocalise Ip + · 25 avril 2014 à 10 h 42 min +

                    +

                    Bonjour,
                    +Merci beaucoup pour l’idée, mais ta page : http://blog.hugopoi.net/wp-content/uploads/2010/12/script.html est morte …

                    +

                    Quant à « houhou », il est formidable, je prendrai bien son adresse IP à celui là pour voir de quel pays il vient !!!! Grrr ….
                    +Bon c’était en 2012, il a dû changer de métiers depuis !

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + HugoPoi + · 9 mai 2014 à 18 h 12 min +

                      +

                      Le lien n’est pas mort mais le script se lance même sans paramètres valide donc tu es redirigé quand tu clic.
                      +Fait un clic droit enregistrer sous.

                      + +
                      +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Gab Wink + · 13 février 2015 à 0 h 06 min +

                    +

                    Merci, ceci m’a été utile (et c’est toujours cool de le dire).

                    + +
                    +
                    + +
                    +
                    +
                    +

                    Répondre à HugoPoi Annuler la réponse

                    Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                    +
                    +
                    +

                    + +

                    +
                    +
                    +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +
                    + + +
                    + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/67b502ffe62f5b1e54db845a01ff3046bb74e26a.00000407.html b/www/.content.EZtzwPjb/html/67b502ffe62f5b1e54db845a01ff3046bb74e26a.00000407.html new file mode 100644 index 0000000..44cbfb2 --- /dev/null +++ b/www/.content.EZtzwPjb/html/67b502ffe62f5b1e54db845a01ff3046bb74e26a.00000407.html @@ -0,0 +1,368 @@ + + + + + + + filtrage – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +

                    Coup de gueule

                    http://www.flickr.com/photos/wgyuri/

                    +

                    En ce jour, je passe mon coup de gueule  à tous les opérateurs de téléphonie mobile qui osent mettre la mention « internet illimité » dans leurs contrats alors qu’il n’en n’est rien. Premièrement, toutes les offres pour particuliers avec un tarif décent utilisent un système de quota de donnée avec le plus souvent deux issues possible une fois la limite atteinte : réduction de débit ou coupure complète. Après la deuxième limitation est la discrimination de contenu et de protocole effectué par les opérateurs. Pour résumer, le terme « Internet » pour les opérateur signifie accès HTTP et rien d’autre. Ensuite je ne parlerais pas du filtrage en temps réel effectué sur votre trafic avec usage certain du DPI… (suite…)

                    +
                    +
                    + +
                    +
                    +
                    +
                    + +
                    +
                    + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/67b758d4295a85f117577fcb25c1d086b249d776.00000751.css b/www/.content.EZtzwPjb/html/67b758d4295a85f117577fcb25c1d086b249d776.00000751.css new file mode 100644 index 0000000..0f922d8 --- /dev/null +++ b/www/.content.EZtzwPjb/html/67b758d4295a85f117577fcb25c1d086b249d776.00000751.css @@ -0,0 +1,5 @@ +/*! + * Font Awesome Free 5.10.0 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +.fa,.fab,.fad,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s linear infinite;animation:fa-spin 2s linear infinite}.fa-pulse{-webkit-animation:fa-spin 1s steps(8) infinite;animation:fa-spin 1s steps(8) infinite}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-webkit-transform:scaleY(-1);transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1);transform:scale(-1)}:root .fa-flip-both,:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-acquisitions-incorporated:before{content:"\f6af"}.fa-ad:before{content:"\f641"}.fa-address-book:before{content:"\f2b9"}.fa-address-card:before{content:"\f2bb"}.fa-adjust:before{content:"\f042"}.fa-adn:before{content:"\f170"}.fa-adobe:before{content:"\f778"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-air-freshener:before{content:"\f5d0"}.fa-airbnb:before{content:"\f834"}.fa-algolia:before{content:"\f36c"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-alipay:before{content:"\f642"}.fa-allergies:before{content:"\f461"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-ambulance:before{content:"\f0f9"}.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-amilia:before{content:"\f36d"}.fa-anchor:before{content:"\f13d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angry:before{content:"\f556"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-ankh:before{content:"\f644"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-alt:before{content:"\f5d1"}.fa-apple-pay:before{content:"\f415"}.fa-archive:before{content:"\f187"}.fa-archway:before{content:"\f557"}.fa-arrow-alt-circle-down:before{content:"\f358"}.fa-arrow-alt-circle-left:before{content:"\f359"}.fa-arrow-alt-circle-right:before{content:"\f35a"}.fa-arrow-alt-circle-up:before{content:"\f35b"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrows-alt:before{content:"\f0b2"}.fa-arrows-alt-h:before{content:"\f337"}.fa-arrows-alt-v:before{content:"\f338"}.fa-artstation:before{content:"\f77a"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asterisk:before{content:"\f069"}.fa-asymmetrik:before{content:"\f372"}.fa-at:before{content:"\f1fa"}.fa-atlas:before{content:"\f558"}.fa-atlassian:before{content:"\f77b"}.fa-atom:before{content:"\f5d2"}.fa-audible:before{content:"\f373"}.fa-audio-description:before{content:"\f29e"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-award:before{content:"\f559"}.fa-aws:before{content:"\f375"}.fa-baby:before{content:"\f77c"}.fa-baby-carriage:before{content:"\f77d"}.fa-backspace:before{content:"\f55a"}.fa-backward:before{content:"\f04a"}.fa-bacon:before{content:"\f7e5"}.fa-balance-scale:before{content:"\f24e"}.fa-balance-scale-left:before{content:"\f515"}.fa-balance-scale-right:before{content:"\f516"}.fa-ban:before{content:"\f05e"}.fa-band-aid:before{content:"\f462"}.fa-bandcamp:before{content:"\f2d5"}.fa-barcode:before{content:"\f02a"}.fa-bars:before{content:"\f0c9"}.fa-baseball-ball:before{content:"\f433"}.fa-basketball-ball:before{content:"\f434"}.fa-bath:before{content:"\f2cd"}.fa-battery-empty:before{content:"\f244"}.fa-battery-full:before{content:"\f240"}.fa-battery-half:before{content:"\f242"}.fa-battery-quarter:before{content:"\f243"}.fa-battery-three-quarters:before{content:"\f241"}.fa-battle-net:before{content:"\f835"}.fa-bed:before{content:"\f236"}.fa-beer:before{content:"\f0fc"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bell:before{content:"\f0f3"}.fa-bell-slash:before{content:"\f1f6"}.fa-bezier-curve:before{content:"\f55b"}.fa-bible:before{content:"\f647"}.fa-bicycle:before{content:"\f206"}.fa-biking:before{content:"\f84a"}.fa-bimobject:before{content:"\f378"}.fa-binoculars:before{content:"\f1e5"}.fa-biohazard:before{content:"\f780"}.fa-birthday-cake:before{content:"\f1fd"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blender:before{content:"\f517"}.fa-blender-phone:before{content:"\f6b6"}.fa-blind:before{content:"\f29d"}.fa-blog:before{content:"\f781"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bold:before{content:"\f032"}.fa-bolt:before{content:"\f0e7"}.fa-bomb:before{content:"\f1e2"}.fa-bone:before{content:"\f5d7"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-book-dead:before{content:"\f6b7"}.fa-book-medical:before{content:"\f7e6"}.fa-book-open:before{content:"\f518"}.fa-book-reader:before{content:"\f5da"}.fa-bookmark:before{content:"\f02e"}.fa-bootstrap:before{content:"\f836"}.fa-border-all:before{content:"\f84c"}.fa-border-none:before{content:"\f850"}.fa-border-style:before{content:"\f853"}.fa-bowling-ball:before{content:"\f436"}.fa-box:before{content:"\f466"}.fa-box-open:before{content:"\f49e"}.fa-boxes:before{content:"\f468"}.fa-braille:before{content:"\f2a1"}.fa-brain:before{content:"\f5dc"}.fa-bread-slice:before{content:"\f7ec"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broadcast-tower:before{content:"\f519"}.fa-broom:before{content:"\f51a"}.fa-brush:before{content:"\f55d"}.fa-btc:before{content:"\f15a"}.fa-buffer:before{content:"\f837"}.fa-bug:before{content:"\f188"}.fa-building:before{content:"\f1ad"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-burn:before{content:"\f46a"}.fa-buromobelexperte:before{content:"\f37f"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before{content:"\f55e"}.fa-business-time:before{content:"\f64a"}.fa-buysellads:before{content:"\f20d"}.fa-calculator:before{content:"\f1ec"}.fa-calendar:before{content:"\f133"}.fa-calendar-alt:before{content:"\f073"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-day:before{content:"\f783"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-times:before{content:"\f273"}.fa-calendar-week:before{content:"\f784"}.fa-camera:before{content:"\f030"}.fa-camera-retro:before{content:"\f083"}.fa-campground:before{content:"\f6bb"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-candy-cane:before{content:"\f786"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-car:before{content:"\f1b9"}.fa-car-alt:before{content:"\f5de"}.fa-car-battery:before{content:"\f5df"}.fa-car-crash:before{content:"\f5e1"}.fa-car-side:before{content:"\f5e4"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-square-down:before{content:"\f150"}.fa-caret-square-left:before{content:"\f191"}.fa-caret-square-right:before{content:"\f152"}.fa-caret-square-up:before{content:"\f151"}.fa-caret-up:before{content:"\f0d8"}.fa-carrot:before{content:"\f787"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-plus:before{content:"\f217"}.fa-cash-register:before{content:"\f788"}.fa-cat:before{content:"\f6be"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-centos:before{content:"\f789"}.fa-certificate:before{content:"\f0a3"}.fa-chair:before{content:"\f6c0"}.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before{content:"\f51c"}.fa-charging-station:before{content:"\f5e7"}.fa-chart-area:before{content:"\f1fe"}.fa-chart-bar:before{content:"\f080"}.fa-chart-line:before{content:"\f201"}.fa-chart-pie:before{content:"\f200"}.fa-check:before{content:"\f00c"}.fa-check-circle:before{content:"\f058"}.fa-check-double:before{content:"\f560"}.fa-check-square:before{content:"\f14a"}.fa-cheese:before{content:"\f7ef"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-board:before{content:"\f43c"}.fa-chess-king:before{content:"\f43f"}.fa-chess-knight:before{content:"\f441"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-queen:before{content:"\f445"}.fa-chess-rook:before{content:"\f447"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-chrome:before{content:"\f268"}.fa-chromecast:before{content:"\f838"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-circle-notch:before{content:"\f1ce"}.fa-city:before{content:"\f64f"}.fa-clinic-medical:before{content:"\f7f2"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clock:before{content:"\f017"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-download-alt:before{content:"\f381"}.fa-cloud-meatball:before{content:"\f73b"}.fa-cloud-moon:before{content:"\f6c3"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-cloud-rain:before{content:"\f73d"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-cloud-sun:before{content:"\f6c4"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-cloud-upload-alt:before{content:"\f382"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-cocktail:before{content:"\f561"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-coffee:before{content:"\f0f4"}.fa-cog:before{content:"\f013"}.fa-cogs:before{content:"\f085"}.fa-coins:before{content:"\f51e"}.fa-columns:before{content:"\f0db"}.fa-comment:before{content:"\f075"}.fa-comment-alt:before{content:"\f27a"}.fa-comment-dollar:before{content:"\f651"}.fa-comment-dots:before{content:"\f4ad"}.fa-comment-medical:before{content:"\f7f5"}.fa-comment-slash:before{content:"\f4b3"}.fa-comments:before{content:"\f086"}.fa-comments-dollar:before{content:"\f653"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compress:before{content:"\f066"}.fa-compress-arrows-alt:before{content:"\f78c"}.fa-concierge-bell:before{content:"\f562"}.fa-confluence:before{content:"\f78d"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-cotton-bureau:before{content:"\f89e"}.fa-couch:before{content:"\f4b8"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-credit-card:before{content:"\f09d"}.fa-critical-role:before{content:"\f6c9"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before{content:"\f565"}.fa-cross:before{content:"\f654"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-crutch:before{content:"\f7f7"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-cut:before{content:"\f0c4"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-dashcube:before{content:"\f210"}.fa-database:before{content:"\f1c0"}.fa-deaf:before{content:"\f2a4"}.fa-delicious:before{content:"\f1a5"}.fa-democrat:before{content:"\f747"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-desktop:before{content:"\f108"}.fa-dev:before{content:"\f6cc"}.fa-deviantart:before{content:"\f1bd"}.fa-dharmachakra:before{content:"\f655"}.fa-dhl:before{content:"\f790"}.fa-diagnoses:before{content:"\f470"}.fa-diaspora:before{content:"\f791"}.fa-dice:before{content:"\f522"}.fa-dice-d20:before{content:"\f6cf"}.fa-dice-d6:before{content:"\f6d1"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-digital-tachograph:before{content:"\f566"}.fa-directions:before{content:"\f5eb"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-divide:before{content:"\f529"}.fa-dizzy:before{content:"\f567"}.fa-dna:before{content:"\f471"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dog:before{content:"\f6d3"}.fa-dollar-sign:before{content:"\f155"}.fa-dolly:before{content:"\f472"}.fa-dolly-flatbed:before{content:"\f474"}.fa-donate:before{content:"\f4b9"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dot-circle:before{content:"\f192"}.fa-dove:before{content:"\f4ba"}.fa-download:before{content:"\f019"}.fa-draft2digital:before{content:"\f396"}.fa-drafting-compass:before{content:"\f568"}.fa-dragon:before{content:"\f6d5"}.fa-draw-polygon:before{content:"\f5ee"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-drupal:before{content:"\f1a9"}.fa-dumbbell:before{content:"\f44b"}.fa-dumpster:before{content:"\f793"}.fa-dumpster-fire:before{content:"\f794"}.fa-dungeon:before{content:"\f6d9"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-edge:before{content:"\f282"}.fa-edit:before{content:"\f044"}.fa-egg:before{content:"\f7fb"}.fa-eject:before{content:"\f052"}.fa-elementor:before{content:"\f430"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-ello:before{content:"\f5f1"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-text:before{content:"\f658"}.fa-envelope-square:before{content:"\f199"}.fa-envira:before{content:"\f299"}.fa-equals:before{content:"\f52c"}.fa-eraser:before{content:"\f12d"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-ethernet:before{content:"\f796"}.fa-etsy:before{content:"\f2d7"}.fa-euro-sign:before{content:"\f153"}.fa-evernote:before{content:"\f839"}.fa-exchange-alt:before{content:"\f362"}.fa-exclamation:before{content:"\f12a"}.fa-exclamation-circle:before{content:"\f06a"}.fa-exclamation-triangle:before{content:"\f071"}.fa-expand:before{content:"\f065"}.fa-expand-arrows-alt:before{content:"\f31e"}.fa-expeditedssl:before{content:"\f23e"}.fa-external-link-alt:before{content:"\f35d"}.fa-external-link-square-alt:before{content:"\f360"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper:before{content:"\f1fb"}.fa-eye-slash:before{content:"\f070"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fan:before{content:"\f863"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-fast-backward:before{content:"\f049"}.fa-fast-forward:before{content:"\f050"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before{content:"\f56b"}.fa-fedex:before{content:"\f797"}.fa-fedora:before{content:"\f798"}.fa-female:before{content:"\f182"}.fa-fighter-jet:before{content:"\f0fb"}.fa-figma:before{content:"\f799"}.fa-file:before{content:"\f15b"}.fa-file-alt:before{content:"\f15c"}.fa-file-archive:before{content:"\f1c6"}.fa-file-audio:before{content:"\f1c7"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-csv:before{content:"\f6dd"}.fa-file-download:before{content:"\f56d"}.fa-file-excel:before{content:"\f1c3"}.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-medical:before{content:"\f477"}.fa-file-medical-alt:before{content:"\f478"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-signature:before{content:"\f573"}.fa-file-upload:before{content:"\f574"}.fa-file-video:before{content:"\f1c8"}.fa-file-word:before{content:"\f1c2"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-filter:before{content:"\f0b0"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-alt:before{content:"\f7e4"}.fa-fire-extinguisher:before{content:"\f134"}.fa-firefox:before{content:"\f269"}.fa-first-aid:before{content:"\f479"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-fish:before{content:"\f578"}.fa-fist-raised:before{content:"\f6de"}.fa-flag:before{content:"\f024"}.fa-flag-checkered:before{content:"\f11e"}.fa-flag-usa:before{content:"\f74d"}.fa-flask:before{content:"\f0c3"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-flushed:before{content:"\f579"}.fa-fly:before{content:"\f417"}.fa-folder:before{content:"\f07b"}.fa-folder-minus:before{content:"\f65d"}.fa-folder-open:before{content:"\f07c"}.fa-folder-plus:before{content:"\f65e"}.fa-font:before{content:"\f031"}.fa-font-awesome:before{content:"\f2b4"}.fa-font-awesome-alt:before{content:"\f35c"}.fa-font-awesome-flag:before{content:"\f425"}.fa-font-awesome-logo-full:before{content:"\f4e6"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-football-ball:before{content:"\f44e"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-forward:before{content:"\f04e"}.fa-foursquare:before{content:"\f180"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-frog:before{content:"\f52e"}.fa-frown:before{content:"\f119"}.fa-frown-open:before{content:"\f57a"}.fa-fulcrum:before{content:"\f50b"}.fa-funnel-dollar:before{content:"\f662"}.fa-futbol:before{content:"\f1e3"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-gavel:before{content:"\f0e3"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-ghost:before{content:"\f6e2"}.fa-gift:before{content:"\f06b"}.fa-gifts:before{content:"\f79c"}.fa-git:before{content:"\f1d3"}.fa-git-alt:before{content:"\f841"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glass-cheers:before{content:"\f79f"}.fa-glass-martini:before{content:"\f000"}.fa-glass-martini-alt:before{content:"\f57b"}.fa-glass-whiskey:before{content:"\f7a0"}.fa-glasses:before{content:"\f530"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-globe:before{content:"\f0ac"}.fa-globe-africa:before{content:"\f57c"}.fa-globe-americas:before{content:"\f57d"}.fa-globe-asia:before{content:"\f57e"}.fa-globe-europe:before{content:"\f7a2"}.fa-gofore:before{content:"\f3a7"}.fa-golf-ball:before{content:"\f450"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-gopuram:before{content:"\f664"}.fa-graduation-cap:before{content:"\f19d"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-greater-than:before{content:"\f531"}.fa-greater-than-equal:before{content:"\f532"}.fa-grimace:before{content:"\f57f"}.fa-grin:before{content:"\f580"}.fa-grin-alt:before{content:"\f581"}.fa-grin-beam:before{content:"\f582"}.fa-grin-beam-sweat:before{content:"\f583"}.fa-grin-hearts:before{content:"\f584"}.fa-grin-squint:before{content:"\f585"}.fa-grin-squint-tears:before{content:"\f586"}.fa-grin-stars:before{content:"\f587"}.fa-grin-tears:before{content:"\f588"}.fa-grin-tongue:before{content:"\f589"}.fa-grin-tongue-squint:before{content:"\f58a"}.fa-grin-tongue-wink:before{content:"\f58b"}.fa-grin-wink:before{content:"\f58c"}.fa-grip-horizontal:before{content:"\f58d"}.fa-grip-lines:before{content:"\f7a4"}.fa-grip-lines-vertical:before{content:"\f7a5"}.fa-grip-vertical:before{content:"\f58e"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-guitar:before{content:"\f7a6"}.fa-gulp:before{content:"\f3ae"}.fa-h-square:before{content:"\f0fd"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hackerrank:before{content:"\f5f7"}.fa-hamburger:before{content:"\f805"}.fa-hammer:before{content:"\f6e3"}.fa-hamsa:before{content:"\f665"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-middle-finger:before{content:"\f806"}.fa-hand-paper:before{content:"\f256"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-rock:before{content:"\f255"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-spock:before{content:"\f259"}.fa-hands:before{content:"\f4c2"}.fa-hands-helping:before{content:"\f4c4"}.fa-handshake:before{content:"\f2b5"}.fa-hanukiah:before{content:"\f6e6"}.fa-hard-hat:before{content:"\f807"}.fa-hashtag:before{content:"\f292"}.fa-hat-wizard:before{content:"\f6e8"}.fa-haykal:before{content:"\f666"}.fa-hdd:before{content:"\f0a0"}.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heart-broken:before{content:"\f7a9"}.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-highlighter:before{content:"\f591"}.fa-hiking:before{content:"\f6ec"}.fa-hippo:before{content:"\f6ed"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-history:before{content:"\f1da"}.fa-hockey-puck:before{content:"\f453"}.fa-holly-berry:before{content:"\f7aa"}.fa-home:before{content:"\f015"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-horse:before{content:"\f6f0"}.fa-horse-head:before{content:"\f7ab"}.fa-hospital:before{content:"\f0f8"}.fa-hospital-alt:before{content:"\f47d"}.fa-hospital-symbol:before{content:"\f47e"}.fa-hot-tub:before{content:"\f593"}.fa-hotdog:before{content:"\f80f"}.fa-hotel:before{content:"\f594"}.fa-hotjar:before{content:"\f3b1"}.fa-hourglass:before{content:"\f254"}.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-start:before{content:"\f251"}.fa-house-damage:before{content:"\f6f1"}.fa-houzz:before{content:"\f27c"}.fa-hryvnia:before{content:"\f6f2"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-i-cursor:before{content:"\f246"}.fa-ice-cream:before{content:"\f810"}.fa-icicles:before{content:"\f7ad"}.fa-icons:before{content:"\f86d"}.fa-id-badge:before{content:"\f2c1"}.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before{content:"\f47f"}.fa-igloo:before{content:"\f7ae"}.fa-image:before{content:"\f03e"}.fa-images:before{content:"\f302"}.fa-imdb:before{content:"\f2d8"}.fa-inbox:before{content:"\f01c"}.fa-indent:before{content:"\f03c"}.fa-industry:before{content:"\f275"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-info-circle:before{content:"\f05a"}.fa-instagram:before{content:"\f16d"}.fa-intercom:before{content:"\f7af"}.fa-internet-explorer:before{content:"\f26b"}.fa-invision:before{content:"\f7b0"}.fa-ioxhost:before{content:"\f208"}.fa-italic:before{content:"\f033"}.fa-itch-io:before{content:"\f83a"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-java:before{content:"\f4e4"}.fa-jedi:before{content:"\f669"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-jira:before{content:"\f7b1"}.fa-joget:before{content:"\f3b7"}.fa-joint:before{content:"\f595"}.fa-joomla:before{content:"\f1aa"}.fa-journal-whills:before{content:"\f66a"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-kaaba:before{content:"\f66b"}.fa-kaggle:before{content:"\f5fa"}.fa-key:before{content:"\f084"}.fa-keybase:before{content:"\f4f5"}.fa-keyboard:before{content:"\f11c"}.fa-keycdn:before{content:"\f3ba"}.fa-khanda:before{content:"\f66d"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-kiss:before{content:"\f596"}.fa-kiss-beam:before{content:"\f597"}.fa-kiss-wink-heart:before{content:"\f598"}.fa-kiwi-bird:before{content:"\f535"}.fa-korvue:before{content:"\f42f"}.fa-landmark:before{content:"\f66f"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laptop-code:before{content:"\f5fc"}.fa-laptop-medical:before{content:"\f812"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-laugh:before{content:"\f599"}.fa-laugh-beam:before{content:"\f59a"}.fa-laugh-squint:before{content:"\f59b"}.fa-laugh-wink:before{content:"\f59c"}.fa-layer-group:before{content:"\f5fd"}.fa-leaf:before{content:"\f06c"}.fa-leanpub:before{content:"\f212"}.fa-lemon:before{content:"\f094"}.fa-less:before{content:"\f41d"}.fa-less-than:before{content:"\f536"}.fa-less-than-equal:before{content:"\f537"}.fa-level-down-alt:before{content:"\f3be"}.fa-level-up-alt:before{content:"\f3bf"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-line:before{content:"\f3c0"}.fa-link:before{content:"\f0c1"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lira-sign:before{content:"\f195"}.fa-list:before{content:"\f03a"}.fa-list-alt:before{content:"\f022"}.fa-list-ol:before{content:"\f0cb"}.fa-list-ul:before{content:"\f0ca"}.fa-location-arrow:before{content:"\f124"}.fa-lock:before{content:"\f023"}.fa-lock-open:before{content:"\f3c1"}.fa-long-arrow-alt-down:before{content:"\f309"}.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-long-arrow-alt-right:before{content:"\f30b"}.fa-long-arrow-alt-up:before{content:"\f30c"}.fa-low-vision:before{content:"\f2a8"}.fa-luggage-cart:before{content:"\f59d"}.fa-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-magic:before{content:"\f0d0"}.fa-magnet:before{content:"\f076"}.fa-mail-bulk:before{content:"\f674"}.fa-mailchimp:before{content:"\f59e"}.fa-male:before{content:"\f183"}.fa-mandalorian:before{content:"\f50f"}.fa-map:before{content:"\f279"}.fa-map-marked:before{content:"\f59f"}.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-marker:before{content:"\f041"}.fa-map-marker-alt:before{content:"\f3c5"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-markdown:before{content:"\f60f"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mask:before{content:"\f6fa"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-medal:before{content:"\f5a2"}.fa-medapps:before{content:"\f3c6"}.fa-medium:before{content:"\f23a"}.fa-medium-m:before{content:"\f3c7"}.fa-medkit:before{content:"\f0fa"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaport:before{content:"\f5a3"}.fa-meh:before{content:"\f11a"}.fa-meh-blank:before{content:"\f5a4"}.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-memory:before{content:"\f538"}.fa-mendeley:before{content:"\f7b3"}.fa-menorah:before{content:"\f676"}.fa-mercury:before{content:"\f223"}.fa-meteor:before{content:"\f753"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before{content:"\f3c9"}.fa-microphone-alt-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microscope:before{content:"\f610"}.fa-microsoft:before{content:"\f3ca"}.fa-minus:before{content:"\f068"}.fa-minus-circle:before{content:"\f056"}.fa-minus-square:before{content:"\f146"}.fa-mitten:before{content:"\f7b5"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mizuni:before{content:"\f3cc"}.fa-mobile:before{content:"\f10b"}.fa-mobile-alt:before{content:"\f3cd"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before{content:"\f53d"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-mosque:before{content:"\f678"}.fa-motorcycle:before{content:"\f21c"}.fa-mountain:before{content:"\f6fc"}.fa-mouse-pointer:before{content:"\f245"}.fa-mug-hot:before{content:"\f7b6"}.fa-music:before{content:"\f001"}.fa-napster:before{content:"\f3d2"}.fa-neos:before{content:"\f612"}.fa-network-wired:before{content:"\f6ff"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-nimblr:before{content:"\f5a8"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-not-equal:before{content:"\f53e"}.fa-notes-medical:before{content:"\f481"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-oil-can:before{content:"\f613"}.fa-old-republic:before{content:"\f510"}.fa-om:before{content:"\f679"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-osi:before{content:"\f41a"}.fa-otter:before{content:"\f700"}.fa-outdent:before{content:"\f03b"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-pager:before{content:"\f815"}.fa-paint-brush:before{content:"\f1fc"}.fa-paint-roller:before{content:"\f5aa"}.fa-palette:before{content:"\f53f"}.fa-palfed:before{content:"\f3d8"}.fa-pallet:before{content:"\f482"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-parking:before{content:"\f540"}.fa-passport:before{content:"\f5ab"}.fa-pastafarianism:before{content:"\f67b"}.fa-paste:before{content:"\f0ea"}.fa-patreon:before{content:"\f3d9"}.fa-pause:before{content:"\f04c"}.fa-pause-circle:before{content:"\f28b"}.fa-paw:before{content:"\f1b0"}.fa-paypal:before{content:"\f1ed"}.fa-peace:before{content:"\f67c"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-square:before{content:"\f14b"}.fa-pencil-alt:before{content:"\f303"}.fa-pencil-ruler:before{content:"\f5ae"}.fa-penny-arcade:before{content:"\f704"}.fa-people-carry:before{content:"\f4ce"}.fa-pepper-hot:before{content:"\f816"}.fa-percent:before{content:"\f295"}.fa-percentage:before{content:"\f541"}.fa-periscope:before{content:"\f3da"}.fa-person-booth:before{content:"\f756"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-phone:before{content:"\f095"}.fa-phone-alt:before{content:"\f879"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-square:before{content:"\f098"}.fa-phone-square-alt:before{content:"\f87b"}.fa-phone-volume:before{content:"\f2a0"}.fa-photo-video:before{content:"\f87c"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-pizza-slice:before{content:"\f818"}.fa-place-of-worship:before{content:"\f67f"}.fa-plane:before{content:"\f072"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-departure:before{content:"\f5b0"}.fa-play:before{content:"\f04b"}.fa-play-circle:before{content:"\f144"}.fa-playstation:before{content:"\f3df"}.fa-plug:before{content:"\f1e6"}.fa-plus:before{content:"\f067"}.fa-plus-circle:before{content:"\f055"}.fa-plus-square:before{content:"\f0fe"}.fa-podcast:before{content:"\f2ce"}.fa-poll:before{content:"\f681"}.fa-poll-h:before{content:"\f682"}.fa-poo:before{content:"\f2fe"}.fa-poo-storm:before{content:"\f75a"}.fa-poop:before{content:"\f619"}.fa-portrait:before{content:"\f3e0"}.fa-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-pray:before{content:"\f683"}.fa-praying-hands:before{content:"\f684"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before{content:"\f486"}.fa-print:before{content:"\f02f"}.fa-procedures:before{content:"\f487"}.fa-product-hunt:before{content:"\f288"}.fa-project-diagram:before{content:"\f542"}.fa-pushed:before{content:"\f3e1"}.fa-puzzle-piece:before{content:"\f12e"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\f128"}.fa-question-circle:before{content:"\f059"}.fa-quidditch:before{content:"\f458"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-quran:before{content:"\f687"}.fa-r-project:before{content:"\f4f7"}.fa-radiation:before{content:"\f7b9"}.fa-radiation-alt:before{content:"\f7ba"}.fa-rainbow:before{content:"\f75b"}.fa-random:before{content:"\f074"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-reacteurope:before{content:"\f75d"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-receipt:before{content:"\f543"}.fa-recycle:before{content:"\f1b8"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redhat:before{content:"\f7bc"}.fa-redo:before{content:"\f01e"}.fa-redo-alt:before{content:"\f2f9"}.fa-registered:before{content:"\f25d"}.fa-remove-format:before{content:"\f87d"}.fa-renren:before{content:"\f18b"}.fa-reply:before{content:"\f3e5"}.fa-reply-all:before{content:"\f122"}.fa-replyd:before{content:"\f3e6"}.fa-republican:before{content:"\f75e"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-restroom:before{content:"\f7bd"}.fa-retweet:before{content:"\f079"}.fa-rev:before{content:"\f5b2"}.fa-ribbon:before{content:"\f4d6"}.fa-ring:before{content:"\f70b"}.fa-road:before{content:"\f018"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-route:before{content:"\f4d7"}.fa-rss:before{content:"\f09e"}.fa-rss-square:before{content:"\f143"}.fa-ruble-sign:before{content:"\f158"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-vertical:before{content:"\f548"}.fa-running:before{content:"\f70c"}.fa-rupee-sign:before{content:"\f156"}.fa-sad-cry:before{content:"\f5b3"}.fa-sad-tear:before{content:"\f5b4"}.fa-safari:before{content:"\f267"}.fa-salesforce:before{content:"\f83b"}.fa-sass:before{content:"\f41e"}.fa-satellite:before{content:"\f7bf"}.fa-satellite-dish:before{content:"\f7c0"}.fa-save:before{content:"\f0c7"}.fa-schlix:before{content:"\f3ea"}.fa-school:before{content:"\f549"}.fa-screwdriver:before{content:"\f54a"}.fa-scribd:before{content:"\f28a"}.fa-scroll:before{content:"\f70e"}.fa-sd-card:before{content:"\f7c2"}.fa-search:before{content:"\f002"}.fa-search-dollar:before{content:"\f688"}.fa-search-location:before{content:"\f689"}.fa-search-minus:before{content:"\f010"}.fa-search-plus:before{content:"\f00e"}.fa-searchengin:before{content:"\f3eb"}.fa-seedling:before{content:"\f4d8"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-server:before{content:"\f233"}.fa-servicestack:before{content:"\f3ec"}.fa-shapes:before{content:"\f61f"}.fa-share:before{content:"\f064"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield-alt:before{content:"\f3ed"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shoe-prints:before{content:"\f54b"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shopware:before{content:"\f5b5"}.fa-shower:before{content:"\f2cc"}.fa-shuttle-van:before{content:"\f5b6"}.fa-sign:before{content:"\f4d9"}.fa-sign-in-alt:before{content:"\f2f6"}.fa-sign-language:before{content:"\f2a7"}.fa-sign-out-alt:before{content:"\f2f5"}.fa-signal:before{content:"\f012"}.fa-signature:before{content:"\f5b7"}.fa-sim-card:before{content:"\f7c4"}.fa-simplybuilt:before{content:"\f215"}.fa-sistrix:before{content:"\f3ee"}.fa-sitemap:before{content:"\f0e8"}.fa-sith:before{content:"\f512"}.fa-skating:before{content:"\f7c5"}.fa-sketch:before{content:"\f7c6"}.fa-skiing:before{content:"\f7c9"}.fa-skiing-nordic:before{content:"\f7ca"}.fa-skull:before{content:"\f54c"}.fa-skull-crossbones:before{content:"\f714"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f3ef"}.fa-slash:before{content:"\f715"}.fa-sleigh:before{content:"\f7cc"}.fa-sliders-h:before{content:"\f1de"}.fa-slideshare:before{content:"\f1e7"}.fa-smile:before{content:"\f118"}.fa-smile-beam:before{content:"\f5b8"}.fa-smile-wink:before{content:"\f4da"}.fa-smog:before{content:"\f75f"}.fa-smoking:before{content:"\f48d"}.fa-smoking-ban:before{content:"\f54d"}.fa-sms:before{content:"\f7cd"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-snowboarding:before{content:"\f7ce"}.fa-snowflake:before{content:"\f2dc"}.fa-snowman:before{content:"\f7d0"}.fa-snowplow:before{content:"\f7d2"}.fa-socks:before{content:"\f696"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before{content:"\f0dc"}.fa-sort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-down-alt:before{content:"\f881"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-alpha-up-alt:before{content:"\f882"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-down-alt:before{content:"\f884"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-amount-up-alt:before{content:"\f885"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-down-alt:before{content:"\f886"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-numeric-up-alt:before{content:"\f887"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-sourcetree:before{content:"\f7d3"}.fa-spa:before{content:"\f5bb"}.fa-space-shuttle:before{content:"\f197"}.fa-speakap:before{content:"\f3f3"}.fa-speaker-deck:before{content:"\f83c"}.fa-spell-check:before{content:"\f891"}.fa-spider:before{content:"\f717"}.fa-spinner:before{content:"\f110"}.fa-splotch:before{content:"\f5bc"}.fa-spotify:before{content:"\f1bc"}.fa-spray-can:before{content:"\f5bd"}.fa-square:before{content:"\f0c8"}.fa-square-full:before{content:"\f45c"}.fa-square-root-alt:before{content:"\f698"}.fa-squarespace:before{content:"\f5be"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-stackpath:before{content:"\f842"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-and-crescent:before{content:"\f699"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before{content:"\f5c0"}.fa-star-of-david:before{content:"\f69a"}.fa-star-of-life:before{content:"\f621"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-step-backward:before{content:"\f048"}.fa-step-forward:before{content:"\f051"}.fa-stethoscope:before{content:"\f0f1"}.fa-sticker-mule:before{content:"\f3f7"}.fa-sticky-note:before{content:"\f249"}.fa-stop:before{content:"\f04d"}.fa-stop-circle:before{content:"\f28d"}.fa-stopwatch:before{content:"\f2f2"}.fa-store:before{content:"\f54e"}.fa-store-alt:before{content:"\f54f"}.fa-strava:before{content:"\f428"}.fa-stream:before{content:"\f550"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-stroopwafel:before{content:"\f551"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-subscript:before{content:"\f12c"}.fa-subway:before{content:"\f239"}.fa-suitcase:before{content:"\f0f2"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-superpowers:before{content:"\f2dd"}.fa-superscript:before{content:"\f12b"}.fa-supple:before{content:"\f3f9"}.fa-surprise:before{content:"\f5c2"}.fa-suse:before{content:"\f7d6"}.fa-swatchbook:before{content:"\f5c3"}.fa-swimmer:before{content:"\f5c4"}.fa-swimming-pool:before{content:"\f5c5"}.fa-symfony:before{content:"\f83d"}.fa-synagogue:before{content:"\f69b"}.fa-sync:before{content:"\f021"}.fa-sync-alt:before{content:"\f2f1"}.fa-syringe:before{content:"\f48e"}.fa-table:before{content:"\f0ce"}.fa-table-tennis:before{content:"\f45d"}.fa-tablet:before{content:"\f10a"}.fa-tablet-alt:before{content:"\f3fa"}.fa-tablets:before{content:"\f490"}.fa-tachometer-alt:before{content:"\f3fd"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tape:before{content:"\f4db"}.fa-tasks:before{content:"\f0ae"}.fa-taxi:before{content:"\f1ba"}.fa-teamspeak:before{content:"\f4f9"}.fa-teeth:before{content:"\f62e"}.fa-teeth-open:before{content:"\f62f"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f3fe"}.fa-temperature-high:before{content:"\f769"}.fa-temperature-low:before{content:"\f76b"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-tenge:before{content:"\f7d7"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-th:before{content:"\f00a"}.fa-th-large:before{content:"\f009"}.fa-th-list:before{content:"\f00b"}.fa-the-red-yeti:before{content:"\f69d"}.fa-theater-masks:before{content:"\f630"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-thermometer:before{content:"\f491"}.fa-thermometer-empty:before{content:"\f2cb"}.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-think-peaks:before{content:"\f731"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-ticket-alt:before{content:"\f3ff"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-tint:before{content:"\f043"}.fa-tint-slash:before{content:"\f5c7"}.fa-tired:before{content:"\f5c8"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toilet:before{content:"\f7d8"}.fa-toilet-paper:before{content:"\f71e"}.fa-toolbox:before{content:"\f552"}.fa-tools:before{content:"\f7d9"}.fa-tooth:before{content:"\f5c9"}.fa-torah:before{content:"\f6a0"}.fa-torii-gate:before{content:"\f6a1"}.fa-tractor:before{content:"\f722"}.fa-trade-federation:before{content:"\f513"}.fa-trademark:before{content:"\f25c"}.fa-traffic-light:before{content:"\f637"}.fa-train:before{content:"\f238"}.fa-tram:before{content:"\f7da"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-alt:before{content:"\f2ed"}.fa-trash-restore:before{content:"\f829"}.fa-trash-restore-alt:before{content:"\f82a"}.fa-tree:before{content:"\f1bb"}.fa-trello:before{content:"\f181"}.fa-tripadvisor:before{content:"\f262"}.fa-trophy:before{content:"\f091"}.fa-truck:before{content:"\f0d1"}.fa-truck-loading:before{content:"\f4de"}.fa-truck-monster:before{content:"\f63b"}.fa-truck-moving:before{content:"\f4df"}.fa-truck-pickup:before{content:"\f63c"}.fa-tshirt:before{content:"\f553"}.fa-tty:before{content:"\f1e4"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-tv:before{content:"\f26c"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-ubuntu:before{content:"\f7df"}.fa-uikit:before{content:"\f403"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-underline:before{content:"\f0cd"}.fa-undo:before{content:"\f0e2"}.fa-undo-alt:before{content:"\f2ea"}.fa-uniregistry:before{content:"\f404"}.fa-universal-access:before{content:"\f29a"}.fa-university:before{content:"\f19c"}.fa-unlink:before{content:"\f127"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before{content:"\f13e"}.fa-untappd:before{content:"\f405"}.fa-upload:before{content:"\f093"}.fa-ups:before{content:"\f7e0"}.fa-usb:before{content:"\f287"}.fa-user:before{content:"\f007"}.fa-user-alt:before{content:"\f406"}.fa-user-alt-slash:before{content:"\f4fa"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-check:before{content:"\f4fc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-clock:before{content:"\f4fd"}.fa-user-cog:before{content:"\f4fe"}.fa-user-edit:before{content:"\f4ff"}.fa-user-friends:before{content:"\f500"}.fa-user-graduate:before{content:"\f501"}.fa-user-injured:before{content:"\f728"}.fa-user-lock:before{content:"\f502"}.fa-user-md:before{content:"\f0f0"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-nurse:before{content:"\f82f"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-cog:before{content:"\f509"}.fa-usps:before{content:"\f7e1"}.fa-ussunnah:before{content:"\f407"}.fa-utensil-spoon:before{content:"\f2e5"}.fa-utensils:before{content:"\f2e7"}.fa-vaadin:before{content:"\f408"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-vial:before{content:"\f492"}.fa-vials:before{content:"\f493"}.fa-viber:before{content:"\f409"}.fa-video:before{content:"\f03d"}.fa-video-slash:before{content:"\f4e2"}.fa-vihara:before{content:"\f6a7"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-voicemail:before{content:"\f897"}.fa-volleyball-ball:before{content:"\f45f"}.fa-volume-down:before{content:"\f027"}.fa-volume-mute:before{content:"\f6a9"}.fa-volume-off:before{content:"\f026"}.fa-volume-up:before{content:"\f028"}.fa-vote-yea:before{content:"\f772"}.fa-vr-cardboard:before{content:"\f729"}.fa-vuejs:before{content:"\f41f"}.fa-walking:before{content:"\f554"}.fa-wallet:before{content:"\f555"}.fa-warehouse:before{content:"\f494"}.fa-water:before{content:"\f773"}.fa-wave-square:before{content:"\f83e"}.fa-waze:before{content:"\f83f"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weight:before{content:"\f496"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weixin:before{content:"\f1d7"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-wheelchair:before{content:"\f193"}.fa-whmcs:before{content:"\f40d"}.fa-wifi:before{content:"\f1eb"}.fa-wikipedia-w:before{content:"\f266"}.fa-wind:before{content:"\f72e"}.fa-window-close:before{content:"\f410"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-windows:before{content:"\f17a"}.fa-wine-bottle:before{content:"\f72f"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before{content:"\f5ce"}.fa-wix:before{content:"\f5cf"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-won-sign:before{content:"\f159"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wpressr:before{content:"\f3e4"}.fa-wrench:before{content:"\f0ad"}.fa-x-ray:before{content:"\f497"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yammer:before{content:"\f840"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yarn:before{content:"\f7e3"}.fa-yelp:before{content:"\f1e9"}.fa-yen-sign:before{content:"\f157"}.fa-yin-yang:before{content:"\f6ad"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.fa-zhihu:before{content:"\f63f"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}@font-face{font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:normal;font-display:auto;src:url(../webfonts/fa-brands-400.eot);src:url(../webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.woff) format("woff"),url(../webfonts/fa-brands-400.ttf) format("truetype"),url(../webfonts/fa-brands-400.svg#fontawesome) format("svg")}.fab{font-family:"Font Awesome 5 Brands"}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:400;font-display:auto;src:url(../webfonts/fa-regular-400.eot);src:url(../webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.woff) format("woff"),url(../webfonts/fa-regular-400.ttf) format("truetype"),url(../webfonts/fa-regular-400.svg#fontawesome) format("svg")}.far{font-weight:400}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:900;font-display:auto;src:url(../webfonts/fa-solid-900.eot);src:url(../webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.woff) format("woff"),url(../webfonts/fa-solid-900.ttf) format("truetype"),url(../webfonts/fa-solid-900.svg#fontawesome) format("svg")}.fa,.far,.fas{font-family:"Font Awesome 5 Free"}.fa,.fas{font-weight:900} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/68029fca7b67e75ef7a47df9a6791c5c5403fec0.00001259.json b/www/.content.EZtzwPjb/html/68029fca7b67e75ef7a47df9a6791c5c5403fec0.00001259.json new file mode 100644 index 0000000..a7f6145 --- /dev/null +++ b/www/.content.EZtzwPjb/html/68029fca7b67e75ef7a47df9a6791c5c5403fec0.00001259.json @@ -0,0 +1 @@ +{"version":"1.0","provider_name":"HugoPoi","provider_url":"http:\/\/blog.hugopoi.net","author_name":"HugoPoi","author_url":"http:\/\/blog.hugopoi.net\/author\/hugopoi\/","title":"Hello World","type":"rich","width":600,"height":338,"html":"
                    Hello World<\/a><\/blockquote>\n + + + + + + + + + + + + + + + + + +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +

                    Vos données sauvegardées

                    Dans le monde d’aujourd’hui, le numérique est omniprésent, tout ce que vous faites est ou peut être numérisé. Qu’il s’agisse de vos photos de vacances, de votre CV ou votre liste de course, vos contacts et tous les documents que vous utilisez pour travailler sont surement numériques. L’informatique est partout et aide à gérer votre comptabilité, vos contacts pro ou perso et même bientôt votre frigo. Quand je pense qu’il y a 10 ans, beaucoup de professions géraient leur base clients avec des fiches papiers, et que ça existe encore… Pourtant, c’est une perte de temps importante de gérer des clientèles de plus 100 personnes, trier les fiches à la main dans l’ordre alphabétique. Imaginez devoir sortir tous les clients que vous n’avez pas contacté depuis 2 mois, même avec uniquement 100 personnes vous allez y passer au moins une 1 heure avant que votre liste soit faite, avec une base de données, cela est fait en moins d’1 seconde. Tous ça pour dire que l’informatique facilite grandement votre vie jusqu’au jour où ça tombe en panne ! J’ai donc quelques propositions à vous faire concernant la protection de vos données. (suite…)

                    +
                    Par HugoPoi, il y a
                    +
                    + +
                    +
                    +
                    +
                    + +
                    +
                    + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/68ecd270e72fb9e7df7314457aaad3ec37bcf87d.00000544.xml b/www/.content.EZtzwPjb/html/68ecd270e72fb9e7df7314457aaad3ec37bcf87d.00000544.xml new file mode 100644 index 0000000..62fa518 --- /dev/null +++ b/www/.content.EZtzwPjb/html/68ecd270e72fb9e7df7314457aaad3ec37bcf87d.00000544.xml @@ -0,0 +1,82 @@ + + + + HugoPoi » U36JC-RX260V + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Sat, 14 Sep 2013 23:01:40 +0000 + fr-FR + hourly + 1 + http://wordpress.org/?v=3.6 + + Asus U36 et OCZ Vertex 3 la suite + http://blog.hugopoi.net/2012/03/30/asus-u36-et-ocz-vertex-3-la-suite/ + http://blog.hugopoi.net/2012/03/30/asus-u36-et-ocz-vertex-3-la-suite/#comments + Fri, 30 Mar 2012 10:29:27 +0000 + HugoPoi + + + + + + + + + + + + + + + http://blog.hugopoi.net/?p=635 + Lire la suite »

                    ]]>
                    + http://blog.hugopoi.net/2012/03/30/asus-u36-et-ocz-vertex-3-la-suite/feed/ + 1 +
                    + + Démontage Asus U36 + http://blog.hugopoi.net/2011/07/30/demontage-asus-u36/ + http://blog.hugopoi.net/2011/07/30/demontage-asus-u36/#comments + Sat, 30 Jul 2011 13:19:08 +0000 + HugoPoi + + + + + + + + + http://blog.hugopoi.net/?p=495 + SSD MontéJ’ai acheté un petit SSD pour mettre dans mon U36 acheté il y a quelques mois, je n’ai pas trouvé de procédure de démontage sur Internet donc voici les photos de mon démontage. 1) Commencer par enlever toutes les vis …

                    Lire la suite »

                    ]]>
                    + http://blog.hugopoi.net/2011/07/30/demontage-asus-u36/feed/ + 17 +
                    + + Asus U36JC-RX260V + http://blog.hugopoi.net/2011/04/10/asus-u36jc-rx260v/ + http://blog.hugopoi.net/2011/04/10/asus-u36jc-rx260v/#comments + Sun, 10 Apr 2011 18:49:18 +0000 + HugoPoi + + + + + + + http://blog.hugopoi.net/?p=398 + Lire la suite »

                    ]]>
                    + http://blog.hugopoi.net/2011/04/10/asus-u36jc-rx260v/feed/ + 4 +
                    +
                    +
                    diff --git a/www/.content.EZtzwPjb/html/6937172ff75705a55b338fc2ba09fa34d9f21892.00000180.html b/www/.content.EZtzwPjb/html/6937172ff75705a55b338fc2ba09fa34d9f21892.00000180.html new file mode 100644 index 0000000..0b88971 --- /dev/null +++ b/www/.content.EZtzwPjb/html/6937172ff75705a55b338fc2ba09fa34d9f21892.00000180.html @@ -0,0 +1,330 @@ + + + + + + + + Banc de test chez Hugo – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                    +
                    +
                    +
                    +
                    +
                    +
                    +
                    + + + +

                    +
                    +
                    +
                    +
                    +

                    + 0 commentaire

                    +
                    +
                    +
                    +

                    Laisser un commentaire

                    Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                    +
                    +
                    +

                    + +

                    +
                    +
                    +
                    +
                    +
                    +
                    +
                    +
                    + +
                    + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/69d3598104f1eca4482de72a8055af354559e504.00000547.html b/www/.content.EZtzwPjb/html/69d3598104f1eca4482de72a8055af354559e504.00000547.html new file mode 100644 index 0000000..96d8873 --- /dev/null +++ b/www/.content.EZtzwPjb/html/69d3598104f1eca4482de72a8055af354559e504.00000547.html @@ -0,0 +1,372 @@ + + + + + + + VirtualBox – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +

                    Installer Mac OS X Mavericks avec VirtualBox

                    Capture Installation Mac OS X MavericksComme Apple c’est des blaireaux et que j’avais besoin d’un environnement de développement pour iDaube. J’ai du me résoudre à installer un Mac OS X dans une machine virtuel.

                    +

                    Ce dont vous avez besoin :

                    + +

                    Moi je travail sous Linux Mint mais vous devriez réussir à faire les manipulations sous Windaube. (suite…)

                    +
                    Par HugoPoi, il y a
                    +
                    + +
                    +
                    +
                    +
                    + +
                    +
                    + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/69defb28756a5c654cc210221c86ac47bab4c31b.00000305.html b/www/.content.EZtzwPjb/html/69defb28756a5c654cc210221c86ac47bab4c31b.00000305.html new file mode 100644 index 0000000..1b1252e --- /dev/null +++ b/www/.content.EZtzwPjb/html/69defb28756a5c654cc210221c86ac47bab4c31b.00000305.html @@ -0,0 +1,387 @@ + + + + + + + Hardware – Page 4 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +

                    Stockage numérique pour tous

                    Ce blog parle très technique comme en témoigne mon dernier article mais aujourd’hui je vais faire un petit topo sur les disques-dur ou plutôt le stockage de vos données numériques en général. Dans cet article je vais m’adresser à tout le monde de papi-geek à tante-photo et pas uniquement à tous les geeks.

                    +

                    Je me suis aperçu, dans mon entourage proche mais aussi sur des forums ou je traîne parfois, que beaucoup n’ont aucune notion sur comment est stockée l’information sur nos ordinateurs et ce qu’il y a dans un disque USB que l’on achète à la Fnac pour ne citer que ces abrutis.

                    +

                    Retour en arrière, le fameux disque-dur que tout le monde utilise (peut-être sans le savoir) a été inventé en 1953 par IBM. Les premiers modèles avaient une capacité de quelques mégaoctets pour un prix de 10 000$. Aujourd’hui, il existe des modèles allant jusqu’à plus de 2 Téraoctets de capacité soit un million de fois plus.

                    +

                    Le disque-dur stocke les informations de façon magnétique sur des plateaux qui ressemblent à des CDs qui sont en rotation. Des petits bras viennent se positionner au dessus des disques pour écrire/lire les informations. ça ressemble à cela :

                    +

                    +

                    (suite…)

                    +

                    Liste de Noël

                    Comme presque tout le monde, je cède à la magie de noël, le plus grand coup marketing des deux derniers millénaires pour nous faire dépenser notre argent. Alors comme j’ai beaucoup de chance, je viens d’avoir un accident avec ma voiture, ça tombe à pique pour le mois de décembre. Heureusement, je vais pouvoir la réparer DIY pour pas trop chère. Je ne sais pas si des opérations de ce type sont en cours mais je me disais que l’on pourrais m’offrir une carte cadeau ou un bon d’achat dans une casse auto pour y acheter les pièces dont j’ai besoin (Je cherche : un capot violet, une traverse frontale et 2 phares complets pour Twingo 1gen). Après ce moment de rigolade déception je vous donne ci-dessous ma liste de noël. Elle est destinée à mes lecteurs généreux, ma famille, amis et autres donateurs qui sont les bienvenus. Je préviens c’est un peu plus qu’une liste de noël puisque je vais y mettre tous les truc fun, gadgets super high-tech dernier cri et super pc de la mort qui tue. Par contre il n’y aura pas d’objet Apple donc les fanboys de la pomme vous pouvez aller profiter de votre temps libre sur Apple.com. (suite…)

                    +

                    Trolling

                    Apple New MacBook Air

                    +

                    J’avais envie de me défouler un peu donc je vais troller sur la sortie du nouveau MacBook Air. Alors oui il est beau, il est léger, la finition est nikel Chrome. Mais c’est du Apple donc c’est cher le prix d’entrée est de 999€ ouch ! pour la version 11 pouces … (suite…)

                    +
                    Par HugoPoi, il y a
                    +
                    +
                    + +
                    +
                    +
                    +
                    + +
                    +
                    + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/69e573a4ae023928e05a001c06c4fd1d74b07c98.00000656.css b/www/.content.EZtzwPjb/html/69e573a4ae023928e05a001c06c4fd1d74b07c98.00000656.css new file mode 100644 index 0000000..8043bbf --- /dev/null +++ b/www/.content.EZtzwPjb/html/69e573a4ae023928e05a001c06c4fd1d74b07c98.00000656.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;background:#fff;border:1px +solid #f00;font-size:10pt;width:280px;padding:2px}span.wpcf7-not-valid-tip-no-ajax{color:#f00;font-size:10pt;display:block}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/6a116f85bf4ca02972cce01ba086d804fa1da48f.00000782.js b/www/.content.EZtzwPjb/html/6a116f85bf4ca02972cce01ba086d804fa1da48f.00000782.js new file mode 100644 index 0000000..18bb908 --- /dev/null +++ b/www/.content.EZtzwPjb/html/6a116f85bf4ca02972cce01ba086d804fa1da48f.00000782.js @@ -0,0 +1 @@ +jQuery(document).ready(function(r){function n(t){var e=r(t);e.prop("disabled")||e.closest(".form-group").addClass("is-focused")}function e(t){var o=!1;(t.is(r.material.options.checkboxElements)||t.is(r.material.options.radioElements))&&(o=!0),t.closest("label").hover(function(){var t,e,a=r(this).find("input"),i=a.prop("disabled");o&&(t=r(this),e=i,(t.hasClass("checkbox-inline")||t.hasClass("radio-inline")?t:t.closest(".checkbox").length?t.closest(".checkbox"):t.closest(".radio")).toggleClass("disabled",e)),i||n(a)},function(){a(r(this).find("input"))})}function a(t){r(t).closest(".form-group").removeClass("is-focused")}r.expr[":"].notmdproc=function(t){return!r(t).data("mdproc")},r.material={options:{validate:!0,input:!0,ripples:!0,checkbox:!0,togglebutton:!0,radio:!0,arrive:!0,autofill:!1,withRipples:[".btn:not(.btn-link)",".card-image",".navbar a:not(.withoutripple)",".dropdown-menu a",".nav-tabs a:not(.withoutripple)",".withripple",".pagination li:not(.active):not(.disabled) a:not(.withoutripple)"].join(","),inputElements:"input.form-control, textarea.form-control, select.form-control",checkboxElements:".checkbox > label > input[type=checkbox], label.checkbox-inline > input[type=checkbox]",togglebuttonElements:".togglebutton > label > input[type=checkbox]",radioElements:".radio > label > input[type=radio], label.radio-inline > input[type=radio]"},checkbox:function(t){e(r(t||this.options.checkboxElements).filter(":notmdproc").data("mdproc",!0).after(''))},togglebutton:function(t){e(r(t||this.options.togglebuttonElements).filter(":notmdproc").data("mdproc",!0).after(''))},radio:function(t){e(r(t||this.options.radioElements).filter(":notmdproc").data("mdproc",!0).after(''))},input:function(t){r(t||this.options.inputElements).filter(":notmdproc").data("mdproc",!0).each(function(){var a=r(this),i=a.closest(".form-group");if(0!==i.length||"hidden"===a.attr("type")||a.attr("hidden")||a.parents(".pirate_forms").length||(a.wrap('
                    '),i=a.closest(".form-group")),0===i.length&&"hidden"!==a.attr("type")&&!a.attr("hidden")&&a.parents(".pirate_forms").length){var t=a.prev();"checkbox"===a.attr("type")&&(t=a.next()),a.add(t).wrapAll('
                    '),i=a.closest(".form-group")}a.attr("data-hint")&&(a.after('

                    '+a.attr("data-hint")+"

                    "),a.removeAttr("data-hint"));if(r.each({"input-lg":"form-group-lg","input-sm":"form-group-sm"},function(t,e){a.hasClass(t)&&(a.removeClass(t),i.addClass(e))}),a.hasClass("floating-label")){var e=a.attr("placeholder");a.attr("placeholder",null).removeClass("floating-label");var o=a.attr("id"),n="";o&&(n='for="'+o+'"'),i.addClass("label-floating"),a.after("")}null!==a.val()&&"undefined"!==a.val()&&""!==a.val()||i.addClass("is-empty"),0 '+e+" ").insertBefore(t)}},l.hestia={init:function(){this.navSearch(),this.getPortfolioModalData(),this.fixHeaderPadding(),this.headerSpacingFrontpage(),this.initCarousel(),this.initCarouselSwipe(),this.scrollToTop(),this.detectIos(),this.parallaxHeader(),this.addViewCart(),this.setSearchSizeInput(),this.setControlLabel(),this.styleDefaultSubscribeWidget(),this.fixElementorTemplates(),this.handleGutenbergAlignment()},fixElementorTemplates:function(){if(l(".elementor").length<=0)return!1;var t=l(".navbar").outerHeight();return l(".elementor-template-full-width header").css("margin-bottom",t),l(".page-template-template-fullwidth .main.classic-blog").css("margin-top",t),!1},navSearch:function(){l(".hestia-toggle-search").on("click",function(){var t=l(".nav-searching");l(".navbar").toggleClass("nav-searching"),t.find(".hestia-nav-search").addClass("is-focused"),t.find(".hestia-nav-search").find(".search-field").focus(),l(this).find("i").fadeOut(200,function(){l(this).toggleClass("fa-search"),l(this).toggleClass("fa-times")}).fadeIn(200)})},getPortfolioModalData:function(){l("#portfolio").find('a[data-toggle="modal"]').on("click",function(t){t.preventDefault();var e=l(this).data("pid");l.ajax({url:requestpost.ajaxurl,type:"post",data:{action:"hestia_get_portfolio_item_data",pid:e},success:function(t){var e=l(".hestia-portfolio-modal");e.find(".modal-content").html(t),e.on("hidden.bs.modal",function(){l(this).find(".modal-content").html('
                    ')})}})})},fixHeaderPadding:function(){var t=l(".navbar-fixed-top").outerHeight(),e=window.matchMedia("(max-width: 600px)");if(l("#wpadminbar").length&&e.matches?(l(".wrapper.classic-blog").find(".main").css("margin-top",t-46),l(".carousel .item .container").css("padding-top",t+50-46),l(".home.page.page-template-default .navbar").hasClass("no-slider")&&l(".home.page.page-template-default .main").css("margin-top",t-46)):(l(".wrapper.classic-blog").find(".main").css("margin-top",t),l(".carousel .item .container").css("padding-top",t+50),l(".home.page.page-template-default .navbar").hasClass("no-slider")&&l(".home.page.page-template-default .main").css("margin-top",t)),768 div[id^=product].product").css("margin-top",-o)}else l(".page-header.header-small .container , .woocommerce.single-product .blog-post .col-md-12 > div[id^=product].product").removeAttr("style");l(".no-content").length&&l(".page-header.header-small").css("min-height",t+230)},headerSpacingFrontpage:function(){if((!this.inIframe()||!this.isMobileUA())&&0')})},setSearchSizeInput:function(){0'),t.find("p.sib-NAME-area").before(''),t.find(".form-group").each(function(){l(this).addClass("is-empty")})},handleGutenbergAlignment:function(){var t=l("body");if(t.hasClass("page-template-template-pagebuilder-full-width")||t.hasClass("page-template-template-pagebuilder-blank"))return!1;var e=l(".alignfull"),a=l(".alignwide");if(!e.length&&!a.length)return!1;var i=l(".main").innerWidth(),o=l(".blog-post > .container > article > .row > div").innerWidth(),n=0,r=0;!this.isMobile()&&l("#secondary").length||(n=(i-o)/2+15,r=(i-o)/5),e.length&&l(e).each(function(t,e){l(e).css({"margin-left":"-"+n+"px","margin-right":"-"+n+"px"})}),a.length&&l(a).each(function(t,e){l(e).css({"margin-left":"-"+r+"px","margin-right":"-"+r+"px"})})},isMobile:function(){return window.innerWidth<=991}},l.navigation={init:function(){this.toggleNavbarTransparency(),this.handleResponsiveDropdowns(),this.handleTouchDropdowns(),this.repositionDropdowns(),this.smoothScroll(),this.activeParentLink(),this.highlightMenu(),this.setBodyOverflow()},handleTouchDropdowns:function(){if(window.innerWidth<991)return!1;var a=this;return l(".caret-wrap").on("touchstart",function(t){t.preventDefault(),t.stopPropagation();var e=l(this).closest("li");l(e).hasClass("dropdown-submenu")&&(l(e).siblings().removeClass("open").find("dropdown-submenu").removeClass("open"),l(e).siblings().find(".caret-open").removeClass("caret-open")),l(this).closest("li").parent().is(".nav")&&a.clearDropdowns(),l(this).toggleClass("caret-open"),l(this).closest(".dropdown").toggleClass("open"),a.createOverlay()}),!1},createOverlay:function(){var t=l(".dropdown-helper-overlay");if(0a?e&&(e=!1,t.removeClass("navbar-transparent"),t.addClass("navbar-not-transparent")):e||(e=!0,t.addClass("navbar-transparent"),t.removeClass("navbar-not-transparent")))},17))}},handleResponsiveDropdowns:function(){if(768 a .caret-wrap").on("click touchend",function(t){var e=l(this);t.preventDefault(),t.stopPropagation(),l(e).toggleClass("caret-open"),l(e).parent().siblings().toggleClass("open")})},smoothScroll:function(){l('.navbar a[href*="#"], a.btn[href*="#"]').click(function(){if("#"===l(this).attr("href"))return!1;if(location.pathname.replace(/^\//,"")===this.pathname.replace(/^\//,"")&&location.hostname===this.hostname){var t=l(this.hash);if((t=t.length?t:l("[name="+this.hash.slice(1)+"]")).length)return l("html,body").animate({scrollTop:t.offset().top-l.utilitiesFunctions.verifyNavHeight()},1200),l(".navbar .navbar-collapse").hasClass("in")&&l(".navbar .navbar-collapse.in").removeClass("in"),l("body").hasClass("menu-open")&&(l("body").removeClass("menu-open"),l(".navbar-collapse").css("height","0"),l(".navbar-toggle").attr("aria-expanded","false")),!1}})},activeParentLink:function(){l(".navbar .dropdown > a").click(function(){return"#"===l(this).attr("href")||(location.href=this.href),!1})},highlightMenu:function(){l(window).on("scroll",function(){if(l("body").hasClass("home")&&751<=l(window).width()){var n=l(window).scrollTop(),r=l(".navbar").outerHeight(),s="no";l("#carousel-hestia-generic, section").each(function(){var t="#"+l(this).attr("id"),e=l(this).offset().top,a=l(this).outerHeight(),i=e-r,o=e+a-r;if(n+l.utilitiesFunctions.verifyNavHeight()>=i&&n+l.utilitiesFunctions.verifyNavHeight()<=o)return s="yes",l("nav .on-section").removeClass("on-section"),l('nav a[href$="'+t+'"]').parent("li").addClass("on-section"),!1;"no"===s&&l("nav .on-section").removeClass("on-section")})}})},setBodyOverflow:function(){var t=l("#main-navigation");t.on("show.bs.collapse",function(){l("body").addClass("menu-open")}),t.on("hidden.bs.collapse",function(){l("body").removeClass("menu-open")})},repositionDropdowns:function(){var n=window.innerWidth;if(n<=768)return!1;var t=l(".dropdown-menu");return 0===t.length||l.each(t,function(t,e){var a=l(e),i=a.offset().left;/webkit.*mobile/i.test(navigator.userAgent)&&(i-=window.scrollX);var o=a.outerWidth();n<=i+o&&l(e).css("left","-100%")}),!1}};var e=0;l.hestiaNavBarScroll={checkNavbarScrollPoint:function(){if(0===l(".navbar-header").length)return!1;if(768<=l.utilitiesFunctions.getWidth()){if(void 0!==l(".navbar-header").offset()){var t=l(".navbar-header").offset().top;/webkit.*mobile/i.test(navigator.userAgent)&&(t-=window.scrollY),e=t+l(".navbar-header").height()}0===l(".hestia_left.header-with-topbar").length&&0===l(".full-screen-menu.header-with-topbar").length||(e=40)}else e=0!==l(".header-with-topbar").length?40:0},addScrollClass:function(){l(window).on("scroll",function(){l(document).scrollTop()>=e?l(".navbar").addClass("navbar-scroll-point"):l(".navbar").removeClass("navbar-scroll-point")})}}}(jQuery),jQuery(document).ready(function(){jQuery.material.init(),jQuery.hestia.init(),jQuery.navigation.init(),jQuery.hestiaFeatures.initAnimations(),jQuery.hestiaFeatures.initTooltips(),jQuery.hestiaNavBarScroll.checkNavbarScrollPoint(),jQuery.hestiaNavBarScroll.addScrollClass()}),jQuery(window).load(function(){jQuery.hestiaFeatures.initMasonry(),jQuery.hestia.sidebarToggle()}),jQuery(window).resize(function(){jQuery.hestiaFeatures.initMasonry(),jQuery.hestia.fixHeaderPadding(),jQuery.hestia.headerSpacingFrontpage(),jQuery.hestia.handleGutenbergAlignment(),jQuery.hestiaNavBarScroll.checkNavbarScrollPoint(),jQuery.navigation.repositionDropdowns()}); \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/6a3e22c9935a4423281b3608b76223d6d6f10df2.00000019.html b/www/.content.EZtzwPjb/html/6a3e22c9935a4423281b3608b76223d6d6f10df2.00000019.html new file mode 100644 index 0000000..2499762 --- /dev/null +++ b/www/.content.EZtzwPjb/html/6a3e22c9935a4423281b3608b76223d6d6f10df2.00000019.html @@ -0,0 +1,495 @@ + + + + + + + + Plugin WordPress – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +
                    +

                    Cela va faire plus d’un mois que j’ai ouvert mon blog, j’ai donc pu prendre en main le CMS WordPress. Alors je vais faire un petit retour sur les plugins que j’ai trouvés et plus particulièrement ceux que j’utilise.

                    +

                    Dans la catégorie Décoration j’ai adopté :

                    +

                    TweetMeme Retweet Button

                    +

                    Ajoute un joli bouton TweetMeme pour RT mes articles.

                    +

                    TwitterWidget

                    +

                    Ajoute un Widget qui permet d’afficher ma Timeline Twitter sur la sidebar du blog.

                    +

                    Contact Form 7

                    +

                    Permet de créer des formulaires de contact, c’est simple et sobre. Je l’ai utilisé pour ma page contact.

                    +

                    Dans la catégorie Administration et Maintenance :

                    +

                    WP Maintenance Mode

                    +

                    Cette extension permet de passer le blog en mode maintenance, avec la possibilité de personnaliser la page affichée et elle dispose d’un compte à rebours.

                    +

                    WP Security Scan

                    +

                    Ajoute un menu securité dans le back-office avec un système de scan qui permet : la vérification des fichiers htaccess, les permissions d’écriture et lecture sur les dossiers, générateur de mot de passe et modification des préfixes des tables.

                    +

                    BackWPup

                    +

                    Après une semaine de recherches acharnées pour trouver THE plugin pour faire des backups automatiques de mon blog avec rapatriement distant. J’étais à la limite de le développer, j’ai même commencé fini de lire la doc dev codex de WordPress. Et ce matin, j’ai enfin trouvé le Graal, un plugin avec gestion de jobs manuel ou automatique avec gestion cron wordpress ou cron externe. La possibilité d’envoyer le backup sur un FTP distant, l’envoi des logs par mail et les backups sauvegardent la base de donnée et les fichiers media et autre au choix !

                    +

                    Dans la catégorie Statistique :

                    +

                    WordPress.com Stats

                    +

                    Renvoie les stats de la plateforme wordpress.com, il faut s »inscrire sur wordpress.com et ajouter son domaine dans son dashboard. Moins complet que les outils Google mais c’est plus simple à utiliser et cela suffit largement pour les petits blogs sans prétention. Je l’utilise conjointement avec les stats de mon hébergeur.

                    +

                    Voilà j’ai fais le tour de ce que j’utilise sur mon blog, je vous ferais un rapport mensuel de mes prochaines découvertes.

                    +
                    +
                    +
                    +
                    +
                    Catégories : News
                    +
                    +
                    +
                    + + + + + + + + + +
                    +
                    +
                    +
                    +
                    +
                    +
                    +

                    + 0 commentaire

                    +
                    +
                    +
                    +

                    Laisser un commentaire

                    Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                    +
                    +
                    +

                    + +

                    +
                    +
                    +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +
                    + + +
                    + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/6a630284c3ced6fb162537ac5fd2c7d76120a208.00000748.css b/www/.content.EZtzwPjb/html/6a630284c3ced6fb162537ac5fd2c7d76120a208.00000748.css new file mode 100644 index 0000000..cc58ce7 --- /dev/null +++ b/www/.content.EZtzwPjb/html/6a630284c3ced6fb162537ac5fd2c7d76120a208.00000748.css @@ -0,0 +1 @@ +.carousel .hestia-title{font-size:67px}.carousel span.sub-title{font-size:18px}@media (max-width:768px){.carousel .hestia-title,h1.hestia-title{font-size:36px}.page-header.header-small .hestia-title,.page-header.header-small .title{font-size:26px}}h2.hestia-title,h2.title{font-size:37px}@media (max-width:768px){h2.hestia-title,h2.title{font-size:24px}}.woocommerce .exclusive-products h2,.woocommerce .related.products h2,.woocommerce div.product .product_title{font-size:32px}@media (max-width:768px){.woocommerce .exclusive-products h2,.woocommerce .related.products h2,.woocommerce div.product .product_title{font-size:24px}}#comments .hestia-title,.subscribe-line h3.hestia-title,.woocommerce .comment-reply-title,.woocommerce-cart .blog-post h1.hestia-title,.woocommerce-checkout .blog-post h1.hestia-title{font-size:27px}h5.description,h5.subscribe-description{font-size:18px}.subscribe-line .description{font-size:14px}.woocommerce-cart .blog-post h1.hestia-title,.woocommerce-checkout .blog-post h1.hestia-title{font-size:27px}.hestia-work .card-title,.woocommerce .cart-collaterals h2,.woocommerce .cross-sells h2,.woocommerce-checkout .blog-post .section form.woocommerce-checkout h3:not(#ship-to-different-address),.woocommerce.single-product .summary .price{font-size:23px}.footer .widget h5,.hestia-info h4.info-title,h4.card-title,section.contactus h4.hestia-title{font-size:18px}.archive .card-blog .card-title,.blog .card-blog .card-title,.blog .hestia-blog-featured-card .card-title{font-size:25px}h6.category{font-size:12px}.card-description,.woocommerce .product .card-product .card-description p,.woocommerce.single-product .woocommerce-product-details__short-description,section.pricing p.text-gray{font-size:14px}.hestia-features .hestia-info p{font-size:16px}.hestia-title.title-in-content,.page-content-wrap h1,.single-post-wrap h1,h1{font-size:42px}@media (max-width:768px){.hestia-title.title-in-content{font-size:36px}}.page-content-wrap h2,.single-post-wrap h2,h2{font-size:37px}.page-content-wrap h3,.single-post-wrap h3,h3{font-size:32px}.page-content-wrap h4,.single-post-wrap h4,h4{font-size:27px}.page-content-wrap h5,.single-post-wrap h5,h5{font-size:23px}.page-content-wrap h6,.single-post-wrap h6,h6{font-size:18px}@media (max-width:768px){.page-content-wrap h1,.page-template-template-fullwidth article h1,.single-post-wrap h1,h1{font-size:30px}.page-content-wrap h2,.page-template-template-fullwidth article h2,.single-post-wrap h2,h2{font-size:28px}.page-content-wrap h3,.page-template-template-fullwidth article h3,.single-post-wrap h3,h3{font-size:24px}.page-content-wrap h4,.page-template-template-fullwidth article h4,.single-post-wrap h4,h4{font-size:22px}.page-content-wrap h5,.page-template-template-fullwidth article h5,.single-post-wrap h5,h5{font-size:20px}.page-content-wrap h6,.page-template-template-fullwidth article h6,.single-post-wrap h6,h6{font-size:18px}}.page-content-wrap,.page-content-wrap dl,.page-content-wrap ol,.page-content-wrap table,.page-content-wrap ul,.page-template-template-fullwidth article,.page-template-template-fullwidth article dl,.page-template-template-fullwidth article ol,.page-template-template-fullwidth article table,.page-template-template-fullwidth article ul,.single-post-wrap,.single-post-wrap dl,.single-post-wrap ol,.single-post-wrap table,.single-post-wrap ul{font-size:18px}@media (max-width:768px){.page-content-wrap,.page-content-wrap dl,.page-content-wrap ol,.page-content-wrap table,.page-content-wrap ul,.page-template-template-fullwidth article,.page-template-template-fullwidth article dl,.page-template-template-fullwidth article ol,.page-template-template-fullwidth article table,.page-template-template-fullwidth article ul,.single-post-wrap,.single-post-wrap dl,.single-post-wrap ol,.single-post-wrap table,.single-post-wrap ul{font-size:16px}}body{font-size:14px}.navbar a{font-size:12px} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/6ab69062b4f1c3fd983a0664fdba6bf857a0d714.00000234.html b/www/.content.EZtzwPjb/html/6ab69062b4f1c3fd983a0664fdba6bf857a0d714.00000234.html new file mode 100644 index 0000000..354ceb9 --- /dev/null +++ b/www/.content.EZtzwPjb/html/6ab69062b4f1c3fd983a0664fdba6bf857a0d714.00000234.html @@ -0,0 +1,333 @@ + + + + + + + Screenshot_LinuxMint19-LXDE-x64-clone-secureboot-test_2018-11-18_19:07:36 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                    +
                    +
                    +
                    +
                    +
                    +
                    +
                    + + + +

                    +
                    +
                    +
                    +
                    +

                    + 0 commentaire

                    +
                    +
                    +
                    +

                    Laisser un commentaire

                    Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                    +
                    +
                    +

                    + +

                    +
                    +
                    +
                    +
                    +
                    +
                    +
                    +
                    + +
                    + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/6b69e68d47a79cdb83904f71a38f48030eaafa10.00000609.css b/www/.content.EZtzwPjb/html/6b69e68d47a79cdb83904f71a38f48030eaafa10.00000609.css new file mode 100644 index 0000000..20df2bb --- /dev/null +++ b/www/.content.EZtzwPjb/html/6b69e68d47a79cdb83904f71a38f48030eaafa10.00000609.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7 .screen-reader-response{position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);height:1px;width:1px;margin:0;padding:0;border:0}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{color:#f00;font-size:1em;display:block}.use-floating-validation-tip span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;border:1px +solid #f00;background:#fff;padding: .2em .8em}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/6ba77be9afb0af1bdcb1f42dd795d9c7b8edaa3b.00000679.css b/www/.content.EZtzwPjb/html/6ba77be9afb0af1bdcb1f42dd795d9c7b8edaa3b.00000679.css new file mode 100644 index 0000000..20df2bb --- /dev/null +++ b/www/.content.EZtzwPjb/html/6ba77be9afb0af1bdcb1f42dd795d9c7b8edaa3b.00000679.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7 .screen-reader-response{position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);height:1px;width:1px;margin:0;padding:0;border:0}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{color:#f00;font-size:1em;display:block}.use-floating-validation-tip span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;border:1px +solid #f00;background:#fff;padding: .2em .8em}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/6c43067ec3e8a12240454f13b823e87e61e5c402.00000164.html b/www/.content.EZtzwPjb/html/6c43067ec3e8a12240454f13b823e87e61e5c402.00000164.html new file mode 100644 index 0000000..39aa10d --- /dev/null +++ b/www/.content.EZtzwPjb/html/6c43067ec3e8a12240454f13b823e87e61e5c402.00000164.html @@ -0,0 +1,869 @@ + + + + + + + + Réparer un Vidéoprojecteur Sony VPL-CX5 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +
                    +

                    Bon les cocos, j’ai récupéré un vidéo projecteur Sony VPL-CX5 en état décédé. Comme je sais que c’est encore et toujours ce problème d’obsolescence programmée j’ai donc décidé de le réparer.

                    +

                    Sony VPL-CX5

                    +

                    Première étape, identifier la panne

                    +

                    Le vidéoprojecteur ne donnait aucun signe de vie, aucune led ne s’allume quand je l’ai branché rien du tout même pas un petit crépitement d’alimentation. Je pense a un problème d’alimentation mais rien est sur tant que je ne l’ai pas démonté. Mais avant le dévissage je vais quand même faire une recherche Google car le Internet il est grand et il est beau. J’ai trouvé un truc qui m’a mis la puce à l’oreille sans même avoir enlever la première visse, sur un forum quelconque que je n’arrive plus à retrouver, un mec dit qu’il a changé un composant (un certain MCZ3001) sur une des cartes d’alimentation, et le vidéoprojecteur remarchait.

                    +

                    Démontage

                    +

                    Sony VPL-CX5

                    +

                    J’ai donc commencé par enlever les quelques visses, puis démonter toutes les cartes une par une, une vrai galère. Pour m’aider j’ai trouvé le « manuel de service » (or Service Manual) que je mets a disposition ici même : sony_vpl-cx5_cs5_servicemanual. J’ai mis dans la suite les références des connecteurs pour les mesures.

                    +

                    1) Premier test vérifier le fusible sur la première carte d’alimentation GA, faire le test avec la carte débranché, j’ai utilisé un voltmètre sur la position test de résistance : test OK.

                    +

                    2) Deuxième test, vérifier la tension continu fournie par cette carte GA sur le connecteur de sortie CN2001 environ 380V DC, DONC FAIRE CECI AVEC PRÉCAUTION (je l’ai fait avec un voltmètre de merde à 5€) : test OK j’ai 380 Volt en sortie. Sur cette carte il y un gros condensateur de 400V donc faire TRÈS ATTENTION MÊME QUAND LA CARTE EST DÉBRANCHÉ DU SECTEUR.(j’ai vérifier le condensateur se décharge assez vite j’ai mesuré 4V 10 secondes après avoir débranché)

                    +

                    3) Maintenant test de la carte GB qui transforme le 400V continu en basse tension continu ici du 24V d’après le SM. Donc j’ai le point de mesure parfait, c’est le connecteur CN3201.

                    +
                    N'oubliez d'ouvrir le manuel de service ça donne des infos précieuses pour le dépannage

                    N’oubliez d’ouvrir le manuel de service ça donne des infos précieuses pour le dépannage

                    +

                    Plusieurs points pour tester le plus pratique étant le petit connecteur blanc de 3 broches qui fournit la masse et VCC 24V. Après mesure sur ce connecteur j’ai une tension stable mais pas du 24VDC, les composants n’ont pas l’air endommagés donc je vérifie à l’entrée du fameux MCZ3001 il est bien alimenté correctement mais ne sort pas 24VDC. Pas de condensateurs chimiques endommagés.

                    +

                    Donc la panne est certainement dû à ce composant, achetons-le !

                    +

                    Trouver le composant de rechange

                    +

                    Au début j’ai cherché chez des e-commerçant d’électronique comme Farnell,Conrad, etc pas trouvé en france, puis j’ai fait les marchants Anglais et je l’ai trouvé mais à 30€ frais de port inclus. Et comme un con j’avais oublié de faire Ebay : encore un coup des chinois 4.27€ avec le support DIP et les frais de port inclus OMFG j’adore la mondialisation. J’en ai pris 2 pour mois de 10€ et comme les chinois ils sont trop fort j’ai tout reçu en moins de 2 semaines.

                    +

                    Capture-ebay-mcz3001

                    +

                    Dés-soudage

                    +

                    Bon j’avais des fer à souder de merde et du coup c’est le #FAIL, j’ai pas réussi à dés-souder proprement, j’ai donc été obligé d’investir dans une merde à 10€ :

                    +

                    Fer à souderEnsuite j’ai finalement réussi à dés-souder :

                    +

                    Carte GB MCZ3001 dés-soudéEt il me semble que sur cette photo j’avais nettoyer avec du dissolvant.

                    +

                    Remontage

                    +

                    Alors je suis désolé mais je n’ai pas de photos pour le MCZ soudé car j’avais déjà remonté le projecteur. Les étapes :

                    +
                      +
                    1. Souder un support fourni (au cas ou ce fameux MCZ rendrais encore l’âme)
                    2. +
                    3. Placer un MCZ neuf dans le support
                    4. +
                    5. Relier la carte GA et GB ensemble
                    6. +
                    7. Brancher sur le 220V
                    8. +
                    9. Tester le 24VDC sur le connecteur CN3201
                    10. +
                    11. #WIN
                    12. +
                    13. Remonter le projecteur
                    14. +
                    15. Tester en vrai
                    16. +
                    17. #WIN2
                    18. +
                    +

                    Conclusion

                    +

                    Oui c’est un WIN d’une valeur 4€ mais je tiens à préciser que ça représente environ 10 heures de travail continu. Entre les recherches Google et la lecture de la documentation, les heures passés au démontage, les quelques fois ou je me suis arraché les cheveux et risquer ma vie avec un voltmètre à 5€.

                    +

                    Mon banc de test

                    +

                    Banc de test chez HugoLa table du salon 2Les Tofs

                    + + +
                    +
                    +
                    + +
                    +
                    + + + + + + + + + +
                    +
                    +
                    +
                    +
                    +
                    +
                    +

                    + 16 commentaires

                    +
                    + +
                    +
                    +
                    +
                    +

                    + Georg + · 30 janvier 2014 à 12 h 22 min +

                    +

                    Hello,
                    +dear Hugo, at first: HAVE MANY THANKS FOR YOUR VERY INTERESTING BLOG!!!

                    +

                    I also have a cx5 and try to repair it.

                    +

                    It has the same problems like your projector…

                    +

                    I’ve measured the CN2001 but in my power supply there are only 320 V (stable).
                    +Are you sure, that there have to be 380V?
                    +In the service manual, I didn’t find a value (either 320V nor 380V)

                    +

                    Best Regards
                    +Your Georg

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + HugoPoi + · 21 février 2014 à 17 h 36 min +

                      +

                      Sorry to be so long to answer,
                      +320V seems to be OK, I have extrapolated the value from the schema ~ 220Vxrootsquare(2) but this depends of the quality of your current source. I think 320 will not impact the power for the next card.

                      +

                      Good repair !
                      +Thanks for the comment :-D

                      + +
                      +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + henri moine + · 2 février 2014 à 20 h 43 min +

                    +

                    Bonsoir,
                    +Merci beaucoup pour l’explication détaillée et les photos.
                    +Je vais pas tarder de m’attaquer à mon SONY VPL CS7 bizarrement inerte depuis quelques semaines…
                    +Bonne continuation !

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + florian + · 21 avril 2014 à 9 h 09 min +

                      +

                      Bonjour,
                      +Je possède également un sony VPL CS7, et depuis plusieurs mois il a quelques signes de faiblesses.

                      +

                      1) lorsque je le débranche du secteur et que je le rebranche, il faut que j’attende 24 à 48 h pour que le voyant on/off se mette à éclairer, donc je ne peux pas l’allumer pendant ce temps.

                      +

                      2) aujourd’hui j’ai beau le laisser brancher, aucun signe de vie plus rien ne s’allume.

                      +

                      As tu attaqué ton VPL, As tu trouvé quelque chose ?

                      +

                      Merci

                      + +
                      +
                      +
                        +
                        + +
                        +
                        +
                        +
                        +

                        + HugoPoi + · 9 mai 2014 à 17 h 50 min +

                        +

                        Le VPL que j’avais était en panne je l’ai réparé jusqu’à il y a 2 mois ou il retombé en panne. Ton problème d’allumage ressemble à un problème de condensateur cramé. tu peux regarder si tu en vois des gonflés en démontant.

                        + +
                        +
                        + +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Ghent + · 21 septembre 2014 à 12 h 48 min +

                    +

                    Bonjour,

                    +

                    Déjà, super tuto.
                    +Je rencontre un problème à priori similaire avec mon CX5: le bouton de mise sous tension n’est plus éclairé et il ne se passe rien quand j’appuie dessus.

                    +

                    Je me suis donc lancé, et j’ai démonté jusqu’à atteindre les cartes d’alimentation.
                    +J’ai mesuré donc au niveau du CN3201, et là j’ai 22V continu stable.
                    +D’où ma première question, ai-je le même problème que toi avec le MCZ3001, ou dois-je chercher autre part ?
                    +Faut-il 24V exactement ?

                    +

                    Ensuite, j’ai essayé de me rapprocher du composant lui-même, mais je ne sais pas où mesurer. Le diagramme indique le VC1 sur la patte 8, mais je ne sais pas où prendre la masse.
                    +Saurais-tu m’aider ?

                    +

                    J’ai enfin voulu tester la tension en sortie de la carte GB, le point 17V, mais même question, si je teste la patte 1 du connecteur, où prendre la masse pour vérifier qu’il y a bien 17V ?
                    +Cette partie est-elle alimentée malgré que l’appareil soit éteint ?

                    +

                    Dans tous les cas, j’ai commandé le MCZ3001D, mais je voudrais m’assurer qu’il est bien le responsable avant de le changer.

                    +

                    Merci d’avance pour tes réponses, et encore une fois, merci de partager ton travail !

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + HugoPoi + · 26 septembre 2014 à 15 h 01 min +

                      +

                      Je penses que si tu as 22V sur CN3201 le problème est sûrement ailleurs. Même si cela ne coûte rien de changer le MCZ3001D si tu as de quoi dessouder proprement. Regarde sur le service manuel pour tester les autres tensions qui sortent de la carte après les partie d’isolement, de mémoire il y a 3,3 V et du 5V.

                      + +
                      +
                      +
                        +
                        + +
                        +
                        +
                        +
                        +

                        + Neckron + · 12 décembre 2014 à 21 h 32 min +

                        +

                        Bonsoir, je déterre un peu ce vpl-cx5 que je possède et que je vends !!!
                        +Je voie qu’il y a encore des personnes qui s’y intéresse.
                        +Je précise juste que le mien est en excellent état de marche, il y a la télécommande et qu’il n’a servi QUE 220 Heures. Lampe d’origine. Je cherchais pendant un temps un moyen de l’upgrader pour l’image, mais finalement…. je change…

                        + +
                        +
                        + +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Jean-Marie + · 31 décembre 2014 à 14 h 43 min +

                    +

                    Bonjour Hugo.
                    +Merci pour ton partage d’expérience.
                    +Moi aussi, j’ai un VPL-CS7 inerte comme tu dis. Pas la moindre led s’allume ou clignote quand je le branche.
                    +Je l’ai complètement démonté. Je soupçonne un composant sur le bloc d’alim.
                    +As-tu réparé le tien ?
                    +Merci.
                    +JM.

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + HugoPoi + · 31 janvier 2015 à 15 h 13 min +

                      +

                      Moi j’ai bien réparé mon CX5 mais celui-ci est retombé en panne 6 mois plus tard. Cette fois-ci avec plus de composants endommagés :-(
                      +Bon courage pour les réparations.

                      + +
                      +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Sorce + · 14 mars 2015 à 16 h 05 min +

                    +

                    Bonjour ,j’ai un vpl cs6 ,qui ne s’allume pas rien du tous j’ai suivi tes étape et sur le connecteur con 2001 et la 325v bizarre bon je relie la carte gb pour tester au borne du con 3201 et la 15v et sa retombe et sa remonte a 15v peut tu m aider cdt richard (pense tu que je doi changer le mcz)

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + HugoPoi + · 29 avril 2015 à 16 h 18 min +

                      +

                      Vérifiez les autres tensions en sortie de la carte GB, de mémoire il doit y avoir 3,3 V du 5 V et du 15V. Si tout est OK, la carte-mère principale est peut-être endommagé et pas moyen de réparer sans changement.

                      + +
                      +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + Gilles + · 16 juin 2018 à 13 h 44 min +

                      +

                      Même chose que vous ?
                      +Avez-vous trouvé une solution ?
                      +Est-ce que c’est normal cette tension non stable ?

                      + +
                      +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Daoud Yacoub + · 20 octobre 2015 à 9 h 54 min +

                    +

                    Je remercie beaucoup l’equipe

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Daoud Yacoub + · 20 octobre 2015 à 10 h 02 min +

                    +

                    Aidez moi à depanner mon vidéo projecteur le tout ne s’allume pas ;jai démonté et nettoyer toutes les plaques alimentation et logique me rien ne se passe mais en toute sincérité si je peux avoir le document technique de réparation m’est indispensable

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + HugoPoi + · 24 octobre 2015 à 13 h 39 min +

                      +

                      Les commentaires n’ont pas pour vocation d’être un forum :-)

                      + +
                      +
                      + +
                    + +
                    +
                    +
                    +

                    Répondre à HugoPoi Annuler la réponse

                    Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                    +
                    +
                    +

                    + +

                    +
                    +
                    +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +
                    + + +
                    + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/6ca5c22b1c245811f5670580e5a18c522abcb37f.00000237.html b/www/.content.EZtzwPjb/html/6ca5c22b1c245811f5670580e5a18c522abcb37f.00000237.html new file mode 100644 index 0000000..d1059f8 --- /dev/null +++ b/www/.content.EZtzwPjb/html/6ca5c22b1c245811f5670580e5a18c522abcb37f.00000237.html @@ -0,0 +1,333 @@ + + + + + + + Screenshot_test-uefi-install-mok_2018-12-23_17:29:13 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                    +
                    +
                    +
                    +
                    +
                    +
                    +
                    + + + +

                    +
                    +
                    +
                    +
                    +

                    + 0 commentaire

                    +
                    +
                    +
                    +

                    Laisser un commentaire

                    Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                    +
                    +
                    +

                    + +

                    +
                    +
                    +
                    +
                    +
                    +
                    +
                    +
                    + +
                    + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/6cf0796a2dc107024b860f3fe9cfae5d7c8d340f.00000619.css b/www/.content.EZtzwPjb/html/6cf0796a2dc107024b860f3fe9cfae5d7c8d340f.00000619.css new file mode 100644 index 0000000..fe440fe --- /dev/null +++ b/www/.content.EZtzwPjb/html/6cf0796a2dc107024b860f3fe9cfae5d7c8d340f.00000619.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;background:#fff;border:1px +solid #f00;font-size:10pt;width:280px;padding:2px}span.wpcf7-not-valid-tip-no-ajax{color:#f00;font-size:10pt;display:block}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/6d3634042c3a2ff57b2b391aeaf871afdf326444.00001263.json b/www/.content.EZtzwPjb/html/6d3634042c3a2ff57b2b391aeaf871afdf326444.00001263.json new file mode 100644 index 0000000..bc94776 --- /dev/null +++ b/www/.content.EZtzwPjb/html/6d3634042c3a2ff57b2b391aeaf871afdf326444.00001263.json @@ -0,0 +1 @@ +{"version":"1.0","provider_name":"HugoPoi","provider_url":"http:\/\/blog.hugopoi.net","author_name":"HugoPoi","author_url":"http:\/\/blog.hugopoi.net\/author\/hugopoi\/","title":"Cloud Computing","type":"rich","width":600,"height":338,"html":"
                    Cloud Computing<\/a><\/blockquote>\n + + + + + + + + + + + + + + + + + + + + + + + + +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +
                    +

                    Depuis le temps que je voulais investir dans un pc portable, je l’ai enfin fait. Je cherchais une machine en complément de mon fixe avec comme premiers critères l’autonomie et un minimum de puissance. J’ai donc acheté un ultra-portable Asus, un chassie U36JC avec les caractéristiques suivantes :

                    +
                      +
                    • Ecran 13,3″ 1366×768
                    • +
                    • Processeur Intel Core I5-480M
                    • +
                    • 4Go de Ram
                    • +
                    • Carte Graphique Intel HD2000 et Nvidia Geforce 310M (Optimus)
                    • +
                    • Batterie 8 cellules
                    • +
                    • Dimension 32.2 x 23.2 x 1.90 cm Poids 1,6 Kg avec batterie
                    • +
                    +

                    Déballage

                    +

                    L’emballage est petit et contient le strict minimum, le pc et l’alimentation. Alors au niveau de l’équipement on a pour ce prix :

                    +
                      +
                    • Wifi Intel AGN
                    • +
                    • Un disque-dur 640 Go Western Digital Scorpio Blue
                    • +
                    • Un port USB 3.0
                    • +
                    • et déception pas de bluetooth
                    • +
                    +

                    L’écran est rétro-éclairé par LED, la luminosité minimum est très forte c’est un bon point par contre je trouve que les contrastes sont pâles et le rendu est un peu blanchâtre. La finition extérieure est bonne sans être excellente. L’autonomie est d’un peu moins de 5 heures en utilisation bureautique intensive web.

                    +

                    Optimus

                    +

                    Ce modèle dispose de la technologie Nvidia Optimus qui permet de switcher l’affichage entre le chipset graphique interne au processeur Intel et la carte Nvidia qui est sur le port PCI-Express de la carte mère. Cela permet en théorie de gagner en autonomie en utilisant le chip intel pour la bureautique et la carte Nvidia pour faire un peu de  jeux vidéo quand le pc est branché. J’ai testé et j’ai trouvé plusieurs points noirs concernant cette techno :

                    +
                      +
                    • Ne fonctionne que sous Windows car le système est conçu à partir de cet OS
                    • +
                    • Quand je switch d’un chip à l’autre je ne peux pas savoir quel carte est réellement active #lol ou j’ai loupé un truc ?
                    • +
                    • Pour switcher il faut utiliser le logiciel Power4Gear d’Asus enfin je suppose car c’est uniquement par ce biais que j’ai réussi …
                    • +
                    +

                    Je vais essayer de vous pondre un billet si je trouve des astuces permettant d’exploiter cette techno qui pour l’instant est un peu merdique. J’ai aussi remarqué un truc. Quand je suis sur le chip Intel, la carte Nvidia reste alimentée et monte en charge à environ 2-3%… bizarre !

                    +

                    Software

                    +

                    Un grand bravo à tout les éditeurs qui ont un partenariat avec Asus pour pré-installer toutes leur merdes sur les machines neuves. Cela me conforte dans l’idée que Windows est un OS poubelle, ou du moins les éditeurs font tout pour que ça le reste. Et tout ces pauvres gens qui subissent Microsoft et tout ces éditeurs. Bientôt on ne pourra plus choisir l’antivirus que l’on veut à moins de formater sa machine neuve. J’ai du passer environ deux bonnes heures pour dégager toutes les merdes qui étaient pré-installées.

                    +

                    Un petit merci à Asus pour tous ces logiciels avec des supers nom geek « fast boot », « Power4Gear », « virtual camera » mais dont la moitié est super impossible à utiliser ou même au début c’est tellement transparent qu’on ne sait pas vraiment à quoi ils servent vraiment. C’est l’impression que j’en ai eu.

                    +

                    L’aventure Cdiscount

                    +

                    J’ai eu de la « chance » et j’ai trouvé sur Cdiscount le modèle RX260V au prix de 680€ donc une affaire. C’était la première fois que je commandais chez Cdiscount, je soupçonnes des méthodes pas très catholique pour manipuler leurs clients. Sur la page du produit qui était une vente flash, il y avait le stock affiché en temps réel, et le nombre d’articles disponible est passé de 7 à 30 vers minuit le samedi du week-end durant lequel j’ai commandé. Je doute qu’il y ait eu un réapprovisionnement un samedi soir. Le délai de livraison est moyen, une semaine avec le mode de transport le moins cher. Et malgré avoir décoché les cases « recevoir nos offres promotionnelles » et compagnie, elles se sont re-cochées après la création de mon compte. J’ai reçu des mails assez intrusifs, car le site s’est rendu compte que je traquais un article, et m’ a envoyé plusieurs mails pour me dire « achetez, achetez, il y en aura plus après. »

                    +

                    Comme j’ai commandé avant le 14 mars j’étais éligible à l’offre promotionnelle -25% remboursé sur le rayon informatique. j’ai donc rempli le formulaire en ligne puis renvoyé le code barre de mon Asus. Cdiscount m’a confirmé (le 07/04/2011) seulement deux semaines après qu’il avait reçu mon dossier(reçu 24/03/2011), très réactif, pour me dire en plus que je recevrais mes bons d’achats dans un délai de 3 semaines ! (les emails c’est pire que la poste …) Donc 7+3*7=28, j’aurais 2 jours pour utiliser mon bon d’achat, c’est limite comme pratique non ?

                    +

                    Conclusion

                    +

                    Après relecture, mon article n’est pas très positif mais j’ai gardé le meilleur pour la fin. C’est mon premier PC portable, j’avais un peu peur qu’il soit plus lent que mon fixe mais il s’avère que non. En utilisation bureautique donc bon point, rapide à démarrer, sortir de veille. L’autonomie de 5h est un minimum, et pour 700 €, on a l’équivalent d’un netbook mais avec la puissance d’un notebook de base. L’équipement est complet pour ce niveau de prix mais j’aurais aimé avoir un port e-sata et du bluetooth pour qu’il soit top ! Sinon si on compare avec un Macbook air :

                    +
                      +
                    1. Le processeur Core i5-480M vs Core 2 Duo Asus Win !
                    2. +
                    3. Carte Graphique Nvidia Geforce 310M vs 320M Apple Win :(
                    4. +
                    5. Poids 1,6 Kg vs 1,32 kg mais impossible de trouver le poids avec équipement comparable ? so ==
                    6. +
                    7. Taille 1.90 cm vs 1,7 cm Apple Win
                    8. +
                    9. Equipement USB3/VGA-HDMI/Eth1Gb vs 2USB/DP Apple FAIL
                    10. +
                    11. Easy Upgrade Batterie/Disque-dur/RAM vs ???? Asus Win
                    12. +
                    13. Et pour finir le prix 700€ sans SSD vs 1400€ donc même si je rajoute un putain de SSD à 300€ Asus MegaWin
                    14. +
                    +

                    En résumé, ça fait  4 à 2, donc Apple peut aller se rhabiller avec ses MacBook air même pas foutu d’avoir un port Ethernet (et celui qui est vendu en option est 10/100 )

                    +

                     

                    +

                    Mince je me suis trompé d’image :

                    +

                    c'est pas un RX260V ...??...

                    +
                    +
                    +
                    +
                    +
                    Catégories : HardwareLogicielsTest
                    +
                    +
                    +
                    + + + + + + + + + +
                    +
                    +
                    +
                    +
                    +
                    +
                    +

                    + 4 commentaires

                    +
                    + +
                    +
                    +
                    +
                    +

                    + Mikky + · 1 mai 2011 à 20 h 51 min +

                    +

                    Yop Hugo,
                    +sache que lorsqu’on achète un pc portable faut le réinstaller comme ça tu peux dégager tout les merdes pré-installés car on peut choisir ceux qu’on veut intaller ;)

                    +

                    Bisous =)

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + darkneo + · 28 mai 2011 à 17 h 21 min +

                    +

                    Par contre sur ce modèle je crois que l’accès au disque n’est pas possible sans ouvrir toute la coque!

                    + +
                    +
                    + +
                    +
                    +

                    + Optimus vs Mégatron | HugoPoi + · 5 mai 2011 à 2 h 00 min +

                    +

                    […] l’heureux acquéreur #oupas d’un pc portable avec technologie Optimus de Nvidia (voir Asus U36JC). Après quelques jours de recherches et de tests je vais essayer de vous faire un résumé […]

                    + +
                    +
                    + +
                    +
                    +

                    + Démontage Asus U36 | HugoPoi + · 31 juillet 2011 à 2 h 00 min +

                    +

                    […] acheté un petit SSD pour mettre dans mon U36 acheté il y a quelques mois, je n’ai pas trouvé de procédure de démontage sur Internet donc voici les photos de mon […]

                    + +
                    +
                    + +
                    +
                    +
                    +

                    Répondre à Optimus vs Mégatron | HugoPoi Annuler la réponse

                    Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                    +
                    +
                    +

                    + +

                    +
                    +
                    +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +
                    + + +
                    + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/6dae8868190350cecbee6bece3fafdcb7c555d3c.00000213.html b/www/.content.EZtzwPjb/html/6dae8868190350cecbee6bece3fafdcb7c555d3c.00000213.html new file mode 100644 index 0000000..6fb7bda --- /dev/null +++ b/www/.content.EZtzwPjb/html/6dae8868190350cecbee6bece3fafdcb7c555d3c.00000213.html @@ -0,0 +1,570 @@ + + + + + + + + Test et démontage d’un Sony Multi Flip 15 SVF15N1C5E – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +
                    +

                    Longtemps que je n’avais pas posté ici, mais la je suis en vacances donc j’ai le temps. Voici donc mes retours sur ce pc portable Sony un peu atypique. J’ai choisit cette machine sur plusieurs critères qui m’avait convaincu pour les usages de ma chérie (c’est sa machine), elle fait du dessin vectoriel et de la retouche d’images principalement.
                    +
                    +

                    Crédit photo TheInquirer.net

                    Crédit photo TheInquirer.net

                    +

                    Acheté en décembre 2013 sur la boutique en ligne de Sony voici la configuration, les choix ont été fait dans le but d’ajouter de la RAM et un SSD à postériori :

                    +
                      +
                    • Core i7-4500U
                    • +
                    • GeForce GT 735M 1 Go
                    • +
                    • Écran 15″ 2880×1620
                    • +
                    • Disque-dur 750Go
                    • +
                    • 4Go de Ram
                    • +
                    +

                    Les plus :

                    +
                      +
                    • L’écran IPS tactile avec une résolution 2880×1620
                    • +
                    • La charnière 3 mode laptop/tablette/chevalet
                    • +
                    • Le poids de 2.3 Kg
                    • +
                    • Les finitions / solidité générale châssis aluminium
                    • +
                    • Le prix 1200€ (pour un portable de cette gamme, mais ça reste hors de prix)
                    • +
                    • Le démontage plutôt facile
                    • +
                    +

                    Les moins :

                    +
                      +
                    • Le clavier de MERDE
                    • +
                    • Le léger bruit du ventilateur en charge (mais ça reste supportable)
                    • +
                    • Le port RJ45 avec clapet qui n’est pas des plus pratique
                    • +
                    • Le rebord au dessus des ports USB, oublié les clés USB épaisses
                    • +
                    • Manque un quad core ? la CG un peu faiblarde
                    • +
                    • Le prix des options : stylet (50 €), RAM et SSD
                    • +
                    +

                    Pour la petite histoire du clavier, au bout de à peine 4 mois d’utilisation la touche UP est déjà cassée sans compter sur l’effet mou du clavier. On a l’impression que clavier va passer à travers le châssis. C’est un peu inadmissible pour un pc de cette gamme.

                    +

                    SVF15N1C5E clavier HSJ’ai regardé si il était encore en vente et ce n’est plus le cas sur le site de Sony, il est peut-être disponible chez certains revendeur mais pas de possibilité de choisir les options.

                    +

                    Voilà quelques photos du démontage, je n’ai pas pu résister.

                    + + +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +

                    + 0 commentaire

                    +
                    +
                    +
                    +

                    Laisser un commentaire

                    Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                    +
                    +
                    +

                    + +

                    +
                    +
                    +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +
                    + + +
                    + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/6dd5c2f6cc333c08e1b396f6595d7bbfea56d448.00000132.html b/www/.content.EZtzwPjb/html/6dd5c2f6cc333c08e1b396f6595d7bbfea56d448.00000132.html new file mode 100644 index 0000000..07c128c --- /dev/null +++ b/www/.content.EZtzwPjb/html/6dd5c2f6cc333c08e1b396f6595d7bbfea56d448.00000132.html @@ -0,0 +1,1370 @@ + + + + + + + + Réparations Samsung SyncMaster 2232BW – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +
                    +

                    Allô docteur on a un problème,

                    +

                    En ce dimanche calme avant la fin de mes partiels, mon écran Samsung SyncMaster 2232BW commençait à faire des siennes. Celui-ci depuis un mois ou deux clignotait de façon systématique au démarrage, au début pendant seulement quelques secondes, puis au fur et à mesure, de plus en plus jusqu’à devoir attendre 10 minutes pour que je puisse l’utiliser. Après 3 ans et 4 mois de bons et loyaux services, il voulait me quitter. J’ai tenté le support Samsung par email avec peu d’espoir car l’écran a dépassé sa garantie de 4 mois (oui oui les bâtards -> obsolescence programmée). Et donc j’ai eu le droit à un joli mail automatique me disant de contacter un numéro non surtaxé (mais avec combien de temps d’attente ?), ce que je n’ai pas fait car je n’avais pas envie de passer 30min au téléphone pour au final avoir un « On est désolé mais on ne peut rien faire pour vous car la garantie est dépassée, mais on peut envoyer votre écran en SAV pour faire un devis pour seulement 50 boules ». Concernant le support email de Samsung France, je leur donne une note de 0/20 puisque ce n’est pas un support mais une redirection vers le téléphone.

                    +

                    +

                    Symptômes

                    +

                    Clignotements de l’écran et de la LED power systématiques à chaque démarrage de l’écran. Je me suis tout de suite douté d’un problème d’alimentation et après quelques recherches sur google, confirmation du problème sur beaucoup d’écrans et téléviseurs. Dans 99% des cas ce clignotement est dû à des condensateurs défectueux qu’il faut simplement changer :-D

                    +

                    Démontage

                    +

                    Donc après avoir cerné le problème, j’ai ouvert l’écran pour chercher les condos défectueux. J’ai trouvé une petite vidéo pour mon écran :

                    +

                    +

                    Voici quelques photos en plus pour vous aider :

                    +

                    Les outils que j’ai utilisé pour le démontage

                    +

                    Position des clips

                    +

                    Carte d’alimentation dans son emplacement

                    +

                    Et voici les condensateurs qui posent problèmes. Comme vous pouvez le voir sur la photo, ils sont très facilement identifiable car ils sont bombés sur le dessus.

                    +

                    Condensateurs défectueux

                    +

                    Vous devez donc acheter des condensateurs de remplacement, par exemple sur Conrad.

                    +

                    Mes condensateurs suivant étaient endommagés:

                    +
                      +
                    • 1 de 330uF 25V remplacé par un 470uF 25V
                    • +
                    • 3 de 820uF 25V remplacé par des 1000uF 50V
                    • +
                    +

                    Pour la réparation, il vous faut un fer à souder avec une panne pas trop grosse mais d’une grosse puissance car les soudures sont très solides (j’ai galéré avec un fer pro qui monte jusqu’à 400°).

                    +

                    Tout remarche nickel après remontage, plus de clignotement pour seulement quelques euros.

                    +

                    edit du 19 aout 2014 : j’ai trouvé le service manuel de l’écran si besoin samsung_2232bw_chassis_lpe22bs_sm

                    + + +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +

                    + 41 commentaires

                    +
                    + +
                    +
                    +
                    +
                    +

                    + c'est_moi + · 30 janvier 2012 à 18 h 57 min +

                    +

                    Mille mercis et mille félicitations pour cette fiche technique si pédagogue.

                    +

                    J’espère que le partiels se passent plus que parfait !!

                    +

                    J’ai gardé l’url de la page pour réparer mon écran dans un petit mois : j’espère que la page soit toujours là ;-)

                    +

                    Merci encore.

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Maxime + · 5 mai 2012 à 12 h 31 min +

                    +

                    Bonjour HugoPoi!

                    +

                    Merci pour toutes vos infos et votre topic, je voulais avoir quelques précisions sur les condos à changer pour samsung 2232bw, je veux passer commande mais j’ai un problème avec les dimensions des condos, si vous pouvez m’informer de ce que je pourrais acheter car il y a trop de références. En vous remerciant A+ Maxime

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + HugoPoi + · 14 juin 2012 à 22 h 56 min +

                      +

                      N’importe quel condensateur polarisé avec des caractéristiques proches devrait marché.

                      + +
                      +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + gaubjezj + · 14 juin 2012 à 22 h 32 min +

                    +

                    Merci pour le tuto qui m’a bien aidé.
                    +J’ai utilisé un fer de 40 W avec une panne fine et
                    +une pompe à dessouder et j’ai retiré les condensateurs sans problème.
                    +Merci encore (3€40 pour le dépannage).

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + DragonTribal + · 2 juillet 2012 à 12 h 02 min +

                    +

                    super merci pour manifique tuto.
                    +Est-il possible de changer les 5 condensateurs 820uF 25V par des 1000uF 50V? car moi mes 5 condensateurs sont presque HS ;-)

                    +

                    Cordialement

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + HugoPoi + · 2 juillet 2012 à 12 h 25 min +

                      +

                      Oui je penses que ça marchera étant donné que c’est des valeurs plus grandes.

                      + +
                      +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + FRED + · 11 juillet 2012 à 19 h 11 min +

                    +

                    Bravo, MERCI.
                    +Je n’ai encore rien fait…mais j’ai le même problème, et tu me donnes la solution.
                    +Super.

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + daninpet + · 31 août 2012 à 10 h 10 min +

                    +

                    Merci mille fois!

                    +

                    J’avais ce problème, et j’ai emmener la photo des trucs a remplacer chez le réparateur du coin et voila!! Ça m’a coûté 7 Euros (mais j’habite en Thaïlande)

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + moi + · 15 novembre 2012 à 15 h 25 min +

                    +

                    super mon 2232bw vient de lâcher, les 3 + 1 condos sont gonflés j ai trouvé un 330 en 35v qui traîné sur un écran mort et j’ai commander 5 1000uf 35v sur ebay pour moins de 3 dollars, ca devrait le faire j’espere j’attend d’être livré merci! par contre j’ai qu’un gros pistolet a soudure et un gros fil d’étain, c’est pas évident mais bon ca le fait quand même =)

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + moi + · 7 décembre 2012 à 9 h 33 min +

                      +

                      parfait je vient de recevoir les condos; j ai meuler la panne du fer a souder pour la tailler en mine de crayon et j ai reussi a les souder facilement ils étaient un peu plus gros mais ca passe tout juste, mais attention ne pas prendre des plus gros! l écran fonctionne nickel maintenant.

                      + +
                      +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Croco + · 19 janvier 2013 à 18 h 39 min +

                    +

                    Je souhaiterai savoir si tu as utilisé un fer à souder bien précis étant donné que la carte est une multi couche.
                    +Merci

                    + +
                    +
                    + + +
                    + +
                    +
                    +
                    +
                    +

                    + momo + · 10 juin 2013 à 13 h 15 min +

                    +

                    slut je voudrai savoir ou trouvé les condansateur a changer sur mon ecran qui clignote

                    + +
                    +
                    + + +
                    + +
                    +
                    +
                    +
                    +

                    + lokmane + · 5 juillet 2013 à 16 h 08 min +

                    +

                    merci j’avais un ecran rouge ! et c’etais la tresse qui relie mon ecran votre page m’a aider a l’ouvrir et a le reparer merci bien

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + ML + · 21 août 2013 à 19 h 11 min +

                    +

                    Merci ! Ecran réparé. Halte à l’obsolescence programmée.

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + raymond + · 31 octobre 2013 à 13 h 20 min +

                    +

                    ai vu votre vidéo et les explications pour la reparation de mon écran , apparemment le méme probléme l écran passe au noir apres quelque seconde , j ai vu un le condensateur en bas a gauche gonflé , je l ai fait changé (10€) les autre condensateur étant toujour bon d après la personne qui me l a changé , mais j ai toujour le méme probléme cela peut il venir de la carte video a gauche ?

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + HugoPoi + · 20 décembre 2013 à 12 h 27 min +

                      +

                      Si la led bleu du bouton power s’éteint aussi c’est un problème d’alimentation sinon c’est plus compliqué et ça peut provenir de condensateurs sur la partie vidéo. Changé tous les plus gros condensateurs sur la partie alimentation pourrait être un bon début même si ils ne paraissent pas endommagé.

                      + +
                      +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + damien + · 4 novembre 2013 à 0 h 29 min +

                    +

                    bonjour,

                    +

                    j’ai des crasses coincées entres l’écran et le truc juste derrière, est ce qu’on sais les enlever en démontant la dalle ?

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + HugoPoi + · 20 décembre 2013 à 12 h 28 min +

                      +

                      Je ne sais si cette partie de la dalle est démontable, je penses que c’est collé mais vous pouvez essayer.

                      + +
                      +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + mac + · 1 décembre 2013 à 17 h 30 min +

                    +

                    Merci HugoPoi, avec ces excellents conseils et tuto vidéo, mon écran est reparti pour une nouvelle vie.
                    +Pour les composants, si vous êtes sur Paris ou proche. La boutique RAM électroniques est une bonne adresse, 138 bd Diderot 75012 Paris (Place de la Nation).

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Bouddhid + · 16 janvier 2014 à 19 h 21 min +

                    +

                    Merci beaucoup pour ces conseils ! J’étais à 2 doigts de jeter mon écran, le voilà comme neuf pour moins de 5€ ! Vive la bricole !

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Vincent + · 17 mai 2014 à 16 h 45 min +

                    +

                    Alors là merci.

                    +

                    Pour ce post, les photos, la vidéo, tout y est.

                    +

                    J’ai démonté l’écran assez vite, enlevé la carte, regarder quel condensateurs étaient gonflés,(il y en avaient 4), un magasin d’électronique sur lyon et une heure de démontage, soudure, remontage plus tard, voilà, c’est tout beau.
                    +Ca ne clignote plus, ça s’allume comme avant, comme neuf.

                    +

                    Et dire que j’allais jeter cet écran et claquer 350 euros pour un neuf…

                    +

                    Coût de l’opération pour 4 condensateurs, du fil d’étain 7 euros.

                    +

                    Je précise que je n’avais jamais fais de soudure sur composant électronique auparavant.
                    +Comme quoi cette opération de réparation est à la portée de tous.

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Julot + · 6 juillet 2014 à 13 h 49 min +

                    +

                    Site vraiment détaillé et très claire. J’ai pu dépanner mon écran avec succès. Merci beaucoup pour ces précieuses explications.

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + PaniK31 + · 29 juillet 2014 à 9 h 21 min +

                    +

                    Pas besoin d’une grosse puissance pour le fer, il faut au préalable gratter le vernis sur l’étain afin de pouvoir le faire fondre plus facilement

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + R211_IP-45130B + · 20 août 2014 à 14 h 04 min +

                    +

                    Bonjour à tous,

                    +

                    Une âme charitable peut-elle me communiquer ce qui est gravé sur la résistance CMS R211 de la carte d’alimentation/inverter IP-45130B qui équipe le SAMSUNG 2232BW ? Cette résistance a pris un coup de tournevis et je n’arrive pas à déterminer sa valeur de résistance car son marquage est effacé et comme le composant est abimé la mesure à l’ohmmètre indique l’infinie.

                    +

                    Merci par avance.

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + roger + · 24 octobre 2014 à 17 h 21 min +

                    +

                    Ca refonctionne après échange de 4 condensateurs :
                    +-un 330uf25v remplacé à l’identique.
                    +-trois 820uf25v remplacés par 1000uf25v.
                    +Le tout pour quelques €. Le plus dur était le dessoudage, la tresse n’était pas très efficace contrairement à la pompe.
                    +Grand merci à HugoPoi.

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Max + · 26 février 2015 à 16 h 28 min +

                    +

                    ENORME MERCI!! J’ai réparé mon écran en 20mn pour 3,50€, il était à 2 doigts de partir à la déchetterie. Ca faisait des mois qu’il clignotait, et l’allumage mettait parfois plus d’une demi heure. J’ai changé 5 condos 820uf25v et 1 330uf25v, par exactement les mêmes en neuf, et là il démarre au quart de tour! Ca fait plaisir! :)

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + rocco michelle + · 7 octobre 2015 à 10 h 16 min +

                      +

                      Bonjour je ne sais si vous verrez mon message mais je tente…je cherche quelqu’un qui accepterait de changer mes condensateurs sur mon samsung, les réparateurs me demandent 70 à 80 euros et encore ils n’ont pss envie de le faire et me disent d’acheter un nouvel écran. j’aurais bien tenter mais je n’ai pas de matériel et j’ai lu que les condo pouvaient être très dangereux s’ils avaient de la charge alors j’ai la trouille de bidouiller pq je n’y connais rien. si vous êtes de lyon acccepteriez vous de changer mes condensateurs pour 45 euros? merci de votre réponse.

                      + +
                      +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + lecakeseb + · 27 juillet 2015 à 15 h 26 min +

                    +

                    Bonjour,

                    +

                    J’ai utilisé la vidéo pour démonter mon écran afin de le nettoyer de 4 bêtes d’orage infiltrés entre le premier écran (noir) et la dalle (blanche) de mon samsung SyncMaster 2232W

                    +

                    Petits conseils afin de modérer ce que j’ai pu voir dans cette vidéo :

                    +

                    0 : aspirez, nettoyez l’extérieur de l’écran avant de l’ouvrir et nettoyez la table qui vous servira d’atelier, pour éviter les poussières qui s’infiltreront forcément plus tard si vous ne le faites pas…
                    +1 : pour ouvrir, utilisez plutôt un couteau à enduire pour la première partie (le cadre). Vous n’abîmerez ainsi pas du tout l’écran. Soyez patients, ne forcez pas ! ça viendra doucement, mais ça viendra. Il m’a fallu à peine 10 minutes, sans détériorer l’écran, sans le griffer… Il est encore nickel !
                    +2 : attention à ne pas déconnecter les fils reliant le cadre à la carte. Inutile pour simplement nettoyer l’écran.
                    +3 : pour séparer les deux éléments de la dalle entre lesquels les bêtes se sont infiltrées, les doigts suffisent, pas besoin d’outils qui viendraient les endommager. La dalle blanche reste à l’horizontale, l’écran noir sera tenu à la verticale.
                    +4 : utiliser un chiffon doux ne peluchant pas pour enlever les bêtes (faites-vous aider de quelqu’un qui les enlèvera pendant que vous tenez l’écran extérieur en position verticale).
                    +5 : repositionnez la colle d’étanchéité qui aurait pu se déplacer, avant de repositionner les deux écrans.
                    +6 : commencer par refermer par le bas de l’écran (sinon les éléments de réglage situés au bas de l’écran – luminosité, contraste,…- ne se replaceront pas correctement).
                    +7 : Une fois l’écran refermé, j’ai appliqué un peu de « barrage aux insectes », avec un chiffon à l’arrière de mon écran en insistant surtout sur les bouches d’aération par lesquelles les maudites bestioles ont du s’infiltrer. En espérant ne pas avoir à ouvrir !

                    +

                    Bon courage à vous !

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Michel Jousserandot + · 20 janvier 2017 à 20 h 41 min +

                    +

                    Merci pour les conseils au démontage.
                    +J’avais un problème un peu différent :l’écran ne s’allumait plus du tout. Avec un copain beaucoup plus malin que moi, on a détecté 2 fusibles dont l’un était fichu. On l’a remplacé par un petit fil de cuivre. Et tout a remarché comme avant.
                    +Il faut surtout faire attention quand on teste la partie haute tension
                    +Michel.

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Crec + · 14 juillet 2017 à 10 h 20 min +

                    +

                    Bonjour. Très bons conseils avertis. Merci beaucoup.
                    +Peut-on avoir les mêmes conseils pour un écran BX2250.
                    +Merci par avance.
                    +Crec

                    + +
                    +
                    +
                      +
                      + +
                      +
                      +
                      +
                      +

                      + HugoPoi + · 6 août 2017 à 14 h 03 min +

                      +

                      J’ai pas de BX2250 donc dans le détails non mais si c’est les même symptômes ça doit la même procédure.

                      + +
                      +
                      + +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Ferronnier + · 10 août 2017 à 17 h 42 min +

                    +

                    Un grand merci !
                    +J’ai changé tous les condensateurs de la partie alimentation de la carte, en déportant certains qui n’avaient pas le même format qu’à l’origine, et ça tourne nickel !

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Nours + · 1 décembre 2017 à 15 h 17 min +

                    +

                    Ca fait des années que j’ai cet article enregistré dans un coin, en nourrissant l’espoir d’avoir un jour le courage de réparer ce foutu écran… Après plus de cinq ans c’est chose faite \o/
                    +Un giga, hypra, immense merci pour ce tutoriel tellement bien expliqué et facile d’accès (je n’avais pas touché à un fer à souder depuis… Oh boy 15 ans déjà).
                    +Après une longue pause, l’écran reprend du service… Jusqu’à la prochaine panne /o/

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + Alex + · 11 août 2018 à 13 h 28 min +

                    +

                    Quelqu’un sait qui pourrait me le faire svp j ai le même problème mais aucun matériel

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + David + · 5 février 2019 à 21 h 06 min +

                    +

                    Merci Hugo pour ce tuto qui m’a déjà servi en 2013 et qui va me resservir aujourd’hui car mon 2ème 2232bw commence à avoir les mêmes symptômes.

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + yvan + · 23 novembre 2019 à 17 h 14 min +

                    +

                    Bonjour
                    +j’ai tenté de changer le condensateur qui avait l’air naze mais ça n’a pas marché … toujours le bouton bleu allumé, l’écran est reconnu par Windows 10 même si l’écran est éteint
                    +grâce au service manuel de l’écran fourni plus haut, j’ai vérifié les tensions jusque sur la carte de la dalle et elles sont correctes, ainsi que sur la carte elle-même, tout est ok, donc je pense que ce n’est plus un problème de condensateur
                    +pour les fusibles, ils ressemblent plutôt à des composants qu’à de simple fusibles, mais comme j’ai les bonnes tension, je ne pense pas que ça vienne de là
                    +j’ai bien peur que ce soit la dalle qui soit naze ? quelqu’un a t il des idées supplémentaires avant que je le jette avec grand regret (c’est un 2032bw, mais c’est la même chose, même si ma carte électronique est un peu différente car plus récente
                    +merci d’avance pour vos conseils

                    + +
                    +
                    + +
                    + +
                    +
                    +
                    +
                    +

                    + yvan + · 24 novembre 2019 à 17 h 26 min +

                    +

                    finalement j’ai trouvé, c’est un petit fusible vert qui ressemble à une résistance mais tout vert avec écrit 4A LF qui assure l’alimentation de la dalle.
                    +En le shuntant, mon écran a retrouvé l’image.
                    +après enquête il s’agit d’un fusible pico de 4ampères de chez little fuse, pas du tout évident à trouver
                    +Résolu !

                    + +
                    +
                    + +
                    +
                    +

                    + Reflow Dell 1546 | HugoPoi + · 22 août 2016 à 16 h 09 min +

                    +

                    […] « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable de marque Dell un 1546 pour être précis. Encore […]

                    + +
                    +
                    + +
                    +
                    +

                    + Reflow Dell Inspiron 1546 – HugoPoi + · 23 juin 2017 à 23 h 18 min +

                    +

                    […] d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un […]

                    + +
                    +
                    + +
                    +
                    +
                    +

                    Répondre à Alex Annuler la réponse

                    Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                    +
                    +
                    +

                    + +

                    +
                    +
                    +
                    +
                    +
                    +
                    + +
                    +
                    +
                    +
                    +
                    +
                    + + +
                    + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/6dd8cee9e4335a2e18c09561edec8a6ac07cab50.00000592.js b/www/.content.EZtzwPjb/html/6dd8cee9e4335a2e18c09561edec8a6ac07cab50.00000592.js new file mode 100644 index 0000000..0e809c9 --- /dev/null +++ b/www/.content.EZtzwPjb/html/6dd8cee9e4335a2e18c09561edec8a6ac07cab50.00000592.js @@ -0,0 +1,356 @@ +(function($) { + + if (typeof _wpcf7 == 'undefined' || _wpcf7 === null) + _wpcf7 = {}; + + _wpcf7 = $.extend({ cached: 0 }, _wpcf7); + + $(function() { + _wpcf7.supportHtml5 = $.wpcf7SupportHtml5(); + $('div.wpcf7 > form').wpcf7InitForm(); + }); + + $.fn.wpcf7InitForm = function() { + this.ajaxForm({ + beforeSubmit: function(arr, $form, options) { + $form.wpcf7ClearResponseOutput(); + $form.find('[aria-invalid]').attr('aria-invalid', 'false'); + $form.find('img.ajax-loader').css({ visibility: 'visible' }); + return true; + }, + beforeSerialize: function($form, options) { + $form.find('[placeholder].placeheld').each(function(i, n) { + $(n).val(''); + }); + return true; + }, + data: { '_wpcf7_is_ajax_call': 1 }, + dataType: 'json', + success: $.wpcf7AjaxSuccess, + error: function(xhr, status, error, $form) { + var e = $('
                    ').text(error.message); + $form.after(e); + } + }); + + if (_wpcf7.cached) + this.wpcf7OnloadRefill(); + + this.wpcf7ToggleSubmit(); + + this.find('.wpcf7-submit').wpcf7AjaxLoader(); + + this.find('.wpcf7-acceptance').click(function() { + $(this).closest('form').wpcf7ToggleSubmit(); + }); + + this.find('.wpcf7-exclusive-checkbox').wpcf7ExclusiveCheckbox(); + + this.find('.wpcf7-list-item.has-free-text').wpcf7ToggleCheckboxFreetext(); + + this.find('[placeholder]').wpcf7Placeholder(); + + if (_wpcf7.jqueryUi && ! _wpcf7.supportHtml5.date) { + this.find('input.wpcf7-date[type="date"]').each(function() { + $(this).datepicker({ + dateFormat: 'yy-mm-dd', + minDate: new Date($(this).attr('min')), + maxDate: new Date($(this).attr('max')) + }); + }); + } + + if (_wpcf7.jqueryUi && ! _wpcf7.supportHtml5.number) { + this.find('input.wpcf7-number[type="number"]').each(function() { + $(this).spinner({ + min: $(this).attr('min'), + max: $(this).attr('max'), + step: $(this).attr('step') + }); + }); + } + }; + + $.wpcf7AjaxSuccess = function(data, status, xhr, $form) { + if (! $.isPlainObject(data) || $.isEmptyObject(data)) + return; + + var $responseOutput = $form.find('div.wpcf7-response-output'); + + $form.wpcf7ClearResponseOutput(); + + $form.find('.wpcf7-form-control').removeClass('wpcf7-not-valid'); + $form.removeClass('invalid spam sent failed'); + + if (data.captcha) + $form.wpcf7RefillCaptcha(data.captcha); + + if (data.quiz) + $form.wpcf7RefillQuiz(data.quiz); + + if (data.invalids) { + $.each(data.invalids, function(i, n) { + $form.find(n.into).wpcf7NotValidTip(n.message); + $form.find(n.into).find('.wpcf7-form-control').addClass('wpcf7-not-valid'); + $form.find(n.into).find('[aria-invalid]').attr('aria-invalid', 'true'); + }); + + $responseOutput.addClass('wpcf7-validation-errors'); + $form.addClass('invalid'); + + $(data.into).trigger('invalid.wpcf7'); + + } else if (1 == data.spam) { + $responseOutput.addClass('wpcf7-spam-blocked'); + $form.addClass('spam'); + + $(data.into).trigger('spam.wpcf7'); + + } else if (1 == data.mailSent) { + $responseOutput.addClass('wpcf7-mail-sent-ok'); + $form.addClass('sent'); + + if (data.onSentOk) + $.each(data.onSentOk, function(i, n) { eval(n) }); + + $(data.into).trigger('mailsent.wpcf7'); + + } else { + $responseOutput.addClass('wpcf7-mail-sent-ng'); + $form.addClass('failed'); + + $(data.into).trigger('mailfailed.wpcf7'); + } + + if (data.onSubmit) + $.each(data.onSubmit, function(i, n) { eval(n) }); + + $(data.into).trigger('submit.wpcf7'); + + if (1 == data.mailSent) + $form.resetForm(); + + $form.find('[placeholder].placeheld').each(function(i, n) { + $(n).val($(n).attr('placeholder')); + }); + + $responseOutput.append(data.message).slideDown('fast'); + $responseOutput.attr('role', 'alert'); + + $.wpcf7UpdateScreenReaderResponse($form, data); + } + + $.fn.wpcf7ExclusiveCheckbox = function() { + return this.find('input:checkbox').click(function() { + $(this).closest('.wpcf7-checkbox').find('input:checkbox').not(this).removeAttr('checked'); + }); + }; + + $.fn.wpcf7Placeholder = function() { + if (_wpcf7.supportHtml5.placeholder) + return this; + + return this.each(function() { + $(this).val($(this).attr('placeholder')); + $(this).addClass('placeheld'); + + $(this).focus(function() { + if ($(this).hasClass('placeheld')) + $(this).val('').removeClass('placeheld'); + }); + + $(this).blur(function() { + if ('' == $(this).val()) { + $(this).val($(this).attr('placeholder')); + $(this).addClass('placeheld'); + } + }); + }); + }; + + $.fn.wpcf7AjaxLoader = function() { + return this.each(function() { + var loader = $('') + .attr({ src: _wpcf7.loaderUrl, alt: _wpcf7.sending }) + .css('visibility', 'hidden'); + + $(this).after(loader); + }); + }; + + $.fn.wpcf7ToggleSubmit = function() { + return this.each(function() { + var form = $(this); + if (this.tagName.toLowerCase() != 'form') + form = $(this).find('form').first(); + + if (form.hasClass('wpcf7-acceptance-as-validation')) + return; + + var submit = form.find('input:submit'); + if (! submit.length) return; + + var acceptances = form.find('input:checkbox.wpcf7-acceptance'); + if (! acceptances.length) return; + + submit.removeAttr('disabled'); + acceptances.each(function(i, n) { + n = $(n); + if (n.hasClass('wpcf7-invert') && n.is(':checked') + || ! n.hasClass('wpcf7-invert') && ! n.is(':checked')) + submit.attr('disabled', 'disabled'); + }); + }); + }; + + $.fn.wpcf7ToggleCheckboxFreetext = function() { + return this.each(function() { + var $wrap = $(this).closest('.wpcf7-form-control'); + + if ($(this).find(':checkbox, :radio').is(':checked')) { + $(this).find(':input.wpcf7-free-text').prop('disabled', false); + } else { + $(this).find(':input.wpcf7-free-text').prop('disabled', true); + } + + $wrap.find(':checkbox, :radio').change(function() { + var $cb = $('.has-free-text', $wrap).find(':checkbox, :radio'); + var $freetext = $(':input.wpcf7-free-text', $wrap); + + if ($cb.is(':checked')) { + $freetext.prop('disabled', false).focus(); + } else { + $freetext.prop('disabled', true); + } + }); + }); + }; + + $.fn.wpcf7NotValidTip = function(message) { + return this.each(function() { + var $into = $(this); + + $into.find('span.wpcf7-not-valid-tip').remove(); + $into.append('' + message + ''); + + if ($into.is('.use-floating-validation-tip *')) { + $('.wpcf7-not-valid-tip', $into).mouseover(function() { + $(this).wpcf7FadeOut(); + }); + + $(':input', $into).focus(function() { + $('.wpcf7-not-valid-tip', $into).not(':hidden').wpcf7FadeOut(); + }); + } + }); + }; + + $.fn.wpcf7FadeOut = function() { + return this.each(function() { + $(this).animate({ + opacity: 0 + }, 'fast', function() { + $(this).css({'z-index': -100}); + }); + }); + }; + + $.fn.wpcf7OnloadRefill = function() { + return this.each(function() { + var url = $(this).attr('action'); + if (0 < url.indexOf('#')) + url = url.substr(0, url.indexOf('#')); + + var id = $(this).find('input[name="_wpcf7"]').val(); + var unitTag = $(this).find('input[name="_wpcf7_unit_tag"]').val(); + + $.getJSON(url, + { _wpcf7_is_ajax_call: 1, _wpcf7: id, _wpcf7_request_ver: $.now() }, + function(data) { + if (data && data.captcha) + $('#' + unitTag).wpcf7RefillCaptcha(data.captcha); + + if (data && data.quiz) + $('#' + unitTag).wpcf7RefillQuiz(data.quiz); + } + ); + }); + }; + + $.fn.wpcf7RefillCaptcha = function(captcha) { + return this.each(function() { + var form = $(this); + + $.each(captcha, function(i, n) { + form.find(':input[name="' + i + '"]').clearFields(); + form.find('img.wpcf7-captcha-' + i).attr('src', n); + var match = /([0-9]+)\.(png|gif|jpeg)$/.exec(n); + form.find('input:hidden[name="_wpcf7_captcha_challenge_' + i + '"]').attr('value', match[1]); + }); + }); + }; + + $.fn.wpcf7RefillQuiz = function(quiz) { + return this.each(function() { + var form = $(this); + + $.each(quiz, function(i, n) { + form.find(':input[name="' + i + '"]').clearFields(); + form.find(':input[name="' + i + '"]').siblings('span.wpcf7-quiz-label').text(n[0]); + form.find('input:hidden[name="_wpcf7_quiz_answer_' + i + '"]').attr('value', n[1]); + }); + }); + }; + + $.fn.wpcf7ClearResponseOutput = function() { + return this.each(function() { + $(this).find('div.wpcf7-response-output').hide().empty().removeClass('wpcf7-mail-sent-ok wpcf7-mail-sent-ng wpcf7-validation-errors wpcf7-spam-blocked').removeAttr('role'); + $(this).find('span.wpcf7-not-valid-tip').remove(); + $(this).find('img.ajax-loader').css({ visibility: 'hidden' }); + }); + }; + + $.wpcf7UpdateScreenReaderResponse = function($form, data) { + $('.wpcf7 .screen-reader-response').html('').attr('role', ''); + + if (data.message) { + var $response = $form.siblings('.screen-reader-response').first(); + $response.append(data.message); + + if (data.invalids) { + var $invalids = $('
                      '); + + $.each(data.invalids, function(i, n) { + if (n.idref) { + var $li = $('
                    • ').append($('').attr('href', '#' + n.idref).append(n.message)); + } else { + var $li = $('
                    • ').append(n.message); + } + + $invalids.append($li); + }); + + $response.append($invalids); + } + + $response.attr('role', 'alert').focus(); + } + } + + $.wpcf7SupportHtml5 = function() { + var features = {}; + var input = document.createElement('input'); + + features.placeholder = 'placeholder' in input; + + var inputTypes = ['email', 'url', 'tel', 'number', 'range', 'date']; + + $.each(inputTypes, function(index, value) { + input.setAttribute('type', value); + features[value] = input.type !== 'text'; + }); + + return features; + }; + +})(jQuery); \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/6e4d4c494d26932505e85c5efc3b0c5f123095a2.00001280.xml b/www/.content.EZtzwPjb/html/6e4d4c494d26932505e85c5efc3b0c5f123095a2.00001280.xml new file mode 100644 index 0000000..836841a --- /dev/null +++ b/www/.content.EZtzwPjb/html/6e4d4c494d26932505e85c5efc3b0c5f123095a2.00001280.xml @@ -0,0 +1,7 @@ + +1.0HugoPoihttp://blog.hugopoi.netHugoPoihttp://blog.hugopoi.net/author/hugopoi/Freebox Révolution #oupasrich600338<blockquote class="wp-embedded-content"><a href="/2011/02/09/freebox-revolution-oupas/">Freebox Révolution #oupas</a></blockquote> +<script type='text/javascript'> +<!--//--><![CDATA[//><!-- + !function(a,b){"use strict";function c(){if(!e){e=!0;var a,c,d,f,g=-1!==navigator.appVersion.indexOf("MSIE 10"),h=!!navigator.userAgent.match(/Trident.*rv:11\./),i=b.querySelectorAll("iframe.wp-embedded-content");for(c=0;c<i.length;c++)if(d=i[c],!d.getAttribute("data-secret")){if(f=Math.random().toString(36).substr(2,10),d.src+="#?secret="+f,d.setAttribute("data-secret",f),g||h)a=d.cloneNode(!0),a.removeAttribute("security"),d.parentNode.replaceChild(a,d)}else;}}var d=!1,e=!1;if(b.querySelector)if(a.addEventListener)d=!0;if(a.wp=a.wp||{},!a.wp.receiveEmbedMessage)if(a.wp.receiveEmbedMessage=function(c){var d=c.data;if(d.secret||d.message||d.value)if(!/[^a-zA-Z0-9]/.test(d.secret)){var e,f,g,h,i,j=b.querySelectorAll('iframe[data-secret="'+d.secret+'"]'),k=b.querySelectorAll('blockquote[data-secret="'+d.secret+'"]');for(e=0;e<k.length;e++)k[e].style.display="none";for(e=0;e<j.length;e++)if(f=j[e],c.source===f.contentWindow){if(f.removeAttribute("style"),"height"===d.message){if(g=parseInt(d.value,10),g>1e3)g=1e3;else if(~~g<200)g=200;f.height=g}if("link"===d.message)if(h=b.createElement("a"),i=b.createElement("a"),h.href=f.getAttribute("src"),i.href=d.value,i.host===h.host)if(b.activeElement===f)a.top.location.href=d.value}else;}},d)a.addEventListener("message",a.wp.receiveEmbedMessage,!1),b.addEventListener("DOMContentLoaded",c,!1),a.addEventListener("load",c,!1)}(window,document); +//--><!]]> +</script><iframe sandbox="allow-scripts" security="restricted" src="/2011/02/09/freebox-revolution-oupas/embed/" width="600" height="338" title="« Freebox Révolution #oupas » — HugoPoi" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" class="wp-embedded-content"></iframe> diff --git a/www/.content.EZtzwPjb/html/6ecf07050451dee3665c91df77f397c279433848.00000045.xml b/www/.content.EZtzwPjb/html/6ecf07050451dee3665c91df77f397c279433848.00000045.xml new file mode 100644 index 0000000..1d6cbea --- /dev/null +++ b/www/.content.EZtzwPjb/html/6ecf07050451dee3665c91df77f397c279433848.00000045.xml @@ -0,0 +1,27 @@ + + + Commentaires sur : Test du Samsung Galaxy S + + http://blog.hugopoi.net/2010/12/27/test-du-samsung-galaxy-s/ + Internet, Hardware et Bidouille + Mon, 22 Aug 2016 14:09:10 +0000 + hourly + 1 + https://wordpress.org/?v=4.6.1 + + Par : Tweets that mention Test du #Samsung #Galaxy S #GSPowa -- Topsy.com + http://blog.hugopoi.net/2010/12/27/test-du-samsung-galaxy-s/#comment-33 + + Mon, 27 Dec 2010 20:18:48 +0000 + http://blog.hugopoi.net/?p=234#comment-33 + + […] This post was mentioned on Twitter by Da Costa. Da Costa said: RT @HugoPoi #Test du #Samsung #Galaxy S http://bit.ly/eNER4X #GSPowa Ouais […]

                      +]]>
                      +
                      +
                      +
                      diff --git a/www/.content.EZtzwPjb/html/6ee01e9e9d54371a1ffb9b06093cd0f822f3e4ae.00000481.html b/www/.content.EZtzwPjb/html/6ee01e9e9d54371a1ffb9b06093cd0f822f3e4ae.00000481.html new file mode 100644 index 0000000..153453e --- /dev/null +++ b/www/.content.EZtzwPjb/html/6ee01e9e9d54371a1ffb9b06093cd0f822f3e4ae.00000481.html @@ -0,0 +1,372 @@ + + + + + + + OSX – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                      +
                      +
                      +
                      + +
                      +
                      +
                      +
                      +
                      +

                      Trolling

                      Apple New MacBook Air

                      +

                      J’avais envie de me défouler un peu donc je vais troller sur la sortie du nouveau MacBook Air. Alors oui il est beau, il est léger, la finition est nikel Chrome. Mais c’est du Apple donc c’est cher le prix d’entrée est de 999€ ouch ! pour la version 11 pouces … (suite…)

                      +
                      Par HugoPoi, il y a
                      +
                      + +
                      +
                      +
                      +
                      + +
                      +
                      + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/6ef6624b6b76ad1bb351e3334c9f4d34a3ebe9ad.00001222.js b/www/.content.EZtzwPjb/html/6ef6624b6b76ad1bb351e3334c9f4d34a3ebe9ad.00001222.js new file mode 100644 index 0000000..85c9d01 --- /dev/null +++ b/www/.content.EZtzwPjb/html/6ef6624b6b76ad1bb351e3334c9f4d34a3ebe9ad.00001222.js @@ -0,0 +1,3 @@ +/*! jQuery v3.6.0 | (c) OpenJS Foundation and other contributors | jquery.org/license */ +!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],r=Object.getPrototypeOf,s=t.slice,g=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},x=function(e){return null!=e&&e===e.window},E=C.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.6.0",S=function(e,t){return new S.fn.init(e,t)};function p(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace($,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e&&e.namespaceURI,n=e&&(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||v.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||v.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},j=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&y(p,e)?-1:t==C||t.ownerDocument==p&&y(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||D,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,D=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),y.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="",y.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="",y.option=!!ce.lastChild;var ge={thead:[1,"","
                      "],col:[2,"","
                      "],tr:[2,"","
                      "],td:[3,"","
                      "],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n",""]);var me=/<|&#?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function je(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function De(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function qe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Le(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var _t,zt=[],Ut=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=zt.pop()||S.expando+"_"+wt.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Ut.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Ut.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Ut,"$1"+r):!1!==e.jsonp&&(e.url+=(Tt.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,zt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((_t=E.implementation.createHTMLDocument("").body).innerHTML="
                      ",2===_t.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=Fe(y.pixelPosition,function(e,t){if(t)return t=We(e,n),Pe.test(t)?S(e).position()[n]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 0 +1.0HugoPoihttp://blog.hugopoi.netHugoPoihttp://blog.hugopoi.net/author/hugopoi/Hello Worldrich600338<blockquote class="wp-embedded-content"><a href="/2010/10/16/hello-world/">Hello World</a></blockquote> +<script type='text/javascript'> +<!--//--><![CDATA[//><!-- + !function(a,b){"use strict";function c(){if(!e){e=!0;var a,c,d,f,g=-1!==navigator.appVersion.indexOf("MSIE 10"),h=!!navigator.userAgent.match(/Trident.*rv:11\./),i=b.querySelectorAll("iframe.wp-embedded-content");for(c=0;c<i.length;c++)if(d=i[c],!d.getAttribute("data-secret")){if(f=Math.random().toString(36).substr(2,10),d.src+="#?secret="+f,d.setAttribute("data-secret",f),g||h)a=d.cloneNode(!0),a.removeAttribute("security"),d.parentNode.replaceChild(a,d)}else;}}var d=!1,e=!1;if(b.querySelector)if(a.addEventListener)d=!0;if(a.wp=a.wp||{},!a.wp.receiveEmbedMessage)if(a.wp.receiveEmbedMessage=function(c){var d=c.data;if(d.secret||d.message||d.value)if(!/[^a-zA-Z0-9]/.test(d.secret)){var e,f,g,h,i,j=b.querySelectorAll('iframe[data-secret="'+d.secret+'"]'),k=b.querySelectorAll('blockquote[data-secret="'+d.secret+'"]');for(e=0;e<k.length;e++)k[e].style.display="none";for(e=0;e<j.length;e++)if(f=j[e],c.source===f.contentWindow){if(f.removeAttribute("style"),"height"===d.message){if(g=parseInt(d.value,10),g>1e3)g=1e3;else if(~~g<200)g=200;f.height=g}if("link"===d.message)if(h=b.createElement("a"),i=b.createElement("a"),h.href=f.getAttribute("src"),i.href=d.value,i.host===h.host)if(b.activeElement===f)a.top.location.href=d.value}else;}},d)a.addEventListener("message",a.wp.receiveEmbedMessage,!1),b.addEventListener("DOMContentLoaded",c,!1),a.addEventListener("load",c,!1)}(window,document); +//--><!]]> +</script><iframe sandbox="allow-scripts" security="restricted" src="/2010/10/16/hello-world/embed/" width="600" height="338" title="« Hello World » — HugoPoi" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" class="wp-embedded-content"></iframe> diff --git a/www/.content.EZtzwPjb/html/6f885afecc677bff01fd94930aa059058120a248.00000463.xml b/www/.content.EZtzwPjb/html/6f885afecc677bff01fd94930aa059058120a248.00000463.xml new file mode 100644 index 0000000..fcc4bb8 --- /dev/null +++ b/www/.content.EZtzwPjb/html/6f885afecc677bff01fd94930aa059058120a248.00000463.xml @@ -0,0 +1,38 @@ + + + niresh – HugoPoi + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Mon, 22 Aug 2016 14:10:26 +0000 + fr-FR + hourly + 1 + https://wordpress.org/?v=4.6.1 + + Installer Mac OS X Mavericks avec VirtualBox + http://blog.hugopoi.net/2013/12/27/installer-mac-os-x-mavericks-avec-virtualbox/ + http://blog.hugopoi.net/2013/12/27/installer-mac-os-x-mavericks-avec-virtualbox/#comments + Fri, 27 Dec 2013 21:40:28 +0000 + + + + + + + + + http://blog.hugopoi.net/?p=802 + Lire la suite »

                      ]]>
                      + http://blog.hugopoi.net/2013/12/27/installer-mac-os-x-mavericks-avec-virtualbox/feed/ + 6 +
                      +
                      +
                      diff --git a/www/.content.EZtzwPjb/html/6f8b9cecd4a09993fec0abfb648612fdf122881f.00000799.css b/www/.content.EZtzwPjb/html/6f8b9cecd4a09993fec0abfb648612fdf122881f.00000799.css new file mode 100644 index 0000000..02472f7 --- /dev/null +++ b/www/.content.EZtzwPjb/html/6f8b9cecd4a09993fec0abfb648612fdf122881f.00000799.css @@ -0,0 +1 @@ +.authors-on-blog .footer a,.btn.btn-border,.card-background:after,.form-group.label-floating label.control-label,.form-group.label-placeholder label.control-label,.form-group.label-static label.control-label,.hestia-top-bar .widget.widget_product_search form:not(.form-group),.hestia-top-bar .widget.widget_search form:not(.form-group),.pagination a,.pagination span,a{-webkit-transition:all .3s ease;-moz-transition:all .3s ease;-ms-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease}.btn,button,input[type=button],input[type=submit]{-webkit-transition:background-color .2s cubic-bezier(.4,0,.2,1),-webkit-box-shadow .2s cubic-bezier(.4,0,1,1);transition:background-color .2s cubic-bezier(.4,0,.2,1),-webkit-box-shadow .2s cubic-bezier(.4,0,1,1);transition:box-shadow .2s cubic-bezier(.4,0,1,1),background-color .2s cubic-bezier(.4,0,.2,1);transition:box-shadow .2s cubic-bezier(.4,0,1,1),background-color .2s cubic-bezier(.4,0,.2,1),-webkit-box-shadow .2s cubic-bezier(.4,0,1,1)}.btn.active:disabled,.btn.active[disabled],.btn.btn-behance.btn-simple,.btn.btn-border,.btn.btn-border:focus,.btn.btn-border:hover,.btn.btn-default.btn-simple,.btn.btn-deviantart.btn-simple,.btn.btn-dribbble.btn-simple,.btn.btn-facebook.btn-simple,.btn.btn-github.btn-simple,.btn.btn-google.btn-simple,.btn.btn-instagram.btn-simple,.btn.btn-linkedin.btn-simple,.btn.btn-pinterest.btn-simple,.btn.btn-primary.btn-simple,.btn.btn-reddit.btn-simple,.btn.btn-simple,.btn.btn-snapchat.btn-simple,.btn.btn-tumblr.btn-simple,.btn.btn-twitter.btn-simple,.btn.btn-vimeo.btn-simple,.btn.btn-white.btn-simple,.btn.btn-youtube.btn-simple,.btn.disabled,.btn.disabled.active,.btn.disabled.focus,.btn.disabled:active,.btn.disabled:focus,.btn.disabled:hover,.btn.focus:disabled,.btn.focus[disabled],.btn:disabled,.btn:disabled:active,.btn:disabled:focus,.btn:disabled:hover,.btn[disabled],.btn[disabled]:active,.btn[disabled]:focus,.btn[disabled]:hover,.form-control,.form-group .form-control,.form-group.has-error .form-control,.form-group.has-info .form-control,.form-group.has-success .form-control,.form-group.has-warning .form-control,.form-group.is-focused .form-control,.form-group.is-focused select.form-control,.navbar .navbar-nav>li>a.btn.btn-behance.btn-simple,.navbar .navbar-nav>li>a.btn.btn-deviantart.btn-simple,.navbar .navbar-nav>li>a.btn.btn-dribbble.btn-simple,.navbar .navbar-nav>li>a.btn.btn-facebook.btn-simple,.navbar .navbar-nav>li>a.btn.btn-github.btn-simple,.navbar .navbar-nav>li>a.btn.btn-google.btn-simple,.navbar .navbar-nav>li>a.btn.btn-instagram.btn-simple,.navbar .navbar-nav>li>a.btn.btn-linkedin.btn-simple,.navbar .navbar-nav>li>a.btn.btn-pinterest.btn-simple,.navbar .navbar-nav>li>a.btn.btn-reddit.btn-simple,.navbar .navbar-nav>li>a.btn.btn-snapchat.btn-simple,.navbar .navbar-nav>li>a.btn.btn-tumblr.btn-simple,.navbar .navbar-nav>li>a.btn.btn-twitter.btn-simple,.navbar .navbar-nav>li>a.btn.btn-vimeo.btn-simple,.navbar .navbar-nav>li>a.btn.btn-youtube.btn-simple,.navbar button.navbar-toggle,.navbar button.navbar-toggle:hover,.woocommerce form .form-row input.input-text,.woocommerce form .form-row textarea,fieldset[disabled] .btn,fieldset[disabled] .btn.active,fieldset[disabled] .btn.focus,fieldset[disabled] .btn:active,fieldset[disabled] .btn:focus,fieldset[disabled] .btn:hover,select.form-control{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.form-control,.form-group .form-control,.woocommerce form .form-row input.input-text,.woocommerce form .form-row textarea{background-image:-webkit-gradient(linear,left top,left bottom,from(#9c27b0),to(#9c27b0)),-webkit-gradient(linear,left top,left bottom,from(#d2d2d2),to(#d2d2d2));background-image:-webkit-linear-gradient(#9c27b0,#9c27b0),-webkit-linear-gradient(#d2d2d2,#d2d2d2);background-image:linear-gradient(#9c27b0,#9c27b0),linear-gradient(#d2d2d2,#d2d2d2);float:none;border:0;border-radius:0;background-color:transparent;background-repeat:no-repeat;background-position:center bottom,center -webkit-calc(100% - 1px);background-position:center bottom,center calc(100% - 1px);background-size:0 2px,100% 1px;font-weight:400;-webkit-transition:background 0s ease-out;transition:background 0s ease-out}.form-group.is-focused .form-control{background-image:-webkit-gradient(linear,left top,left bottom,from(#9c27b0),to(#9c27b0)),-webkit-gradient(linear,left top,left bottom,from(#d2d2d2),to(#d2d2d2));background-image:-webkit-linear-gradient(#9c27b0,#9c27b0),-webkit-linear-gradient(#d2d2d2,#d2d2d2);background-image:linear-gradient(#9c27b0,#9c27b0),linear-gradient(#d2d2d2,#d2d2d2);outline:0;background-size:100% 2px,100% 1px;-webkit-transition-duration:.3s;transition-duration:.3s}.blog-sidebar .widget h5,.card-product .price,.card-product .price h4,.carousel .sub-title,.hestia-about p,.media .media-heading,.navbar .navbar-brand,.shop-sidebar .widget h5,.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta,blockquote,h4.author{font-size:18px}a:not(.btn){transition:.3s ease}a:not(.btn):not(.button):not(.added_to_cart):hover{opacity:.75}.media p,h3#ship-to-different-address{font-size:16px}.btn,.form-control,.woocommerce #reviews #comments label,body{font-size:14px}.footer .footer-menu a,.hestia-top-bar,.label,.media-footer a,.navbar,.navbar a{font-size:12px}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-weight:300;line-height:1.618}.blog-post .section-text p,ol,output,ul{line-height:1.618}h1,h2,h3,h4,h5,h6{font-weight:500;line-height:1.618}.card-product .price h4,h4.author,h5.description,h5.subscribe-description{font-weight:300}h6.category{font-weight:500}.card-title,.footer-big h4,.footer-big h5,.footer-brand,.hestia-title,.info-title,.media .media-heading,.title,.woocommerce ul.products[class*=columns-] li.product-category h2{font-weight:700}.hestia-title{word-break:break-word}.btn,button,input[type=button],input[type=submit]{font-size:12px;font-weight:400}.btn:not(.btn-just-icon):not(.btn-fab) i{font-size:18px}.btn.btn-just-icon{font-size:20px;line-height:20px}.btn.btn-just-icon.btn-lg{font-size:22px}.btn i{font-size:17px}legend{font-size:21px}output{font-size:14px}button,input,select,textarea{font-size:inherit;line-height:inherit}.form-control{font-size:14px;line-height:1.42857}.checkbox label,.form-control:-ms-input-placeholder,.form-control::-moz-placeholder,.form-control::-webkit-input-placeholder,.form-group .checkbox label,.form-group .form-control:-ms-input-placeholder,.form-group .form-control::-moz-placeholder,.form-group .form-control::-webkit-input-placeholder,.form-group .radio label,.form-group label,.radio label,label{font-size:14px;font-weight:400;line-height:1.42857}.form-control:-ms-input-placeholder,.form-control::-moz-placeholder,.form-control::-webkit-input-placeholder,.form-group .form-control:-ms-input-placeholder,.form-group .form-control::-moz-placeholder,.form-group .form-control::-webkit-input-placeholder{font-weight:400}.form-group label.control-label{font-size:11px;font-weight:400;line-height:1.07143}.form-group.label-floating label.control-label,.form-group.label-placeholder label.control-label{font-size:14px;line-height:1.42857}.form-group.label-floating.is-focused label.control-label,.form-group.label-floating:not(.is-empty) label.control-label,.form-group.label-static label.control-label{font-size:11px;line-height:1.07143}label.control-label{font-size:11px;font-weight:400;line-height:1.07143}label.subscribe-label{font-weight:300}table>thead>tr>th{font-size:17px;font-weight:300}.help-block{font-size:11px}.hestia-info .icon>i,.info .icon>i{font-size:61.6px}.info-horizontal .icon>i{font-size:36.4px}.media .media-heading{font-size:18.2px}.media p{font-size:16px}.wp-caption-text{font-size:14px;font-weight:700}.blog-post .comment-reply-link{font-size:12px;font-weight:400}.blog-post .section-blog-info .card-profile .description{font-size:14px}.carousel .carousel-control i{font-size:50px}.card .footer .stats{line-height:30px}.card .footer .stats i{font-size:18px}.card .category i{line-height:0}.card-product .footer h4{line-height:1.2}.card-product .category,.card-title{line-height:1.4}.card-pricing .card-title{font-size:60px;line-height:35px}.card-pricing .card-title small{font-size:18px}.card-pricing .card-title small:first-child{font-size:26px}.navbar .navbar-brand{line-height:30px}.navbar .navbar-nav>li>a{font-weight:400}.navbar .navbar-nav>li>a i{font-size:20px}.navbar .dropdown-menu li>a{font-size:13px}.navbar .dropdown-menu li>a>i{font-size:20px}.navbar .dropdown-menu li>a i{font-size:20px}.navbar .hestia-mm-heading>span{font-size:14px;font-weight:600}.hestia-mm-description{font-size:12px;font-weight:400}.hestia-top-bar{line-height:40px}.hestia-top-bar .widget,.hestia-top-bar .widget .textwidget,.hestia-top-bar .widget h5{line-height:inherit}.hestia-top-bar .widget.widget_product_search .label-floating,.hestia-top-bar .widget.widget_search .label-floating{font-size:inherit}.hestia-top-bar .widget.widget_product_search .label-floating.is-empty,.hestia-top-bar .widget.widget_search .label-floating.is-empty{font-size:inherit;font-weight:300}.hestia-top-bar .widget.widget_product_search .label-floating.is-focused .control-label,.hestia-top-bar .widget.widget_search .label-floating.is-focused .control-label{font-size:inherit;line-height:20px}.hestia-top-bar .widget.widget_product_search form.form-group input[type=search],.hestia-top-bar .widget.widget_search form.form-group input[type=search]{font-size:inherit;font-weight:300}.hestia-top-bar .widget.widget_product_search form.form-group:before,.hestia-top-bar .widget.widget_search form.form-group:before{font-size:18px}.hestia-top-bar ul{line-height:inherit}.hestia-top-bar ul li a{font-size:inherit;line-height:inherit}.hestia-top-bar ul li a:before{font-size:16px}.pagination a,.pagination span{font-size:12px;font-weight:400;line-height:30px}.footer .widget h5{line-height:1.4}.footer-big .footer-menu li a[href*="mailto:"],.footer-big .footer-menu li a[href*="tel:"]{font-size:0}.footer-big .footer-menu li a[href*="mailto:"]:before,.footer-big .footer-menu li a[href*="tel:"]:before{font-size:16px}.footer-big ul li a{font-weight:500}h5.description{line-height:1.5}.hestia-about{font-weight:300}.hestia-about h1,.hestia-about h2,.hestia-about h3,.hestia-about h4,.hestia-about h5{font-weight:700}.widget h5{font-weight:700}.search-form:after,.searchform:after,.woocommerce-product-search:after{font-size:18px}.header-widgets-wrapper .widget,.header-widgets-wrapper .widget .textwidget,.header-widgets-wrapper .widget h5{line-height:inherit}.header-widgets-wrapper ul{line-height:inherit}.header-widgets-wrapper ul li a{font-size:inherit;line-height:inherit}.header-widgets-wrapper ul li a:before{font-size:16px}aside .widget a{font-weight:500}.star-rating{line-height:1;font-size:12px}.woocommerce-cart .shop_table .actions .coupon .input-text{font-size:14px}.woocommerce-cart table.shop_table th{font-size:13px;font-weight:300}.woocommerce-cart table.shop_table .product-name a{font-size:16px;font-weight:500;line-height:30px}.woocommerce-cart table.shop_table td.actions button[type=submit],.woocommerce-cart table.shop_table td.actions input[type=submit]{font-size:14px}.woocommerce-cart p.units-info{line-height:1.5;font-size:14px}.woocommerce-cart .wc-gzd-additional-wrapper p{font-size:14px;font-weight:700}.woocommerce-checkout .form-row label{font-weight:300}.woocommerce-checkout .woocommerce-checkout-payment .form-row .woocommerce-form__label-for-checkbox,.woocommerce-checkout .woocommerce-checkout-payment li>label{font-weight:400}.woocommerce-checkout .woocommerce-shipping-fields h3 label{line-height:1}.woocommerce-checkout .woocommerce-shipping-fields h3 label span{font-weight:300}.woocommerce-checkout .col-md-12 #customer_details label{font-weight:500}.woocommerce-checkout .shop_table tr td p.units-info{font-size:12px}.woocommerce-checkout .shop_table .wc-gzd-additional-info{font-size:14px}#add_payment_method .wc-proceed-to-checkout a.checkout-button,.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button{font-size:12px;font-weight:400}.woocommerce-account .woocommerce-Button,.woocommerce-account .woocommerce-button,.woocommerce-account a.button{line-height:20px!important}.woocommerce-account .woocommerce-MyAccount-content h2{font-weight:600}.added_to_cart.wc-forward{font-weight:400;font-size:10px;line-height:30px}.variations tr .label{font-size:14px}.woocommerce-error,.woocommerce-info,.woocommerce-message{line-height:20px}.woocommerce-error li,.woocommerce-info li,.woocommerce-message li{line-height:1.5}.woocommerce-error>a.button,.woocommerce-info>a.button,.woocommerce-message>a.button{font-size:12px;font-weight:700}.woocommerce-info a{font-weight:700}.woocommerce-message a:not(.button){font-weight:800}@media (max-width:991px){.woocommerce-account input.woocommerce-Button.button{font-size:11px}.woocommerce-breadcrumb{line-height:33px}}@media (min-width:769px){.navbar.full-screen-menu .navbar-nav>li a{font-size:17px}}@media (max-width:768px){h4.author{font-size:16px}.woocommerce-cart table.shop_table dl.variation dd,.woocommerce-cart table.shop_table dl.variation dt{font-size:16px;line-height:30px}.woocommerce-cart table.shop_table dl.variation dd p{font-size:16px}.woocommerce-cart table.shop_table td.product-name{line-height:30px}.woocommerce-checkout td.product-name dl.variation dd,.woocommerce-checkout td.product-name dl.variation dt{font-size:16px}.woocommerce-checkout td.product-name dl.variation dd p{font-size:16px}.navbar .navbar-nav li>a i,.navbar .navbar-nav li>a>i{font-size:22px}.navbar .navbar-nav li .caret{font-size:20px}.navbar .navbar-nav li .dropdown i,.navbar .navbar-nav li .dropdown>i{font-size:20px}.navbar .navbar-nav .dropdown .dropdown-menu li a{line-height:20px}.navbar .navbar-nav .dropdown .dropdown-menu li a .caret{line-height:1}}@media (max-width:480px){.woocommerce .woocommerce-ordering select,.woocommerce-page .woocommerce-ordering select{font-size:12px}}body{direction:ltr;color:#3c4858;font-family:Roboto,Helvetica,Arial,sans-serif}h1,h2,h3,h4,h5,h6{font-family:Roboto,Helvetica,Arial,sans-serif}a{color:#9c27b0}a:focus,a:hover{color:#89229b;text-decoration:none}blockquote p{font-style:italic}h3{margin:20px 0 10px}h5{margin-bottom:15px}h6.category{text-transform:uppercase}.card-title,.footer-big h4,.footer-big h5,.footer-brand,.hestia-title,.info-title,.media .media-heading,.title,.woocommerce ul.products[class*=columns-] li.product-category h2{font-family:"Roboto Slab","Times New Roman",serif}.card-title,.card-title a,.card-title a:hover,.footer-big h4,.footer-big h4 a,.footer-big h4 a:hover,.footer-big h5,.footer-big h5 a,.footer-big h5 a:hover,.footer-brand,.footer-brand a,.footer-brand a:hover,.hestia-title,.hestia-title a,.hestia-title a:hover,.info-title,.info-title a,.info-title a:hover,.media .media-heading,.media .media-heading a,.media .media-heading a:hover,.title,.title a,.title a:hover,.woocommerce ul.products[class*=columns-] li.product-category h2,.woocommerce ul.products[class*=columns-] li.product-category h2 a,.woocommerce ul.products[class*=columns-] li.product-category h2 a:hover{color:#3c4858;text-decoration:none;word-wrap:break-word}.page-header .hestia-title{line-height:1.4}.title-in-content{line-height:1.3}.contactus h2.hestia-title,.contactus h2.title,.pricing h2.hestia-title,.pricing h2.title,h1.hestia-title,h1.title{margin-bottom:30px}h2.hestia-title,h2.title{margin-bottom:10px}.carousel h1.hestia-title,.carousel h2.title{font-family:Roboto,Helvetica,Arial,sans-serif}.carousel span.sub-title{display:block;margin:10px 0 0;font-family:"Roboto Slab","Times New Roman",serif}.carousel .buttons{margin-top:60px}.card-description,.description,.footer-big{color:#999}.card-description.entry-content{color:#3c4858}.subscribe-line-image .subscribe-description{color:#efefef}.text-warning{color:#ff9800}.text-primary{color:#9c27b0}.text-danger{color:#f44336}.text-success{color:#4caf50}.text-info{color:#00bcd4}.text-rose{color:#e91e63}.text-gray{color:#999}.has-black-color{color:#000}.has-white-color{color:#fff}.has-background.has-black-background-color{background-color:#000}.has-background.has-white-background-color{background-color:#fff}.page:not(.woocommerce-page) .blog-post .section-text h1,.page:not(.woocommerce-page) .blog-post .section-text h2,.page:not(.woocommerce-page) .blog-post .section-text h3,.page:not(.woocommerce-page) .blog-post .section-text h4,.page:not(.woocommerce-page) .blog-post .section-text h5,.page:not(.woocommerce-page) .blog-post .section-text h6,.page:not(.woocommerce-page) .blog-post .section-text p,.single-post .blog-post .section-text h1,.single-post .blog-post .section-text h2,.single-post .blog-post .section-text h3,.single-post .blog-post .section-text h4,.single-post .blog-post .section-text h5,.single-post .blog-post .section-text h6,.single-post .blog-post .section-text p{margin:0 0 15px}.page:not(.woocommerce-page) .blog-post .section-text h1.form-submit,.page:not(.woocommerce-page) .blog-post .section-text h2.form-submit,.page:not(.woocommerce-page) .blog-post .section-text h3.form-submit,.page:not(.woocommerce-page) .blog-post .section-text h4.form-submit,.page:not(.woocommerce-page) .blog-post .section-text h5.form-submit,.page:not(.woocommerce-page) .blog-post .section-text h6.form-submit,.page:not(.woocommerce-page) .blog-post .section-text p.form-submit,.single-post .blog-post .section-text h1.form-submit,.single-post .blog-post .section-text h2.form-submit,.single-post .blog-post .section-text h3.form-submit,.single-post .blog-post .section-text h4.form-submit,.single-post .blog-post .section-text h5.form-submit,.single-post .blog-post .section-text h6.form-submit,.single-post .blog-post .section-text p.form-submit{margin:0 0 10px}.tooltip{opacity:0;-webkit-transition:opacity,-webkit-transform .2s ease;transition:opacity,-webkit-transform .2s ease;transition:opacity,transform .2s ease;transition:opacity,transform .2s ease,-webkit-transform .2s ease;-webkit-transform:translate3d(0,5px,0);-ms-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}.tooltip.in{opacity:1;-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.tooltip.left .tooltip-arrow{border-left-color:#fff}.tooltip.right .tooltip-arrow{border-right-color:#fff}.tooltip.top .tooltip-arrow{border-top-color:#fff}.tooltip.bottom .tooltip-arrow{border-bottom-color:#fff}.tooltip-inner{min-width:130px;padding:10px 15px;border:none;border-radius:3px;color:#555;background:#fff;-webkit-box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12),0 5px 5px -3px rgba(0,0,0,.2);box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12),0 5px 5px -3px rgba(0,0,0,.2);font-size:12px;line-height:1.5;text-transform:none}.screen-reader-text{clip:rect(1px,1px,1px,1px);position:absolute!important;height:1px;width:1px;overflow:hidden}.screen-reader-text:focus{background-color:#f1f1f1;border-radius:3px;-webkit-box-shadow:0 0 2px 2px rgba(0,0,0,.6);box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;color:#21759b;display:block;font-size:14px;font-weight:700;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}.container{max-width:100%}@media (min-width:749px){.container{max-width:748px}}@media (min-width:768px){.container{max-width:750px}}@media (min-width:992px){.container{max-width:970px}}@media (min-width:1200px){.container{max-width:2000px}}body{direction:ltr;background-color:#e5e5e5;overflow-x:hidden}*{-webkit-tap-highlight-color:rgba(255,255,255,0);-webkit-tap-highlight-color:transparent}.wp-caption,button,embed,iframe,img,input,object,select,textarea,video{max-width:100%}img{height:auto}ol,ul{margin-bottom:30px}legend{border-bottom:0}.container{max-width:100%}.margin-left-auto{margin-left:auto}.margin-right-auto{margin-right:auto}.animation-transition-fast,.navbar,.panel .panel-heading i,.section-cards .card{-webkit-transition:all 150ms ease;transition:all 150ms ease}.thumbnail{padding:0;border:0 none;border-radius:0}.default-link,.default-link:hover,.hestia-title .default-link,.section-image .default-link,.section-image .description .default-link,.title .default-link{color:#fff}.description .default-link{color:#999}body.menu-open{overflow:hidden}@media (min-width:992px){.row.hestia-like-table{display:table;width:100%}.row.hestia-like-table>div{display:table-cell;vertical-align:middle;float:none}}@media (max-width:991px){.hestia-xs-text-center{text-align:center}}.hestia-blogs article:nth-of-type(6n) .category a,.related-posts div:nth-of-type(6n) .category a,.related.products ul li:nth-of-type(6n) .category a,.shop-item:nth-of-type(6n) .category a,.woocommerce .products li:nth-of-type(6n) .category a,.woocommerce.archive .blog-post .products li:nth-of-type(6n) .category a{color:#4caf50}.hestia-blogs article:nth-of-type(6n+1) .category a,.related-posts div:nth-of-type(6n+1) .category a,.related.products ul li:nth-of-type(6n+1) .category a,.shop-item:nth-of-type(6n+1) .category a,.woocommerce .products li:nth-of-type(6n+1) .category a,.woocommerce.archive .blog-post .products li:nth-of-type(6n+1) .category a{color:#89229b}.hestia-blogs article:nth-of-type(6n+2) .category a,.related-posts div:nth-of-type(6n+2) .category a,.related.products ul li:nth-of-type(6n+2) .category a,.shop-item:nth-of-type(6n+2) .category a,.woocommerce .products li:nth-of-type(6n+2) .category a,.woocommerce.archive .blog-post .products li:nth-of-type(6n+2) .category a{color:#00bcd4}.hestia-blogs article:nth-of-type(6n+3) .category a,.related-posts div:nth-of-type(6n+3) .category a,.related.products ul li:nth-of-type(6n+3) .category a,.shop-item:nth-of-type(6n+3) .category a,.woocommerce .products li:nth-of-type(6n+3) .category a,.woocommerce.archive .blog-post .products li:nth-of-type(6n+3) .category a{color:#f44336}.hestia-blogs article:nth-of-type(6n+4) .category a,.related-posts div:nth-of-type(6n+4) .category a,.related.products ul li:nth-of-type(6n+4) .category a,.shop-item:nth-of-type(6n+4) .category a,.woocommerce .products li:nth-of-type(6n+4) .category a,.woocommerce.archive .blog-post .products li:nth-of-type(6n+4) .category a{color:#ff9800}.hestia-blogs article:nth-of-type(6n+5) .category a,.related-posts div:nth-of-type(6n+5) .category a,.related.products ul li:nth-of-type(6n+5) .category a,.shop-item:nth-of-type(6n+5) .category a,.woocommerce .products li:nth-of-type(6n+5) .category a,.woocommerce.archive .blog-post .products li:nth-of-type(6n+5) .category a{color:#e91e63}.hestia-blogs article:nth-of-type(6n) .card-body .btn{background-color:#4caf50}.hestia-blogs article:nth-of-type(6n+1) .card-body .btn{background-color:#89229b}.hestia-blogs article:nth-of-type(6n+2) .card-body .btn{background-color:#00bcd4}.hestia-blogs article:nth-of-type(6n+3) .card-body .btn{background-color:#f44336}.hestia-blogs article:nth-of-type(6n+4) .card-body .btn{background-color:#ff9800}.hestia-blogs article:nth-of-type(6n+5) .card-body .btn{background-color:#e91e63}.wp-audio-shortcode{margin-bottom:20px}.wp-video-shortcode{margin-bottom:20px}input[type=checkbox]+label,input[type=radio]+label{font-weight:400}blockquote cite{font-size:.8em;color:#777;font-style:normal;font-weight:400}::-moz-focus-inner,:active,:focus{outline:0!important}.btn::-moz-focus-inner,button,input[type=button]::-moz-focus-inner,input[type=submit]::-moz-focus-inner{border:0}button,input,select,textarea{font-family:inherit;padding:7px}button:focus,input:focus,select:focus,textarea:focus{outline:0!important}.btn,button,input[type=button],input[type=submit]{position:relative;margin:10px 1px;padding:12px 30px;border:none;border-radius:3px;white-space:normal;letter-spacing:0;text-transform:uppercase}input[type=number]{padding:0}.btn,.btn.btn-default,button,input[type=button],input[type=submit]{-webkit-box-shadow:0 2px 2px 0 rgba(153,153,153,.14),0 3px 1px -2px rgba(153,153,153,.2),0 1px 5px 0 rgba(153,153,153,.12);-moz-box-shadow:0 2px 2px 0 rgba(153,153,153,.14),0 3px 1px -2px rgba(153,153,153,.2),0 1px 5px 0 rgba(153,153,153,.12);box-shadow:0 2px 2px 0 rgba(153,153,153,.14),0 3px 1px -2px rgba(153,153,153,.2),0 1px 5px 0 rgba(153,153,153,.12)}.btn.btn-default:active,.btn.btn-default:focus,.btn.btn-default:hover,.btn:active,.btn:focus,.btn:hover,button:active,button:focus,button:hover,input[type=button]:active,input[type=button]:focus,input[type=button]:hover,input[type=submit]:active,input[type=submit]:focus,input[type=submit]:hover{-webkit-box-shadow:0 14px 26px -12px rgba(153,153,153,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(153,153,153,.2);-moz-box-shadow:0 14px 26px -12px rgba(153,153,153,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(153,153,153,.2);box-shadow:0 14px 26px -12px rgba(153,153,153,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(153,153,153,.2)}.btn,.btn.active,.btn.active:focus,.btn.active:hover,.btn.btn-default,.btn.btn-default.active,.btn.btn-default.active:focus,.btn.btn-default.active:hover,.btn.btn-default:active,.btn.btn-default:active:focus,.btn.btn-default:active:hover,.btn.btn-default:focus,.btn.btn-default:hover,.btn:active,.btn:active:focus,.btn:active:hover,.btn:focus,.btn:hover,.open>.btn.btn-default.dropdown-toggle,.open>.btn.btn-default.dropdown-toggle:focus,.open>.btn.btn-default.dropdown-toggle:hover,.open>.btn.dropdown-toggle,.open>.btn.dropdown-toggle:focus,.open>.btn.dropdown-toggle:hover,button:focus,button:hover,input[type=button]:active,input[type=button]:focus,input[type=button]:hover,input[type=submit]:active,input[type=submit]:focus,input[type=submit]:hover{color:#fff;background-color:#999;outline:0}.btn:active>a,.btn:focus>a,.btn:hover>a,.btn>a:active,.btn>a:focus,.btn>a:hover{color:#fff}.btn.btn-default.btn-simple,.btn.btn-default.btn-simple:active,.btn.btn-default.btn-simple:focus,.btn.btn-default.btn-simple:hover,.btn.btn-simple,.btn.btn-simple:active,.btn.btn-simple:focus,.btn.btn-simple:hover{color:#999;background-color:transparent}.btn.btn-primary,button,input[type=button],input[type=submit]{-webkit-box-shadow:0 2px 2px 0 rgba(156,39,176,.14),0 3px 1px -2px rgba(156,39,176,.2),0 1px 5px 0 rgba(156,39,176,.12);-moz-box-shadow:0 2px 2px 0 rgba(156,39,176,.14),0 3px 1px -2px rgba(156,39,176,.2),0 1px 5px 0 rgba(156,39,176,.12);box-shadow:0 2px 2px 0 rgba(156,39,176,.14),0 3px 1px -2px rgba(156,39,176,.2),0 1px 5px 0 rgba(156,39,176,.12)}.btn.btn-primary:active,.btn.btn-primary:focus,.btn.btn-primary:hover,button:active,button:focus,button:hover,input[type=button]:active,input[type=button]:focus,input[type=button]:hover,input[type=submit]:active,input[type=submit]:focus,input[type=submit]:hover{-webkit-box-shadow:0 14px 26px -12px rgba(156,39,176,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(156,39,176,.2);-moz-box-shadow:0 14px 26px -12px rgba(156,39,176,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(156,39,176,.2);box-shadow:0 14px 26px -12px rgba(156,39,176,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(156,39,176,.2)}.btn.btn-primary.btn-simple,.btn.btn-primary.btn-simple:active,.btn.btn-primary.btn-simple:focus,.btn.btn-primary.btn-simple:hover{color:#9c27b0;background-color:transparent}.btn.btn-primary,.btn.btn-primary.active,.btn.btn-primary.active:focus,.btn.btn-primary.active:hover,.btn.btn-primary:active,.btn.btn-primary:active:focus,.btn.btn-primary:active:hover,.btn.btn-primary:focus,.btn.btn-primary:hover,.open>.btn.btn-primary.dropdown-toggle,.open>.btn.btn-primary.dropdown-toggle:focus,.open>.btn.btn-primary.dropdown-toggle:hover,button,button:hover,input#searchsubmit,input[type=button],input[type=button]:hover,input[type=submit],input[type=submit]:hover{color:#fff;background-color:#9c27b0}.btn.btn-white{box-shadow:0 2px 2px 0 rgba(153,153,153,.14),0 3px 1px -2px rgba(153,153,153,.2),0 1px 5px 0 rgba(153,153,153,.12);color:#999;background-color:#fff}.btn.btn-white.btn-white:focus,.btn.btn-white.btn-white:hover{color:#fff;background-color:rgba(153,153,153,.6)}.btn.btn-white.btn-simple{color:#fff;background:0 0}.btn.btn-round{border-radius:30px}.btn:not(.btn-just-icon):not(.btn-fab) i{position:relative}.btn.btn-just-icon{padding:12px}.btn.btn-just-icon:hover{box-shadow:none}.btn.btn-just-icon i{width:20px}.btn.btn-just-icon.btn-lg{padding:13px 18px}.btn.btn-border{background:0 0;border:1px solid #d2d2d2;color:#999}.btn.btn-border:focus,.btn.btn-border:hover{background:0 0;color:#3c4858}.btn i{position:relative;top:-1px;vertical-align:middle}.navbar button.navbar-toggle,.navbar button.navbar-toggle:hover{color:#555}.navbar .button:hover{box-shadow:none!important;color:#e91e63}.navbar .dropdown-menu li.btn:active>a,.navbar .dropdown-menu li.btn:focus>a,.navbar .dropdown-menu li.btn:hover>a{color:#fff!important}.btn.btn-facebook,.btn.btn-facebook:active,.btn.btn-facebook:focus,.btn.btn-facebook:hover,.navbar .navbar-nav>li>a.btn.btn-facebook,.navbar .navbar-nav>li>a.btn.btn-facebook:active,.navbar .navbar-nav>li>a.btn.btn-facebook:focus,.navbar .navbar-nav>li>a.btn.btn-facebook:hover{color:#fff;background-color:#3b5998}.btn.btn-facebook,.navbar .navbar-nav>li>a.btn.btn-facebook{-webkit-box-shadow:0 2px 2px 0 rgba(59,89,152,.14),0 3px 1px -2px rgba(59,89,152,.2),0 1px 5px 0 rgba(59,89,152,.12);-moz-box-shadow:0 2px 2px 0 rgba(59,89,152,.14),0 3px 1px -2px rgba(59,89,152,.2),0 1px 5px 0 rgba(59,89,152,.12);box-shadow:0 2px 2px 0 rgba(59,89,152,.14),0 3px 1px -2px rgba(59,89,152,.2),0 1px 5px 0 rgba(59,89,152,.12)}.btn.btn-facebook:active,.btn.btn-facebook:focus,.btn.btn-facebook:hover,.navbar .navbar-nav>li>a.btn.btn-facebook:active,.navbar .navbar-nav>li>a.btn.btn-facebook:focus,.navbar .navbar-nav>li>a.btn.btn-facebook:hover{-webkit-box-shadow:0 14px 26px -12px rgba(59,89,152,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(59,89,152,.2);-moz-box-shadow:0 14px 26px -12px rgba(59,89,152,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(59,89,152,.2);box-shadow:0 14px 26px -12px rgba(59,89,152,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(59,89,152,.2)}.btn.btn-facebook.btn-simple,.navbar .navbar-nav>li>a.btn.btn-facebook.btn-simple{color:#3b5998;background-color:transparent}.btn.btn-twitter,.btn.btn-twitter:active,.btn.btn-twitter:focus,.btn.btn-twitter:hover,.navbar .navbar-nav>li>a.btn.btn-twitter,.navbar .navbar-nav>li>a.btn.btn-twitter:active,.navbar .navbar-nav>li>a.btn.btn-twitter:focus,.navbar .navbar-nav>li>a.btn.btn-twitter:hover{color:#fff;background-color:#55acee}.btn.btn-twitter,.navbar .navbar-nav>li>a.btn.btn-twitter{-webkit-box-shadow:0 2px 2px 0 rgba(85,172,238,.14),0 3px 1px -2px rgba(85,172,238,.2),0 1px 5px 0 rgba(85,172,238,.12);-moz-box-shadow:0 2px 2px 0 rgba(85,172,238,.14),0 3px 1px -2px rgba(85,172,238,.2),0 1px 5px 0 rgba(85,172,238,.12);box-shadow:0 2px 2px 0 rgba(85,172,238,.14),0 3px 1px -2px rgba(85,172,238,.2),0 1px 5px 0 rgba(85,172,238,.12)}.btn.btn-twitter:active,.btn.btn-twitter:focus,.btn.btn-twitter:hover,.navbar .navbar-nav>li>a.btn.btn-twitter:active,.navbar .navbar-nav>li>a.btn.btn-twitter:focus,.navbar .navbar-nav>li>a.btn.btn-twitter:hover{-webkit-box-shadow:0 14px 26px -12px rgba(85,172,238,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(85,172,238,.2);-moz-box-shadow:0 14px 26px -12px rgba(85,172,238,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(85,172,238,.2);box-shadow:0 14px 26px -12px rgba(85,172,238,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(85,172,238,.2)}.btn.btn-twitter.btn-simple,.navbar .navbar-nav>li>a.btn.btn-twitter.btn-simple{color:#55acee;background-color:transparent}.btn.btn-pinterest,.btn.btn-pinterest:active,.btn.btn-pinterest:focus,.btn.btn-pinterest:hover,.navbar .navbar-nav>li>a.btn.btn-pinterest,.navbar .navbar-nav>li>a.btn.btn-pinterest:active,.navbar .navbar-nav>li>a.btn.btn-pinterest:focus,.navbar .navbar-nav>li>a.btn.btn-pinterest:hover{color:#fff;background-color:#cc2127}.btn.btn-pinterest,.navbar .navbar-nav>li>a.btn.btn-pinterest{-webkit-box-shadow:0 2px 2px 0 rgba(204,33,39,.14),0 3px 1px -2px rgba(204,33,39,.2),0 1px 5px 0 rgba(204,33,39,.12);-moz-box-shadow:0 2px 2px 0 rgba(204,33,39,.14),0 3px 1px -2px rgba(204,33,39,.2),0 1px 5px 0 rgba(204,33,39,.12);box-shadow:0 2px 2px 0 rgba(204,33,39,.14),0 3px 1px -2px rgba(204,33,39,.2),0 1px 5px 0 rgba(204,33,39,.12)}.btn.btn-pinterest:active,.btn.btn-pinterest:focus,.btn.btn-pinterest:hover,.navbar .navbar-nav>li>a.btn.btn-pinterest:active,.navbar .navbar-nav>li>a.btn.btn-pinterest:focus,.navbar .navbar-nav>li>a.btn.btn-pinterest:hover{-webkit-box-shadow:0 14px 26px -12px rgba(204,33,39,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(204,33,39,.2);-moz-box-shadow:0 14px 26px -12px rgba(204,33,39,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(204,33,39,.2);box-shadow:0 14px 26px -12px rgba(204,33,39,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(204,33,39,.2)}.btn.btn-pinterest.btn-simple,.navbar .navbar-nav>li>a.btn.btn-pinterest.btn-simple{color:#cc2127;background-color:transparent}.btn.btn-google,.btn.btn-google:active,.btn.btn-google:focus,.btn.btn-google:hover,.navbar .navbar-nav>li>a.btn.btn-google,.navbar .navbar-nav>li>a.btn.btn-google:active,.navbar .navbar-nav>li>a.btn.btn-google:focus,.navbar .navbar-nav>li>a.btn.btn-google:hover{color:#fff;background-color:#dd4b39}.btn.btn-google,.navbar .navbar-nav>li>a.btn.btn-google{-webkit-box-shadow:0 2px 2px 0 rgba(221,75,57,.14),0 3px 1px -2px rgba(221,75,57,.2),0 1px 5px 0 rgba(221,75,57,.12);-moz-box-shadow:0 2px 2px 0 rgba(221,75,57,.14),0 3px 1px -2px rgba(221,75,57,.2),0 1px 5px 0 rgba(221,75,57,.12);box-shadow:0 2px 2px 0 rgba(221,75,57,.14),0 3px 1px -2px rgba(221,75,57,.2),0 1px 5px 0 rgba(221,75,57,.12)}.btn.btn-google:active,.btn.btn-google:focus,.btn.btn-google:hover,.navbar .navbar-nav>li>a.btn.btn-google:active,.navbar .navbar-nav>li>a.btn.btn-google:focus,.navbar .navbar-nav>li>a.btn.btn-google:hover{-webkit-box-shadow:0 14px 26px -12px rgba(221,75,57,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(221,75,57,.2);-moz-box-shadow:0 14px 26px -12px rgba(221,75,57,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(221,75,57,.2);box-shadow:0 14px 26px -12px rgba(221,75,57,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(221,75,57,.2)}.btn.btn-google.btn-simple,.navbar .navbar-nav>li>a.btn.btn-google.btn-simple{color:#dd4b39;background-color:transparent}.btn.btn-linkedin,.btn.btn-linkedin:active,.btn.btn-linkedin:focus,.btn.btn-linkedin:hover,.navbar .navbar-nav>li>a.btn.btn-linkedin,.navbar .navbar-nav>li>a.btn.btn-linkedin:active,.navbar .navbar-nav>li>a.btn.btn-linkedin:focus,.navbar .navbar-nav>li>a.btn.btn-linkedin:hover{color:#fff;background-color:#0976b4}.btn.btn-linkedin,.navbar .navbar-nav>li>a.btn.btn-linkedin{-webkit-box-shadow:0 2px 2px 0 rgba(9,118,180,.14),0 3px 1px -2px rgba(9,118,180,.2),0 1px 5px 0 rgba(9,118,180,.12);-moz-box-shadow:0 2px 2px 0 rgba(9,118,180,.14),0 3px 1px -2px rgba(9,118,180,.2),0 1px 5px 0 rgba(9,118,180,.12);box-shadow:0 2px 2px 0 rgba(9,118,180,.14),0 3px 1px -2px rgba(9,118,180,.2),0 1px 5px 0 rgba(9,118,180,.12)}.btn.btn-linkedin:active,.btn.btn-linkedin:focus,.btn.btn-linkedin:hover,.navbar .navbar-nav>li>a.btn.btn-linkedin:active,.navbar .navbar-nav>li>a.btn.btn-linkedin:focus,.navbar .navbar-nav>li>a.btn.btn-linkedin:hover{-webkit-box-shadow:0 14px 26px -12px rgba(9,118,180,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(9,118,180,.2);-moz-box-shadow:0 14px 26px -12px rgba(9,118,180,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(9,118,180,.2);box-shadow:0 14px 26px -12px rgba(9,118,180,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(9,118,180,.2)}.btn.btn-linkedin.btn-simple,.navbar .navbar-nav>li>a.btn.btn-linkedin.btn-simple{color:#0976b4;background-color:transparent}.btn.btn-dribbble,.btn.btn-dribbble:active,.btn.btn-dribbble:focus,.btn.btn-dribbble:hover,.navbar .navbar-nav>li>a.btn.btn-dribbble,.navbar .navbar-nav>li>a.btn.btn-dribbble:active,.navbar .navbar-nav>li>a.btn.btn-dribbble:focus,.navbar .navbar-nav>li>a.btn.btn-dribbble:hover{color:#fff;background-color:#ea4c89}.btn.btn-dribbble,.navbar .navbar-nav>li>a.btn.btn-dribbble{-webkit-box-shadow:0 2px 2px 0 rgba(234,76,137,.14),0 3px 1px -2px rgba(234,76,137,.2),0 1px 5px 0 rgba(234,76,137,.12);-moz-box-shadow:0 2px 2px 0 rgba(234,76,137,.14),0 3px 1px -2px rgba(234,76,137,.2),0 1px 5px 0 rgba(234,76,137,.12);box-shadow:0 2px 2px 0 rgba(234,76,137,.14),0 3px 1px -2px rgba(234,76,137,.2),0 1px 5px 0 rgba(234,76,137,.12)}.btn.btn-dribbble:active,.btn.btn-dribbble:focus,.btn.btn-dribbble:hover,.navbar .navbar-nav>li>a.btn.btn-dribbble:active,.navbar .navbar-nav>li>a.btn.btn-dribbble:focus,.navbar .navbar-nav>li>a.btn.btn-dribbble:hover{-webkit-box-shadow:0 14px 26px -12px rgba(234,76,137,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(234,76,137,.2);-moz-box-shadow:0 14px 26px -12px rgba(234,76,137,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(234,76,137,.2);box-shadow:0 14px 26px -12px rgba(234,76,137,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(234,76,137,.2)}.btn.btn-dribbble.btn-simple,.navbar .navbar-nav>li>a.btn.btn-dribbble.btn-simple{color:#ea4c89;background-color:transparent}.btn.btn-github,.btn.btn-github:active,.btn.btn-github:focus,.btn.btn-github:hover,.navbar .navbar-nav>li>a.btn.btn-github,.navbar .navbar-nav>li>a.btn.btn-github:active,.navbar .navbar-nav>li>a.btn.btn-github:focus,.navbar .navbar-nav>li>a.btn.btn-github:hover{color:#fff;background-color:#000}.btn.btn-github,.navbar .navbar-nav>li>a.btn.btn-github{-webkit-box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);-moz-box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12)}.btn.btn-github:active,.btn.btn-github:focus,.btn.btn-github:hover,.navbar .navbar-nav>li>a.btn.btn-github:active,.navbar .navbar-nav>li>a.btn.btn-github:focus,.navbar .navbar-nav>li>a.btn.btn-github:hover{-webkit-box-shadow:0 14px 26px -12px rgba(0,0,0,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2);-moz-box-shadow:0 14px 26px -12px rgba(0,0,0,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2);box-shadow:0 14px 26px -12px rgba(0,0,0,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2)}.btn.btn-github.btn-simple,.navbar .navbar-nav>li>a.btn.btn-github.btn-simple{color:#000;background-color:transparent}.btn.btn-youtube,.btn.btn-youtube:active,.btn.btn-youtube:focus,.btn.btn-youtube:hover,.navbar .navbar-nav>li>a.btn.btn-youtube,.navbar .navbar-nav>li>a.btn.btn-youtube:active,.navbar .navbar-nav>li>a.btn.btn-youtube:focus,.navbar .navbar-nav>li>a.btn.btn-youtube:hover{color:#fff;background-color:#e52d27}.btn.btn-youtube,.navbar .navbar-nav>li>a.btn.btn-youtube{-webkit-box-shadow:0 2px 2px 0 rgba(229,45,39,.14),0 3px 1px -2px rgba(229,45,39,.2),0 1px 5px 0 rgba(229,45,39,.12);-moz-box-shadow:0 2px 2px 0 rgba(229,45,39,.14),0 3px 1px -2px rgba(229,45,39,.2),0 1px 5px 0 rgba(229,45,39,.12);box-shadow:0 2px 2px 0 rgba(229,45,39,.14),0 3px 1px -2px rgba(229,45,39,.2),0 1px 5px 0 rgba(229,45,39,.12)}.btn.btn-youtube:active,.btn.btn-youtube:focus,.btn.btn-youtube:hover,.navbar .navbar-nav>li>a.btn.btn-youtube:active,.navbar .navbar-nav>li>a.btn.btn-youtube:focus,.navbar .navbar-nav>li>a.btn.btn-youtube:hover{-webkit-box-shadow:0 14px 26px -12px rgba(229,45,39,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(229,45,39,.2);-moz-box-shadow:0 14px 26px -12px rgba(229,45,39,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(229,45,39,.2);box-shadow:0 14px 26px -12px rgba(229,45,39,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(229,45,39,.2)}.btn.btn-youtube.btn-simple,.navbar .navbar-nav>li>a.btn.btn-youtube.btn-simple{color:#e52d27;background-color:transparent}.btn.btn-instagram,.btn.btn-instagram:active,.btn.btn-instagram:focus,.btn.btn-instagram:hover,.navbar .navbar-nav>li>a.btn.btn-instagram,.navbar .navbar-nav>li>a.btn.btn-instagram:active,.navbar .navbar-nav>li>a.btn.btn-instagram:focus,.navbar .navbar-nav>li>a.btn.btn-instagram:hover{color:#fff;background-color:#125688}.btn.btn-instagram,.navbar .navbar-nav>li>a.btn.btn-instagram{-webkit-box-shadow:0 2px 2px 0 rgba(18,86,136,.14),0 3px 1px -2px rgba(18,86,136,.2),0 1px 5px 0 rgba(18,86,136,.12);-moz-box-shadow:0 2px 2px 0 rgba(18,86,136,.14),0 3px 1px -2px rgba(18,86,136,.2),0 1px 5px 0 rgba(18,86,136,.12);box-shadow:0 2px 2px 0 rgba(18,86,136,.14),0 3px 1px -2px rgba(18,86,136,.2),0 1px 5px 0 rgba(18,86,136,.12)}.btn.btn-instagram:active,.btn.btn-instagram:focus,.btn.btn-instagram:hover,.navbar .navbar-nav>li>a.btn.btn-instagram:active,.navbar .navbar-nav>li>a.btn.btn-instagram:focus,.navbar .navbar-nav>li>a.btn.btn-instagram:hover{-webkit-box-shadow:0 14px 26px -12px rgba(18,86,136,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(18,86,136,.2);-moz-box-shadow:0 14px 26px -12px rgba(18,86,136,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(18,86,136,.2);box-shadow:0 14px 26px -12px rgba(18,86,136,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(18,86,136,.2)}.btn.btn-instagram.btn-simple,.navbar .navbar-nav>li>a.btn.btn-instagram.btn-simple{color:#125688;background-color:transparent}.btn.btn-reddit,.btn.btn-reddit:active,.btn.btn-reddit:focus,.btn.btn-reddit:hover,.navbar .navbar-nav>li>a.btn.btn-reddit,.navbar .navbar-nav>li>a.btn.btn-reddit:active,.navbar .navbar-nav>li>a.btn.btn-reddit:focus,.navbar .navbar-nav>li>a.btn.btn-reddit:hover{color:#fff;background-color:#ff4500}.btn.btn-reddit,.navbar .navbar-nav>li>a.btn.btn-reddit{-webkit-box-shadow:0 2px 2px 0 rgba(255,69,0,.14),0 3px 1px -2px rgba(255,69,0,.2),0 1px 5px 0 rgba(255,69,0,.12);-moz-box-shadow:0 2px 2px 0 rgba(255,69,0,.14),0 3px 1px -2px rgba(255,69,0,.2),0 1px 5px 0 rgba(255,69,0,.12);box-shadow:0 2px 2px 0 rgba(255,69,0,.14),0 3px 1px -2px rgba(255,69,0,.2),0 1px 5px 0 rgba(255,69,0,.12)}.btn.btn-reddit:active,.btn.btn-reddit:focus,.btn.btn-reddit:hover,.navbar .navbar-nav>li>a.btn.btn-reddit:active,.navbar .navbar-nav>li>a.btn.btn-reddit:focus,.navbar .navbar-nav>li>a.btn.btn-reddit:hover{-webkit-box-shadow:0 14px 26px -12px rgba(255,69,0,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(255,69,0,.2);-moz-box-shadow:0 14px 26px -12px rgba(255,69,0,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(255,69,0,.2);box-shadow:0 14px 26px -12px rgba(255,69,0,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(255,69,0,.2)}.btn.btn-reddit.btn-simple,.navbar .navbar-nav>li>a.btn.btn-reddit.btn-simple{color:#ff4500;background-color:transparent}.btn.btn-tumblr,.btn.btn-tumblr:active,.btn.btn-tumblr:focus,.btn.btn-tumblr:hover,.navbar .navbar-nav>li>a.btn.btn-tumblr,.navbar .navbar-nav>li>a.btn.btn-tumblr:active,.navbar .navbar-nav>li>a.btn.btn-tumblr:focus,.navbar .navbar-nav>li>a.btn.btn-tumblr:hover{color:#fff;background-color:#35465c}.btn.btn-tumblr,.navbar .navbar-nav>li>a.btn.btn-tumblr{-webkit-box-shadow:0 2px 2px 0 rgba(53,70,92,.14),0 3px 1px -2px rgba(53,70,92,.2),0 1px 5px 0 rgba(53,70,92,.12);-moz-box-shadow:0 2px 2px 0 rgba(53,70,92,.14),0 3px 1px -2px rgba(53,70,92,.2),0 1px 5px 0 rgba(53,70,92,.12);box-shadow:0 2px 2px 0 rgba(53,70,92,.14),0 3px 1px -2px rgba(53,70,92,.2),0 1px 5px 0 rgba(53,70,92,.12)}.btn.btn-tumblr:active,.btn.btn-tumblr:focus,.btn.btn-tumblr:hover,.navbar .navbar-nav>li>a.btn.btn-tumblr:active,.navbar .navbar-nav>li>a.btn.btn-tumblr:focus,.navbar .navbar-nav>li>a.btn.btn-tumblr:hover{-webkit-box-shadow:0 14px 26px -12px rgba(53,70,92,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(53,70,92,.2);-moz-box-shadow:0 14px 26px -12px rgba(53,70,92,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(53,70,92,.2);box-shadow:0 14px 26px -12px rgba(53,70,92,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(53,70,92,.2)}.btn.btn-tumblr.btn-simple,.navbar .navbar-nav>li>a.btn.btn-tumblr.btn-simple{color:#35465c;background-color:transparent}.btn.btn-behance,.btn.btn-behance:active,.btn.btn-behance:focus,.btn.btn-behance:hover,.navbar .navbar-nav>li>a.btn.btn-behance,.navbar .navbar-nav>li>a.btn.btn-behance:active,.navbar .navbar-nav>li>a.btn.btn-behance:focus,.navbar .navbar-nav>li>a.btn.btn-behance:hover{color:#fff;background-color:#1769ff}.btn.btn-behance,.navbar .navbar-nav>li>a.btn.btn-behance{-webkit-box-shadow:0 2px 2px 0 rgba(23,105,255,.14),0 3px 1px -2px rgba(23,105,255,.2),0 1px 5px 0 rgba(23,105,255,.12);-moz-box-shadow:0 2px 2px 0 rgba(23,105,255,.14),0 3px 1px -2px rgba(23,105,255,.2),0 1px 5px 0 rgba(23,105,255,.12);box-shadow:0 2px 2px 0 rgba(23,105,255,.14),0 3px 1px -2px rgba(23,105,255,.2),0 1px 5px 0 rgba(23,105,255,.12)}.btn.btn-behance:active,.btn.btn-behance:focus,.btn.btn-behance:hover,.navbar .navbar-nav>li>a.btn.btn-behance:active,.navbar .navbar-nav>li>a.btn.btn-behance:focus,.navbar .navbar-nav>li>a.btn.btn-behance:hover{-webkit-box-shadow:0 14px 26px -12px rgba(23,105,255,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(23,105,255,.2);-moz-box-shadow:0 14px 26px -12px rgba(23,105,255,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(23,105,255,.2);box-shadow:0 14px 26px -12px rgba(23,105,255,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(23,105,255,.2)}.btn.btn-behance.btn-simple,.navbar .navbar-nav>li>a.btn.btn-behance.btn-simple{color:#1769ff;background-color:transparent}.btn.btn-snapchat,.btn.btn-snapchat:active,.btn.btn-snapchat:focus,.btn.btn-snapchat:hover,.navbar .navbar-nav>li>a.btn.btn-snapchat,.navbar .navbar-nav>li>a.btn.btn-snapchat:active,.navbar .navbar-nav>li>a.btn.btn-snapchat:focus,.navbar .navbar-nav>li>a.btn.btn-snapchat:hover{color:#fff;background-color:#fffc00}.btn.btn-snapchat,.navbar .navbar-nav>li>a.btn.btn-snapchat{-webkit-box-shadow:0 2px 2px 0 rgba(255,252,0,.14),0 3px 1px -2px rgba(255,252,0,.2),0 1px 5px 0 rgba(255,252,0,.12);-moz-box-shadow:0 2px 2px 0 rgba(255,252,0,.14),0 3px 1px -2px rgba(255,252,0,.2),0 1px 5px 0 rgba(255,252,0,.12);box-shadow:0 2px 2px 0 rgba(255,252,0,.14),0 3px 1px -2px rgba(255,252,0,.2),0 1px 5px 0 rgba(255,252,0,.12)}.btn.btn-snapchat:active,.btn.btn-snapchat:focus,.btn.btn-snapchat:hover,.navbar .navbar-nav>li>a.btn.btn-snapchat:active,.navbar .navbar-nav>li>a.btn.btn-snapchat:focus,.navbar .navbar-nav>li>a.btn.btn-snapchat:hover{-webkit-box-shadow:0 14px 26px -12px rgba(255,252,0,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(255,252,0,.2);-moz-box-shadow:0 14px 26px -12px rgba(255,252,0,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(255,252,0,.2);box-shadow:0 14px 26px -12px rgba(255,252,0,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(255,252,0,.2)}.btn.btn-snapchat.btn-simple,.navbar .navbar-nav>li>a.btn.btn-snapchat.btn-simple{color:#fffc00;background-color:transparent}.btn.btn-deviantart,.btn.btn-deviantart:active,.btn.btn-deviantart:focus,.btn.btn-deviantart:hover,.navbar .navbar-nav>li>a.btn.btn-deviantart,.navbar .navbar-nav>li>a.btn.btn-deviantart:active,.navbar .navbar-nav>li>a.btn.btn-deviantart:focus,.navbar .navbar-nav>li>a.btn.btn-deviantart:hover{color:#fff;background-color:#05cc47}.btn.btn-deviantart,.navbar .navbar-nav>li>a.btn.btn-deviantart{-webkit-box-shadow:0 2px 2px 0 rgba(5,204,71,.14),0 3px 1px -2px rgba(5,204,71,.2),0 1px 5px 0 rgba(5,204,71,.12);-moz-box-shadow:0 2px 2px 0 rgba(5,204,71,.14),0 3px 1px -2px rgba(5,204,71,.2),0 1px 5px 0 rgba(5,204,71,.12);box-shadow:0 2px 2px 0 rgba(5,204,71,.14),0 3px 1px -2px rgba(5,204,71,.2),0 1px 5px 0 rgba(5,204,71,.12)}.btn.btn-deviantart:active,.btn.btn-deviantart:focus,.btn.btn-deviantart:hover,.navbar .navbar-nav>li>a.btn.btn-deviantart:active,.navbar .navbar-nav>li>a.btn.btn-deviantart:focus,.navbar .navbar-nav>li>a.btn.btn-deviantart:hover{-webkit-box-shadow:0 14px 26px -12px rgba(5,204,71,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(5,204,71,.2);-moz-box-shadow:0 14px 26px -12px rgba(5,204,71,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(5,204,71,.2);box-shadow:0 14px 26px -12px rgba(5,204,71,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(5,204,71,.2)}.btn.btn-deviantart.btn-simple,.navbar .navbar-nav>li>a.btn.btn-deviantart.btn-simple{color:#05cc47;background-color:transparent}.btn.btn-vimeo,.btn.btn-vimeo:active,.btn.btn-vimeo:focus,.btn.btn-vimeo:hover,.navbar .navbar-nav>li>a.btn.btn-vimeo,.navbar .navbar-nav>li>a.btn.btn-vimeo:active,.navbar .navbar-nav>li>a.btn.btn-vimeo:focus,.navbar .navbar-nav>li>a.btn.btn-vimeo:hover{color:#fff;background-color:#1ab7ea}.btn.btn-vimeo,.navbar .navbar-nav>li>a.btn.btn-vimeo{-webkit-box-shadow:0 2px 2px 0 rgba(26,183,234,.14),0 3px 1px -2px rgba(26,183,234,.2),0 1px 5px 0 rgba(26,183,234,.12);-moz-box-shadow:0 2px 2px 0 rgba(26,183,234,.14),0 3px 1px -2px rgba(26,183,234,.2),0 1px 5px 0 rgba(26,183,234,.12);box-shadow:0 2px 2px 0 rgba(26,183,234,.14),0 3px 1px -2px rgba(26,183,234,.2),0 1px 5px 0 rgba(26,183,234,.12)}.btn.btn-vimeo:active,.btn.btn-vimeo:focus,.btn.btn-vimeo:hover,.navbar .navbar-nav>li>a.btn.btn-vimeo:active,.navbar .navbar-nav>li>a.btn.btn-vimeo:focus,.navbar .navbar-nav>li>a.btn.btn-vimeo:hover{-webkit-box-shadow:0 14px 26px -12px rgba(26,183,234,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(26,183,234,.2);-moz-box-shadow:0 14px 26px -12px rgba(26,183,234,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(26,183,234,.2);box-shadow:0 14px 26px -12px rgba(26,183,234,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(26,183,234,.2)}.btn.btn-vimeo.btn-simple,.navbar .navbar-nav>li>a.btn.btn-vimeo.btn-simple{color:#1ab7ea;background-color:transparent}body [class*=fl-builder] button,body [class*=fl-builder] button:hover,button.customize-partial-edit-shortcut-button,button.customize-partial-edit-shortcut-button:hover{box-shadow:none!important}legend{margin-bottom:20px}output{padding-top:8px}.checkbox label,.radio label{min-height:20px}select{-webkit-appearance:none;-moz-appearance:none;appearance:none}.label{background-color:#fff;border-radius:2px}.label.label-default{background-color:#fff}.label.label-primary{background-color:#9c27b0}.label.label-success{background-color:#4caf50}.label.label-danger{background-color:#f44336}.label.label-rose{background-color:#e91e63}.form-control{height:36px;padding:7px 0;vertical-align:middle}.form-control-static{min-height:34px;padding-top:8px;padding-bottom:8px}.form-control:-ms-input-placeholder,.form-control::-moz-placeholder,.form-control::-webkit-input-placeholder,.form-group .form-control:-ms-input-placeholder,.form-group .form-control::-moz-placeholder,.form-group .form-control::-webkit-input-placeholder{color:#aaa}.form-control[disabled],.form-control[readonly],.form-group .form-control[disabled],.form-group .form-control[readonly],fieldset[disabled] .form-control,fieldset[disabled] .form-group .form-control{background-color:transparent}.form-control[disabled],.form-group .form-control[disabled],fieldset[disabled] .form-control,fieldset[disabled] .form-group .form-control{border-bottom:1px dotted #d2d2d2;background-image:none}.form-control{margin-bottom:7px}.checkbox label,.form-control:-ms-input-placeholder,.form-control::-moz-placeholder,.form-control::-webkit-input-placeholder,.form-group .checkbox label,.form-group .form-control:-ms-input-placeholder,.form-group .form-control::-moz-placeholder,.form-group .form-control::-webkit-input-placeholder,.form-group .radio label,.form-group label,.radio label,label{color:#aaa}label.control-label{margin:16px 0 0;color:#aaa}.help-block{margin-top:0}.form-group{padding-bottom:7px;position:relative}.form-group .form-control{margin-bottom:7px}.form-group label.control-label{margin:16px 0 0;color:#aaa}.form-group input[type=file]{position:relative;z-index:100;top:0;right:0;bottom:0;left:0;width:100%;height:100%;opacity:1}.form-group textarea{resize:none}.form-group textarea~.form-control-highlight{margin-top:-11px}.form-group .help-block{margin-top:0;display:none;position:absolute}.form-group.label-floating label.control-label,.form-group.label-placeholder label.control-label,.form-group.label-static label.control-label{position:absolute;pointer-events:none}.form-group.label-floating label.control-label{will-change:left,top,contents}.form-group.label-placeholder:not(.is-empty) label.control-label{display:none}.form-group.label-floating label.control-label,.form-group.label-placeholder label.control-label{top:-7px;left:0}.form-group.label-floating.is-focused label.control-label,.form-group.label-floating:not(.is-empty) label.control-label,.form-group.label-static label.control-label{top:-28px;left:0}.form-group.is-focused .form-control .material-input:after{background-color:#9c27b0}.form-group.is-focused.label-placeholder label,.form-group.is-focused.label-placeholder label.control-label{color:#aaa}.form-group.is-focused select.form-control{border-color:#d2d2d2}.form-group.has-warning.is-focused .form-control{background-image:-webkit-gradient(linear,left top,left bottom,from(#ff9800),to(#ff9800)),-webkit-gradient(linear,left top,left bottom,from(#d2d2d2),to(#d2d2d2));background-image:-webkit-linear-gradient(#ff9800,#ff9800),-webkit-linear-gradient(#d2d2d2,#d2d2d2);background-image:linear-gradient(#ff9800,#ff9800),linear-gradient(#d2d2d2,#d2d2d2)}.form-group.has-warning label.control-label{color:#ff9800}.form-group.has-error.is-focused .form-control{background-image:-webkit-gradient(linear,left top,left bottom,from(#f44336),to(#f44336)),-webkit-gradient(linear,left top,left bottom,from(#d2d2d2),to(#d2d2d2));background-image:-webkit-linear-gradient(#f44336,#f44336),-webkit-linear-gradient(#d2d2d2,#d2d2d2);background-image:linear-gradient(#f44336,#f44336),linear-gradient(#d2d2d2,#d2d2d2)}.form-group.has-error label.control-label{color:#f44336}.form-group.has-success.is-focused .form-control{background-image:-webkit-gradient(linear,left top,left bottom,from(#4caf50),to(#4caf50)),-webkit-gradient(linear,left top,left bottom,from(#d2d2d2),to(#d2d2d2));background-image:-webkit-linear-gradient(#4caf50,#4caf50),-webkit-linear-gradient(#d2d2d2,#d2d2d2);background-image:linear-gradient(#4caf50,#4caf50),linear-gradient(#d2d2d2,#d2d2d2)}.form-group.has-success label.control-label{color:#4caf50}.form-group.has-info.is-focused .form-control{background-image:-webkit-gradient(linear,left top,left bottom,from(#00bcd4),to(#00bcd4)),-webkit-gradient(linear,left top,left bottom,from(#d2d2d2),to(#d2d2d2));background-image:-webkit-linear-gradient(#00bcd4,#00bcd4),-webkit-linear-gradient(#d2d2d2,#d2d2d2);background-image:linear-gradient(#00bcd4,#00bcd4),linear-gradient(#d2d2d2,#d2d2d2)}.form-group.has-info .help-block,.form-group.has-info label.control-label{color:#00bcd4}select.form-control{border:0;border-radius:0}select .form-group.is-focused select.form-control[multiple],select.form-control[multiple]{height:85px}.input-group-btn .btn{margin:0 0 7px}.input-group .input-group-btn{padding:0 12px}.input-group .input-group-addon{padding:6px 15px 0;border:0;background:0 0}.form-control-feedback{opacity:0}.has-success .form-control-feedback{opacity:1;color:#4caf50}.has-error .form-control-feedback{opacity:1;color:#f44336}.search-form label,.searchform label{display:table-cell;vertical-align:top;padding-right:25px;width:100%}.search-form:not(.media-toolbar-primary),.searchform:not(.media-toolbar-primary),.woocommerce-product-search{display:table;position:relative}.search-form:not(.media-toolbar-primary) button,.search-form:not(.media-toolbar-primary) input[type=submit],.searchform:not(.media-toolbar-primary) button,.searchform:not(.media-toolbar-primary) input[type=submit],.woocommerce-product-search button,.woocommerce-product-search input[type=submit]{display:table-cell;vertical-align:top;padding-left:0;padding-right:0;text-align:center;text-indent:-9999px;top:-19px;width:45px;background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMTY2NCIgaGVpZ2h0PSIxNjY0IiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJ4TWlkWU1pZCBtZWV0IiB2aWV3Qm94PSIwIDAgMTY2NCAxNjY0IiBzdHlsZT0iLW1zLXRyYW5zZm9ybTogcm90YXRlKDM2MGRlZyk7IC13ZWJraXQtdHJhbnNmb3JtOiByb3RhdGUoMzYwZGVnKTsgdHJhbnNmb3JtOiByb3RhdGUoMzYwZGVnKTsiPjxwYXRoIGQ9Ik0xMTUyIDcwNHEwLTE4NS0xMzEuNS0zMTYuNVQ3MDQgMjU2VDM4Ny41IDM4Ny41VDI1NiA3MDR0MTMxLjUgMzE2LjVUNzA0IDExNTJ0MzE2LjUtMTMxLjVUMTE1MiA3MDR6bTUxMiA4MzJxMCA1Mi0zOCA5MHQtOTAgMzhxLTU0IDAtOTAtMzhsLTM0My0zNDJxLTE3OSAxMjQtMzk5IDEyNHEtMTQzIDAtMjczLjUtNTUuNXQtMjI1LTE1MHQtMTUwLTIyNVQwIDcwNHQ1NS41LTI3My41dDE1MC0yMjV0MjI1LTE1MFQ3MDQgMHQyNzMuNSA1NS41dDIyNSAxNTB0MTUwIDIyNVQxNDA4IDcwNHEwIDIyMC0xMjQgMzk5bDM0MyAzNDNxMzcgMzcgMzcgOTB6IiBmaWxsPSJ3aGl0ZSIvPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxNjY0IiBoZWlnaHQ9IjE2NjQiIGZpbGw9InJnYmEoMCwgMCwgMCwgMCkiIC8+PC9zdmc+);background-repeat:no-repeat;background-position:center;background-size:18px 29px}.search-form:not(.media-toolbar-primary) input[type=search],.searchform:not(.media-toolbar-primary) input[type=search],.woocommerce-product-search input[type=search]{height:36px}.blog-sidebar-wrapper .widget:nth-of-type(1).widget_product_search,.blog-sidebar-wrapper .widget:nth-of-type(1).widget_search{padding-top:11px}.comment-form-cookies-consent #wp-comment-cookies-consent{margin:0 10px 0 0}.comment-form-cookies-consent label{display:inline}body:not(.home) .navbar-default .navbar-nav>.active>a,body:not(.home) .navbar-default .navbar-nav>.active>a:focus,body:not(.home) .navbar-default .navbar-nav>.active>a:hover{background:0 0}body.admin-bar .navbar{margin-top:32px}.navbar-color-on-scroll .dashicons{transition:initial}.navbar.navbar-transparent{color:#fff;background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.navbar.navbar-transparent>.container{padding-top:25px}.navbar.navbar-transparent .hestia-hide-if-transparent{display:none}.navbar.navbar-not-transparent .hestia-transparent-logo{display:none}.navbar{background-color:#fff;color:#555;border-radius:0;position:fixed;border:none;padding:0;transition:none;-webkit-box-shadow:0 1px 10px -6px rgba(0,0,0,.42),0 1px 10px 0 rgba(0,0,0,.12),0 4px 5px -2px rgba(0,0,0,.1);box-shadow:0 1px 10px -6px rgba(0,0,0,.42),0 1px 10px 0 rgba(0,0,0,.12),0 4px 5px -2px rgba(0,0,0,.1)}.navbar .navbar-collapse{border:none}.navbar .title-logo-wrapper{max-width:250px;display:flex;align-items:center}.navbar>.container{display:flex;transition:padding .1s ease;padding:10px 15px;vertical-align:middle;align-items:center}.navbar.hestia_left .navbar-collapse{margin-left:auto}.navbar.hestia_left>.container{flex-direction:row}.navbar.hestia_left .navbar-nav{display:flex;flex-wrap:wrap;justify-content:flex-end}.navbar.hestia_center>.container{flex-direction:column}.navbar.hestia_center .navbar-nav{display:flex;flex-wrap:wrap;justify-content:center}.navbar.hestia_right>.container{flex-wrap:wrap;flex-direction:row-reverse}.navbar.hestia_right .navbar-header{max-width:250px}.navbar.hestia_right .header-sidebar-wrapper,.navbar.hestia_right .navbar-header{flex:1}.navbar.hestia_right .navbar-nav{display:flex;flex-wrap:wrap;width:100%}.navbar .navbar-header .navbar-brand{padding:0 15px;position:relative;color:inherit;height:auto}.navbar .navbar-header .navbar-brand img{width:auto;max-height:50px}.navbar .navbar-header .navbar-brand p{margin-bottom:0;padding:10px 0}.navbar-toggle-wrapper{margin-left:auto;display:flex;align-items:center;flex-direction:row}.navbar .navbar-toggle{float:none;border:0;margin-right:0}.navbar .navbar-toggle:focus,.navbar .navbar-toggle:hover{background:0 0}.navbar .navbar-toggle .icon-bar{border:1px solid;transition:.3s ease;position:relative}.navbar .navbar-toggle[aria-expanded=true] .icon-bar:nth-child(1){-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg);top:6px}.navbar .navbar-toggle[aria-expanded=true] .icon-bar:nth-child(2){width:0;opacity:0}.navbar .navbar-toggle[aria-expanded=true] .icon-bar:nth-child(3){-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-o-transform:rotate(-45deg);transform:rotate(-45deg);top:-6px}.navbar .navbar-toggle[aria-expanded=false] .icon-bar:nth-child(1){top:0;-webkit-transform-origin:left center;-moz-transform-origin:left center;-o-transform-origin:left center;transform-origin:left center}.navbar .navbar-toggle[aria-expanded=false] .icon-bar:nth-child(2){top:0;-webkit-transform-origin:left center;-moz-transform-origin:left center;-o-transform-origin:left center;transform-origin:left center}.navbar .navbar-toggle[aria-expanded=false] .icon-bar:nth-child(3){top:0;-webkit-transform-origin:left center;-moz-transform-origin:left center;-o-transform-origin:left center;transform-origin:left center}.navbar .navbar-nav>li{margin:0}.navbar .navbar-nav>li>a{text-transform:uppercase}.navbar .navbar-nav>li a{padding-top:15px;padding-bottom:15px;border-radius:3px;color:inherit}.navbar .navbar-nav>li a:focus,.navbar .navbar-nav>li a:hover{color:inherit;opacity:1}.navbar .navbar-nav>li a i{min-width:20px;text-align:center;position:relative;top:2px;margin-top:-4px;margin-right:4px}.navbar .navbar-nav>li.btn{padding:0 10px}.navbar .navbar-nav>li.btn a{color:#fff}.navbar .navbar-nav>li.btn li a{text-transform:none}.navbar .navbar-nav>li .dropdown-menu{margin-top:-5px;border:none}.navbar .navbar-nav>li .dropdown-menu>.active>a{background-color:transparent}.navbar .navbar-nav>li .dropdown-menu li{color:#333;position:relative}.navbar .navbar-nav>li .dropdown-menu li.active>a{color:#333}.navbar .navbar-nav>li .dropdown-menu li:hover>a{color:#e91e63}.navbar .navbar-nav>li .dropdown-menu li:hover>a>i{opacity:.7}.navbar .navbar-nav>li .dropdown-menu li>a{background-color:transparent;margin:0 5px;padding:10px;border-radius:2px;-webkit-transition:all 150ms linear;transition:all 150ms linear}.navbar .navbar-nav>li .dropdown-menu li>a>i{position:relative;top:1px;margin-right:12px;opacity:.5;text-align:center}.navbar .navbar-nav>li .dropdown-menu li>a i{position:relative;top:1px;margin-top:-4px;margin-right:12px;vertical-align:middle}.navbar .navbar-nav>li:hover .dropdown-menu{margin-top:0;z-index:10}.navbar .navbar-nav>li:not(.btn) .hestia-toggle-search:before,.navbar .navbar-nav>li:not(.btn)>a:before{position:absolute;z-index:-1;top:0;right:0;bottom:0;left:0;border-radius:3px;background-color:rgba(255,255,255,.1);content:"";transition:all .3s cubic-bezier(.34,.9,.7,1);-webkit-transform:scaleX(0);-ms-transform:scaleX(0);transform:scaleX(0);-webkit-transform-origin:50%;-ms-transform-origin:50%;transform-origin:50%}.navbar .navbar-nav>li:not(.btn):hover .hestia-toggle-search:before,.navbar .navbar-nav>li:not(.btn):hover a:before{color:inherit;-webkit-transform:scaleX(1);-ms-transform:scaleX(1);transform:scaleX(1)}.dropdown-submenu{position:relative}.dropdown-submenu .dropdown-menu{display:none;top:0;left:100%;margin-top:-6px;margin-left:-1px}.dropdown-submenu.open>.dropdown-menu{display:table;visibility:visible;opacity:1}.dropdown-submenu.open>.dropdown-toggle .caret,.dropdown-submenu:hover>.dropdown-toggle .caret{border-left:4px dashed;border-top:4px solid transparent;border-bottom:4px solid transparent}.dropdown-submenu.open .dropdown-menu,.dropdown-submenu:hover .dropdown-menu{display:table}.navbar.header-with-topbar{position:absolute;top:40px}.navbar.navbar-scroll-point{position:fixed;top:0}.navbar.full-screen-menu.navbar-scroll-point .header-sidebar-wrapper{display:none}.dropdown-helper-overlay{position:fixed;top:0;left:0;right:0;height:100vh;z-index:-1}#main-navigation ul.nav>li{opacity:1;transition:opacity .25s ease-in-out;-moz-transition:opacity .25s ease-in-out;-webkit-transition:opacity .25s ease-in-out;visibility:visible}.hestia-mm-description{display:none;opacity:.75}@media (max-width:768px){.hestia-nav-search{margin-top:25px}.hestia-nav-search .search-submit{display:block;pointer-events:all}.hestia-nav-search form{width:100%;margin-bottom:0}.hestia-nav-search form:after{font-size:16px;display:block}.hestia-nav-search label{padding-right:25px}.navbar .navbar-nav>li.hestia-search-in-menu a.hestia-toggle-search{display:none}}.hestia-toggle-search svg{fill:#555;vertical-align:middle}.navbar.navbar-transparent .hestia-toggle-search svg{fill:#fff}.full-screen-menu .hestia-toggle-search{display:none}.full-screen-menu .hestia-nav-search{margin-top:25px;text-align:left}@media (min-width:769px){.navbar:not(.full-screen-menu) .hestia-toggle-search{display:block;width:55px}.navbar:not(.full-screen-menu) .hestia-toggle-search i{font-size:16px}.navbar:not(.full-screen-menu) .hestia-search-in-menu{cursor:pointer;position:relative;vertical-align:middle;display:inline-block}.navbar:not(.full-screen-menu).nav-searching .hestia-nav-search form{max-width:200px;opacity:1;pointer-events:all}.navbar:not(.full-screen-menu).nav-searching #main-navigation ul.nav li:not(.hestia-search-in-menu){opacity:0;visibility:hidden}.navbar:not(.full-screen-menu) .hestia-nav-search{padding:0 15px;text-align:left}.navbar:not(.full-screen-menu) .hestia-nav-search .search-submit{display:none;pointer-events:none}.navbar:not(.full-screen-menu) .hestia-nav-search form{width:200px;max-width:0;padding:5px;transition:all .5s ease;position:absolute;right:40px;box-sizing:border-box;opacity:0;pointer-events:none}.navbar:not(.full-screen-menu) .hestia-nav-search form:after{display:none}.navbar:not(.full-screen-menu) .hestia-nav-search label{padding:0}.navbar:not(.full-screen-menu).navbar-transparent .hestia-nav-search form .search-field{color:#fff}.navbar:not(.full-screen-menu).navbar-transparent .hestia-nav-search form .search-field::-webkit-input-placeholder{color:#fff}.navbar:not(.full-screen-menu).navbar-transparent .hestia-nav-search form .search-field::-moz-placeholder{color:#fff}.navbar:not(.full-screen-menu).navbar-transparent .hestia-nav-search form .search-field:-ms-input-placeholder{color:#fff}.navbar:not(.full-screen-menu).navbar-transparent .hestia-nav-search form .search-field:-moz-placeholder{color:#fff}.navbar:not(.full-screen-menu).navbar-transparent .hestia-nav-search form .control-label{color:#fff}}.navbar.navbar-default .navbar-nav>.btn.active>a,.navbar.navbar-default .navbar-nav>.btn.open>a,.navbar.navbar-default .navbar-nav>.btn>a{color:#fff;background:0 0}.navbar.navbar-not-transparent .navbar-nav>.active:not(.btn)>a,.navbar.navbar-not-transparent .navbar-nav>.active:not(.btn)>a:focus,.navbar.navbar-not-transparent .navbar-nav>.active:not(.btn)>a:hover{background:0 0}.hestia_right .blog-sidebar-wrapper,.hestia_right .header-sidebar-wrapper{float:none;display:table-cell;width:100%;vertical-align:middle}.hestia_right .blog-sidebar-wrapper .header-widgets-wrapper,.hestia_right .header-sidebar-wrapper .header-widgets-wrapper{align-items:center;display:flex;flex-direction:row;justify-content:flex-end}.hestia_right .blog-sidebar-wrapper .header-widgets-wrapper .search-form label,.hestia_right .blog-sidebar-wrapper .header-widgets-wrapper .searchform label,.hestia_right .header-sidebar-wrapper .header-widgets-wrapper .search-form label,.hestia_right .header-sidebar-wrapper .header-widgets-wrapper .searchform label{width:inherit}.header-widgets-wrapper .widget{margin:0 10px 0 0}.header-widgets-wrapper .widget:last-of-type{margin-right:0}.header-widgets-wrapper .widget,.header-widgets-wrapper .widget .textwidget,.header-widgets-wrapper .widget h5{display:inline-block}.header-widgets-wrapper .widget h5{margin:0 5px 0 0}.header-widgets-wrapper .widget .btn{padding:3px 10px}.header-widgets-wrapper .widget .btn a{color:#fff}.header-widgets-wrapper .widget.widget_categories h5,.header-widgets-wrapper .widget.widget_meta h5,.header-widgets-wrapper .widget.widget_nav_menu h5,.header-widgets-wrapper .widget.widget_product_categories h5,.header-widgets-wrapper .widget.widget_product_search h5,.header-widgets-wrapper .widget.widget_search h5{display:none}.header-widgets-wrapper .widget.widget_categories [type=submit],.header-widgets-wrapper .widget.widget_meta [type=submit],.header-widgets-wrapper .widget.widget_nav_menu [type=submit],.header-widgets-wrapper .widget.widget_product_categories [type=submit],.header-widgets-wrapper .widget.widget_product_search [type=submit],.header-widgets-wrapper .widget.widget_search [type=submit]{opacity:0;left:-15px}.header-widgets-wrapper .widget .search-form:after,.header-widgets-wrapper .widget .searchform:after,.header-widgets-wrapper .widget .woocommerce-product-search:after{right:30px}.header-widgets-wrapper .widget.widget_product_search form,.header-widgets-wrapper .widget.widget_search form{top:15px}.header-widgets-wrapper .widget.widget_product_search form:after,.header-widgets-wrapper .widget.widget_search form:after{color:#333}.header-widgets-wrapper .widget.widget_product_search form .control-label,.header-widgets-wrapper .widget.widget_search form .control-label{color:#333}.header-widgets-wrapper ul li{cursor:auto;display:inline-block;margin:0 5px}.header-widgets-wrapper ul li.menu-item{padding-top:0}.header-widgets-wrapper ul li:first-child{margin-left:0}.header-widgets-wrapper ul li:last-child{margin-right:0}.header-widgets-wrapper ul li a{padding:0;text-transform:inherit}.header-widgets-wrapper ul li a:focus,.header-widgets-wrapper ul li a:hover{background-color:transparent;outline:0}.header-widgets-wrapper ul li a[href*="mailto:"]:before,.header-widgets-wrapper ul li a[href*="tel:"]:before{margin-right:7px;display:inline-block;width:16px;height:16px;background-repeat:no-repeat;content:'';background-color:#333;vertical-align:text-bottom}.header-widgets-wrapper ul li a[href*="tel:"]:before{mask-image:url('data:image/svg+xml;utf8,');-webkit-mask-image:url('data:image/svg+xml;utf8,')}.header-widgets-wrapper ul li a[href*="mailto:"]:before{mask-image:url('data:image/svg+xml;utf8,');-webkit-mask-image:url('data:image/svg+xml;utf8,')}.header-widgets-wrapper ul li.dropdown .caret{display:none}.navbar-transparent .widget .btn:hover a{color:#fff}.navbar-transparent .widget.widget_product_search form .control-label,.navbar-transparent .widget.widget_product_search form.form-group:before,.navbar-transparent .widget.widget_product_search form:after,.navbar-transparent .widget.widget_search form .control-label,.navbar-transparent .widget.widget_search form.form-group:before,.navbar-transparent .widget.widget_search form:after{color:#fff}.pagination{width:100%;text-align:center}.pagination>li>a{border:0}.pagination a,.pagination span{min-width:30px;height:30px;margin:0 3px;padding:0 11px;border-radius:30px!important;color:#999;background:0 0;text-transform:uppercase;display:inline-block}.pagination a:focus,.pagination a:hover{color:#999;background-color:#eee}.pagination span:not(.dots):focus,.pagination span:not(.dots):hover{color:#999;background-color:#eee}.pagination span.current,.pagination span.current:focus,.pagination span.current:hover{border-color:#9c27b0;color:#fff;background-color:#9c27b0;-webkit-box-shadow:0 4px 5px 0 rgba(156,39,176,.14),0 1px 10px 0 rgba(156,39,176,.12),0 2px 4px -1px rgba(156,39,176,.2);box-shadow:0 4px 5px 0 rgba(156,39,176,.14),0 1px 10px 0 rgba(156,39,176,.12),0 2px 4px -1px rgba(156,39,176,.2)}.pagination .next.page-numbers:after{content:" \00bb"}.pagination .prev.page-numbers:before{content:"\00ab "}.label{padding:5px 12px;border-radius:12px;text-transform:uppercase}.label.label-default{background-color:#999}.card,.card-no-width{display:inline-block;position:relative;margin-bottom:30px;border-radius:6px;color:rgba(0,0,0,.87);background:#fff;max-width:100%;-webkit-box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);-moz-box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12)}.card .card-image,.card-no-width .card-image{overflow:hidden;position:relative;height:60%;margin-top:-30px;margin-right:15px;margin-left:15px;border-radius:6px;-webkit-transition:all .3s cubic-bezier(.34,1.61,.7,1);-moz-transition:all .3s cubic-bezier(.34,1.61,.7,1);-o-transition:all .3s cubic-bezier(.34,1.61,.7,1);-ms-transition:all .3s cubic-bezier(.34,1.61,.7,1);transition:all .3s cubic-bezier(.34,1.61,.7,1);-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0)}.card .card-image img,.card-no-width .card-image img{width:100%;height:100%;margin:0!important;border-radius:6px}.card .category:not([class*=text-]),.card-no-width .category:not([class*=text-]){color:#999}.card .content,.card-no-width .content{padding:15px 30px}.card .header,.card-no-width .header{margin:15px;padding:15px 0;border-radius:3px;background-color:#fff}.card .content-primary,.card .header-primary,.card-no-width .content-primary,.card-no-width .header-primary{background:-webkit-linear-gradient(30deg,#ab47bc,#7b1fa2);background:linear-gradient(60deg,#ab47bc,#7b1fa2)}.card [class*=content-],.card [class*=content-] .author a:active,.card [class*=content-] .author a:focus,.card [class*=content-] .author a:hover,.card [class*=content-] .card-title,.card [class*=content-] .card-title a,.card [class*=content-] .icon i,.card [class*=header-],.card [class*=header-] .author a:active,.card [class*=header-] .author a:focus,.card [class*=header-] .author a:hover,.card [class*=header-] .card-title,.card [class*=header-] .card-title a,.card [class*=header-] .icon i,.card-no-width [class*=content-],.card-no-width [class*=content-] .author a:active,.card-no-width [class*=content-] .author a:focus,.card-no-width [class*=content-] .author a:hover,.card-no-width [class*=content-] .card-title,.card-no-width [class*=content-] .card-title a,.card-no-width [class*=content-] .icon i,.card-no-width [class*=header-],.card-no-width [class*=header-] .author a:active,.card-no-width [class*=header-] .author a:focus,.card-no-width [class*=header-] .author a:hover,.card-no-width [class*=header-] .card-title,.card-no-width [class*=header-] .card-title a,.card-no-width [class*=header-] .icon i{color:#fff}.card [class*=content-] .icon i,.card [class*=header-] .icon i,.card-no-width [class*=content-] .icon i,.card-no-width [class*=header-] .icon i{border-color:rgba(255,255,255,.25)}.card [class*=content-] .author a,.card [class*=content-] .card-description,.card [class*=content-] .category,.card [class*=content-] .footer .stats,.card [class*=content-] h1 small,.card [class*=content-] h2 small,.card [class*=content-] h3 small,.card [class*=header-] .author a,.card [class*=header-] .card-description,.card [class*=header-] .category,.card [class*=header-] .footer .stats,.card-no-width [class*=content-] .author a,.card-no-width [class*=content-] .card-description,.card-no-width [class*=content-] .category,.card-no-width [class*=content-] .footer .stats,.card-no-width [class*=content-] h1 small,.card-no-width [class*=content-] h2 small,.card-no-width [class*=content-] h3 small,.card-no-width [class*=header-] .author a,.card-no-width [class*=header-] .card-description,.card-no-width [class*=header-] .category,.card-no-width [class*=header-] .footer .stats{color:rgba(255,255,255,.8)}.card [class*=content-],.card-no-width [class*=content-]{border-radius:6px}.card img,.card-no-width img{width:100%;height:auto}.card .category i,.card-no-width .category i{position:relative;top:6px}.card .author .avatar,.card-no-width .author .avatar{overflow:hidden;width:30px;height:30px;margin-right:5px;border-radius:50%}.card .author a,.card-no-width .author a{color:#3c4858;text-decoration:none}.card .author .date,.card-no-width .author .date{display:none}.card .footer,.card-no-width .footer{margin-top:15px}.card .footer div,.card-no-width .footer div{display:inline-block!important}.card .footer .author,.card .footer .stats,.card-no-width .footer .author,.card-no-width .footer .stats{color:#999}.card .footer .stats,.card-no-width .footer .stats{float:right}.card .footer .stats i,.card-no-width .footer .stats i{position:relative;top:4px}.card .checkbox,.card-no-width .checkbox{margin-top:16px}.card{width:100%}@media (max-width:768px){.card-no-width{width:100%}}.card-contact .header{margin-top:-20px;padding:17px 10px}.card-plain{background:0 0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.card-plain .content{padding-right:5px;padding-left:5px}.card-plain .card-image{margin:0;border-radius:3px}.card-plain .card-image a{display:block}.card-plain .card-image img{border-radius:3px}.card-form-horizontal .content{padding-right:15px;padding-left:15px}.card-form-horizontal .form-group{margin:3px 0 0;padding-bottom:0}.card-form-horizontal .form-group .form-control{margin-bottom:0}.card-form-horizontal .btn{margin:0}.card-form-horizontal .input-group .input-group-addon{padding-left:0}.card-profile{margin-top:30px;text-align:center}.card-profile .card-avatar{overflow:hidden;max-width:130px;max-height:130px;margin:-50px auto 0;border-radius:50%}.card-profile.card-plain .card-avatar{margin-top:0}.card-testimonial{margin-top:30px;text-align:center}.card-testimonial .card-avatar{max-width:100px;max-height:100px;margin:30px auto 0}.card-testimonial .card-avatar img{overflow:hidden;max-width:130px;max-height:130px;margin:-50px auto 0;border-radius:50%}.card-testimonial .card-avatar+.content{margin-top:15px}.card-blog{margin-top:30px}.card-blog.sticky{padding:20px}.card-blog.sticky.layout-alternative2{padding:0 20px;margin-top:50px}.card-blog.sticky.layout-alternative2 .card-header-image{margin-top:-20px}.card-blog.sticky .card-image{margin-left:0;margin-right:0}.card-blog.sticky .featured-alt-2{padding-bottom:15px}.card-blog .row .category{margin-bottom:0}.card-blog .row .category a{color:#00bcd4}.card-blog .card-title{margin-top:5px}.card-blog a.more-link,.card-blog a.moretag{display:inline-block;margin-left:5px;color:#23527c}.card-blog a.more-link:hover,.card-blog a.moretag:hover{color:#89229b}.card-background{background-position:center center;background-size:cover;text-align:center}.card-background .content{position:relative;z-index:2;max-width:440px;min-height:280px;margin:0 auto;padding-top:40px;padding-bottom:40px}.card-background .card-title{margin-top:10px;color:#fff}.card-background:after{display:block;position:absolute;z-index:1;top:0;left:0;width:100%;height:100%;border-radius:6px;opacity:0;background-color:rgba(0,0,0,.56);content:""}.card-background:hover:after{opacity:1}.img-thumbnail{border-radius:16px}.iframe-container iframe{width:100%}.card .card-image,.card .header,.card-no-width .card-image,.card-no-width .header,.card-profile .card-avatar,.card-raised,.card-testimonial .card-avatar img,.iframe-container iframe,.img-raised{-webkit-box-shadow:0 16px 38px -12px rgba(0,0,0,.56),0 4px 25px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2);-moz-box-shadow:0 16px 38px -12px rgba(0,0,0,.56),0 4px 25px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2);box-shadow:0 16px 38px -12px rgba(0,0,0,.56),0 4px 25px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2)}.table,table{width:100%}.table>thead>tr>th,table>thead>tr>th{border-bottom-width:1px;padding:12px 8px;vertical-align:middle}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,table>tbody>tr>td,table>tbody>tr>th,table>tfoot>tr>td,table>tfoot>tr>th,table>thead>tr>td{padding:12px 8px;vertical-align:middle}.table>tbody>tr,table>tbody>tr{border-bottom:1px solid #eee}.table>tbody>tr:last-child,table>tbody>tr:last-child{border-bottom:0}.header-layout-classic-blog.page:not(.home):not(.archive) .main-raised{border-radius:0}.header-layout-classic-blog:not(.page-template-default):not(.home):not(.archive) .main-raised,.header-layout-classic-blog:not(.page-template-default):not(.home):not(.archive).single .main-raised,.header-layout-classic-blog:not(.page-template-default):not(.home):not(.archive).woocommerce.archive .main-raised{margin-top:0}.carousel #parallax_move{width:100%;height:100%;position:absolute}.carousel #parallax_move .layer{background-size:cover;width:100%;height:100%;background-position:top center}.carousel #parallax_move .layer2{position:absolute;top:0}.carousel .btn{margin:0}.carousel .page-header{display:flex;z-index:-2}.carousel .page-header .row{display:flex;align-items:center;padding:0 15px;margin:0;flex:1;max-width:100%}.carousel .carousel-control.left,.carousel .carousel-control.right{z-index:0;background-image:none}.carousel .item{text-align:center}.carousel .item .container{display:flex;position:relative;padding:100px 0}.carousel .carousel-control{text-shadow:none;display:flex;align-items:center;justify-content:center}.carousel .carousel-control.left{right:auto;left:0}.carousel .carousel-control.right{right:0}.carousel .carousel-control i{display:inline-block;position:absolute;z-index:5}.carousel .buttons .btn-left+.btn-right{margin-left:30px}.wp-custom-header iframe,.wp-custom-header img,.wp-custom-header video{width:100%;position:absolute;left:50%;top:50%;max-width:100%;-ms-transform:translateX(-50%) translateY(-50%);-moz-transform:translateX(-50%) translateY(-50%);-webkit-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%);z-index:-1}.wp-custom-header img{-o-object-fit:cover;object-fit:cover;height:100%}.wp-custom-header .wp-custom-header-video-button{display:none}#carousel-hestia-generic .carousel{overflow:hidden}.big-title-sidebar-wrapper .widget{padding:30px 0}.big-title-sidebar-wrapper .pirate-forms-contact-widget{background:#fff;color:#3c4858;padding:10px;border-radius:6px;-webkit-box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);-moz-box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12)}.hestia-slider-alignment-left .pirate-forms-contact-widget{margin-left:auto}.hestia-slider-alignment-left .widget_media_image img{display:block;margin-left:auto}.hestia-slider-alignment-right .pirate-forms-contact-widget{margin-right:auto}.hestia-slider-alignment-right .widget_media_image img{display:block;margin-right:auto}@media (max-width:1600px){.carousel-control.left{width:50px}.carousel-control.left i{left:10px}.carousel-control.right{width:50px}.carousel-control.right i{right:10px}}@media all and (-ms-high-contrast:none),(-ms-high-contrast:active){.carousel .page-header .container{display:table;min-height:inherit}.carousel .page-header .container .row{display:table-row}.carousel .page-header .container .row .big-title-slider-content{display:table-cell;vertical-align:middle;float:none;margin:auto}.carousel .page-header .container .row .big-title-slider-content.col-md-7{display:table-cell;vertical-align:middle;float:none;margin:auto}.carousel .page-header .container .row .big-title-sidebar-wrapper.col-md-5{display:table-cell;vertical-align:middle;float:none;margin:auto}.carousel .carousel-control i{left:50%}}.section-gray{background:#f0f0f0}.section{padding:70px 0}.section-dark,.section-image{background:#232323;background:-webkit-gradient(radial,center center,0,center center,100%,color-stop(0,#585858),color-stop(100%,#232323));background:-webkit-radial-gradient(center,ellipse cover,#585858 0,#232323 100%);background:-webkit-radial-gradient(center ellipse,#585858 0,#232323 100%);background:radial-gradient(ellipse at center,#585858 0,#232323 100%);background-color:#343434;background-size:200% 240%;background-size:550% 450%}.section-dark .card-plain .card-title,.section-dark .card-plain .icon i,.section-dark .card-plain [class*=text-],.section-dark .card-plain ul li b,.section-dark .hestia-title,.section-dark .title,.section-image .card-plain .card-title,.section-image .card-plain .icon i,.section-image .card-plain [class*=text-],.section-image .card-plain ul li b,.section-image .hestia-title,.section-image .title{color:#fff}.section-dark .card-plain .card-description,.section-dark .card-plain .icon,.section-dark .description,.section-image .card-plain .card-description,.section-image .card-plain .icon,.section-image .description{color:#eaeaea}.section-dark .card-plain .category,.section-image .card-plain .category{color:rgba(255,255,255,.5)}.section-image{position:relative;-webkit-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:unset}.section-image:after{display:block;position:absolute;z-index:1;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.7);content:""}.section-image .container{position:relative;z-index:2}.section,.section-image{background-position:center center;background-size:cover}.features,.hestia-blogs,.hestia-features,.hestia-testimonials,.hestia-work,.products,.subscribe-line{padding:65px 0 70px}.wrapper.classic-blog .title-in-content,.wrapper.no-content .title-in-content{margin-top:0;margin-bottom:15px}.wrapper.classic-blog .hestia-blogs,.wrapper.no-content .hestia-blogs{padding-top:40px}@media (max-width:768px){.wrapper.classic-blog .hestia-blogs,.wrapper.no-content .hestia-blogs{padding-top:30px}}.wrapper.classic-blog .section,.wrapper.no-content .section{padding-top:40px}@media (max-width:768px){.wrapper.classic-blog .section,.wrapper.no-content .section{padding-top:30px}}.image-in-page-wrapper{margin-bottom:20px}.image-in-page{margin-bottom:30px}.about,.hestia-about{padding:65px 0 30px}.hestia-team,.team{padding:65px 0 20px}.hestia-testimonials,.testimonials{padding:65px 0 40px}.contactus{padding:90px 0 70px}.pricing{padding:100px 0 70px}@media (min-width:992px){.home #blog.hestia-blogs .row,.home .hestia-clients-bar .row,.home .hestia-features .row,.home .hestia-team .row,.home .hestia-testimonials .row,.home .hestia-work .row{text-align:center}.home #blog.hestia-blogs .hestia-blog-item,.home .feature-box,.home .hestia-clients-bar .col-md-3,.home .hestia-team .col-sm-6,.home .hestia-testimonials .col-md-4,.home .hestia-work .col-md-4,.home .hestia-work .col-md-6{display:inline-block;float:none!important;margin-right:-4px;margin-left:-4px;vertical-align:top}.home .hestia-blog-item{text-align:left}}@media (min-width:480px){.home #blog.hestia-blogs .row,.home .hestia-clients-bar .row,.home .hestia-features .row,.home .hestia-team .row,.home .hestia-testimonials .row,.home .hestia-work .row{text-align:center}.home #blog.hestia-blogs .hestia-blog-item,.home .feature-box,.home .hestia-clients-bar .col-md-3,.home .hestia-team .col-sm-6,.home .hestia-testimonials .col-sm-6,.home .hestia-work .portfolio-item{display:inline-block;float:none!important;margin-right:-4px;margin-left:-4px;vertical-align:top}}.hestia-about{background-attachment:fixed;color:#999}.hestia-about h1,.hestia-about h2,.hestia-about h3,.hestia-about h4,.hestia-about h5{color:#3c4858;text-decoration:none;word-wrap:break-word;font-family:"Roboto Slab","Times New Roman",serif}.hestia-about.section-image{color:#fefefe}.hestia-about.section-image h1,.hestia-about.section-image h2,.hestia-about.section-image h3,.hestia-about.section-image h4,.hestia-about.section-image h5{color:#fff}.hestia-about.section-image h6{color:rgba(255,255,255,.76)}.hestia-about .customizer-hidden{display:none}.is-ios .hestia-about,.is-ios .hestia-ribbon{background-attachment:scroll}.hestia-work .portfolio-item{margin-top:30px;cursor:pointer}.hestia-work .card-background .content{padding-bottom:50px;opacity:0}.hestia-work .col-md-4 .card-background .content{padding-top:30%}.hestia-work .col-md-6 .card-background .content{padding-top:20%}.hestia-work .card-background:hover a:hover{opacity:1}.hestia-work .card-background:hover .content{opacity:1;-webkit-transition:all ease .5s;transition:all ease .5s}.hestia-work .portfolio-item:nth-child(6n) .label{background-color:#4caf50}.hestia-work .portfolio-item:nth-child(6n+1) .label{background-color:#89229b}.hestia-work .portfolio-item:nth-child(6n+2) .label{background-color:#00bcd4}.hestia-work .portfolio-item:nth-child(6n+3) .label{background-color:#f44336}.hestia-work .portfolio-item:nth-child(6n+4) .label{background-color:#ff9800}.hestia-work .portfolio-item:nth-child(6n+5) .label{background-color:#e91e63}.hestia-portfolio-modal .header-filter-gradient{border-radius:6px 6px 0 0;background-size:cover;background-repeat:no-repeat;background-position:center;z-index:1}.hestia-portfolio-modal{background:rgba(0,0,0,.7)}.hestia-portfolio-modal .modal-header{position:relative;border-radius:6px 6px 0 0}.hestia-portfolio-modal .modal-header h3{margin:0;padding:104px 0;color:#fff}.hestia-portfolio-modal .modal-header:before{border-radius:6px 6px 0 0}.hestia-portfolio-modal .modal-header a{color:#fff;z-index:2}.hestia-portfolio-modal .modal-header a:hover{color:#fff}.hestia-portfolio-modal .modal-header:after{background-color:rgba(0,0,0,.5);border-radius:6px 6px 0 0}.hestia-portfolio-modal .modal-header .close{z-index:3;font-size:30px;background:0 0;float:right;box-shadow:none;line-height:16px;margin:0;padding:10px}.hestia-portfolio-modal .modal-header .portfolio-title-container{position:relative;z-index:2}.hestia-portfolio-modal .modal-content{border-radius:6px}.hestia-portfolio-modal .modal-content .modal-body{padding:40px}.hestia-portfolio-modal .modal-content .portfolio-loading{padding:20px 0}.contactus .content .row{padding:0}.contactus .col-md-offset-2{padding:0 20px}.contactus .form-group{margin:0;padding-bottom:24px}.contactus .pirate-forms-footer .form-group{padding-bottom:0}.contactus .card .content{padding:30px 30px 0}.contactus .pirate_forms_wrap{float:none}.contactus .pirate_forms_wrap #pirate-forms-contact-message{height:130px}.contactus .pirate_forms_wrap .form_field_wrap{margin-bottom:17px}.contactus .pirate_forms_wrap .btn{margin:0}.contactus .pirate_forms_wrap .pirateform_wrap_classes_spam_wrap{color:#aaa;font-weight:400}.contactus .contact_message_wrap{margin-bottom:0}.contactus .contact_submit_wrap{text-align:right;margin-bottom:0}.contactus .hestia-info,.contactus .info{margin:0;padding:0}.contactus .hestia-info,.contactus .hestia-info a:not(.btn),.contactus .hestia-info p,.contactus .info,.contactus .info a:not(.btn),.contactus .info p{color:#ccc}.contactus .hestia-info a:not(.btn):hover,.contactus .info a:not(.btn):hover{text-decoration:underline}.contactus .hestia-info:first-child,.contactus .info:first-child{margin-top:30px}.contactus .hestia-info .info-title,.contactus .info .info-title{margin-top:20px;color:#fff}.contactus .hestia-info .icon,.contactus .info .icon{margin-top:14px;color:#fff}.contactus h5.description{color:#ccc}.contactus .card-contact{margin-top:30px}.contactus .pirate_forms_wrap .pirate-forms-footer{display:block}.contactus .pirate_forms_wrap .pirate-forms-footer .form_captcha_wrap{display:block}.contactus .pirate_forms_wrap .pirate-forms-footer .form_captcha_wrap>div>div{margin:0 auto 20px}.contactus .pirate_forms_wrap .pirate-forms-footer .form_captcha_wrap+.contact_submit_wrap{text-align:center;display:block}.pirate_forms_wrap .pirate-forms-footer .form_field_wrap.contact_submit_wrap{width:100%;text-align:right}.pirate-forms-maps-custom span:after,.pirate-forms-maps-custom span:before{content:'';position:absolute;top:0;bottom:0;margin:auto}.pirate-forms-maps-custom span:before{background:0 0;border:1px solid #aaa;border-radius:3px;left:0;height:18px;width:18px}.pirate-forms-maps-custom span:after{content:'\f00c';font-family:"Font Awesome 5 Free";font-weight:900;left:2px;top:1px;color:transparent}.pirate-forms-maps-custom input[type=checkbox]{display:none}.pirate-forms-maps-custom label{color:#aaa;cursor:pointer;font-weight:100;margin:8px 0;padding-left:20px;position:relative}.pirate-forms-maps-custom input[type=checkbox]:checked+label span:after{color:#787878}.pirate-forms-file-upload-input,.pirate_forms_three_inputs_wrap .form_field_wrap input.pirate-forms-file-upload-input{height:50px;padding:0 15px;margin:10px 0 0}.features,.hestia-features{padding:75px 0 55px;text-align:center}.features .hestia-title,.features .title,.hestia-features .hestia-title,.hestia-features .title{margin-top:10px}.features .hestia-info,.features .info,.hestia-features .hestia-info,.hestia-features .info{padding:70px 0 30px;margin:0 auto}.features .feature-box .card,.hestia-features .feature-box .card{width:auto;overflow:hidden;margin-bottom:0}.features .feature-box img,.hestia-features .feature-box img{max-width:150px}.hestia-info,.info{max-width:360px}.hestia-info a:hover .icon,.hestia-info a:hover .info-title,.info a:hover .icon,.info a:hover .info-title{opacity:.75}.hestia-info a:hover .icon,.info a:hover .icon{transform:scale(1.05) translateY(-5px)}.hestia-info .icon,.info .icon{transition:.3s ease;color:#999}.hestia-info .info-title,.info .info-title{transition:.3s ease;margin:30px 0 15px;color:#3c4858}.hestia-info p,.info p{color:#999}.info-horizontal .icon{float:left;margin-top:24px;margin-right:10px}.info-horizontal .description{overflow:hidden}.icon.icon-primary{color:#9c27b0}.icon.icon-success{color:#4caf50}.icon.icon-danger{color:#f44336}.icon.icon-rose{color:#e91e63}.hestia-team .col-xs-6,.team .col-xs-6{padding-left:0;padding-right:0}.hestia-team .btn-just-icon,.team .btn-just-icon{transition:.3s ease}.hestia-team .btn-just-icon:hover,.team .btn-just-icon:hover{opacity:.75}.hestia-team .card,.team .card{text-align:left}.hestia-team .card .content,.team .card .content{padding-top:0}.hestia-team .card .content a:hover>.card-title,.team .card .content a:hover>.card-title{opacity:.75}.hestia-team .card .footer,.team .card .footer{margin-left:-12px;margin-top:0}.hestia-team h5.description,.team h5.description{margin-bottom:70px}.hestia-team img,.team img{transition:1s ease-in}.hestia-team .card-image a:hover,.team .card-image a:hover{opacity:1}.hestia-team .card-image a:hover img,.team .card-image a:hover img{-webkit-transform:scale3d(1.1,1.1,1);transform:scale3d(1.1,1.1,1)}.authors-on-blog{background:#121417;background:-moz-linear-gradient(top,#121417 0,#323437 100%);background:-webkit-gradient(left top,left bottom,color-stop(0,#121417),color-stop(100%,#323437));background:-webkit-linear-gradient(top,#121417 0,#323437 100%);background:-o-linear-gradient(top,#121417 0,#323437 100%);background:-ms-linear-gradient(top,#121417 0,#323437 100%);background:linear-gradient(to bottom,#121417 0,#323437 100%);background-position:center center;background-size:cover}.authors-on-blog .card-title{color:#fff}.authors-on-blog .footer a:hover{color:#fff}.footer-menu a[href*="facebook.com"],.hestia-team .footer a[href*="facebook.com"],.team .footer a[href*="facebook.com"]{color:#3b5998}.footer-menu a[href*="twitter.com"],.hestia-team .footer a[href*="twitter.com"],.team .footer a[href*="twitter.com"]{color:#55acee}.footer-menu a[href*="pinterest.com"],.hestia-team .footer a[href*="pinterest.com"],.team .footer a[href*="pinterest.com"]{color:#cc2127}.footer-menu a[href*="google.com"],.hestia-team .footer a[href*="google.com"],.team .footer a[href*="google.com"]{color:#dd4b39}.footer-menu a[href*="linkedin.com"],.hestia-team .footer a[href*="linkedin.com"],.team .footer a[href*="linkedin.com"]{color:#0976b4}.footer-menu a[href*="dribbble.com"],.hestia-team .footer a[href*="dribbble.com"],.team .footer a[href*="dribbble.com"]{color:#ea4c89}.footer-menu a[href*="github.com"],.hestia-team .footer a[href*="github.com"],.team .footer a[href*="github.com"]{color:#000}.footer-menu a[href*="youtube.com"],.hestia-team .footer a[href*="youtube.com"],.team .footer a[href*="youtube.com"]{color:#e52d27}.footer-menu a[href*="instagram.com"],.hestia-team .footer a[href*="instagram.com"],.team .footer a[href*="instagram.com"]{color:#125688}.footer-menu a[href*="reddit.com"],.hestia-team .footer a[href*="reddit.com"],.team .footer a[href*="reddit.com"]{color:#ff4500}.footer-menu a[href*="tumblr.com"],.hestia-team .footer a[href*="tumblr.com"],.team .footer a[href*="tumblr.com"]{color:#35465c}.footer-menu a[href*="behance.com"],.hestia-team .footer a[href*="behance.com"],.team .footer a[href*="behance.com"]{color:#1769ff}.footer-menu a[href*="snapchat.com"],.hestia-team .footer a[href*="snapchat.com"],.team .footer a[href*="snapchat.com"]{color:#fffc00}.footer-menu a[href*="deviantart.com"],.hestia-team .footer a[href*="deviantart.com"],.team .footer a[href*="deviantart.com"]{color:#05cc47}.footer-menu a[href*="vimeo.com"],.hestia-team .footer a[href*="vimeo.com"],.team .footer a[href*="vimeo.com"]{color:#1ab7ea}.card-pricing{text-align:center}.card-pricing .card-title{margin-top:30px}.card-pricing .content{padding:15px!important}.card-pricing small:first-child{position:relative;top:-17px}.card-pricing ul{max-width:240px;margin:10px auto;padding:0;list-style:none}.card-pricing ul li{padding:12px 0;border-bottom:1px solid rgba(153,153,153,.3);color:#999;text-align:center}.card-pricing ul li:last-child{border:0}.card-pricing ul li b{color:#3c4858}.card-pricing .hestia-pricing-icon-wrapper{border-radius:50%;border:1px solid #e5e5e5;width:80px;height:80px;margin:10px auto 0}.card-pricing .hestia-pricing-icon-wrapper i{color:inherit;font-size:30px;line-height:80px}.card-pricing .hestia-pricing-icon-wrapper.pricing-has-icon+.card-title{font-size:25px;margin-top:20px}.card-pricing .hestia-pricing-icon-wrapper.pricing-has-icon+.card-title small{color:inherit;top:0;font-size:inherit;font-weight:inherit;line-height:inherit}.card-pricing .card-pricing.card-plain .hestia-pricing-icon-wrapper{border-color:#d6d1d1}.hestia-ribbon{background-attachment:fixed;padding:100px 0}@media (max-width:991px){.hestia-subscribe-button{margin-top:40px}}.subscribe-line{padding:65px 0}.subscribe-line .card{margin-top:30px}.subscribe-line .card .content .row{margin:0}.subscribe-line .card .input-group{display:table}.subscribe-line .card .input-group .input-group-addon{display:table-cell;padding:0 15px 0 0;width:1%}.subscribe-line .card .input-group .form-group{display:table-cell;padding-bottom:0}.subscribe-line .card .btn,.subscribe-line .card input[type=button],.subscribe-line .card input[type=submit]{white-space:nowrap}.subscribe-line.subscribe-line-image{position:relative;background-position:top center;background-size:cover}.subscribe-line.subscribe-line-image .hestia-title,.subscribe-line.subscribe-line-image .title{color:#fff}.subscribe-line.subscribe-line-image:after{display:block;position:absolute;z-index:1;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.66);content:""}.subscribe-line.subscribe-line-image .container{position:relative;z-index:2}.subscribe-line .card h5,.subscribe-line .sib_loader{display:none!important}#sib_signup_form_1{text-align:center}#sib_signup_form_1 .input-group-addon{width:20px;display:inline-block;vertical-align:bottom;text-align:center;margin-right:10px;font-size:16px;margin-bottom:15px}#sib_signup_form_1 p.form-group{display:inline-block;width:calc(100% - 30px);margin-bottom:15px;text-align:left;position:relative;z-index:0}#sib_signup_form_1 p.form-group label{z-index:-1;top:10px;position:absolute;font-weight:400;color:#909090}#sib_signup_form_1 p.form-group:not(.is-empty) label{display:none}.hestia-blogs article .card-image img{transition:1s ease-out}.hestia-blogs article .card-image a:hover{opacity:1}.hestia-blogs article .card-image a:hover img{-webkit-transform:scale3d(1.1,1.1,1);transform:scale3d(1.1,1.1,1)}.hestia-blogs article .category a:not(:last-child):after{content:", "}.footer .widget h5{margin-bottom:20px}.footer a{color:#3c4858}.footer-big{color:#999;padding:30px 0 18px;text-align:center}.footer-big ul{margin-bottom:0;padding:0;list-style:none}.footer-big ul li a{display:inline-block;position:relative;padding:5px 0;border-radius:3px;text-decoration:none;text-transform:uppercase}.footer-big ul li a:hover{text-decoration:none}.footer-big ul li .btn{margin:0}.footer-big p{color:#999}.footer-big .footer-menu li{display:inline-block}.footer-big .footer-menu li a{padding:15px}.footer-big .copyright{padding:15px 0}.footer-big .content{text-align:left}.footer-big hr{margin-top:10px}footer.footer{background:#fff}footer.footer.footer-black{background:#323437}footer.footer.footer-black a{opacity:.86;color:#fff}footer.footer.footer-black a:focus,footer.footer.footer-black a:hover{opacity:1}footer.footer.footer-black .copyright,footer.footer.footer-black h4,footer.footer.footer-black h5,footer.footer.footer-black i{color:#fff}footer.footer.footer-black hr{border-color:rgba(255,255,255,.2)}.hestia-bottom-footer-content{position:relative}.hestia-center{width:100%;text-align:center}.footer-big .footer-menu li a[href*="mailto:"],.footer-big .footer-menu li a[href*="tel:"]{color:transparent;padding:10px}.footer-big .footer-menu li a[href*="mailto:"]:before,.footer-big .footer-menu li a[href*="tel:"]:before{color:#fff;font-family:"Font Awesome 5 Brands";font-weight:900}.footer-big .footer-menu li a[href*="mailto:"]:hover:before,.footer-big .footer-menu li a[href*="tel:"]:hover:before{color:#999}.footer-big .footer-menu li a[href*="mailto:"]:before,.footer-big .footer-menu li a[href*="tel:"]:before{display:inline-block;width:16px;height:16px;background-repeat:no-repeat;content:'';background-color:#fff}.footer-big .footer-menu li a[href*="mailto:"]:before{mask-image:url('data:image/svg+xml;utf8,');-webkit-mask-image:url('data:image/svg+xml;utf8,')}.footer-big .footer-menu li a[href*="tel:"]:before{mask-image:url('data:image/svg+xml;utf8,');-webkit-mask-image:url('data:image/svg+xml;utf8,')}.hestia-scroll-to-top{position:fixed;bottom:15px;right:15px;z-index:999;opacity:0;transition:opacity .25s ease-in-out;-moz-transition:opacity .25s ease-in-out;-webkit-transition:opacity .25s ease-in-out;padding:0;margin:0;border-radius:50%;width:50px;height:50px;text-align:center;line-height:50px;font-size:20px;background-color:#999;-webkit-box-shadow:none;box-shadow:none}.hestia-scroll-to-top:hover{background-color:#999;-webkit-box-shadow:0 14px 26px -12px rgba(49,49,49,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(49,49,49,.42);box-shadow:0 14px 26px -12px rgba(49,49,49,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(49,49,49,.2)}.hestia-scroll-to-top:focus{background-color:#999;-webkit-box-shadow:0 14px 26px -12px rgba(49,49,49,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(49,49,49,.42);box-shadow:0 14px 26px -12px rgba(49,49,49,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(49,49,49,.2)}.hestia-scroll-to-top svg{fill:#fff}.hestia-fade{opacity:1}.hestia-top-bar{height:40px;max-height:40px}.hestia-top-bar .col-md-12,.hestia-top-bar .col-md-6{max-height:40px}.hestia-top-bar .col-md-12.pull-right,.hestia-top-bar .col-md-6.pull-right{text-align:right}.hestia-top-bar .col-md-12.pull-right .widget.widget_shopping_cart .cart_list,.hestia-top-bar .col-md-6.pull-right .widget.widget_shopping_cart .cart_list{left:auto;right:0}.hestia-top-bar .col-md-12 li a:before,.hestia-top-bar .col-md-6 li a:before{font-family:"Font Awesome 5 Brands"}.hestia-top-bar .widget{margin:0 10px 0 0}.hestia-top-bar .widget:last-of-type{margin-right:0}.hestia-top-bar .widget,.hestia-top-bar .widget .textwidget,.hestia-top-bar .widget h5{display:inline-block}.hestia-top-bar .widget h5{margin:0 5px 0 0}.hestia-top-bar .widget .btn{padding:3px 10px}.hestia-top-bar .widget.widget_categories h5,.hestia-top-bar .widget.widget_nav_menu h5,.hestia-top-bar .widget.widget_product_categories h5{display:none}.hestia-top-bar .widget.widget_product_search button[type=submit],.hestia-top-bar .widget.widget_product_search h5,.hestia-top-bar .widget.widget_search button[type=submit],.hestia-top-bar .widget.widget_search h5{display:none}.hestia-top-bar .widget.widget_product_search .label-floating,.hestia-top-bar .widget.widget_search .label-floating{display:inline-block;margin:0;padding:0;width:auto}.hestia-top-bar .widget.widget_product_search .label-floating .control-label,.hestia-top-bar .widget.widget_search .label-floating .control-label{padding:0}.hestia-top-bar .widget.widget_product_search .label-floating.is-empty .control-label,.hestia-top-bar .widget.widget_search .label-floating.is-empty .control-label{position:absolute;left:25px;top:12px;right:-25px;margin-top:0;text-align:left;opacity:1}.hestia-top-bar .widget.widget_product_search .label-floating.is-focused .control-label,.hestia-top-bar .widget.widget_search .label-floating.is-focused .control-label{opacity:0}.hestia-top-bar .widget.widget_product_search .label-floating:not(.is-empty) .control-label,.hestia-top-bar .widget.widget_search .label-floating:not(.is-empty) .control-label{opacity:0;left:25px;top:12px}.hestia-top-bar .widget.widget_product_search form:not(.form-group),.hestia-top-bar .widget.widget_search form:not(.form-group){opacity:0}.hestia-top-bar .widget.widget_product_search form.form-group,.hestia-top-bar .widget.widget_search form.form-group{opacity:1}.hestia-top-bar .widget.widget_product_search form.form-group input[type=search],.hestia-top-bar .widget.widget_search form.form-group input[type=search]{background:0 0;border:none;float:none;margin:2px 25px 0 25px;width:auto}.hestia-top-bar .widget.widget_product_search form.form-group input[type=submit],.hestia-top-bar .widget.widget_search form.form-group input[type=submit]{display:none}.hestia-top-bar .widget.widget_product_search form.form-group:after,.hestia-top-bar .widget.widget_search form.form-group:after{display:none}.hestia-top-bar .widget.widget_product_search form.form-group:before,.hestia-top-bar .widget.widget_search form.form-group:before{content:"";position:absolute;left:0;top:50%;width:18px;height:18px;mask-image:url('data:image/svg+xml;utf8,');-webkit-mask-image:url('data:image/svg+xml;utf8,');background-color:#fff;transform:translateY(-50%)}.hestia-top-bar .widget.widget_search .search-form{display:inline-block}.hestia-top-bar ul li{cursor:auto;display:inline-block;margin:0 5px}.hestia-top-bar ul li:first-child{margin-left:0}.hestia-top-bar ul li:last-child{margin-right:0}.hestia-top-bar ul li a{padding:0;text-transform:inherit}.hestia-top-bar ul li a:focus,.hestia-top-bar ul li a:hover{background-color:transparent;outline:0}.hestia-top-bar ul li a[href*="mailto:"]:before,.hestia-top-bar ul li a[href*="tel:"]:before{margin-right:7px;display:inline-block;width:16px;height:16px;background-repeat:no-repeat;content:'';background-color:#fff;vertical-align:text-bottom}.hestia-top-bar ul li a[href*="tel:"]:before{mask-image:url('data:image/svg+xml;utf8,');-webkit-mask-image:url('data:image/svg+xml;utf8,')}.hestia-top-bar ul li a[href*="mailto:"]:before{mask-image:url('data:image/svg+xml;utf8,');-webkit-mask-image:url('data:image/svg+xml;utf8,')}.hestia-top-bar ul li.dropdown .caret{display:none}.hestia-top-bar.placeholder{box-sizing:content-box;border:2px dashed}.hestia-top-bar.placeholder .top-widgets-placeholder{display:inline-block;cursor:pointer;position:relative;vertical-align:top}.hestia-clients-bar{padding:70px 0}.hestia-clients-bar .clients-bar-wrapper{list-style-type:none;margin:0;padding:0}.hestia-clients-bar .clients-bar-wrapper li{display:inline-block;margin:25px;vertical-align:middle}.hestia-clients-bar .clients-bar-wrapper li a{display:block;padding:5px}.hestia-clients-bar .clients-bar-wrapper li img{max-width:100%;height:auto}.hestia-clients-bar .row>div{padding:30px}.error404 .search-form,.search-no-results .search-form{margin-top:40px}#authors-on-blog{padding:80px 0}#authors-on-blog .card-profile{text-align:left}#authors-on-blog .col-ms-6:nth-child(2n+1){clear:both}.blog-post{word-wrap:break-word}.blog-post .section-text{padding-bottom:0}.blog-post .section-text p{margin-bottom:30px}.blog-post .section-blog-info{padding-top:15px}.blog-post .section-blog-info .entry-categories span{font-size:10px}.blog-post .section-blog-info .entry-categories,.blog-post .section-blog-info .entry-tags{word-break:break-all}.blog-post .section-blog-info .entry-categories span,.blog-post .section-blog-info .entry-tags span{display:inline-block;margin:5px}.blog-post .section-blog-info .entry-categories a{display:inline-block;padding:2px 2px;color:#fff}.blog-post .section-blog-info .card-profile{margin-top:0;text-align:left}dl dd,pre{margin-bottom:30px}.alignleft .avatar{margin-right:24px}.alignright .avatar{margin-left:24px}.aligncenter,img.centered{display:block;margin:0 auto 24px}img.alignnone{margin-bottom:12px}.alignleft{float:left;text-align:left}.alignright{float:right;text-align:right}.wp-caption.alignleft,img.alignleft{margin:0 24px 24px 0;margin:0 2.4rem 2.4rem 0}.wp-caption.alignright,img.alignright{margin:0 0 24px 24px}.wp-caption-text{padding-top:10px;text-align:center}.gallery-caption{padding-top:10px}.gallery .gallery-item{padding:5px}.gallery img{border:none!important;border-radius:6px;-webkit-box-shadow:0 16px 38px -12px rgba(0,0,0,.56),0 4px 25px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2);box-shadow:0 16px 38px -12px rgba(0,0,0,.56),0 4px 25px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2)}.bypostauthor{display:block}.related-posts .hestia-title{margin-bottom:50px}.related-posts .category a:not(:last-child):after{content:", "}.single-post .blog-post .section-text .title-in-content{margin-bottom:0}.blog-post .section-text .author.meta-in-content{opacity:.9;margin-bottom:20px;font-size:15px}.flex-row{display:flex;flex-wrap:wrap;flex-direction:row}.layout-alternative2 .category{padding-top:10px}.alignfull,.alignwide{width:unset;max-width:unset}.hestia-hidden{display:none}.media .avatar,.media-area .avatar,.media-body .avatar{overflow:hidden;width:64px;height:64px;margin:0 auto;margin-right:15px;border-radius:50%;-webkit-box-shadow:0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12),0 3px 5px -1px rgba(0,0,0,.2);box-shadow:0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12),0 3px 5px -1px rgba(0,0,0,.2)}.comment-respond .hestia-title,.media-area .hestia-title{margin-bottom:30px}.single-post .blog-post .section-comments .hestia-title{margin-bottom:30px;margin-top:20px}.comment .pull-left{padding-right:10px}.media-body div.avatar{margin:0 10px}.media{overflow:visible}.media .avatar img{width:100%}.media .media-heading{margin-top:0;margin-bottom:10px}.media .media-heading small{font-family:Roboto,Helvetica,Arial,sans-serif}.media .media-body{padding-right:10px}.media .media-body .media .media-body{padding-right:0}.media .media-footer .btn{margin-bottom:20px}.media .media-footer:after{display:table;clear:both;content:" "}.media p{color:#999}#comments .comment-notes{display:none}.section-comments ul.children .avatar img,.section-comments ul.children .comment-author.avatar{width:40px;height:40px}.blog-post .media p{color:#555}.blog-post .section-comments .title{margin-bottom:30px}.blog-post .section-comments .comment-respond .author{margin:15px 20px 0 0}.blog-post .section-comments .comment-respond .author img{border-radius:100%}.blog-post .comment-reply-link{text-transform:uppercase;float:right}.media-body{width:10000px;display:table-cell;overflow:visible}.widget{margin-bottom:30px;word-break:break-word}.widget ul{padding:0 0 0 10px;margin:0;list-style:none}.widget ul li{line-height:2.4;padding-top:5px}.widget ul li:first-child{padding-top:0}aside .widget .btn a{color:#fff}aside .widget a{color:#23527c}.widget a:hover{color:#89229b}.widget #searchform{margin-bottom:0;padding-bottom:0}.widget h5{font-family:"Roboto Slab","Times New Roman",serif;margin-bottom:10px}.widget select{width:100%}.hestia-widget-placeholder{border:1px dashed #b4b9be;padding:25px;text-align:center}.hestia-widget-placeholder .widget{margin:0}.single .hestia_right aside.blog-sidebar{padding:0}.hestia_right .hestia-widget-placeholder{padding:5px}.widget_calendar td,.widget_calendar th,.widget_calendar tr{padding:7px 0;text-align:center}.hestia-sidebar-toggle-container{clear:both}.hestia-sidebar-close,.hestia-sidebar-open{display:none;padding:10px}body.off-canvas .hestia-sidebar-close,body.off-canvas .hestia-sidebar-open{display:inline-block}body.off-canvas .shop-sidebar-wrapper{position:fixed;top:0;z-index:1030;height:100%;background:#fff;border-right:1px solid #f0f0f0;left:-100%;transition:.5s ease;padding:60px 20px 20px;overflow-y:scroll}body.off-canvas .shop-sidebar-wrapper.sidebar-open{left:0}body.off-canvas .shop-sidebar-wrapper .card{box-shadow:none}.row-sidebar-toggle{text-align:right}.row-sidebar-toggle .hestia-sidebar-close{padding:10px 13px}.row-sidebar-toggle.desktop{clear:both;text-align:left}.attachment .main-raised .blog-post{padding-bottom:130px}.attachment .sizes{margin-top:20px}.hestia-blog-featured-posts{padding:0}.hestia-blog-featured-posts article:nth-of-type(1) .card{margin-top:0}.hestia-blog-featured-posts article:nth-child(6n) .btn{background-color:#4caf50}.hestia-blog-featured-posts article:nth-child(6n+1) .btn{background-color:#89229b}.hestia-blog-featured-posts article:nth-child(6n+2) .btn{background-color:#00bcd4}.hestia-blog-featured-posts article:nth-child(6n+3) .btn{background-color:#f44336}.hestia-blog-featured-posts article:nth-child(6n+4) .btn{background-color:#ff9800}.hestia-blog-featured-posts article:nth-child(6n+5) .btn{background-color:#e91e63}.hestia-blog-featured-card .card-background{text-align:center}.hestia-blog-featured-card .card-background:after{position:absolute;z-index:1;width:100%;height:100%;display:block;left:0;top:0;content:"";background-color:rgba(0,0,0,.56);border-radius:6px;opacity:1}.hestia-blog-featured-card .card-background .card-body{position:relative;z-index:2;min-height:280px;padding-top:40px;padding-bottom:40px;max-width:440px;margin:0 auto}.hestia-blog-featured-card .card-background .card-body .card-description{color:rgba(255,255,255,.7)}.hestia-blog-featured-card .card-background .card-body .category a{color:rgba(255,255,255,.7)}.hestia-blog-featured-card .card-body{padding:15px 30px}.hestia-blog-featured-card.col-md-12 .card-body{max-width:750px}figure.wp-block-pullquote{border-left:none;border-top:4px solid;border-bottom:4px solid;margin:20px 0;padding:3em 0}figure.wp-block-pullquote p{font-size:28px;font-style:normal;margin-bottom:20px}figure.wp-block-pullquote blockquote{margin:1em;border:none}figure.wp-block-pullquote cite{text-transform:uppercase;font-size:13px;font-weight:300}.page-content-wrap .has-small-font-size,.single-post-wrap .has-small-font-size{font-size:13px}.page-content-wrap .has-medium-font-size,.single-post-wrap .has-medium-font-size{font-size:20px}.page-content-wrap .has-large-font-size,.single-post-wrap .has-large-font-size{font-size:36px}.page-content-wrap .has-huge-font-size,.single-post-wrap .has-huge-font-size{font-size:48px}.wp-block-separator{color:#eee;background-color:#eee;border:none}.wp-block-separator:not(.is-style-wide):not(.is-style-dots){height:2px;max-width:150px}.wp-block-separator .is-style-default{height:1px}.wp-block-separator.is-style-wide{max-width:100%;height:1px}.page-header .author,.page-header .author a,.page-header .container,.page-header .description,.page-header .hestia-title,.page-header .title{color:#fff}.page-content-wrap:after,.single-post-wrap:after{content:"";display:table;clear:both}#parallax_move~.item .page-header,#wp-custom-header~.item .page-header{overflow:inherit}.page-header{will-change:transform;overflow:hidden;margin:0;padding:0;border:0;background-position:center center;background-size:cover}.page-header .container{padding-top:30vh;color:#fff}.page-header .container .hestia-title,.page-header .container .title{margin:0 0 20px}.page-header.header-small .container .hestia-title,.page-header.header-small .container .title{margin:20px 0 10px}.page-header.header-small{min-height:300px;position:relative;height:auto}.page-header.header-small .container{padding-top:180px;padding-bottom:110px}.page-header.header-small .hestia-title,.page-header.header-small .title{font-family:Roboto,Helvetica,Arial,sans-serif}.boxed-layout-header{padding-bottom:60px}.header-filter-gradient{background:linear-gradient(45deg,#a81d84 0,#ea396f 100%)}.header-filter.header-filter-gradient:before{background-color:transparent}.header-filter{position:absolute;top:0;bottom:0;left:0;right:0;z-index:-1;background-position:center center;background-size:cover}.header-filter:after,.header-filter:before{display:block;position:absolute;top:0;left:0;width:100%;height:100%;content:""}.header-filter::before{background-color:rgba(0,0,0,.5)}.header-filter .container{position:relative}.carousel .header-filter:after,.carousel .header-filter:before{z-index:-1}.clear-filter:before{display:none}.header .wrapper{background:#ccc}.header .btn{margin:0}.header h6{margin-bottom:0}.phone-container img{width:100%}.main{position:relative;background:#fff}.main-raised{margin:-60px 30px 0;border-radius:6px 6px 0 0;-webkit-box-shadow:0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2);box-shadow:0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2)}.home .main-raised section:first-of-type{border-radius:6px 6px 0 0;overflow:hidden}.page-template-template-pagebuilder-blank .section{padding:0}.single .main-raised,.woocommerce.archive .main-raised{margin-top:-60px;margin-bottom:30px}.single .main-raised.classic-blog{margin-top:0}.content-sidebar-left{padding-left:30px;padding-right:0}.content-sidebar-right{padding-right:30px;padding-left:0}.shop-sidebar-wrapper{padding:0}.content-full.col-md-12{padding:0}.page:not(.home) .wrapper{display:flex;flex-direction:column;min-height:100vh}.page:not(.home) .wrapper .main{display:flex;flex-direction:column;flex:1 0 auto}.page:not(.home) .wrapper .main .blog-post{flex:1 0 auto}body:not(.home) .wrapper{display:flex;flex-direction:column;min-height:100vh}body:not(.home) .wrapper .main{display:flex;flex-direction:column;flex:1 0 auto}body:not(.home) .wrapper .main .hestia-blogs{flex:1 0 auto}body:not(.home) .wrapper .content-area{display:flex;flex-direction:column;flex:1 0 auto}@media (max-width:1199px){.contactus .row,.hestia-about .row,.hestia-features .row,.hestia-team .row,.hestia-testimonials .row,.hestia-work .row,.pricing .row,.products .row,section.hestia-blogs .row{padding:0 15px}.products .container{width:100%}.main-raised{margin:-60px 15px 0}}@media (max-width:991px){.navbar .navbar-nav>li{margin-right:10px;margin-left:10px}.page-header{height:auto;min-height:0}.card.card-raised .card-image{margin-top:-30px;display:block;margin-left:0;margin-right:0}.card.card-raised{padding:20px}.woocommerce-checkout .page-header{height:auto}.hestia-about .text-area{margin:0 0 10px}.blog .page-header.header-small h2{margin:0}.blog .page-header.header-small{height:auto;min-height:0}.page-header .iframe-container{padding:30px 0}.card-form-horizontal .form-group{padding-bottom:20px}.carousel .page-header{padding:0 30px}.btn.btn-simple{padding-right:0;padding-left:0;text-align:left}.hestia-work .col-md-4 .card-background .content,.hestia-work .col-md-6 .card-background .content{padding-top:15%}.about .row,.contactus .row,.features .row,.hestia-about .row,.hestia-features .row,.hestia-team .row,.hestia-testimonials .row,.hestia-work .row,.pricing .row,.products .row,.team .row,.testimonials .row,.work .row,section.hestia-blogs .row{padding:0 10px}.single aside.blog-sidebar{padding:40px 30px}.shop-sidebar.card{width:100%;text-align:initial}.shop-sidebar-wrapper{text-align:center}.products .shop-item:nth-of-type(2n+1){clear:both}.subscribe-line .card .content{padding:0}.subscribe-line .card .form-group{padding-bottom:0}.archive .hestia-blogs,.blog .hestia-blogs{padding-top:0}.archive .hestia-blogs .card-blog .card-image,.blog .hestia-blogs .card-blog .card-image{margin-bottom:30px}.archive #authors-on-blog,.blog #authors-on-blog{padding-bottom:40px}.home section.hestia-blogs{padding:30px 0 65px}.single.single-post .section-blog-info .card-profile .card-title,.single.single-post .section-blog-info .card-profile .description{text-align:center}.single.single-post .section-blog-info .card-profile .card-avatar{margin-bottom:20px}.hestia-sidebar-close,.hestia-sidebar-open{cursor:pointer;display:inline-block;margin:0;padding:12px 15px}.row-sidebar-toggle{margin:30px 15px 0;text-align:right}.row-sidebar-toggle.desktop{display:none}.page .row-sidebar-toggle{margin-top:0;margin-bottom:30px}.shop-sidebar-wrapper{position:fixed;top:0;z-index:1030;height:100%;background:#fff;border-right:1px solid #f0f0f0;left:-100%;transition:.5s ease;padding:60px 20px 20px;overflow-y:scroll}.shop-sidebar-wrapper.sidebar-open{left:0}.shop-sidebar-wrapper .card{box-shadow:none}.archive.woocommerce .hestia-sidebar-open{margin-top:15px}.archive.woocommerce .shop-sidebar-active{margin-top:10px}.archive.woocommerce .row-sidebar-toggle.col-sm-3{margin:0;text-align:left}.archive.woocommerce .row-sidebar-toggle.col-sm-3 .hestia-sidebar-open{margin:15px 0 0}.shop-sidebar.card.card-raised{box-shadow:none;margin:0;padding:0 15px}.hestia-top-bar .container{width:100%}.hestia-top-bar .col-md-6{width:50%}.hestia-team .card .content,.team .card .content{padding-top:15px}.hestia-team .card .content .footer .btn.btn-just-icon,.team .card .content .footer .btn.btn-just-icon{padding:12px;text-align:center}.pricing p.text-gray{margin-bottom:40px}.related-posts .hestia-title{margin-bottom:60px}.hestia-blog-featured-posts{padding-top:30px}.hestia-blog-featured-posts .card-raised{margin:30px 0}.hestia-blog-featured-posts .card-background .card-body{padding-top:20px;padding-bottom:20px;max-width:100%}.hestia-blog-featured-posts .card-body{padding:20px 15px}}@media (min-width:992px){.navbar .navbar-collapse{text-align:center}.card.card-raised .card-image{margin-left:0;margin-right:0}.navbar .navbar-center{display:inline-block;float:none}.navbar .navbar-nav>li{margin:0}.navbar .navbar-nav>li.btn{margin:0 10px}.navbar .navbar-nav>li.btn:last-child{margin-right:0}.entry-social{text-align:right}.footer .content{margin-left:-15px;margin-right:-15px}.footer .row{margin-left:-15px;margin-right:-15px}.footer .col-md-4{padding:0 30px}.blog-sidebar-wrapper,.shop-sidebar-wrapper{float:left;position:static;background:0 0}.big-title-sidebar-wrapper .pirate-forms-contact-widget{max-width:370px}.row-sidebar-toggle.desktop{display:block}.row-sidebar-toggle.mobile{display:none}}@media (min-width:783px) and (min-width:601px){body.admin-bar .navbar-default:not(.navbar-transparent){margin-top:32px}}@media (min-width:769px){.form-horizontal .control-label{padding-top:8px}.nav-cart.responsive-nav-cart{display:none}.navbar.hestia_left .title-logo-wrapper{min-width:250px}.navbar.hestia_right.navbar-scroll-point .header-sidebar-wrapper,.navbar.hestia_right.navbar-scroll-point .title-logo-wrapper{display:none}.navbar.hestia_right .title-logo-wrapper{min-width:250px}.navbar.hestia_right .navbar-collapse{min-width:100%}.navbar.hestia_center .navbar-brand{margin:0 auto}.navbar.hestia_center.navbar-scroll-point .title-logo-wrapper{display:none}.navbar.full-screen-menu .navbar-brand{float:none;margin:0;padding:0}.navbar.full-screen-menu .navbar-header{width:100%;display:flex}.navbar.full-screen-menu .navbar-toggle{z-index:999999}.navbar.full-screen-menu.navbar-scroll-point .title-logo-wrapper{display:block}.navbar.full-screen-menu .nav-cart:not(.responsive-nav-cart),.navbar.full-screen-menu .navbar-toggle{display:inline-block}.navbar.full-screen-menu .nav-cart .nav-cart-icon span{top:10px;left:15px}.navbar.full-screen-menu .navbar-nav{background-color:rgba(255,255,255,.9)}.navbar.full-screen-menu.hestia_center .navbar-header .title-logo-wrapper{left:50%;transform:translateX(-50%);position:relative}.navbar.full-screen-menu.hestia_right .navbar-header{max-width:100%}.navbar.full-screen-menu .navbar-nav.nav{opacity:0;display:flex;flex-direction:column;flex-wrap:inherit;justify-content:flex-start;transition:all .3s ease;visibility:hidden;pointer-events:none;z-index:9999;overflow-x:scroll;position:fixed;width:100%;background-color:rgba(255,255,255,.9);left:0;top:0;bottom:0;padding-top:100px}.navbar.full-screen-menu .navbar-nav.nav>li,.navbar.full-screen-menu .navbar-nav.nav>li.btn:last-child{display:table;margin:20px auto}.navbar.full-screen-menu .in .navbar-nav.nav{opacity:1;visibility:visible;pointer-events:inherit}.dropdown .dropdown-menu{display:block;visibility:hidden;margin-top:-20px;opacity:0;-webkit-transition:all 150ms linear;transition:all 150ms linear}.dropdown.open,.dropdown:hover{z-index:1}.dropdown.open>.dropdown-menu,.dropdown:hover>.dropdown-menu{visibility:visible;margin-top:1px;opacity:1;z-index:100}}@media (max-width:768px){li.nav-cart{display:none}li.nav-cart.responsive-nav-cart{display:block;margin-left:5px}.container .navbar-header{width:100%;display:flex;margin:0 auto}.navbar>.container{transition:padding .1s ease;padding:10px 15px;align-items:center;display:block}.navbar.navbar-transparent{background:#fff;color:#555}.navbar.navbar-transparent>.container{padding-top:10px}.navbar .nav.navbar-nav{display:block}.hestia-sidebar-header{display:none}.navbar.hestia_right .navbar-header{max-width:inherit}.navbar.navbar-default .dropdown.btn a .caret{border-color:#fff!important;color:#fff!important}.navbar.navbar-default .navbar-nav .menu-item.btn.active a,.navbar.navbar-default .navbar-nav .menu-item.btn.active a i,.navbar.navbar-default li.btn a,.navbar.navbar-default li.btn a i{color:#fff}.navbar.navbar-default li.btn:hover a,.navbar.navbar-default li.btn:hover i{color:#fff}.navbar.navbar-default li.btn:hover ul li i{color:#fff}.navbar.navbar-default li.btn ul li a,.navbar.navbar-default li.btn ul li i{opacity:1;color:#fff!important}.navbar.navbar-default li.btn ul li i,.navbar.navbar-default li.btn ul li:hover a{color:#fff!important}.navbar.navbar-fixed-top .navbar-collapse{max-height:calc(100% - 70px);margin-top:70px;overflow-y:auto;position:fixed;z-index:9999;background:#fff;width:100%;left:0;top:0;margin-left:0;margin-right:0;-webkit-overflow-scrolling:auto}.navbar.navbar-fixed-top.header-with-topbar:not(.navbar-scroll-point) .navbar-collapse{margin-top:110px}.navbar .navbar-nav{margin:7.5px 0}.navbar .navbar-nav li{box-sizing:border-box;float:left;margin:0;padding:0;width:100%;text-align:left}.navbar .navbar-nav li.btn{margin-top:10px}.navbar .navbar-nav .dropdown a .caret{border:1px solid #555;border-radius:2px;box-sizing:content-box;color:#555;cursor:pointer;display:inline-block;font-family:"Font Awesome 5 Free";font-weight:900;height:30px;margin-left:0;position:absolute;right:15px;text-align:center;top:10px;width:30px;z-index:100}.navbar .navbar-nav .dropdown a .caret svg{width:12.5px;margin:9px;transition:all .3s ease}.navbar .navbar-nav .dropdown a .caret-open .caret svg{transform:rotate(-180deg)}.navbar .navbar-nav .dropdown a>i{margin-right:12px}.navbar .navbar-nav .dropdown.open a>.caret:before{-webkit-transform:rotate(-180deg);-moz-transform:rotate(-180deg);-ms-transform:rotate(-180deg);-o-transform:rotate(-180deg);transform:rotate(-180deg)}.navbar .navbar-nav .dropdown.open .dropdown-menu{display:block!important}.navbar .navbar-nav .dropdown .dropdown-menu{background:0 0;box-shadow:none;position:static;margin-top:0;padding:0;width:100%}.navbar .navbar-nav .dropdown .dropdown-menu.open{display:block!important}.navbar .navbar-nav .dropdown .dropdown-menu li a{margin:0;padding:15px 0 15px 30px}.navbar .navbar-nav .dropdown .dropdown-menu li a:focus,.navbar .navbar-nav .dropdown .dropdown-menu li a:hover{background-color:transparent;color:#e91e63}.navbar .navbar-nav .dropdown .dropdown-menu li li a{padding:15px 0 15px 45px}.navbar .navbar-header .navbar-brand{padding-left:0}.navbar .navbar-brand h1,.navbar .navbar-brand p{padding:10px 0}.navbar .dropdown-submenu:hover .dropdown-menu{display:none!important}.navbar .dropdown-submenu.open>a{background:0 0!important;color:inherit;-webkit-box-shadow:none;box-shadow:none}.navbar.navbar-transparent .open .dropdown-menu>.active>a,.navbar.navbar-transparent .open .dropdown-menu>.active>a:focus,.navbar.navbar-transparent .open .dropdown-menu>.active>a:hover,.navbar.navbar-transparent .open .dropdown-menu>li>a:focus,.navbar.navbar-transparent .open .dropdown-menu>li>a:hover{color:inherit;background-color:transparent}.navbar.navbar-transparent .navbar-nav>.active>a{color:#555}.navbar .open .dropdown-menu>.active>a,.navbar .open .dropdown-menu>.active>a:focus,.navbar .open .dropdown-menu>.active>a:hover,.navbar .open .dropdown-menu>li>a:focus,.navbar .open .dropdown-menu>li>a:hover{color:#e91e63;background-color:transparent}.navbar .dropdown-menu li>a>i{opacity:1}.hestia_right .header-sidebar-wrapper{display:none}body.admin-bar .navbar{margin-top:45px}body.admin-bar .navbar.navbar-default .navbar-collapse{max-height:calc(100% - 115px);margin-top:115px}body.admin-bar .navbar.header-with-topbar{margin-top:0;top:85px}body.admin-bar .navbar.header-with-topbar.navbar-fixed-top .navbar-collapse{max-height:calc(100% - 155px);margin-top:155px}body.admin-bar .navbar.header-with-topbar.navbar-fixed-top.navbar-scroll-point .navbar-collapse{margin-top:115px}body.admin-bar .navbar.navbar-scroll-point.header-with-topbar{top:45px}body.admin-bar .navbar.navbar-scroll-point.navbar-fixed-top .navbar-collapse{max-height:calc(100% - 115px)}.big-title-sidebar-wrapper{width:100%;padding:0}.big-title-sidebar-wrapper .pirate-forms-contact-widget{max-width:370px;margin:0 auto}.single .section{padding:30px 0 0}.single .section.section-blog-info{padding:15px 0 30px}.media .avatar,.media-area .avatar,.media-body .avatar{margin:0;width:35px;height:35px}.subscribe-line .btn{margin-top:15px}ul.children{padding-left:5px;border-left:1px #cfcfcf solid}.blog-post .section-comments .comment-respond .author{display:none}.hestia-about .text-area{margin-bottom:20px}.home .main-raised section:first-of-type{border-radius:0}.footer.footer-big{padding:30px 0 26px}.footer .footer-menu{width:100%}.footer .copyright{display:inline-block;float:none!important;width:100%;padding:10px 0;text-align:center}.main-raised{margin-right:0;margin-left:0;border-radius:0}hr{margin-top:0}.hestia-about{padding-top:30px}.hestia-about h2{margin-top:0}.hestia-about .widget_sow-image .panel-widget-style{margin-top:-60px;padding:0 0 60px 0!important}.authors-on-blog .card-image,.hestia-team .card-image,.team .card-image{height:100px;margin:0 auto;width:100px}.authors-on-blog .card-image img,.hestia-team .card-image img,.team .card-image img{object-fit:cover}.authors-on-blog .card .content,.hestia-team .card .content,.team .card .content{text-align:center}.authors-on-blog .card .content .card-description,.hestia-team .card .content .card-description,.team .card .content .card-description{display:none}.authors-on-blog .card .content .footer,.hestia-team .card .content .footer,.team .card .content .footer{margin-left:0;margin-top:0}.authors-on-blog .card .content .footer .btn.btn-just-icon,.hestia-team .card .content .footer .btn.btn-just-icon,.team .card .content .footer .btn.btn-just-icon{margin:0 5px;padding:0}.authors-on-blog .card .content .footer .btn.btn-just-icon i,.hestia-team .card .content .footer .btn.btn-just-icon i,.team .card .content .footer .btn.btn-just-icon i{width:auto}.hestia-work .card{cursor:pointer}.pricing{padding:60px 0 40px}.contactus .card-contact{margin-top:90px}.contactus .form_captcha_wrap .pirate-forms-google-recaptcha>div{margin:0 auto}.contactus .contact_submit_wrap{text-align:center}.single.single-post .section-blog-info .entry-social{margin:15px 0 30px}.single.single-post .section-blog-info .card-profile{margin-top:20px}.page .section.section-text{padding:30px 0}.archive .page-header.header-small,.blog .page-header.header-small,.category .page-header.header-small,.page .page-header.header-small,.single-post .page-header.header-small{min-height:0}.archive .page-header.header-small .container,.blog .page-header.header-small .container,.category .page-header.header-small .container,.page .page-header.header-small .container,.single-post .page-header.header-small .container{padding:120px 15px 50px}.archive .page-header.header-small .container .hestia-title,.blog .page-header.header-small .container .hestia-title,.category .page-header.header-small .container .hestia-title,.page .page-header.header-small .container .hestia-title,.single-post .page-header.header-small .container .hestia-title{margin-top:0}.hestia-top-bar{overflow:hidden}.hestia-top-bar .col-md-6{text-align:center;width:100%}.hestia-top-bar .col-md-6.pull-right{display:none}.hestia-top-bar .col-md-12,.hestia-top-bar .col-md-12.pull-right{float:none!important;text-align:center}.hestia-top-bar .widget.widget_shopping_cart{display:none}.home:not(.blog) .main-raised{margin-top:0}.home:not(.blog) .page-header{min-height:0}.header .carousel .item .container{padding-top:170px;padding-bottom:100px}.header .buttons>.btn-right~.btn-left{margin-top:40px}.header.header-with-topbar .carousel .item .container{padding-top:210px}.header .carousel .carousel-control{margin-top:35px}.header.header-with-topbar .carousel .carousel-control{margin-top:55px}.obfx-sharing-bottom{left:0}.carousel .buttons .btn-left,.carousel .buttons .btn-left+.btn-right,.carousel .buttons .btn-right{margin:0 15px 15px}.navbar.navbar-transparent .hestia-hide-if-transparent{display:block}.navbar.navbar-transparent .hestia-transparent-logo{display:none}}@media (max-width:767px){.carousel .page-header .row{flex-direction:column;justify-content:center;padding:0;text-align:center}.carousel .page-header .row .margin-left-auto,.carousel .page-header .row .margin-right-auto{margin:inherit}.carousel .page-header .row .big-title-slider-content{text-align:center}.carousel .item .container.container-height-auto{top:0;transform:none}.carousel .carousel-control.left i{left:10px}.carousel .carousel-control.right i{right:10px}}@media (max-width:600px){body.admin-bar .navbar{margin-top:0}}@media (max-width:600px){body.admin-bar .navbar.navbar-scroll-point{top:0}body.admin-bar .navbar.navbar-scroll-point.header-with-topbar{top:0}body.admin-bar .navbar.navbar-scroll-point.navbar-transparent{margin-top:0;top:46px}body.admin-bar .navbar.navbar-not-transparent{margin-top:0}body.admin-bar .navbar.navbar-scroll-point.header-with-topbar.navbar-fixed-top .navbar-collapse,body.admin-bar .navbar.navbar-scroll-point.navbar-fixed-top .navbar-collapse{max-height:calc(100% - 70px);margin-top:70px}body.admin-bar .navbar.navbar-scroll-point.header-with-topbar.navbar-fixed-top.navbar-transparent .navbar-collapse,body.admin-bar .navbar.navbar-scroll-point.navbar-fixed-top.navbar-transparent .navbar-collapse{max-height:calc(100% - 70px);margin-top:115px}}@media (max-width:480px){.single .main-raised{margin:-60px 0 30px}.comment-respond .form-submit input{display:block;float:none!important;margin:0 auto}.hestia-features{padding:40px 0 55px}.alternative-blog-row{display:table;width:100%;margin:0 auto;table-layout:fixed}.alternative-blog-row div:first-child{display:table-footer-group}.alternative-blog-row div:last-child{padding:0;display:block}.contactus .hestia-contact-form-col{padding:0 5px}.contactus .card-contact{margin-top:30px}.contactus .card-contact .content{padding:30px 15px 0}.contactus .pirate_forms_wrap .pirate-forms-footer .form_captcha_wrap{margin-bottom:0;padding:0}.contactus .pirate_forms_wrap .form_captcha_wrap>div>div{transform:scale(.8);overflow:visible}}.col-ms-1,.col-ms-10,.col-ms-11,.col-ms-12,.col-ms-2,.col-ms-3,.col-ms-4,.col-ms-5,.col-ms-6,.col-ms-7,.col-ms-8,.col-ms-9{position:relative;min-height:1px;padding-left:15px;padding-right:15px}@media (min-width:481px) and (max-width:767px){.col-ms-1,.col-ms-10,.col-ms-11,.col-ms-2,.col-ms-3,.col-ms-4,.col-ms-5,.col-ms-6,.col-ms-7,.col-ms-8,.col-ms-9{float:left}.col-ms-1{width:8.33333%}.col-ms-2{width:16.66667%}.col-ms-3{width:25%}.col-ms-4{width:33.33333%}.col-ms-5{width:41.66667%}.col-ms-6{width:50%}.col-ms-7{width:58.33333%}.col-ms-8{width:66.66667%}.col-ms-9{width:75%}.col-ms-10{width:83.33333%}.col-ms-11{width:91.66667%}.col-ms-12{width:100%}.col-ms-push-1{left:8.33333%}.col-ms-push-2{left:16.66667%}.col-ms-push-3{left:25%}.col-ms-push-4{left:33.33333%}.col-ms-push-5{left:41.66667%}.col-ms-push-6{left:50%}.col-ms-push-7{left:58.33333%}.col-ms-push-8{left:66.66667%}.col-ms-push-9{left:75%}.col-ms-push-10{left:83.33333%}.col-ms-push-11{left:91.66667%}.col-ms-pull-1{right:8.33333%}.col-ms-pull-2{right:16.66667%}.col-ms-pull-3{right:25%}.col-ms-pull-4{right:33.33333%}.col-ms-pull-5{right:41.66667%}.col-ms-pull-6{right:50%}.col-ms-pull-7{right:58.33333%}.col-ms-pull-8{right:66.66667%}.col-ms-pull-9{right:75%}.col-ms-pull-10{right:83.33333%}.col-ms-pull-11{right:91.66667%}.col-ms-offset-1{margin-left:8.33333%}.col-ms-offset-2{margin-left:16.66667%}.col-ms-offset-3{margin-left:25%}.col-ms-offset-4{margin-left:33.33333%}.col-ms-offset-5{margin-left:41.66667%}.col-ms-offset-6{margin-left:50%}.col-ms-offset-7{margin-left:58.33333%}.col-ms-offset-8{margin-left:66.66667%}.col-ms-offset-9{margin-left:75%}.col-ms-offset-10{margin-left:83.33333%}.col-ms-offset-11{margin-left:91.66667%}}@media (min-width:480px) and (max-width:767px){.form-horizontal .form-group .control-label{text-align:right}} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/70a2ea2b39e7489ea247ee40d7a1cb558789fc23.00001258.json b/www/.content.EZtzwPjb/html/70a2ea2b39e7489ea247ee40d7a1cb558789fc23.00001258.json new file mode 100644 index 0000000..835ec89 --- /dev/null +++ b/www/.content.EZtzwPjb/html/70a2ea2b39e7489ea247ee40d7a1cb558789fc23.00001258.json @@ -0,0 +1 @@ +{"name":"HugoPoi","description":"Internet, Hardware et Bidouille","url":"https:\/\/blog.hugopoi.net","home":"https:\/\/blog.hugopoi.net","gmt_offset":1,"timezone_string":"Europe\/Paris","namespaces":["oembed\/1.0","akismet\/v1","contact-form-7\/v1","themeisle-sdk\/v1","wp\/v2"],"authentication":[],"routes":{"\/":{"namespace":"","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"required":false,"default":"view"}}}],"_links":{"self":"https:\/\/blog.hugopoi.net\/wp-json\/"}},"\/oembed\/1.0":{"namespace":"oembed\/1.0","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"required":false,"default":"oembed\/1.0"},"context":{"required":false,"default":"view"}}}],"_links":{"self":"https:\/\/blog.hugopoi.net\/wp-json\/oembed\/1.0"}},"\/oembed\/1.0\/embed":{"namespace":"oembed\/1.0","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"url":{"required":true},"format":{"required":false,"default":"json"},"maxwidth":{"required":false,"default":600}}}],"_links":{"self":"https:\/\/blog.hugopoi.net\/wp-json\/oembed\/1.0\/embed"}},"\/oembed\/1.0\/proxy":{"namespace":"oembed\/1.0","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"url":{"required":true,"description":"L\u2019URL de la ressource \u00e0 parcourir pour obtenir les donn\u00e9es oEmbed.","type":"string"},"format":{"required":false,"default":"json","enum":["json","xml"],"description":"Le format oEmbed \u00e0 utiliser.","type":"string"},"maxwidth":{"required":false,"default":600,"description":"La largeur maximale du contenu embarqu\u00e9 en pixels.","type":"integer"},"maxheight":{"required":false,"description":"La hauteur maximale du contenu embarqu\u00e9 oEmbed en pixels.","type":"integer"},"discover":{"required":false,"default":true,"description":"D\u00e9fini s\u2019il faut ou non effectuer une requ\u00eate de d\u00e9couverte oEmbed d\u2019autres fournisseurs non-inscrits sur la liste blanche.","type":"boolean"}}}],"_links":{"self":"https:\/\/blog.hugopoi.net\/wp-json\/oembed\/1.0\/proxy"}},"\/akismet\/v1":{"namespace":"akismet\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"required":false,"default":"akismet\/v1"},"context":{"required":false,"default":"view"}}}],"_links":{"self":"https:\/\/blog.hugopoi.net\/wp-json\/akismet\/v1"}},"\/akismet\/v1\/key":{"namespace":"akismet\/v1","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":[]},{"methods":["POST","PUT","PATCH"],"args":{"key":{"required":true,"description":"Une cl\u00e9 API Akismet de 12 caract\u00e8res. Disponible sur akismet.com\/get\/","type":"string"}}},{"methods":["DELETE"],"args":[]}],"_links":{"self":"https:\/\/blog.hugopoi.net\/wp-json\/akismet\/v1\/key"}},"\/akismet\/v1\/settings":{"namespace":"akismet\/v1","methods":["GET","POST","PUT","PATCH"],"endpoints":[{"methods":["GET"],"args":[]},{"methods":["POST","PUT","PATCH"],"args":{"akismet_strictness":{"required":false,"description":"Si oui, Akismet rejettera automatiquement les pires ind\u00e9sirables plut\u00f4t que de les placer dans le dossier des ind\u00e9sirables.","type":"boolean"},"akismet_show_user_comments_approved":{"required":false,"description":"Si oui, affiche le nombre de commentaires approuv\u00e9s \u00e0 c\u00f4t\u00e9 de chaque auteur de commentaire dans la page de liste de commentaires.","type":"boolean"}}}],"_links":{"self":"https:\/\/blog.hugopoi.net\/wp-json\/akismet\/v1\/settings"}},"\/akismet\/v1\/stats":{"namespace":"akismet\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"interval":{"required":false,"default":"all","description":"La p\u00e9riode sur laquelle les statistiques sont conserv\u00e9es. Options\u00a0: 60 jours, 6 mois, tous","type":"string"}}}],"_links":{"self":"https:\/\/blog.hugopoi.net\/wp-json\/akismet\/v1\/stats"}},"\/akismet\/v1\/stats\/(?P[\\w+])":{"namespace":"akismet\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"interval":{"required":false,"description":"La p\u00e9riode sur laquelle les statistiques sont conserv\u00e9es. Options\u00a0: 60 jours, 6 mois, tous","type":"string"}}}]},"\/akismet\/v1\/alert":{"namespace":"akismet\/v1","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"key":{"required":false,"description":"Une cl\u00e9 API Akismet de 12 caract\u00e8res. Disponible sur akismet.com\/get\/","type":"string"}}},{"methods":["POST","PUT","PATCH"],"args":{"key":{"required":false,"description":"Une cl\u00e9 API Akismet de 12 caract\u00e8res. Disponible sur akismet.com\/get\/","type":"string"}}},{"methods":["DELETE"],"args":{"key":{"required":false,"description":"Une cl\u00e9 API Akismet de 12 caract\u00e8res. Disponible sur akismet.com\/get\/","type":"string"}}}],"_links":{"self":"https:\/\/blog.hugopoi.net\/wp-json\/akismet\/v1\/alert"}},"\/contact-form-7\/v1":{"namespace":"contact-form-7\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"required":false,"default":"contact-form-7\/v1"},"context":{"required":false,"default":"view"}}}],"_links":{"self":"https:\/\/blog.hugopoi.net\/wp-json\/contact-form-7\/v1"}},"\/contact-form-7\/v1\/contact-forms":{"namespace":"contact-form-7\/v1","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":[]},{"methods":["POST"],"args":[]}],"_links":{"self":"https:\/\/blog.hugopoi.net\/wp-json\/contact-form-7\/v1\/contact-forms"}},"\/contact-form-7\/v1\/contact-forms\/(?P\\d+)":{"namespace":"contact-form-7\/v1","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":[]},{"methods":["POST","PUT","PATCH"],"args":[]},{"methods":["DELETE"],"args":[]}]},"\/contact-form-7\/v1\/contact-forms\/(?P\\d+)\/feedback":{"namespace":"contact-form-7\/v1","methods":["POST"],"endpoints":[{"methods":["POST"],"args":[]}]},"\/contact-form-7\/v1\/contact-forms\/(?P\\d+)\/refill":{"namespace":"contact-form-7\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}]},"\/themeisle-sdk\/v1":{"namespace":"themeisle-sdk\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"required":false,"default":"themeisle-sdk\/v1"},"context":{"required":false,"default":"view"}}}],"_links":{"self":"https:\/\/blog.hugopoi.net\/wp-json\/themeisle-sdk\/v1"}},"\/themeisle-sdk\/v1\/checksum":{"namespace":"themeisle-sdk\/v1","methods":["GET"],"endpoints":[{"methods":["GET"],"args":[]}],"_links":{"self":"https:\/\/blog.hugopoi.net\/wp-json\/themeisle-sdk\/v1\/checksum"}},"\/wp\/v2":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"namespace":{"required":false,"default":"wp\/v2"},"context":{"required":false,"default":"view"}}}],"_links":{"self":"https:\/\/blog.hugopoi.net\/wp-json\/wp\/v2"}},"\/wp\/v2\/posts":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"required":false,"default":"view","enum":["view","embed","edit"],"description":"Le contexte dans lequel la demande est faite\u00a0; cela d\u00e9termine les champs renvoy\u00e9s.","type":"string"},"page":{"required":false,"default":1,"description":"Page courante dans la collection.","type":"integer"},"per_page":{"required":false,"default":10,"description":"Nombre maximal d\u2019\u00e9l\u00e9ments \u00e0 renvoyer dans le groupe de r\u00e9sultats.","type":"integer"},"search":{"required":false,"description":"Limiter les r\u00e9sultats \u00e0 ceux qui correspondent \u00e0 une cha\u00eene de caract\u00e8res.","type":"string"},"after":{"required":false,"description":"Limiter la r\u00e9ponse aux publications mises en ligne apr\u00e8s une date d\u00e9finie et conforme \u00e0 la norme ISO8601.","type":"string"},"author":{"required":false,"default":[],"description":"Limiter les r\u00e9sultats aux publications assign\u00e9es \u00e0 des auteurs sp\u00e9cifiques.","type":"array","items":{"type":"integer"}},"author_exclude":{"required":false,"default":[],"description":"S\u2019assurer que le jeu de r\u00e9sultats exclut les publications assign\u00e9es \u00e0 des auteurs sp\u00e9cifiques.","type":"array","items":{"type":"integer"}},"before":{"required":false,"description":"Limiter la r\u00e9ponse aux publications mises en ligne avant une date d\u00e9finie et conforme \u00e0 la norme ISO8601.","type":"string"},"exclude":{"required":false,"default":[],"description":"S\u2019assure que le jeu de r\u00e9sultats exclut des ID sp\u00e9cifiques.","type":"array","items":{"type":"integer"}},"include":{"required":false,"default":[],"description":"Limiter le groupe de r\u00e9sultats aux ID sp\u00e9cifi\u00e9s.","type":"array","items":{"type":"integer"}},"offset":{"required":false,"description":"Ignorer un nombre sp\u00e9cifique d\u2019\u00e9l\u00e9ments au sein du jeu de r\u00e9sultats.","type":"integer"},"order":{"required":false,"default":"desc","enum":["asc","desc"],"description":"Le param\u00e8tre order trie les attributs dans l\u2019ordre croissant ou d\u00e9croissant.","type":"string"},"orderby":{"required":false,"default":"date","enum":["author","date","id","include","modified","parent","relevance","slug","include_slugs","title"],"description":"Trier la collection par attribut d\u2019objet.","type":"string"},"slug":{"required":false,"description":"Limiter le jeu de r\u00e9sultats aux publications ayant au moins un slug particulier.","type":"array","items":{"type":"string"}},"status":{"required":false,"default":"publish","description":"Limiter le jeu de r\u00e9sultats aux publications associ\u00e9es \u00e0 un ou plusieurs \u00e9tats.","type":"array","items":{"enum":["publish","future","draft","pending","private","trash","auto-draft","inherit","request-pending","request-confirmed","request-failed","request-completed","any"],"type":"string"}},"categories":{"required":false,"default":[],"description":"Limiter le jeu de r\u00e9sultats aux \u00e9l\u00e9ments qui ont le terme sp\u00e9cifi\u00e9 assign\u00e9 dans la taxonomie categories.","type":"array","items":{"type":"integer"}},"categories_exclude":{"required":false,"default":[],"description":"Limiter le jeu de r\u00e9sultats \u00e0 tous les \u00e9l\u00e9ments sauf ceux qui ont un terme sp\u00e9cifique assign\u00e9 \u00e0 la taxonomie categories.","type":"array","items":{"type":"integer"}},"tags":{"required":false,"default":[],"description":"Limiter le jeu de r\u00e9sultats aux \u00e9l\u00e9ments qui ont le terme sp\u00e9cifi\u00e9 assign\u00e9 dans la taxonomie tags.","type":"array","items":{"type":"integer"}},"tags_exclude":{"required":false,"default":[],"description":"Limiter le jeu de r\u00e9sultats \u00e0 tous les \u00e9l\u00e9ments sauf ceux qui ont un terme sp\u00e9cifique assign\u00e9 \u00e0 la taxonomie tags.","type":"array","items":{"type":"integer"}},"sticky":{"required":false,"description":"Limiter les r\u00e9sultats aux \u00e9l\u00e9ments qui sont \u00e9pingl\u00e9s.","type":"boolean"}}},{"methods":["POST"],"args":{"date":{"required":false,"description":"La date \u00e0 laquelle l\u2019objet a \u00e9t\u00e9 publi\u00e9, dans le fuseau horaire du site.","type":["string","null"]},"date_gmt":{"required":false,"description":"La date \u00e0 laquelle l\u2019objet a \u00e9t\u00e9 publi\u00e9, au format GMT.","type":["string","null"]},"slug":{"required":false,"description":"Un identificateur alphanum\u00e9rique pour l\u2019objet unique de son type.","type":"string"},"status":{"required":false,"enum":["publish","future","draft","pending","private"],"description":"Un \u00e9tat nomm\u00e9 pour l\u2019objet.","type":"string"},"password":{"required":false,"description":"Un mot de passe pour prot\u00e9ger l\u2019acc\u00e8s au contenu et \u00e0 l\u2019extrait.","type":"string"},"title":{"required":false,"description":"Le titre pour l\u2019objet.","type":"object"},"content":{"required":false,"description":"Le contenu pour cet objet.","type":"object"},"author":{"required":false,"description":"L\u2019ID pour l\u2019auteur de l\u2019objet.","type":"integer"},"excerpt":{"required":false,"description":"L\u2019extrait pour l\u2019objet.","type":"object"},"featured_media":{"required":false,"description":"L\u2019ID du m\u00e9dia mis en avant pour l\u2019objet.","type":"integer"},"comment_status":{"required":false,"enum":["open","closed"],"description":"D\u00e9finit si les commentaires sont ouverts ou non pour cet objet.","type":"string"},"ping_status":{"required":false,"enum":["open","closed"],"description":"D\u00e9finit si l\u2019objet peut recevoir un ping ou non.","type":"string"},"format":{"required":false,"enum":["standard","aside","chat","gallery","link","image","quote","status","video","audio"],"description":"Le format pour l\u2019objet.","type":"string"},"meta":{"required":false,"description":"Champs m\u00e9tas.","type":"object"},"sticky":{"required":false,"description":"D\u00e9finit si l\u2019objet doit \u00eatre trait\u00e9 en tant que contenu \u00e9pingl\u00e9 ou non.","type":"boolean"},"template":{"required":false,"description":"Le fichier de th\u00e8me \u00e0 utiliser pour afficher l\u2019objet.","type":"string"},"categories":{"required":false,"description":"Les termes assign\u00e9s \u00e0 l\u2019objet dans la taxonomie category.","type":"array","items":{"type":"integer"}},"tags":{"required":false,"description":"Les termes assign\u00e9s \u00e0 l\u2019objet dans la taxonomie post_tag.","type":"array","items":{"type":"integer"}}}}],"_links":{"self":"https:\/\/blog.hugopoi.net\/wp-json\/wp\/v2\/posts"}},"\/wp\/v2\/posts\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"required":false,"description":"Identifiant unique de l\u2019objet.","type":"integer"},"context":{"required":false,"default":"view","enum":["view","embed","edit"],"description":"Le contexte dans lequel la demande est faite\u00a0; cela d\u00e9termine les champs renvoy\u00e9s.","type":"string"},"password":{"required":false,"description":"Le mot de passe pour cette publication, si celle-ci est prot\u00e9g\u00e9e par un mot de passe.","type":"string"}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"required":false,"description":"Identifiant unique de l\u2019objet.","type":"integer"},"date":{"required":false,"description":"La date \u00e0 laquelle l\u2019objet a \u00e9t\u00e9 publi\u00e9, dans le fuseau horaire du site.","type":["string","null"]},"date_gmt":{"required":false,"description":"La date \u00e0 laquelle l\u2019objet a \u00e9t\u00e9 publi\u00e9, au format GMT.","type":["string","null"]},"slug":{"required":false,"description":"Un identificateur alphanum\u00e9rique pour l\u2019objet unique de son type.","type":"string"},"status":{"required":false,"enum":["publish","future","draft","pending","private"],"description":"Un \u00e9tat nomm\u00e9 pour l\u2019objet.","type":"string"},"password":{"required":false,"description":"Un mot de passe pour prot\u00e9ger l\u2019acc\u00e8s au contenu et \u00e0 l\u2019extrait.","type":"string"},"title":{"required":false,"description":"Le titre pour l\u2019objet.","type":"object"},"content":{"required":false,"description":"Le contenu pour cet objet.","type":"object"},"author":{"required":false,"description":"L\u2019ID pour l\u2019auteur de l\u2019objet.","type":"integer"},"excerpt":{"required":false,"description":"L\u2019extrait pour l\u2019objet.","type":"object"},"featured_media":{"required":false,"description":"L\u2019ID du m\u00e9dia mis en avant pour l\u2019objet.","type":"integer"},"comment_status":{"required":false,"enum":["open","closed"],"description":"D\u00e9finit si les commentaires sont ouverts ou non pour cet objet.","type":"string"},"ping_status":{"required":false,"enum":["open","closed"],"description":"D\u00e9finit si l\u2019objet peut recevoir un ping ou non.","type":"string"},"format":{"required":false,"enum":["standard","aside","chat","gallery","link","image","quote","status","video","audio"],"description":"Le format pour l\u2019objet.","type":"string"},"meta":{"required":false,"description":"Champs m\u00e9tas.","type":"object"},"sticky":{"required":false,"description":"D\u00e9finit si l\u2019objet doit \u00eatre trait\u00e9 en tant que contenu \u00e9pingl\u00e9 ou non.","type":"boolean"},"template":{"required":false,"description":"Le fichier de th\u00e8me \u00e0 utiliser pour afficher l\u2019objet.","type":"string"},"categories":{"required":false,"description":"Les termes assign\u00e9s \u00e0 l\u2019objet dans la taxonomie category.","type":"array","items":{"type":"integer"}},"tags":{"required":false,"description":"Les termes assign\u00e9s \u00e0 l\u2019objet dans la taxonomie post_tag.","type":"array","items":{"type":"integer"}}}},{"methods":["DELETE"],"args":{"id":{"required":false,"description":"Identifiant unique de l\u2019objet.","type":"integer"},"force":{"required":false,"default":false,"description":"Que ce soit pour \u00e9viter la corbeille ou forcer la suppression.","type":"boolean"}}}]},"\/wp\/v2\/posts\/(?P[\\d]+)\/revisions":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"required":false,"description":"L\u2019ID du parent de l\u2019objet.","type":"integer"},"context":{"required":false,"default":"view","enum":["view","embed","edit"],"description":"Le contexte dans lequel la demande est faite\u00a0; cela d\u00e9termine les champs renvoy\u00e9s.","type":"string"},"page":{"required":false,"default":1,"description":"Page courante dans la collection.","type":"integer"},"per_page":{"required":false,"description":"Nombre maximal d\u2019\u00e9l\u00e9ments \u00e0 renvoyer dans le groupe de r\u00e9sultats.","type":"integer"},"search":{"required":false,"description":"Limiter les r\u00e9sultats \u00e0 ceux qui correspondent \u00e0 une cha\u00eene de caract\u00e8res.","type":"string"},"exclude":{"required":false,"default":[],"description":"S\u2019assure que le jeu de r\u00e9sultats exclut des ID sp\u00e9cifiques.","type":"array","items":{"type":"integer"}},"include":{"required":false,"default":[],"description":"Limiter le groupe de r\u00e9sultats aux ID sp\u00e9cifi\u00e9s.","type":"array","items":{"type":"integer"}},"offset":{"required":false,"description":"Ignorer un nombre sp\u00e9cifique d\u2019\u00e9l\u00e9ments au sein du jeu de r\u00e9sultats.","type":"integer"},"order":{"required":false,"default":"desc","enum":["asc","desc"],"description":"Le param\u00e8tre order trie les attributs dans l\u2019ordre croissant ou d\u00e9croissant.","type":"string"},"orderby":{"required":false,"default":"date","enum":["date","id","include","relevance","slug","include_slugs","title"],"description":"Trier la collection par attribut d\u2019objet.","type":"string"}}}]},"\/wp\/v2\/posts\/(?P[\\d]+)\/revisions\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","DELETE"],"endpoints":[{"methods":["GET"],"args":{"parent":{"required":false,"description":"L\u2019ID du parent de l\u2019objet.","type":"integer"},"id":{"required":false,"description":"Identifiant unique de l\u2019objet.","type":"integer"},"context":{"required":false,"default":"view","enum":["view","embed","edit"],"description":"Le contexte dans lequel la demande est faite\u00a0; cela d\u00e9termine les champs renvoy\u00e9s.","type":"string"}}},{"methods":["DELETE"],"args":{"parent":{"required":false,"description":"L\u2019ID du parent de l\u2019objet.","type":"integer"},"id":{"required":false,"description":"Identifiant unique de l\u2019objet.","type":"integer"},"force":{"required":false,"default":false,"description":"N\u00e9cessite la valeur \"true\", car les r\u00e9visions ne supportent pas la suppression forc\u00e9e. ","type":"boolean"}}}]},"\/wp\/v2\/posts\/(?P[\\d]+)\/autosaves":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"parent":{"required":false,"description":"L\u2019ID du parent de l\u2019objet.","type":"integer"},"context":{"required":false,"default":"view","enum":["view","embed","edit"],"description":"Le contexte dans lequel la demande est faite\u00a0; cela d\u00e9termine les champs renvoy\u00e9s.","type":"string"}}},{"methods":["POST"],"args":{"parent":{"required":false,"description":"L\u2019ID du parent de l\u2019objet.","type":"integer"},"date":{"required":false,"description":"La date \u00e0 laquelle l\u2019objet a \u00e9t\u00e9 publi\u00e9, dans le fuseau horaire du site.","type":["string","null"]},"date_gmt":{"required":false,"description":"La date \u00e0 laquelle l\u2019objet a \u00e9t\u00e9 publi\u00e9, au format GMT.","type":["string","null"]},"slug":{"required":false,"description":"Un identificateur alphanum\u00e9rique pour l\u2019objet unique de son type.","type":"string"},"status":{"required":false,"enum":["publish","future","draft","pending","private"],"description":"Un \u00e9tat nomm\u00e9 pour l\u2019objet.","type":"string"},"password":{"required":false,"description":"Un mot de passe pour prot\u00e9ger l\u2019acc\u00e8s au contenu et \u00e0 l\u2019extrait.","type":"string"},"title":{"required":false,"description":"Le titre pour l\u2019objet.","type":"object"},"content":{"required":false,"description":"Le contenu pour cet objet.","type":"object"},"author":{"required":false,"description":"L\u2019ID pour l\u2019auteur de l\u2019objet.","type":"integer"},"excerpt":{"required":false,"description":"L\u2019extrait pour l\u2019objet.","type":"object"},"featured_media":{"required":false,"description":"L\u2019ID du m\u00e9dia mis en avant pour l\u2019objet.","type":"integer"},"comment_status":{"required":false,"enum":["open","closed"],"description":"D\u00e9finit si les commentaires sont ouverts ou non pour cet objet.","type":"string"},"ping_status":{"required":false,"enum":["open","closed"],"description":"D\u00e9finit si l\u2019objet peut recevoir un ping ou non.","type":"string"},"format":{"required":false,"enum":["standard","aside","chat","gallery","link","image","quote","status","video","audio"],"description":"Le format pour l\u2019objet.","type":"string"},"meta":{"required":false,"description":"Champs m\u00e9tas.","type":"object"},"sticky":{"required":false,"description":"D\u00e9finit si l\u2019objet doit \u00eatre trait\u00e9 en tant que contenu \u00e9pingl\u00e9 ou non.","type":"boolean"},"template":{"required":false,"description":"Le fichier de th\u00e8me \u00e0 utiliser pour afficher l\u2019objet.","type":"string"},"categories":{"required":false,"description":"Les termes assign\u00e9s \u00e0 l\u2019objet dans la taxonomie category.","type":"array","items":{"type":"integer"}},"tags":{"required":false,"description":"Les termes assign\u00e9s \u00e0 l\u2019objet dans la taxonomie post_tag.","type":"array","items":{"type":"integer"}}}}]},"\/wp\/v2\/posts\/(?P[\\d]+)\/autosaves\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"required":false,"description":"L\u2019ID du parent de l\u2019objet.","type":"integer"},"id":{"required":false,"description":"L\u2019ID pour l\u2019objet.","type":"integer"},"context":{"required":false,"default":"view","enum":["view","embed","edit"],"description":"Le contexte dans lequel la demande est faite\u00a0; cela d\u00e9termine les champs renvoy\u00e9s.","type":"string"}}}]},"\/wp\/v2\/pages":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"required":false,"default":"view","enum":["view","embed","edit"],"description":"Le contexte dans lequel la demande est faite\u00a0; cela d\u00e9termine les champs renvoy\u00e9s.","type":"string"},"page":{"required":false,"default":1,"description":"Page courante dans la collection.","type":"integer"},"per_page":{"required":false,"default":10,"description":"Nombre maximal d\u2019\u00e9l\u00e9ments \u00e0 renvoyer dans le groupe de r\u00e9sultats.","type":"integer"},"search":{"required":false,"description":"Limiter les r\u00e9sultats \u00e0 ceux qui correspondent \u00e0 une cha\u00eene de caract\u00e8res.","type":"string"},"after":{"required":false,"description":"Limiter la r\u00e9ponse aux publications mises en ligne apr\u00e8s une date d\u00e9finie et conforme \u00e0 la norme ISO8601.","type":"string"},"author":{"required":false,"default":[],"description":"Limiter les r\u00e9sultats aux publications assign\u00e9es \u00e0 des auteurs sp\u00e9cifiques.","type":"array","items":{"type":"integer"}},"author_exclude":{"required":false,"default":[],"description":"S\u2019assurer que le jeu de r\u00e9sultats exclut les publications assign\u00e9es \u00e0 des auteurs sp\u00e9cifiques.","type":"array","items":{"type":"integer"}},"before":{"required":false,"description":"Limiter la r\u00e9ponse aux publications mises en ligne avant une date d\u00e9finie et conforme \u00e0 la norme ISO8601.","type":"string"},"exclude":{"required":false,"default":[],"description":"S\u2019assure que le jeu de r\u00e9sultats exclut des ID sp\u00e9cifiques.","type":"array","items":{"type":"integer"}},"include":{"required":false,"default":[],"description":"Limiter le groupe de r\u00e9sultats aux ID sp\u00e9cifi\u00e9s.","type":"array","items":{"type":"integer"}},"menu_order":{"required":false,"description":"Limiter le jeu de r\u00e9sultats aux publications ayant une valeur menu_order sp\u00e9cifique.","type":"integer"},"offset":{"required":false,"description":"Ignorer un nombre sp\u00e9cifique d\u2019\u00e9l\u00e9ments au sein du jeu de r\u00e9sultats.","type":"integer"},"order":{"required":false,"default":"desc","enum":["asc","desc"],"description":"Le param\u00e8tre order trie les attributs dans l\u2019ordre croissant ou d\u00e9croissant.","type":"string"},"orderby":{"required":false,"default":"date","enum":["author","date","id","include","modified","parent","relevance","slug","include_slugs","title","menu_order"],"description":"Trier la collection par attribut d\u2019objet.","type":"string"},"parent":{"required":false,"default":[],"description":"Limiter le jeu de r\u00e9sultats aux \u00e9l\u00e9ments ayant un ID parent particulier.","type":"array","items":{"type":"integer"}},"parent_exclude":{"required":false,"default":[],"description":"Limiter le jeu de r\u00e9sultats \u00e0 tous les r\u00e9sultats, except\u00e9s ceux dont le parent porte un ID sp\u00e9cifique.","type":"array","items":{"type":"integer"}},"slug":{"required":false,"description":"Limiter le jeu de r\u00e9sultats aux publications ayant au moins un slug particulier.","type":"array","items":{"type":"string"}},"status":{"required":false,"default":"publish","description":"Limiter le jeu de r\u00e9sultats aux publications associ\u00e9es \u00e0 un ou plusieurs \u00e9tats.","type":"array","items":{"enum":["publish","future","draft","pending","private","trash","auto-draft","inherit","request-pending","request-confirmed","request-failed","request-completed","any"],"type":"string"}}}},{"methods":["POST"],"args":{"date":{"required":false,"description":"La date \u00e0 laquelle l\u2019objet a \u00e9t\u00e9 publi\u00e9, dans le fuseau horaire du site.","type":["string","null"]},"date_gmt":{"required":false,"description":"La date \u00e0 laquelle l\u2019objet a \u00e9t\u00e9 publi\u00e9, au format GMT.","type":["string","null"]},"slug":{"required":false,"description":"Un identificateur alphanum\u00e9rique pour l\u2019objet unique de son type.","type":"string"},"status":{"required":false,"enum":["publish","future","draft","pending","private"],"description":"Un \u00e9tat nomm\u00e9 pour l\u2019objet.","type":"string"},"password":{"required":false,"description":"Un mot de passe pour prot\u00e9ger l\u2019acc\u00e8s au contenu et \u00e0 l\u2019extrait.","type":"string"},"parent":{"required":false,"description":"L\u2019ID du parent de l\u2019objet.","type":"integer"},"title":{"required":false,"description":"Le titre pour l\u2019objet.","type":"object"},"content":{"required":false,"description":"Le contenu pour cet objet.","type":"object"},"author":{"required":false,"description":"L\u2019ID pour l\u2019auteur de l\u2019objet.","type":"integer"},"excerpt":{"required":false,"description":"L\u2019extrait pour l\u2019objet.","type":"object"},"featured_media":{"required":false,"description":"L\u2019ID du m\u00e9dia mis en avant pour l\u2019objet.","type":"integer"},"comment_status":{"required":false,"enum":["open","closed"],"description":"D\u00e9finit si les commentaires sont ouverts ou non pour cet objet.","type":"string"},"ping_status":{"required":false,"enum":["open","closed"],"description":"D\u00e9finit si l\u2019objet peut recevoir un ping ou non.","type":"string"},"menu_order":{"required":false,"description":"L\u2019ordre de l\u2019objet en relation \u00e0 d\u2019autres objets du m\u00eame type.","type":"integer"},"meta":{"required":false,"description":"Champs m\u00e9tas.","type":"object"},"template":{"required":false,"description":"Le fichier de th\u00e8me \u00e0 utiliser pour afficher l\u2019objet.","type":"string"}}}],"_links":{"self":"https:\/\/blog.hugopoi.net\/wp-json\/wp\/v2\/pages"}},"\/wp\/v2\/pages\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"required":false,"description":"Identifiant unique de l\u2019objet.","type":"integer"},"context":{"required":false,"default":"view","enum":["view","embed","edit"],"description":"Le contexte dans lequel la demande est faite\u00a0; cela d\u00e9termine les champs renvoy\u00e9s.","type":"string"},"password":{"required":false,"description":"Le mot de passe pour cette publication, si celle-ci est prot\u00e9g\u00e9e par un mot de passe.","type":"string"}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"required":false,"description":"Identifiant unique de l\u2019objet.","type":"integer"},"date":{"required":false,"description":"La date \u00e0 laquelle l\u2019objet a \u00e9t\u00e9 publi\u00e9, dans le fuseau horaire du site.","type":["string","null"]},"date_gmt":{"required":false,"description":"La date \u00e0 laquelle l\u2019objet a \u00e9t\u00e9 publi\u00e9, au format GMT.","type":["string","null"]},"slug":{"required":false,"description":"Un identificateur alphanum\u00e9rique pour l\u2019objet unique de son type.","type":"string"},"status":{"required":false,"enum":["publish","future","draft","pending","private"],"description":"Un \u00e9tat nomm\u00e9 pour l\u2019objet.","type":"string"},"password":{"required":false,"description":"Un mot de passe pour prot\u00e9ger l\u2019acc\u00e8s au contenu et \u00e0 l\u2019extrait.","type":"string"},"parent":{"required":false,"description":"L\u2019ID du parent de l\u2019objet.","type":"integer"},"title":{"required":false,"description":"Le titre pour l\u2019objet.","type":"object"},"content":{"required":false,"description":"Le contenu pour cet objet.","type":"object"},"author":{"required":false,"description":"L\u2019ID pour l\u2019auteur de l\u2019objet.","type":"integer"},"excerpt":{"required":false,"description":"L\u2019extrait pour l\u2019objet.","type":"object"},"featured_media":{"required":false,"description":"L\u2019ID du m\u00e9dia mis en avant pour l\u2019objet.","type":"integer"},"comment_status":{"required":false,"enum":["open","closed"],"description":"D\u00e9finit si les commentaires sont ouverts ou non pour cet objet.","type":"string"},"ping_status":{"required":false,"enum":["open","closed"],"description":"D\u00e9finit si l\u2019objet peut recevoir un ping ou non.","type":"string"},"menu_order":{"required":false,"description":"L\u2019ordre de l\u2019objet en relation \u00e0 d\u2019autres objets du m\u00eame type.","type":"integer"},"meta":{"required":false,"description":"Champs m\u00e9tas.","type":"object"},"template":{"required":false,"description":"Le fichier de th\u00e8me \u00e0 utiliser pour afficher l\u2019objet.","type":"string"}}},{"methods":["DELETE"],"args":{"id":{"required":false,"description":"Identifiant unique de l\u2019objet.","type":"integer"},"force":{"required":false,"default":false,"description":"Que ce soit pour \u00e9viter la corbeille ou forcer la suppression.","type":"boolean"}}}]},"\/wp\/v2\/pages\/(?P[\\d]+)\/revisions":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"required":false,"description":"L\u2019ID du parent de l\u2019objet.","type":"integer"},"context":{"required":false,"default":"view","enum":["view","embed","edit"],"description":"Le contexte dans lequel la demande est faite\u00a0; cela d\u00e9termine les champs renvoy\u00e9s.","type":"string"},"page":{"required":false,"default":1,"description":"Page courante dans la collection.","type":"integer"},"per_page":{"required":false,"description":"Nombre maximal d\u2019\u00e9l\u00e9ments \u00e0 renvoyer dans le groupe de r\u00e9sultats.","type":"integer"},"search":{"required":false,"description":"Limiter les r\u00e9sultats \u00e0 ceux qui correspondent \u00e0 une cha\u00eene de caract\u00e8res.","type":"string"},"exclude":{"required":false,"default":[],"description":"S\u2019assure que le jeu de r\u00e9sultats exclut des ID sp\u00e9cifiques.","type":"array","items":{"type":"integer"}},"include":{"required":false,"default":[],"description":"Limiter le groupe de r\u00e9sultats aux ID sp\u00e9cifi\u00e9s.","type":"array","items":{"type":"integer"}},"offset":{"required":false,"description":"Ignorer un nombre sp\u00e9cifique d\u2019\u00e9l\u00e9ments au sein du jeu de r\u00e9sultats.","type":"integer"},"order":{"required":false,"default":"desc","enum":["asc","desc"],"description":"Le param\u00e8tre order trie les attributs dans l\u2019ordre croissant ou d\u00e9croissant.","type":"string"},"orderby":{"required":false,"default":"date","enum":["date","id","include","relevance","slug","include_slugs","title"],"description":"Trier la collection par attribut d\u2019objet.","type":"string"}}}]},"\/wp\/v2\/pages\/(?P[\\d]+)\/revisions\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","DELETE"],"endpoints":[{"methods":["GET"],"args":{"parent":{"required":false,"description":"L\u2019ID du parent de l\u2019objet.","type":"integer"},"id":{"required":false,"description":"Identifiant unique de l\u2019objet.","type":"integer"},"context":{"required":false,"default":"view","enum":["view","embed","edit"],"description":"Le contexte dans lequel la demande est faite\u00a0; cela d\u00e9termine les champs renvoy\u00e9s.","type":"string"}}},{"methods":["DELETE"],"args":{"parent":{"required":false,"description":"L\u2019ID du parent de l\u2019objet.","type":"integer"},"id":{"required":false,"description":"Identifiant unique de l\u2019objet.","type":"integer"},"force":{"required":false,"default":false,"description":"N\u00e9cessite la valeur \"true\", car les r\u00e9visions ne supportent pas la suppression forc\u00e9e. ","type":"boolean"}}}]},"\/wp\/v2\/pages\/(?P[\\d]+)\/autosaves":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"parent":{"required":false,"description":"L\u2019ID du parent de l\u2019objet.","type":"integer"},"context":{"required":false,"default":"view","enum":["view","embed","edit"],"description":"Le contexte dans lequel la demande est faite\u00a0; cela d\u00e9termine les champs renvoy\u00e9s.","type":"string"}}},{"methods":["POST"],"args":{"parent":{"required":false,"description":"L\u2019ID du parent de l\u2019objet.","type":"integer"},"date":{"required":false,"description":"La date \u00e0 laquelle l\u2019objet a \u00e9t\u00e9 publi\u00e9, dans le fuseau horaire du site.","type":["string","null"]},"date_gmt":{"required":false,"description":"La date \u00e0 laquelle l\u2019objet a \u00e9t\u00e9 publi\u00e9, au format GMT.","type":["string","null"]},"slug":{"required":false,"description":"Un identificateur alphanum\u00e9rique pour l\u2019objet unique de son type.","type":"string"},"status":{"required":false,"enum":["publish","future","draft","pending","private"],"description":"Un \u00e9tat nomm\u00e9 pour l\u2019objet.","type":"string"},"password":{"required":false,"description":"Un mot de passe pour prot\u00e9ger l\u2019acc\u00e8s au contenu et \u00e0 l\u2019extrait.","type":"string"},"title":{"required":false,"description":"Le titre pour l\u2019objet.","type":"object"},"content":{"required":false,"description":"Le contenu pour cet objet.","type":"object"},"author":{"required":false,"description":"L\u2019ID pour l\u2019auteur de l\u2019objet.","type":"integer"},"excerpt":{"required":false,"description":"L\u2019extrait pour l\u2019objet.","type":"object"},"featured_media":{"required":false,"description":"L\u2019ID du m\u00e9dia mis en avant pour l\u2019objet.","type":"integer"},"comment_status":{"required":false,"enum":["open","closed"],"description":"D\u00e9finit si les commentaires sont ouverts ou non pour cet objet.","type":"string"},"ping_status":{"required":false,"enum":["open","closed"],"description":"D\u00e9finit si l\u2019objet peut recevoir un ping ou non.","type":"string"},"menu_order":{"required":false,"description":"L\u2019ordre de l\u2019objet en relation \u00e0 d\u2019autres objets du m\u00eame type.","type":"integer"},"meta":{"required":false,"description":"Champs m\u00e9tas.","type":"object"},"template":{"required":false,"description":"Le fichier de th\u00e8me \u00e0 utiliser pour afficher l\u2019objet.","type":"string"}}}]},"\/wp\/v2\/pages\/(?P[\\d]+)\/autosaves\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"required":false,"description":"L\u2019ID du parent de l\u2019objet.","type":"integer"},"id":{"required":false,"description":"L\u2019ID pour l\u2019objet.","type":"integer"},"context":{"required":false,"default":"view","enum":["view","embed","edit"],"description":"Le contexte dans lequel la demande est faite\u00a0; cela d\u00e9termine les champs renvoy\u00e9s.","type":"string"}}}]},"\/wp\/v2\/media":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"required":false,"default":"view","enum":["view","embed","edit"],"description":"Le contexte dans lequel la demande est faite\u00a0; cela d\u00e9termine les champs renvoy\u00e9s.","type":"string"},"page":{"required":false,"default":1,"description":"Page courante dans la collection.","type":"integer"},"per_page":{"required":false,"default":10,"description":"Nombre maximal d\u2019\u00e9l\u00e9ments \u00e0 renvoyer dans le groupe de r\u00e9sultats.","type":"integer"},"search":{"required":false,"description":"Limiter les r\u00e9sultats \u00e0 ceux qui correspondent \u00e0 une cha\u00eene de caract\u00e8res.","type":"string"},"after":{"required":false,"description":"Limiter la r\u00e9ponse aux publications mises en ligne apr\u00e8s une date d\u00e9finie et conforme \u00e0 la norme ISO8601.","type":"string"},"author":{"required":false,"default":[],"description":"Limiter les r\u00e9sultats aux publications assign\u00e9es \u00e0 des auteurs sp\u00e9cifiques.","type":"array","items":{"type":"integer"}},"author_exclude":{"required":false,"default":[],"description":"S\u2019assurer que le jeu de r\u00e9sultats exclut les publications assign\u00e9es \u00e0 des auteurs sp\u00e9cifiques.","type":"array","items":{"type":"integer"}},"before":{"required":false,"description":"Limiter la r\u00e9ponse aux publications mises en ligne avant une date d\u00e9finie et conforme \u00e0 la norme ISO8601.","type":"string"},"exclude":{"required":false,"default":[],"description":"S\u2019assure que le jeu de r\u00e9sultats exclut des ID sp\u00e9cifiques.","type":"array","items":{"type":"integer"}},"include":{"required":false,"default":[],"description":"Limiter le groupe de r\u00e9sultats aux ID sp\u00e9cifi\u00e9s.","type":"array","items":{"type":"integer"}},"offset":{"required":false,"description":"Ignorer un nombre sp\u00e9cifique d\u2019\u00e9l\u00e9ments au sein du jeu de r\u00e9sultats.","type":"integer"},"order":{"required":false,"default":"desc","enum":["asc","desc"],"description":"Le param\u00e8tre order trie les attributs dans l\u2019ordre croissant ou d\u00e9croissant.","type":"string"},"orderby":{"required":false,"default":"date","enum":["author","date","id","include","modified","parent","relevance","slug","include_slugs","title"],"description":"Trier la collection par attribut d\u2019objet.","type":"string"},"parent":{"required":false,"default":[],"description":"Limiter le jeu de r\u00e9sultats aux \u00e9l\u00e9ments ayant un ID parent particulier.","type":"array","items":{"type":"integer"}},"parent_exclude":{"required":false,"default":[],"description":"Limiter le jeu de r\u00e9sultats \u00e0 tous les r\u00e9sultats, except\u00e9s ceux dont le parent porte un ID sp\u00e9cifique.","type":"array","items":{"type":"integer"}},"slug":{"required":false,"description":"Limiter le jeu de r\u00e9sultats aux publications ayant au moins un slug particulier.","type":"array","items":{"type":"string"}},"status":{"required":false,"default":"inherit","description":"Limiter le jeu de r\u00e9sultats aux publications associ\u00e9es \u00e0 un ou plusieurs \u00e9tats.","type":"array","items":{"enum":["inherit","private","trash"],"type":"string"}},"media_type":{"required":false,"enum":["image","video","text","application","audio"],"description":"Limiter le groupe de r\u00e9sultats aux m\u00e9dias attach\u00e9s d\u2019un type particulier.","type":"string"},"mime_type":{"required":false,"description":"Limiter le groupe de r\u00e9sultats \u00e0 un type MIME particulier.","type":"string"}}},{"methods":["POST"],"args":{"date":{"required":false,"description":"La date \u00e0 laquelle l\u2019objet a \u00e9t\u00e9 publi\u00e9, dans le fuseau horaire du site.","type":["string","null"]},"date_gmt":{"required":false,"description":"La date \u00e0 laquelle l\u2019objet a \u00e9t\u00e9 publi\u00e9, au format GMT.","type":["string","null"]},"slug":{"required":false,"description":"Un identificateur alphanum\u00e9rique pour l\u2019objet unique de son type.","type":"string"},"status":{"required":false,"enum":["publish","future","draft","pending","private"],"description":"Un \u00e9tat nomm\u00e9 pour l\u2019objet.","type":"string"},"title":{"required":false,"description":"Le titre pour l\u2019objet.","type":"object"},"author":{"required":false,"description":"L\u2019ID pour l\u2019auteur de l\u2019objet.","type":"integer"},"comment_status":{"required":false,"enum":["open","closed"],"description":"D\u00e9finit si les commentaires sont ouverts ou non pour cet objet.","type":"string"},"ping_status":{"required":false,"enum":["open","closed"],"description":"D\u00e9finit si l\u2019objet peut recevoir un ping ou non.","type":"string"},"meta":{"required":false,"description":"Champs m\u00e9tas.","type":"object"},"template":{"required":false,"description":"Le fichier de th\u00e8me \u00e0 utiliser pour afficher l\u2019objet.","type":"string"},"alt_text":{"required":false,"description":"Texte alternatif propos\u00e9 si le fichier ne peut pas \u00eatre affich\u00e9.","type":"string"},"caption":{"required":false,"description":"La l\u00e9gende du fichier joint.","type":"object"},"description":{"required":false,"description":"La description du fichier joint.","type":"object"},"post":{"required":false,"description":"L\u2019ID pour la publication associ\u00e9e au fichier.","type":"integer"}}}],"_links":{"self":"https:\/\/blog.hugopoi.net\/wp-json\/wp\/v2\/media"}},"\/wp\/v2\/media\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"required":false,"description":"Identifiant unique de l\u2019objet.","type":"integer"},"context":{"required":false,"default":"view","enum":["view","embed","edit"],"description":"Le contexte dans lequel la demande est faite\u00a0; cela d\u00e9termine les champs renvoy\u00e9s.","type":"string"}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"required":false,"description":"Identifiant unique de l\u2019objet.","type":"integer"},"date":{"required":false,"description":"La date \u00e0 laquelle l\u2019objet a \u00e9t\u00e9 publi\u00e9, dans le fuseau horaire du site.","type":["string","null"]},"date_gmt":{"required":false,"description":"La date \u00e0 laquelle l\u2019objet a \u00e9t\u00e9 publi\u00e9, au format GMT.","type":["string","null"]},"slug":{"required":false,"description":"Un identificateur alphanum\u00e9rique pour l\u2019objet unique de son type.","type":"string"},"status":{"required":false,"enum":["publish","future","draft","pending","private"],"description":"Un \u00e9tat nomm\u00e9 pour l\u2019objet.","type":"string"},"title":{"required":false,"description":"Le titre pour l\u2019objet.","type":"object"},"author":{"required":false,"description":"L\u2019ID pour l\u2019auteur de l\u2019objet.","type":"integer"},"comment_status":{"required":false,"enum":["open","closed"],"description":"D\u00e9finit si les commentaires sont ouverts ou non pour cet objet.","type":"string"},"ping_status":{"required":false,"enum":["open","closed"],"description":"D\u00e9finit si l\u2019objet peut recevoir un ping ou non.","type":"string"},"meta":{"required":false,"description":"Champs m\u00e9tas.","type":"object"},"template":{"required":false,"description":"Le fichier de th\u00e8me \u00e0 utiliser pour afficher l\u2019objet.","type":"string"},"alt_text":{"required":false,"description":"Texte alternatif propos\u00e9 si le fichier ne peut pas \u00eatre affich\u00e9.","type":"string"},"caption":{"required":false,"description":"La l\u00e9gende du fichier joint.","type":"object"},"description":{"required":false,"description":"La description du fichier joint.","type":"object"},"post":{"required":false,"description":"L\u2019ID pour la publication associ\u00e9e au fichier.","type":"integer"}}},{"methods":["DELETE"],"args":{"id":{"required":false,"description":"Identifiant unique de l\u2019objet.","type":"integer"},"force":{"required":false,"default":false,"description":"Que ce soit pour \u00e9viter la corbeille ou forcer la suppression.","type":"boolean"}}}]},"\/wp\/v2\/media\/(?P[\\d]+)\/post-process":{"namespace":"wp\/v2","methods":["POST"],"endpoints":[{"methods":["POST"],"args":{"id":{"required":false,"description":"Identifiant unique de l\u2019objet.","type":"integer"},"action":{"required":true,"enum":["create-image-subsizes"],"type":"string"}}}]},"\/wp\/v2\/blocks":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"required":false,"default":"view","enum":["view","embed","edit"],"description":"Le contexte dans lequel la demande est faite\u00a0; cela d\u00e9termine les champs renvoy\u00e9s.","type":"string"},"page":{"required":false,"default":1,"description":"Page courante dans la collection.","type":"integer"},"per_page":{"required":false,"default":10,"description":"Nombre maximal d\u2019\u00e9l\u00e9ments \u00e0 renvoyer dans le groupe de r\u00e9sultats.","type":"integer"},"search":{"required":false,"description":"Limiter les r\u00e9sultats \u00e0 ceux qui correspondent \u00e0 une cha\u00eene de caract\u00e8res.","type":"string"},"after":{"required":false,"description":"Limiter la r\u00e9ponse aux publications mises en ligne apr\u00e8s une date d\u00e9finie et conforme \u00e0 la norme ISO8601.","type":"string"},"before":{"required":false,"description":"Limiter la r\u00e9ponse aux publications mises en ligne avant une date d\u00e9finie et conforme \u00e0 la norme ISO8601.","type":"string"},"exclude":{"required":false,"default":[],"description":"S\u2019assure que le jeu de r\u00e9sultats exclut des ID sp\u00e9cifiques.","type":"array","items":{"type":"integer"}},"include":{"required":false,"default":[],"description":"Limiter le groupe de r\u00e9sultats aux ID sp\u00e9cifi\u00e9s.","type":"array","items":{"type":"integer"}},"offset":{"required":false,"description":"Ignorer un nombre sp\u00e9cifique d\u2019\u00e9l\u00e9ments au sein du jeu de r\u00e9sultats.","type":"integer"},"order":{"required":false,"default":"desc","enum":["asc","desc"],"description":"Le param\u00e8tre order trie les attributs dans l\u2019ordre croissant ou d\u00e9croissant.","type":"string"},"orderby":{"required":false,"default":"date","enum":["author","date","id","include","modified","parent","relevance","slug","include_slugs","title"],"description":"Trier la collection par attribut d\u2019objet.","type":"string"},"slug":{"required":false,"description":"Limiter le jeu de r\u00e9sultats aux publications ayant au moins un slug particulier.","type":"array","items":{"type":"string"}},"status":{"required":false,"default":"publish","description":"Limiter le jeu de r\u00e9sultats aux publications associ\u00e9es \u00e0 un ou plusieurs \u00e9tats.","type":"array","items":{"enum":["publish","future","draft","pending","private","trash","auto-draft","inherit","request-pending","request-confirmed","request-failed","request-completed","any"],"type":"string"}}}},{"methods":["POST"],"args":{"date":{"required":false,"description":"La date \u00e0 laquelle l\u2019objet a \u00e9t\u00e9 publi\u00e9, dans le fuseau horaire du site.","type":["string","null"]},"date_gmt":{"required":false,"description":"La date \u00e0 laquelle l\u2019objet a \u00e9t\u00e9 publi\u00e9, au format GMT.","type":["string","null"]},"slug":{"required":false,"description":"Un identificateur alphanum\u00e9rique pour l\u2019objet unique de son type.","type":"string"},"status":{"required":false,"enum":["publish","future","draft","pending","private"],"description":"Un \u00e9tat nomm\u00e9 pour l\u2019objet.","type":"string"},"password":{"required":false,"description":"Un mot de passe pour prot\u00e9ger l\u2019acc\u00e8s au contenu et \u00e0 l\u2019extrait.","type":"string"},"title":{"required":false,"description":"Le titre pour l\u2019objet.","type":"object"},"content":{"required":false,"description":"Le contenu pour cet objet.","type":"object"},"template":{"required":false,"description":"Le fichier de th\u00e8me \u00e0 utiliser pour afficher l\u2019objet.","type":"string"}}}],"_links":{"self":"https:\/\/blog.hugopoi.net\/wp-json\/wp\/v2\/blocks"}},"\/wp\/v2\/blocks\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"required":false,"description":"Identifiant unique de l\u2019objet.","type":"integer"},"context":{"required":false,"default":"view","enum":["view","embed","edit"],"description":"Le contexte dans lequel la demande est faite\u00a0; cela d\u00e9termine les champs renvoy\u00e9s.","type":"string"},"password":{"required":false,"description":"Le mot de passe pour cette publication, si celle-ci est prot\u00e9g\u00e9e par un mot de passe.","type":"string"}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"required":false,"description":"Identifiant unique de l\u2019objet.","type":"integer"},"date":{"required":false,"description":"La date \u00e0 laquelle l\u2019objet a \u00e9t\u00e9 publi\u00e9, dans le fuseau horaire du site.","type":["string","null"]},"date_gmt":{"required":false,"description":"La date \u00e0 laquelle l\u2019objet a \u00e9t\u00e9 publi\u00e9, au format GMT.","type":["string","null"]},"slug":{"required":false,"description":"Un identificateur alphanum\u00e9rique pour l\u2019objet unique de son type.","type":"string"},"status":{"required":false,"enum":["publish","future","draft","pending","private"],"description":"Un \u00e9tat nomm\u00e9 pour l\u2019objet.","type":"string"},"password":{"required":false,"description":"Un mot de passe pour prot\u00e9ger l\u2019acc\u00e8s au contenu et \u00e0 l\u2019extrait.","type":"string"},"title":{"required":false,"description":"Le titre pour l\u2019objet.","type":"object"},"content":{"required":false,"description":"Le contenu pour cet objet.","type":"object"},"template":{"required":false,"description":"Le fichier de th\u00e8me \u00e0 utiliser pour afficher l\u2019objet.","type":"string"}}},{"methods":["DELETE"],"args":{"id":{"required":false,"description":"Identifiant unique de l\u2019objet.","type":"integer"},"force":{"required":false,"default":false,"description":"Que ce soit pour \u00e9viter la corbeille ou forcer la suppression.","type":"boolean"}}}]},"\/wp\/v2\/blocks\/(?P[\\d]+)\/autosaves":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"parent":{"required":false,"description":"L\u2019ID du parent de l\u2019objet.","type":"integer"},"context":{"required":false,"default":"view","enum":["view","embed","edit"],"description":"Le contexte dans lequel la demande est faite\u00a0; cela d\u00e9termine les champs renvoy\u00e9s.","type":"string"}}},{"methods":["POST"],"args":{"parent":{"required":false,"description":"L\u2019ID du parent de l\u2019objet.","type":"integer"},"date":{"required":false,"description":"La date \u00e0 laquelle l\u2019objet a \u00e9t\u00e9 publi\u00e9, dans le fuseau horaire du site.","type":["string","null"]},"date_gmt":{"required":false,"description":"La date \u00e0 laquelle l\u2019objet a \u00e9t\u00e9 publi\u00e9, au format GMT.","type":["string","null"]},"slug":{"required":false,"description":"Un identificateur alphanum\u00e9rique pour l\u2019objet unique de son type.","type":"string"},"status":{"required":false,"enum":["publish","future","draft","pending","private"],"description":"Un \u00e9tat nomm\u00e9 pour l\u2019objet.","type":"string"},"password":{"required":false,"description":"Un mot de passe pour prot\u00e9ger l\u2019acc\u00e8s au contenu et \u00e0 l\u2019extrait.","type":"string"},"title":{"required":false,"description":"Le titre pour l\u2019objet.","type":"object"},"content":{"required":false,"description":"Le contenu pour cet objet.","type":"object"},"template":{"required":false,"description":"Le fichier de th\u00e8me \u00e0 utiliser pour afficher l\u2019objet.","type":"string"}}}]},"\/wp\/v2\/blocks\/(?P[\\d]+)\/autosaves\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"parent":{"required":false,"description":"L\u2019ID du parent de l\u2019objet.","type":"integer"},"id":{"required":false,"description":"L\u2019ID pour l\u2019objet.","type":"integer"},"context":{"required":false,"default":"view","enum":["view","embed","edit"],"description":"Le contexte dans lequel la demande est faite\u00a0; cela d\u00e9termine les champs renvoy\u00e9s.","type":"string"}}}]},"\/wp\/v2\/types":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"required":false,"default":"view","enum":["view","embed","edit"],"description":"Le contexte dans lequel la demande est faite\u00a0; cela d\u00e9termine les champs renvoy\u00e9s.","type":"string"}}}],"_links":{"self":"https:\/\/blog.hugopoi.net\/wp-json\/wp\/v2\/types"}},"\/wp\/v2\/types\/(?P[\\w-]+)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"type":{"required":false,"description":"Un identificateur alphanum\u00e9rique pour le type de publication.","type":"string"},"context":{"required":false,"default":"view","enum":["view","embed","edit"],"description":"Le contexte dans lequel la demande est faite\u00a0; cela d\u00e9termine les champs renvoy\u00e9s.","type":"string"}}}]},"\/wp\/v2\/statuses":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"required":false,"default":"view","enum":["view","embed","edit"],"description":"Le contexte dans lequel la demande est faite\u00a0; cela d\u00e9termine les champs renvoy\u00e9s.","type":"string"}}}],"_links":{"self":"https:\/\/blog.hugopoi.net\/wp-json\/wp\/v2\/statuses"}},"\/wp\/v2\/statuses\/(?P[\\w-]+)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"status":{"required":false,"description":"Un identificateur alphanum\u00e9rique pour l\u2019\u00e9tat.","type":"string"},"context":{"required":false,"default":"view","enum":["view","embed","edit"],"description":"Le contexte dans lequel la demande est faite\u00a0; cela d\u00e9termine les champs renvoy\u00e9s.","type":"string"}}}]},"\/wp\/v2\/taxonomies":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"required":false,"default":"view","enum":["view","embed","edit"],"description":"Le contexte dans lequel la demande est faite\u00a0; cela d\u00e9termine les champs renvoy\u00e9s.","type":"string"},"type":{"required":false,"description":"Limiter les r\u00e9sultats aux taxonomies associ\u00e9es un type de publication sp\u00e9cifique.","type":"string"}}}],"_links":{"self":"https:\/\/blog.hugopoi.net\/wp-json\/wp\/v2\/taxonomies"}},"\/wp\/v2\/taxonomies\/(?P[\\w-]+)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"taxonomy":{"required":false,"description":"Un identificateur alphanum\u00e9rique pour la taxonomie.","type":"string"},"context":{"required":false,"default":"view","enum":["view","embed","edit"],"description":"Le contexte dans lequel la demande est faite\u00a0; cela d\u00e9termine les champs renvoy\u00e9s.","type":"string"}}}]},"\/wp\/v2\/categories":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"required":false,"default":"view","enum":["view","embed","edit"],"description":"Le contexte dans lequel la demande est faite\u00a0; cela d\u00e9termine les champs renvoy\u00e9s.","type":"string"},"page":{"required":false,"default":1,"description":"Page courante dans la collection.","type":"integer"},"per_page":{"required":false,"default":10,"description":"Nombre maximal d\u2019\u00e9l\u00e9ments \u00e0 renvoyer dans le groupe de r\u00e9sultats.","type":"integer"},"search":{"required":false,"description":"Limiter les r\u00e9sultats \u00e0 ceux qui correspondent \u00e0 une cha\u00eene de caract\u00e8res.","type":"string"},"exclude":{"required":false,"default":[],"description":"S\u2019assure que le jeu de r\u00e9sultats exclut des ID sp\u00e9cifiques.","type":"array","items":{"type":"integer"}},"include":{"required":false,"default":[],"description":"Limiter le groupe de r\u00e9sultats aux ID sp\u00e9cifi\u00e9s.","type":"array","items":{"type":"integer"}},"order":{"required":false,"default":"asc","enum":["asc","desc"],"description":"Le param\u00e8tre order trie les attributs dans l\u2019ordre croissant ou d\u00e9croissant.","type":"string"},"orderby":{"required":false,"default":"name","enum":["id","include","name","slug","include_slugs","term_group","description","count"],"description":"Trier la collection par attributs de terme.","type":"string"},"hide_empty":{"required":false,"default":false,"description":"Pour masquer des termes non affect\u00e9es \u00e0 des publications ou non.","type":"boolean"},"parent":{"required":false,"description":"R\u00e9sultats limit\u00e9s aux termes ayant un parent sp\u00e9cifique.","type":"integer"},"post":{"required":false,"description":"Limiter le r\u00e9sultat aux termes assign\u00e9s \u00e0 une publication sp\u00e9cifique.","type":"integer"},"slug":{"required":false,"description":"Limiter le jeu de r\u00e9sultats aux termes ayant un ou plusieurs identifiants sp\u00e9cifiques.","type":"array","items":{"type":"string"}}}},{"methods":["POST"],"args":{"description":{"required":false,"description":"Description HTML du terme.","type":"string"},"name":{"required":true,"description":"Titre HTML pour le terme.","type":"string"},"slug":{"required":false,"description":"Un identificateur alphanum\u00e9rique pour le terme, propre au type de la ressource.","type":"string"},"parent":{"required":false,"description":"L\u2019ID du terme parent.","type":"integer"},"meta":{"required":false,"description":"Champs m\u00e9tas.","type":"object"}}}],"_links":{"self":"https:\/\/blog.hugopoi.net\/wp-json\/wp\/v2\/categories"}},"\/wp\/v2\/categories\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"required":false,"description":"Identificateur unique pour le terme.","type":"integer"},"context":{"required":false,"default":"view","enum":["view","embed","edit"],"description":"Le contexte dans lequel la demande est faite\u00a0; cela d\u00e9termine les champs renvoy\u00e9s.","type":"string"}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"required":false,"description":"Identificateur unique pour le terme.","type":"integer"},"description":{"required":false,"description":"Description HTML du terme.","type":"string"},"name":{"required":false,"description":"Titre HTML pour le terme.","type":"string"},"slug":{"required":false,"description":"Un identificateur alphanum\u00e9rique pour le terme, propre au type de la ressource.","type":"string"},"parent":{"required":false,"description":"L\u2019ID du terme parent.","type":"integer"},"meta":{"required":false,"description":"Champs m\u00e9tas.","type":"object"}}},{"methods":["DELETE"],"args":{"id":{"required":false,"description":"Identificateur unique pour le terme.","type":"integer"},"force":{"required":false,"default":false,"description":"N\u00e9cessite la valeur \"true\", car les termes ne supportent pas la suppression forc\u00e9e. ","type":"boolean"}}}]},"\/wp\/v2\/tags":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"required":false,"default":"view","enum":["view","embed","edit"],"description":"Le contexte dans lequel la demande est faite\u00a0; cela d\u00e9termine les champs renvoy\u00e9s.","type":"string"},"page":{"required":false,"default":1,"description":"Page courante dans la collection.","type":"integer"},"per_page":{"required":false,"default":10,"description":"Nombre maximal d\u2019\u00e9l\u00e9ments \u00e0 renvoyer dans le groupe de r\u00e9sultats.","type":"integer"},"search":{"required":false,"description":"Limiter les r\u00e9sultats \u00e0 ceux qui correspondent \u00e0 une cha\u00eene de caract\u00e8res.","type":"string"},"exclude":{"required":false,"default":[],"description":"S\u2019assure que le jeu de r\u00e9sultats exclut des ID sp\u00e9cifiques.","type":"array","items":{"type":"integer"}},"include":{"required":false,"default":[],"description":"Limiter le groupe de r\u00e9sultats aux ID sp\u00e9cifi\u00e9s.","type":"array","items":{"type":"integer"}},"offset":{"required":false,"description":"Ignorer un nombre sp\u00e9cifique d\u2019\u00e9l\u00e9ments au sein du jeu de r\u00e9sultats.","type":"integer"},"order":{"required":false,"default":"asc","enum":["asc","desc"],"description":"Le param\u00e8tre order trie les attributs dans l\u2019ordre croissant ou d\u00e9croissant.","type":"string"},"orderby":{"required":false,"default":"name","enum":["id","include","name","slug","include_slugs","term_group","description","count"],"description":"Trier la collection par attributs de terme.","type":"string"},"hide_empty":{"required":false,"default":false,"description":"Pour masquer des termes non affect\u00e9es \u00e0 des publications ou non.","type":"boolean"},"post":{"required":false,"description":"Limiter le r\u00e9sultat aux termes assign\u00e9s \u00e0 une publication sp\u00e9cifique.","type":"integer"},"slug":{"required":false,"description":"Limiter le jeu de r\u00e9sultats aux termes ayant un ou plusieurs identifiants sp\u00e9cifiques.","type":"array","items":{"type":"string"}}}},{"methods":["POST"],"args":{"description":{"required":false,"description":"Description HTML du terme.","type":"string"},"name":{"required":true,"description":"Titre HTML pour le terme.","type":"string"},"slug":{"required":false,"description":"Un identificateur alphanum\u00e9rique pour le terme, propre au type de la ressource.","type":"string"},"meta":{"required":false,"description":"Champs m\u00e9tas.","type":"object"}}}],"_links":{"self":"https:\/\/blog.hugopoi.net\/wp-json\/wp\/v2\/tags"}},"\/wp\/v2\/tags\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"required":false,"description":"Identificateur unique pour le terme.","type":"integer"},"context":{"required":false,"default":"view","enum":["view","embed","edit"],"description":"Le contexte dans lequel la demande est faite\u00a0; cela d\u00e9termine les champs renvoy\u00e9s.","type":"string"}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"required":false,"description":"Identificateur unique pour le terme.","type":"integer"},"description":{"required":false,"description":"Description HTML du terme.","type":"string"},"name":{"required":false,"description":"Titre HTML pour le terme.","type":"string"},"slug":{"required":false,"description":"Un identificateur alphanum\u00e9rique pour le terme, propre au type de la ressource.","type":"string"},"meta":{"required":false,"description":"Champs m\u00e9tas.","type":"object"}}},{"methods":["DELETE"],"args":{"id":{"required":false,"description":"Identificateur unique pour le terme.","type":"integer"},"force":{"required":false,"default":false,"description":"N\u00e9cessite la valeur \"true\", car les termes ne supportent pas la suppression forc\u00e9e. ","type":"boolean"}}}]},"\/wp\/v2\/users":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"required":false,"default":"view","enum":["view","embed","edit"],"description":"Le contexte dans lequel la demande est faite\u00a0; cela d\u00e9termine les champs renvoy\u00e9s.","type":"string"},"page":{"required":false,"default":1,"description":"Page courante dans la collection.","type":"integer"},"per_page":{"required":false,"default":10,"description":"Nombre maximal d\u2019\u00e9l\u00e9ments \u00e0 renvoyer dans le groupe de r\u00e9sultats.","type":"integer"},"search":{"required":false,"description":"Limiter les r\u00e9sultats \u00e0 ceux qui correspondent \u00e0 une cha\u00eene de caract\u00e8res.","type":"string"},"exclude":{"required":false,"default":[],"description":"S\u2019assure que le jeu de r\u00e9sultats exclut des ID sp\u00e9cifiques.","type":"array","items":{"type":"integer"}},"include":{"required":false,"default":[],"description":"Limiter le groupe de r\u00e9sultats aux ID sp\u00e9cifi\u00e9s.","type":"array","items":{"type":"integer"}},"offset":{"required":false,"description":"Ignorer un nombre sp\u00e9cifique d\u2019\u00e9l\u00e9ments au sein du jeu de r\u00e9sultats.","type":"integer"},"order":{"required":false,"default":"asc","enum":["asc","desc"],"description":"Le param\u00e8tre order trie les attributs dans l\u2019ordre croissant ou d\u00e9croissant.","type":"string"},"orderby":{"required":false,"default":"name","enum":["id","include","name","registered_date","slug","include_slugs","email","url"],"description":"Trier la collection par attribut d\u2019objet.","type":"string"},"slug":{"required":false,"description":"Limiter le jeu de r\u00e9sultats aux utilisateurs ayant un ou plusieurs identifiants sp\u00e9cifiques.","type":"array","items":{"type":"string"}},"roles":{"required":false,"description":"Limiter le r\u00e9sultat aux utilisateurs correspondants \u00e0 au moins un r\u00f4le sp\u00e9cifique fourni. Accepte les listes de type CSV ou les r\u00f4les uniques.","type":"array","items":{"type":"string"}},"who":{"required":false,"enum":["authors"],"description":"Limiter le jeu de r\u00e9sultats aux utilisateurs consid\u00e9r\u00e9s comme auteurs.","type":"string"}}},{"methods":["POST"],"args":{"username":{"required":true,"description":"Nom de connexion pour l\u2019utilisateur.","type":"string"},"name":{"required":false,"description":"Nom affich\u00e9 pour l\u2019utilisateur.","type":"string"},"first_name":{"required":false,"description":"Pr\u00e9nom de l\u2019utilisateur.","type":"string"},"last_name":{"required":false,"description":"Nom de l\u2019utilisateur.","type":"string"},"email":{"required":true,"description":"L\u2019adresse e-mail pour l\u2019utilisateur.","type":"string"},"url":{"required":false,"description":"URL de l\u2019utilisateur.","type":"string"},"description":{"required":false,"description":"Description de l\u2019utilisateur.","type":"string"},"locale":{"required":false,"enum":["","en_US","fr_FR"],"description":"Langue de l\u2019utilisateur.","type":"string"},"nickname":{"required":false,"description":"Le surnom de l\u2019utilisateur.","type":"string"},"slug":{"required":false,"description":"Un identificateur alphanum\u00e9rique pour l\u2019utilisateur.","type":"string"},"roles":{"required":false,"description":"R\u00f4les assign\u00e9s \u00e0 l\u2019utilisateur.","type":"array","items":{"type":"string"}},"password":{"required":true,"description":"Mot de passe pour l\u2019utilisateur (jamais inclus).","type":"string"},"meta":{"required":false,"description":"Champs m\u00e9tas.","type":"object"}}}],"_links":{"self":"https:\/\/blog.hugopoi.net\/wp-json\/wp\/v2\/users"}},"\/wp\/v2\/users\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"required":false,"description":"Identificateur unique pour l\u2019utilisateur.","type":"integer"},"context":{"required":false,"default":"view","enum":["view","embed","edit"],"description":"Le contexte dans lequel la demande est faite\u00a0; cela d\u00e9termine les champs renvoy\u00e9s.","type":"string"}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"required":false,"description":"Identificateur unique pour l\u2019utilisateur.","type":"integer"},"username":{"required":false,"description":"Nom de connexion pour l\u2019utilisateur.","type":"string"},"name":{"required":false,"description":"Nom affich\u00e9 pour l\u2019utilisateur.","type":"string"},"first_name":{"required":false,"description":"Pr\u00e9nom de l\u2019utilisateur.","type":"string"},"last_name":{"required":false,"description":"Nom de l\u2019utilisateur.","type":"string"},"email":{"required":false,"description":"L\u2019adresse e-mail pour l\u2019utilisateur.","type":"string"},"url":{"required":false,"description":"URL de l\u2019utilisateur.","type":"string"},"description":{"required":false,"description":"Description de l\u2019utilisateur.","type":"string"},"locale":{"required":false,"enum":["","en_US","fr_FR"],"description":"Langue de l\u2019utilisateur.","type":"string"},"nickname":{"required":false,"description":"Le surnom de l\u2019utilisateur.","type":"string"},"slug":{"required":false,"description":"Un identificateur alphanum\u00e9rique pour l\u2019utilisateur.","type":"string"},"roles":{"required":false,"description":"R\u00f4les assign\u00e9s \u00e0 l\u2019utilisateur.","type":"array","items":{"type":"string"}},"password":{"required":false,"description":"Mot de passe pour l\u2019utilisateur (jamais inclus).","type":"string"},"meta":{"required":false,"description":"Champs m\u00e9tas.","type":"object"}}},{"methods":["DELETE"],"args":{"id":{"required":false,"description":"Identificateur unique pour l\u2019utilisateur.","type":"integer"},"force":{"required":false,"default":false,"description":"N\u00e9cessite la valeur \"true\", car l\u2019utilisateur ne supporte pas la suppression forc\u00e9e.","type":"boolean"},"reassign":{"required":true,"description":"R\u00e9affectez les publications et les liens de l\u2019utilisateur supprim\u00e9 \u00e0 cet ID d\u2019utilisateur.","type":"integer"}}}]},"\/wp\/v2\/users\/me":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"context":{"required":false,"default":"view","enum":["view","embed","edit"],"description":"Le contexte dans lequel la demande est faite\u00a0; cela d\u00e9termine les champs renvoy\u00e9s.","type":"string"}}},{"methods":["POST","PUT","PATCH"],"args":{"username":{"required":false,"description":"Nom de connexion pour l\u2019utilisateur.","type":"string"},"name":{"required":false,"description":"Nom affich\u00e9 pour l\u2019utilisateur.","type":"string"},"first_name":{"required":false,"description":"Pr\u00e9nom de l\u2019utilisateur.","type":"string"},"last_name":{"required":false,"description":"Nom de l\u2019utilisateur.","type":"string"},"email":{"required":false,"description":"L\u2019adresse e-mail pour l\u2019utilisateur.","type":"string"},"url":{"required":false,"description":"URL de l\u2019utilisateur.","type":"string"},"description":{"required":false,"description":"Description de l\u2019utilisateur.","type":"string"},"locale":{"required":false,"enum":["","en_US","fr_FR"],"description":"Langue de l\u2019utilisateur.","type":"string"},"nickname":{"required":false,"description":"Le surnom de l\u2019utilisateur.","type":"string"},"slug":{"required":false,"description":"Un identificateur alphanum\u00e9rique pour l\u2019utilisateur.","type":"string"},"roles":{"required":false,"description":"R\u00f4les assign\u00e9s \u00e0 l\u2019utilisateur.","type":"array","items":{"type":"string"}},"password":{"required":false,"description":"Mot de passe pour l\u2019utilisateur (jamais inclus).","type":"string"},"meta":{"required":false,"description":"Champs m\u00e9tas.","type":"object"}}},{"methods":["DELETE"],"args":{"force":{"required":false,"default":false,"description":"N\u00e9cessite la valeur \"true\", car l\u2019utilisateur ne supporte pas la suppression forc\u00e9e.","type":"boolean"},"reassign":{"required":true,"description":"R\u00e9affectez les publications et les liens de l\u2019utilisateur supprim\u00e9 \u00e0 cet ID d\u2019utilisateur.","type":"integer"}}}],"_links":{"self":"https:\/\/blog.hugopoi.net\/wp-json\/wp\/v2\/users\/me"}},"\/wp\/v2\/comments":{"namespace":"wp\/v2","methods":["GET","POST"],"endpoints":[{"methods":["GET"],"args":{"context":{"required":false,"default":"view","enum":["view","embed","edit"],"description":"Le contexte dans lequel la demande est faite\u00a0; cela d\u00e9termine les champs renvoy\u00e9s.","type":"string"},"page":{"required":false,"default":1,"description":"Page courante dans la collection.","type":"integer"},"per_page":{"required":false,"default":10,"description":"Nombre maximal d\u2019\u00e9l\u00e9ments \u00e0 renvoyer dans le groupe de r\u00e9sultats.","type":"integer"},"search":{"required":false,"description":"Limiter les r\u00e9sultats \u00e0 ceux qui correspondent \u00e0 une cha\u00eene de caract\u00e8res.","type":"string"},"after":{"required":false,"description":"Limiter les r\u00e9ponses aux commentaires publi\u00e9s apr\u00e8s une date donn\u00e9e et conforme ISO8601.","type":"string"},"author":{"required":false,"description":"Limiter le jeu de r\u00e9sultats aux commentaires assign\u00e9s aux ID utilisateurs sp\u00e9cifi\u00e9s. N\u00e9cessite des droits sp\u00e9cifiques.","type":"array","items":{"type":"integer"}},"author_exclude":{"required":false,"description":"S\u2019assurer que le jeu de r\u00e9sultats exclut les commentaires assign\u00e9s aux ID utilisateurs sp\u00e9cifi\u00e9s. N\u00e9cessite des droits sp\u00e9cifiques.","type":"array","items":{"type":"integer"}},"author_email":{"required":false,"description":"Limiter le jeu de r\u00e9sultats \u00e0 une adresse email d\u2019auteur sp\u00e9cifique. N\u00e9cessite les droits correspondants.","type":"string"},"before":{"required":false,"description":"Limiter les r\u00e9ponses aux commentaires publi\u00e9s avant une date donn\u00e9e et conforme ISO8601.","type":"string"},"exclude":{"required":false,"default":[],"description":"S\u2019assure que le jeu de r\u00e9sultats exclut des ID sp\u00e9cifiques.","type":"array","items":{"type":"integer"}},"include":{"required":false,"default":[],"description":"Limiter le groupe de r\u00e9sultats aux ID sp\u00e9cifi\u00e9s.","type":"array","items":{"type":"integer"}},"offset":{"required":false,"description":"Ignorer un nombre sp\u00e9cifique d\u2019\u00e9l\u00e9ments au sein du jeu de r\u00e9sultats.","type":"integer"},"order":{"required":false,"default":"desc","enum":["asc","desc"],"description":"Le param\u00e8tre order trie les attributs dans l\u2019ordre croissant ou d\u00e9croissant.","type":"string"},"orderby":{"required":false,"default":"date_gmt","enum":["date","date_gmt","id","include","post","parent","type"],"description":"Trier la collection par attribut d\u2019objet.","type":"string"},"parent":{"required":false,"default":[],"description":"Limiter le jeu de r\u00e9sultats aux commentaires ayant un ID parent sp\u00e9cifique.","type":"array","items":{"type":"integer"}},"parent_exclude":{"required":false,"default":[],"description":"S\u2019assure que le jeu de r\u00e9sultats exclut des ID parents sp\u00e9cifiques.","type":"array","items":{"type":"integer"}},"post":{"required":false,"default":[],"description":"Limite le jeu de r\u00e9sultats aux commentaires assign\u00e9s \u00e0 des ID de publications sp\u00e9cifiques.","type":"array","items":{"type":"integer"}},"status":{"required":false,"default":"approve","description":"Limiter le jeu de r\u00e9sultats aux commentaires assign\u00e9s \u00e0 un \u00e9tat sp\u00e9cifique. N\u00e9cessite les droits correspondants.","type":"string"},"type":{"required":false,"default":"comment","description":"Limite le jeu de r\u00e9sultats aux commentaires assign\u00e9s \u00e0 un type sp\u00e9cifique. N\u00e9cessite des droits sp\u00e9cifiques.","type":"string"},"password":{"required":false,"description":"Le mot de passe pour cette publication, si celle-ci est prot\u00e9g\u00e9e par un mot de passe.","type":"string"}}},{"methods":["POST"],"args":{"author":{"required":false,"description":"L\u2019ID de l\u2019objet user, si l\u2019auteur \u00e9tait un utilisateur.","type":"integer"},"author_email":{"required":false,"description":"Adresse de messagerie pour l\u2019objet auteur.","type":"string"},"author_ip":{"required":false,"description":"Adresse IP de l\u2019auteur de l\u2019objet.","type":"string"},"author_name":{"required":false,"description":"Nom affich\u00e9 pour l\u2019objet auteur.","type":"string"},"author_url":{"required":false,"description":"URL pour l\u2019objet auteur.","type":"string"},"author_user_agent":{"required":false,"description":"Agent utilisateur pour l\u2019objet author.","type":"string"},"content":{"required":false,"description":"Le contenu pour cet objet.","type":"object"},"date":{"required":false,"description":"La date \u00e0 laquelle l\u2019objet a \u00e9t\u00e9 publi\u00e9, dans le fuseau horaire du site.","type":"string"},"date_gmt":{"required":false,"description":"La date \u00e0 laquelle l\u2019objet a \u00e9t\u00e9 publi\u00e9, au format GMT.","type":"string"},"parent":{"required":false,"default":0,"description":"L\u2019ID du parent de l\u2019objet.","type":"integer"},"post":{"required":false,"default":0,"description":"L\u2019ID de l\u2019objet publication associ\u00e9.","type":"integer"},"status":{"required":false,"description":"\u00c9tat de l\u2019objet.","type":"string"},"meta":{"required":false,"description":"Champs m\u00e9tas.","type":"object"}}}],"_links":{"self":"https:\/\/blog.hugopoi.net\/wp-json\/wp\/v2\/comments"}},"\/wp\/v2\/comments\/(?P[\\d]+)":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH","DELETE"],"endpoints":[{"methods":["GET"],"args":{"id":{"required":false,"description":"Identifiant unique de l\u2019objet.","type":"integer"},"context":{"required":false,"default":"view","enum":["view","embed","edit"],"description":"Le contexte dans lequel la demande est faite\u00a0; cela d\u00e9termine les champs renvoy\u00e9s.","type":"string"},"password":{"required":false,"description":"Mot de passe de la publication parente du commentaire (si la publication est prot\u00e9g\u00e9e par un mot de passe).","type":"string"}}},{"methods":["POST","PUT","PATCH"],"args":{"id":{"required":false,"description":"Identifiant unique de l\u2019objet.","type":"integer"},"author":{"required":false,"description":"L\u2019ID de l\u2019objet user, si l\u2019auteur \u00e9tait un utilisateur.","type":"integer"},"author_email":{"required":false,"description":"Adresse de messagerie pour l\u2019objet auteur.","type":"string"},"author_ip":{"required":false,"description":"Adresse IP de l\u2019auteur de l\u2019objet.","type":"string"},"author_name":{"required":false,"description":"Nom affich\u00e9 pour l\u2019objet auteur.","type":"string"},"author_url":{"required":false,"description":"URL pour l\u2019objet auteur.","type":"string"},"author_user_agent":{"required":false,"description":"Agent utilisateur pour l\u2019objet author.","type":"string"},"content":{"required":false,"description":"Le contenu pour cet objet.","type":"object"},"date":{"required":false,"description":"La date \u00e0 laquelle l\u2019objet a \u00e9t\u00e9 publi\u00e9, dans le fuseau horaire du site.","type":"string"},"date_gmt":{"required":false,"description":"La date \u00e0 laquelle l\u2019objet a \u00e9t\u00e9 publi\u00e9, au format GMT.","type":"string"},"parent":{"required":false,"description":"L\u2019ID du parent de l\u2019objet.","type":"integer"},"post":{"required":false,"description":"L\u2019ID de l\u2019objet publication associ\u00e9.","type":"integer"},"status":{"required":false,"description":"\u00c9tat de l\u2019objet.","type":"string"},"meta":{"required":false,"description":"Champs m\u00e9tas.","type":"object"}}},{"methods":["DELETE"],"args":{"id":{"required":false,"description":"Identifiant unique de l\u2019objet.","type":"integer"},"force":{"required":false,"default":false,"description":"Que ce soit pour \u00e9viter la corbeille ou forcer la suppression.","type":"boolean"},"password":{"required":false,"description":"Mot de passe de la publication parente du commentaire (si la publication est prot\u00e9g\u00e9e par un mot de passe).","type":"string"}}}]},"\/wp\/v2\/search":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"required":false,"default":"view","enum":["view","embed"],"description":"Le contexte dans lequel la demande est faite\u00a0; cela d\u00e9termine les champs renvoy\u00e9s.","type":"string"},"page":{"required":false,"default":1,"description":"Page courante dans la collection.","type":"integer"},"per_page":{"required":false,"default":10,"description":"Nombre maximal d\u2019\u00e9l\u00e9ments \u00e0 renvoyer dans le groupe de r\u00e9sultats.","type":"integer"},"search":{"required":false,"description":"Limiter les r\u00e9sultats \u00e0 ceux qui correspondent \u00e0 une cha\u00eene de caract\u00e8res.","type":"string"},"type":{"required":false,"default":"post","enum":["post"],"description":"Limiter les r\u00e9sultats aux \u00e9l\u00e9ments d\u2019un type d\u2019objet.","type":"string"},"subtype":{"required":false,"default":"any","description":"Limiter les r\u00e9sultats aux \u00e9l\u00e9ments d\u2019un ou plusieurs sous-types d\u2019objet.","type":"array","items":{"enum":["post","page","any"],"type":"string"}}}}],"_links":{"self":"https:\/\/blog.hugopoi.net\/wp-json\/wp\/v2\/search"}},"\/wp\/v2\/block-renderer\/(?Pcore\/archives)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"name":{"required":false,"description":"Nom unique enregistr\u00e9 de ce bloc.","type":"string"},"context":{"required":false,"default":"view","enum":["edit"],"description":"Le contexte dans lequel la demande est faite\u00a0; cela d\u00e9termine les champs renvoy\u00e9s.","type":"string"},"attributes":{"required":false,"default":[],"description":"Attributs du bloc core\/archives","type":"object"},"post_id":{"required":false,"description":"ID de ce contenu\/contexte.","type":"integer"}}}]},"\/wp\/v2\/block-renderer\/(?Pcore\/block)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"name":{"required":false,"description":"Nom unique enregistr\u00e9 de ce bloc.","type":"string"},"context":{"required":false,"default":"view","enum":["edit"],"description":"Le contexte dans lequel la demande est faite\u00a0; cela d\u00e9termine les champs renvoy\u00e9s.","type":"string"},"attributes":{"required":false,"default":[],"description":"Attributs du bloc core\/block","type":"object"},"post_id":{"required":false,"description":"ID de ce contenu\/contexte.","type":"integer"}}}]},"\/wp\/v2\/block-renderer\/(?Pcore\/calendar)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"name":{"required":false,"description":"Nom unique enregistr\u00e9 de ce bloc.","type":"string"},"context":{"required":false,"default":"view","enum":["edit"],"description":"Le contexte dans lequel la demande est faite\u00a0; cela d\u00e9termine les champs renvoy\u00e9s.","type":"string"},"attributes":{"required":false,"default":[],"description":"Attributs du bloc core\/calendar","type":"object"},"post_id":{"required":false,"description":"ID de ce contenu\/contexte.","type":"integer"}}}]},"\/wp\/v2\/block-renderer\/(?Pcore\/categories)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"name":{"required":false,"description":"Nom unique enregistr\u00e9 de ce bloc.","type":"string"},"context":{"required":false,"default":"view","enum":["edit"],"description":"Le contexte dans lequel la demande est faite\u00a0; cela d\u00e9termine les champs renvoy\u00e9s.","type":"string"},"attributes":{"required":false,"default":[],"description":"Attributs du bloc core\/categories","type":"object"},"post_id":{"required":false,"description":"ID de ce contenu\/contexte.","type":"integer"}}}]},"\/wp\/v2\/block-renderer\/(?Pcore\/latest-comments)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"name":{"required":false,"description":"Nom unique enregistr\u00e9 de ce bloc.","type":"string"},"context":{"required":false,"default":"view","enum":["edit"],"description":"Le contexte dans lequel la demande est faite\u00a0; cela d\u00e9termine les champs renvoy\u00e9s.","type":"string"},"attributes":{"required":false,"default":[],"description":"Attributs du bloc core\/latest-comments","type":"object"},"post_id":{"required":false,"description":"ID de ce contenu\/contexte.","type":"integer"}}}]},"\/wp\/v2\/block-renderer\/(?Pcore\/latest-posts)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"name":{"required":false,"description":"Nom unique enregistr\u00e9 de ce bloc.","type":"string"},"context":{"required":false,"default":"view","enum":["edit"],"description":"Le contexte dans lequel la demande est faite\u00a0; cela d\u00e9termine les champs renvoy\u00e9s.","type":"string"},"attributes":{"required":false,"default":[],"description":"Attributs du bloc core\/latest-posts","type":"object"},"post_id":{"required":false,"description":"ID de ce contenu\/contexte.","type":"integer"}}}]},"\/wp\/v2\/block-renderer\/(?Pcore\/rss)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"name":{"required":false,"description":"Nom unique enregistr\u00e9 de ce bloc.","type":"string"},"context":{"required":false,"default":"view","enum":["edit"],"description":"Le contexte dans lequel la demande est faite\u00a0; cela d\u00e9termine les champs renvoy\u00e9s.","type":"string"},"attributes":{"required":false,"default":[],"description":"Attributs du bloc core\/rss","type":"object"},"post_id":{"required":false,"description":"ID de ce contenu\/contexte.","type":"integer"}}}]},"\/wp\/v2\/block-renderer\/(?Pcore\/search)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"name":{"required":false,"description":"Nom unique enregistr\u00e9 de ce bloc.","type":"string"},"context":{"required":false,"default":"view","enum":["edit"],"description":"Le contexte dans lequel la demande est faite\u00a0; cela d\u00e9termine les champs renvoy\u00e9s.","type":"string"},"attributes":{"required":false,"default":[],"description":"Attributs du bloc core\/search","type":"object"},"post_id":{"required":false,"description":"ID de ce contenu\/contexte.","type":"integer"}}}]},"\/wp\/v2\/block-renderer\/(?Pcore\/shortcode)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"name":{"required":false,"description":"Nom unique enregistr\u00e9 de ce bloc.","type":"string"},"context":{"required":false,"default":"view","enum":["edit"],"description":"Le contexte dans lequel la demande est faite\u00a0; cela d\u00e9termine les champs renvoy\u00e9s.","type":"string"},"attributes":{"required":false,"default":[],"description":"Attributs du bloc core\/shortcode","type":"object"},"post_id":{"required":false,"description":"ID de ce contenu\/contexte.","type":"integer"}}}]},"\/wp\/v2\/block-renderer\/(?Pcore\/tag-cloud)":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"name":{"required":false,"description":"Nom unique enregistr\u00e9 de ce bloc.","type":"string"},"context":{"required":false,"default":"view","enum":["edit"],"description":"Le contexte dans lequel la demande est faite\u00a0; cela d\u00e9termine les champs renvoy\u00e9s.","type":"string"},"attributes":{"required":false,"default":[],"description":"Attributs du bloc core\/tag-cloud","type":"object"},"post_id":{"required":false,"description":"ID de ce contenu\/contexte.","type":"integer"}}}]},"\/wp\/v2\/settings":{"namespace":"wp\/v2","methods":["GET","POST","PUT","PATCH"],"endpoints":[{"methods":["GET"],"args":[]},{"methods":["POST","PUT","PATCH"],"args":{"title":{"required":false,"description":"Titre du site.","type":"string"},"description":{"required":false,"description":"Slogan du site.","type":"string"},"url":{"required":false,"description":"URL du site.","type":"string"},"email":{"required":false,"description":"Cette adresse est utilis\u00e9e \u00e0 des fins d\u2019administration, comme les notifications d\u2019utilisateur.","type":"string"},"timezone":{"required":false,"description":"Une ville dans le m\u00eame fuseau horaire que le v\u00f4tre.","type":"string"},"date_format":{"required":false,"description":"Un format de date commun pour tous les r\u00e9glages de dates.","type":"string"},"time_format":{"required":false,"description":"Un format d\u2019heure commun pour tous les r\u00e9glages d\u2019heures.","type":"string"},"start_of_week":{"required":false,"description":"Le num\u00e9ro du jour de la semaine \u00e0 laquelle la semaine devrait commencer.","type":"integer"},"language":{"required":false,"description":"Code local de l\u2019installation WordPress.","type":"string"},"use_smilies":{"required":false,"description":"Convertir les \u00e9motic\u00f4nes, comme :-) et :-P, en images lors de l\u2019affichage.","type":"boolean"},"default_category":{"required":false,"description":"Cat\u00e9gorie d\u2019article par d\u00e9faut.","type":"integer"},"default_post_format":{"required":false,"description":"Format d\u2019article par d\u00e9faut.","type":"string"},"posts_per_page":{"required":false,"description":"Les pages de blog affichent au maximum.","type":"integer"},"default_ping_status":{"required":false,"enum":["open","closed"],"description":"Autoriser les liens de notification d\u2019autres blogs (pings et r\u00e9troliens) sur les nouveaux articles.","type":"string"},"default_comment_status":{"required":false,"enum":["open","closed"],"description":"Autoriser les gens \u00e0 envoyer des commentaires sur les nouvelles publications.","type":"string"}}}],"_links":{"self":"https:\/\/blog.hugopoi.net\/wp-json\/wp\/v2\/settings"}},"\/wp\/v2\/themes":{"namespace":"wp\/v2","methods":["GET"],"endpoints":[{"methods":["GET"],"args":{"context":{"required":false,"description":"Le contexte dans lequel la demande est faite\u00a0; cela d\u00e9termine les champs renvoy\u00e9s.","type":"string"},"page":{"required":false,"default":1,"description":"Page courante dans la collection.","type":"integer"},"per_page":{"required":false,"default":10,"description":"Nombre maximal d\u2019\u00e9l\u00e9ments \u00e0 renvoyer dans le groupe de r\u00e9sultats.","type":"integer"},"search":{"required":false,"description":"Limiter les r\u00e9sultats \u00e0 ceux qui correspondent \u00e0 une cha\u00eene de caract\u00e8res.","type":"string"},"status":{"required":true,"description":"Limiter les r\u00e9sultats aux th\u00e8mes qui poss\u00e8dent un ou plusieurs \u00e9tats.","type":"array","items":{"enum":["active"],"type":"string"}}}}],"_links":{"self":"https:\/\/blog.hugopoi.net\/wp-json\/wp\/v2\/themes"}}},"_links":{"help":[{"href":"http:\/\/v2.wp-api.org\/"}]}} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/70d9054aba881c74fd362e4d531fbdc048cc5442.00000628.css b/www/.content.EZtzwPjb/html/70d9054aba881c74fd362e4d531fbdc048cc5442.00000628.css new file mode 100644 index 0000000..8043bbf --- /dev/null +++ b/www/.content.EZtzwPjb/html/70d9054aba881c74fd362e4d531fbdc048cc5442.00000628.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;background:#fff;border:1px +solid #f00;font-size:10pt;width:280px;padding:2px}span.wpcf7-not-valid-tip-no-ajax{color:#f00;font-size:10pt;display:block}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/70e9a19d6d11a7aa4a0a5cccb297a38cbb599c56.00001297.xml b/www/.content.EZtzwPjb/html/70e9a19d6d11a7aa4a0a5cccb297a38cbb599c56.00001297.xml new file mode 100644 index 0000000..8572bbe --- /dev/null +++ b/www/.content.EZtzwPjb/html/70e9a19d6d11a7aa4a0a5cccb297a38cbb599c56.00001297.xml @@ -0,0 +1,7 @@ + +1.0HugoPoihttp://blog.hugopoi.netHugoPoihttp://blog.hugopoi.net/author/hugopoi/Asus U36 et OCZ Vertex 3 la suiterich600338<blockquote class="wp-embedded-content"><a href="/2012/03/30/asus-u36-et-ocz-vertex-3-la-suite/">Asus U36 et OCZ Vertex 3 la suite</a></blockquote> +<script type='text/javascript'> +<!--//--><![CDATA[//><!-- + !function(a,b){"use strict";function c(){if(!e){e=!0;var a,c,d,f,g=-1!==navigator.appVersion.indexOf("MSIE 10"),h=!!navigator.userAgent.match(/Trident.*rv:11\./),i=b.querySelectorAll("iframe.wp-embedded-content");for(c=0;c<i.length;c++)if(d=i[c],!d.getAttribute("data-secret")){if(f=Math.random().toString(36).substr(2,10),d.src+="#?secret="+f,d.setAttribute("data-secret",f),g||h)a=d.cloneNode(!0),a.removeAttribute("security"),d.parentNode.replaceChild(a,d)}else;}}var d=!1,e=!1;if(b.querySelector)if(a.addEventListener)d=!0;if(a.wp=a.wp||{},!a.wp.receiveEmbedMessage)if(a.wp.receiveEmbedMessage=function(c){var d=c.data;if(d.secret||d.message||d.value)if(!/[^a-zA-Z0-9]/.test(d.secret)){var e,f,g,h,i,j=b.querySelectorAll('iframe[data-secret="'+d.secret+'"]'),k=b.querySelectorAll('blockquote[data-secret="'+d.secret+'"]');for(e=0;e<k.length;e++)k[e].style.display="none";for(e=0;e<j.length;e++)if(f=j[e],c.source===f.contentWindow){if(f.removeAttribute("style"),"height"===d.message){if(g=parseInt(d.value,10),g>1e3)g=1e3;else if(~~g<200)g=200;f.height=g}if("link"===d.message)if(h=b.createElement("a"),i=b.createElement("a"),h.href=f.getAttribute("src"),i.href=d.value,i.host===h.host)if(b.activeElement===f)a.top.location.href=d.value}else;}},d)a.addEventListener("message",a.wp.receiveEmbedMessage,!1),b.addEventListener("DOMContentLoaded",c,!1),a.addEventListener("load",c,!1)}(window,document); +//--><!]]> +</script><iframe sandbox="allow-scripts" security="restricted" src="/2012/03/30/asus-u36-et-ocz-vertex-3-la-suite/embed/" width="600" height="338" title="« Asus U36 et OCZ Vertex 3 la suite » — HugoPoi" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" class="wp-embedded-content"></iframe> diff --git a/www/.content.EZtzwPjb/html/70f1b2e08dd3bced7bd033129d08f9ddc055f113.00000077.xml b/www/.content.EZtzwPjb/html/70f1b2e08dd3bced7bd033129d08f9ddc055f113.00000077.xml new file mode 100644 index 0000000..c9883a6 --- /dev/null +++ b/www/.content.EZtzwPjb/html/70f1b2e08dd3bced7bd033129d08f9ddc055f113.00000077.xml @@ -0,0 +1,17 @@ + + + Commentaires sur : Quel age pour s’inscrire sur Facebook ? + + http://blog.hugopoi.net/2011/05/13/quel-age-pour-sinscrire-sur-facebook/ + Internet, Hardware et Bidouille + Mon, 22 Aug 2016 14:09:10 +0000 + hourly + 1 + https://wordpress.org/?v=4.6.1 + + diff --git a/www/.content.EZtzwPjb/html/70f737fc2e5d0b30c2953828bbc5a6a429a170fd.00000039.xml b/www/.content.EZtzwPjb/html/70f737fc2e5d0b30c2953828bbc5a6a429a170fd.00000039.xml new file mode 100644 index 0000000..1a68000 --- /dev/null +++ b/www/.content.EZtzwPjb/html/70f737fc2e5d0b30c2953828bbc5a6a429a170fd.00000039.xml @@ -0,0 +1,39 @@ + + + Commentaires sur : IPv6 – Intro + + http://blog.hugopoi.net/2010/12/20/ipv6-intro/ + Internet, Hardware et Bidouille + Mon, 22 Aug 2016 14:09:10 +0000 + hourly + 1 + https://wordpress.org/?v=4.6.1 + + Par : Kldint + http://blog.hugopoi.net/2010/12/20/ipv6-intro/#comment-30 + + Sun, 26 Dec 2010 21:50:55 +0000 + http://blog.hugopoi.net/?p=77#comment-30 + + Il existe des fournisseurs qui proposent des tunnels en 6in4.
                      +Par exemple, huricane electric tunnelbroker http://www.tunnelbroker.net/ ou SixXS http://www.sixxs.net/.

                      +]]>
                      +
                      + + Par : Samy DINDANE + http://blog.hugopoi.net/2010/12/20/ipv6-intro/#comment-28 + + Sun, 26 Dec 2010 11:06:26 +0000 + http://blog.hugopoi.net/?p=77#comment-28 + + Article intéressant, qui le sera encore plus si tu parles des solutions de « transition ». :)

                      +]]>
                      +
                      +
                      +
                      diff --git a/www/.content.EZtzwPjb/html/70f9d34d9b88ac1315ae986991162bdf1401e8cd.00000302.xml b/www/.content.EZtzwPjb/html/70f9d34d9b88ac1315ae986991162bdf1401e8cd.00000302.xml new file mode 100644 index 0000000..e6d9277 --- /dev/null +++ b/www/.content.EZtzwPjb/html/70f9d34d9b88ac1315ae986991162bdf1401e8cd.00000302.xml @@ -0,0 +1,210 @@ + + + Hardware – HugoPoi + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Sat, 11 Feb 2017 17:37:20 +0000 + fr-FR + hourly + 1 + https://wordpress.org/?v=4.7.2 + + Reflow Dell Inspiron 1546 + http://blog.hugopoi.net/2016/08/22/reflow-dell-1546/ + http://blog.hugopoi.net/2016/08/22/reflow-dell-1546/#respond + Mon, 22 Aug 2016 14:00:28 +0000 + + + + + + + + + + http://blog.hugopoi.net/?p=918 + Lire la suite »

                      ]]>
                      + http://blog.hugopoi.net/2016/08/22/reflow-dell-1546/feed/ + 0 +
                      + + Test et démontage d’un Sony Multi Flip 15 SVF15N1C5E + http://blog.hugopoi.net/2014/08/04/test-et-demontage-dun-sony-multi-flip-15-svf15n1c5e/ + http://blog.hugopoi.net/2014/08/04/test-et-demontage-dun-sony-multi-flip-15-svf15n1c5e/#respond + Mon, 04 Aug 2014 13:25:59 +0000 + + + + + + + + + http://blog.hugopoi.net/?p=856 + Lire la suite »

                      ]]>
                      + http://blog.hugopoi.net/2014/08/04/test-et-demontage-dun-sony-multi-flip-15-svf15n1c5e/feed/ + 0 +
                      + + Écran miraculé d’un Asus N53SN + http://blog.hugopoi.net/2014/08/02/ecran-miracule-dun-asus-n53sn/ + http://blog.hugopoi.net/2014/08/02/ecran-miracule-dun-asus-n53sn/#comments + Sat, 02 Aug 2014 17:53:57 +0000 + + + + + + + + http://blog.hugopoi.net/?p=819 + Lire la suite »

                      ]]>
                      + http://blog.hugopoi.net/2014/08/02/ecran-miracule-dun-asus-n53sn/feed/ + 1 +
                      + + Réparer et transformer une clé USB de 4Go en 8Go + http://blog.hugopoi.net/2013/05/11/reparer-et-transformer-une-cle-usb-de-4go-en-8go/ + http://blog.hugopoi.net/2013/05/11/reparer-et-transformer-une-cle-usb-de-4go-en-8go/#comments + Sat, 11 May 2013 13:51:53 +0000 + + + + + + + + http://blog.hugopoi.net/?p=768 + Lire la suite »

                      ]]>
                      + http://blog.hugopoi.net/2013/05/11/reparer-et-transformer-une-cle-usb-de-4go-en-8go/feed/ + 8 +
                      + + Réparer un Vidéoprojecteur Sony VPL-CX5 + http://blog.hugopoi.net/2013/05/04/reparer-un-videoprojecteur-sony-vpl-cx5/ + http://blog.hugopoi.net/2013/05/04/reparer-un-videoprojecteur-sony-vpl-cx5/#comments + Sat, 04 May 2013 15:26:39 +0000 + + + + + + + + http://blog.hugopoi.net/?p=737 + Lire la suite »

                      ]]>
                      + http://blog.hugopoi.net/2013/05/04/reparer-un-videoprojecteur-sony-vpl-cx5/feed/ + 15 +
                      + + Démonter un Switch Cisco 2950T + http://blog.hugopoi.net/2013/02/09/demonter-un-switch-cisco-2950t/ + http://blog.hugopoi.net/2013/02/09/demonter-un-switch-cisco-2950t/#comments + Sat, 09 Feb 2013 11:41:20 +0000 + + + + + + + http://blog.hugopoi.net/?p=716 + Lire la suite »

                      ]]>
                      + http://blog.hugopoi.net/2013/02/09/demonter-un-switch-cisco-2950t/feed/ + 3 +
                      + + Home Cinéma + http://blog.hugopoi.net/2012/12/26/home-cinema/ + http://blog.hugopoi.net/2012/12/26/home-cinema/#respond + Wed, 26 Dec 2012 14:42:16 +0000 + + + + + + + + + + + + + http://blog.hugopoi.net/?p=518 + Lire la suite »

                      ]]>
                      + http://blog.hugopoi.net/2012/12/26/home-cinema/feed/ + 0 +
                      + + Liste de Noël + http://blog.hugopoi.net/2012/11/18/liste-de-noel-2/ + http://blog.hugopoi.net/2012/11/18/liste-de-noel-2/#respond + Sun, 18 Nov 2012 21:00:38 +0000 + + + + + + + + + + + http://blog.hugopoi.net/?p=556 + Lire la suite »

                      ]]>
                      + http://blog.hugopoi.net/2012/11/18/liste-de-noel-2/feed/ + 0 +
                      + + Asus U36 et OCZ Vertex 3 la suite + http://blog.hugopoi.net/2012/03/30/asus-u36-et-ocz-vertex-3-la-suite/ + http://blog.hugopoi.net/2012/03/30/asus-u36-et-ocz-vertex-3-la-suite/#comments + Fri, 30 Mar 2012 10:29:27 +0000 + + + + + + + + + + + + + + + + http://blog.hugopoi.net/?p=635 + Lire la suite »

                      ]]>
                      + http://blog.hugopoi.net/2012/03/30/asus-u36-et-ocz-vertex-3-la-suite/feed/ + 1 +
                      + + Démontage Asus U36 + http://blog.hugopoi.net/2011/07/30/demontage-asus-u36/ + http://blog.hugopoi.net/2011/07/30/demontage-asus-u36/#comments + Sat, 30 Jul 2011 13:19:08 +0000 + + + + + + + + + + http://blog.hugopoi.net/?p=495 + J’ai acheté un petit SSD pour mettre dans mon U36 acheté il y a quelques mois, je n’ai pas trouvé de procédure de démontage sur Internet donc voici les photos de mon démontage. 1) Commencer par enlever toutes les vis …

                      Lire la suite »

                      ]]>
                      + http://blog.hugopoi.net/2011/07/30/demontage-asus-u36/feed/ + 19 +
                      +
                      +
                      diff --git a/www/.content.EZtzwPjb/html/720def203efe69beb2e75bdeb4f2852409f24774.00000086.html b/www/.content.EZtzwPjb/html/720def203efe69beb2e75bdeb4f2852409f24774.00000086.html new file mode 100644 index 0000000..9532317 --- /dev/null +++ b/www/.content.EZtzwPjb/html/720def203efe69beb2e75bdeb4f2852409f24774.00000086.html @@ -0,0 +1,497 @@ + + + + + + Démontage Asus U36 | HugoPoi + + + + + + + + + + + + + + + + + +
                      + +
                      +
                      +

                      Démontage Asus U36

                      + +
                      +
                      + +

                      J’ai acheté un petit SSD pour mettre dans mon U36 acheté il y a quelques mois, je n’ai pas trouvé de procédure de démontage sur Internet donc voici les photos de mon démontage.

                      +

                      1) Commencer par enlever toutes les vis et la trappe pour accéder à la RAM, puis déconnecter les deux connecteurs clavier et touchpad qui se situent juste à coté de la carte wifi.

                      +

                      2) Retourner le pc et à l’aide d’un petit tournevis plat, dé-clipser les petits clips sur tout le tour du pc. Vous pouvez maintenant enlever toute la partie supérieur.

                      +

                      +

                      3) Démontage Terminé :D

                      +

                      4) Galerie

                      + + +
                      +
                      +
                      + + +
                      + + +
                        +
                      1. +
                        + +
                        +

                        Salut Hugo,

                        +

                        Comment as tu fait pour déconnecter les deux connecteurs clavier et touchpad qui se situent juste à coté de la carte wifi ?

                        +

                        Merci d’avance,
                        +John

                        +
                        + +
                        +
                          +
                        • +
                          + +
                          +

                          Désolé pour l’attente,

                          +

                          Il faut prendre un petit tournevis plat et relever les petites languettes au dessus des nappes de façon à la mettre à 90° par rapport à la carte mère.

                          +
                          + +
                          +
                        • +
                        +
                      2. +
                      3. +
                        +
                        + leboulanger + +
                        +
                        +

                        bonjour,
                        +super ton tuto ! j’ai la m idée que toi à savoir mettre un ssd mais est ce que tu sais si çest du SATA 1 ou 2 ? concernant les connecteurs je ne l’ai situe pas du tout. est ce que tu pourrais ajoutait une photo stp ?
                        +merci en ts cas pour la contribution

                        +
                        + +
                        +
                          +
                        • +
                          + +
                          +

                          Salut,
                          +Pour le mode SATA c’est du 2. Après j’ai pas d’autre photo mais le connecteur il est situé juste au bout du disque sur la gauche.

                          +
                          + +
                          +
                        • +
                        +
                      4. +
                      5. +
                        +
                        + Asus U36 et OCZ Vertex 3 la suite | HugoPoi - pingback on 15 mai 2012 at 3 h 39 min +
                        +
                        +
                      6. +
                      7. +
                        + +
                        +

                        J’ai aussi démonté le mien pour mettre un ssd et il n’a plus jamais redémarré (même avec le disque dur initial) …
                        +Un conseil, soyez très prudents !

                        +
                        + +
                        + +
                      8. +
                      9. +
                        + +
                        +

                        Emiso tu es un boulet

                        +
                        + +
                        + +
                      10. +
                      11. +
                        + +
                        +

                        Mon U36 avec un SSD Crucial M4 et une carte Intel Centrino n-6230 à la place de la n-100… que du bonheur.

                        +

                        Merci pour le tuto bien utile.

                        +
                        + +
                        +
                      12. +
                      13. +
                        + +
                        +

                        merci pour ce tuto; a noter un truc pour ne pas perdre les vis et savoir où les replacer:

                        +

                        http://fr.slideshare.net/stepmond/remplacement-ecran-sony-vaio?ref=http://www.pcsoleil.fr/ecran-pc-portable-sony-vaio-casse/

                        +

                        3eme diapo

                        +
                        + +
                        +
                      14. +
                      15. +
                        + +
                        +

                        Can you send me a close up picture of both sides of the U36JC I/O board? It would be nice if you could give me also the resistor/capacitor values. I need to connect my SATA hard drive, but the board itself is very expensive. Do you think I can solder the SATA wires to a cable and plug that to the hard drive?

                        +
                        + +
                        +
                          +
                        • +
                          + +
                          +

                          I don’t want to reopen my laptop just for take picture. I don’t know if there are any out pins to solder a SATA connector but in Intel driver menu on Windows a port with no-connection appear.

                          +
                          + +
                          +
                        • +
                        +
                      16. +
                      17. +
                        + +
                        +

                        Hello , j’ai également cet Asus et comme tout le monde je pense, bien tenté de remplacer le disque dur de base par un ssd ^^.
                        + Sur la première image de ton petit tuto, tu sembles montrer des emplacements vis sous les antidérapants.. ca me semble étrange ;p. Je voulais savoir si ceux si ne risquaient pas de s’abîmer (et du coup s’ils se remettaient également facilement).
                        + Si tu passe par là, merci de la réponse!

                        +
                        + +
                        +
                          +
                        • +
                          + +
                          +

                          J’ai pu décoller et recoller sans problème les patins antidérapants. Mais à la rigueur prévoir du double-face pour remplacement.

                          +
                          + +
                          +
                        • +
                        +
                      18. +
                      19. +
                        + +
                        +

                        Oh my goodness! Incredible article dude! Thank
                        +you so much, However I am going through issues with your RSS.
                        +I don’t know why I am unable to subscribe to it. Is there anyone else getting the same RSS problems? Anybody who knows the answer will you kindly respond? Thanks!!

                        +
                        + +
                        + +
                      20. +
                      + +
                      +

                      Répondre à Javen ¬
                      Annuler la réponse

                      +
                      +

                      + +

                      +

                      NOTE - Vous pouvez utiliser les éléments et attributs HTML tags and attributes:
                      <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

                      + + + +

                      +

                      +
                      +
                      +

                      Trackbacks and Pingbacks:

                      + +
                      +
                      +
                      +
                      + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/726e7bb89494c4813b1d3d1e9dd2cf71c9300718.00001275.json b/www/.content.EZtzwPjb/html/726e7bb89494c4813b1d3d1e9dd2cf71c9300718.00001275.json new file mode 100644 index 0000000..8340b11 --- /dev/null +++ b/www/.content.EZtzwPjb/html/726e7bb89494c4813b1d3d1e9dd2cf71c9300718.00001275.json @@ -0,0 +1 @@ +{"version":"1.0","provider_name":"HugoPoi","provider_url":"http:\/\/blog.hugopoi.net","author_name":"HugoPoi","author_url":"http:\/\/blog.hugopoi.net\/author\/hugopoi\/","title":"Coup de gueule","type":"rich","width":600,"height":338,"html":"
                      Coup de gueule<\/a><\/blockquote>\n + + + + + + + + + + + + + + + + + + + + + + +
                      +
                      +
                      +
                      + +
                      +
                      +
                      +
                      +
                      +
                      +

                      Après la petite interview de Pascal Nègre réalisée par TF1 News, j’en ai eu marre de voir encore et toujours le terme « pirate » pour désigner les personnes qui téléchargent illégalement. Pour rappel, la définition du terme « pirate » : Le mot pirate provient à la fois du terme grec πειρατής (peiratês), lui même dérivé du verbe πειράω (peiraô) signifiant « s’efforcer de », « essayer de », « tenter sa chance à l’aventure » et du latin pirata : celui qui tente la fortune, qui entreprend. Ce n’est qu’au Moyen Âge que le pirate désigne un bandit qui parcourait les mers pour piller des navires de commerce.

                      +

                      Alors Pascal, prenons comme point de départ que vous désignez « pirate » ceux qui pillent votre maison de disque. Cela voudrait donc dire que je viens avec ma bande de flibustier équipé de canon pour défoncer votre devanture et voler votre argent. Mais ceci n’est exact puisque je ne vais pas chez votre fabricant de disques voler les disques fabriqués pour les revendre au plus offrant et me faire plein de blé. Moi je ne suis qu’un pauvre étudiant qui n’a aucun moyen financier, et je ne pourrais jamais acheter sur iDaube (=iTunes) de quoi remplir l’iPaud que je n’aurais jamais (d’après mes calculs : en se basant sur un ipod 8 Go et un titre fait environ 10Mo donc sa fait 8000/10=800 que l’on multiplie par le prix d’un titre soit 0.99€, 800*0.99=792€ ). Pour revenir au téléchargement illégal, quand je télécharge un titre, je ne le vole pas car je n’aurais pas pu l’acheter donc je ne crée pas un manque à gagner pour votre entreprise. Et même au contraire, je contribue à la promotion de vos artistes en téléchargeant  car quand je trouve un truc bien, j’en fais la promotion en parlant à mes contacts de ce que j’ai trouvé. En attendant, vous dites que les artistes qui vendent 100000 disques touchent à peine 2000€. Mais vous, votre salaire c’est combien ? 8000€ ou plus dans les 20000€ (vous êtes plus Audi ou BMW ?). Je vous cite « moins de nouveaux talents émergent » …Ah bon !?!$$?? et la nouvelle star , stardaube, j’en passe et des meilleurs, ça ne vous fait pas des nouvelles daubes à sortir ?

                      +

                      Pour revenir sur le coeur du sujet « pirate », je ne sais pas si j’ai réussi à tuer un artiste technicien sonore en sabordant téléchargeant rené la taupe. En tout cas Sarko pour vous c’est une bonne affaire, avec la carte musique jeune qui vous fait une belle prime de fin d’année donnée gracieusement par nos impôts. J’espère que vous offrirez des Ipods à vos enfants. Puis le coup hadopi aussi, pour faire peur au gens et les faire culpabiliser de vous faire gagner moins d’argent cette année. Je vous cite encore une fois pour finir : « j’ai simplement  dit que je ne croyais pas au modèle de la gratuité de la musique financée par la pub. Ni pour Deezer, ni surtout pas pour nous. » , bien joué le « je ne croyais pas » c’étais facile pour vous de mettre la pression à Deezer en augmentant votre dîme parce que si vous les aviez laissés continuer dans cette voie, il aurait fallu que vous baissiez votre salaire pour rémunérer vos artistes.

                      +

                      C’est là que je m’aperçois que je n’ai pas tout à fait réussi à garder mon sang froid. Dans l’attente que tu me lises Pascal, je t’embrasse, Bisous @++.

                      +

                      PS Pour Pascal :

                      +

                      http://bluetouff.com/2010/11/24/hadopi-pascal-negre-defend-son-bebe/

                      +

                      http://www.glazman.org/weblog/dotclear/index.php?post/2010/11/24/Reponse-a-Pascal-Negre-qui-commence-a-serieusement-m-echauffer-les-oreilles

                      +
                      +
                      +
                      +
                      +
                      Catégories : HadopiNews
                      +
                      +
                      +
                      + + + + + + + + + +
                      +
                      +
                      +
                      +
                      +
                      +
                      +

                      + 4 commentaires

                      +
                      + +
                      +
                      +
                      +
                      +

                      + Xavier + · 26 novembre 2010 à 0 h 05 min +

                      +

                      Ouah sa va tu t’est lâché . Lol . Il doit bien avoir un Twitter ou un Facebook pour lui transmettre l’info LOL. Néanmoins je pense qu ce qu’on télécharge est quelque chose que l’on achètera pas donc il y à perte d’argent quand même .mais avec la pub faite grâce au téléchargement ils ne perdent rien .fin voila jdit sa jdit rien moi ;)

                      + +
                      +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + HugoPoi + · 26 novembre 2010 à 10 h 20 min +

                      +

                      J’ai twitter l’article à Monsieur Pascal Nègre mais je pense que même si il m’a lu, il n’a pas le temps de répondre à toutes les critiques qu’on lui fait entre Numerama, Bluetouff, Glazman …
                      +Quand tu dis que si on télécharge quelque chose, on ne l’achètera pas, c’est faux parce que quand un truc me plait vraiment je vais l’acheter.

                      + +
                      +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + saad + · 25 avril 2011 à 21 h 26 min +

                      +

                      cool

                      + +
                      +
                      + +
                      +
                      +

                      + Tweets that mention Stop au terme pirate | HugoPoi -- Topsy.com + · 28 novembre 2010 à 3 h 08 min +

                      +

                      […] This post was mentioned on Twitter by HugoPoi, HugoPoi. HugoPoi said: Stop au terme pirate http://bit.ly/flDnyU @Pascal_Negre […]

                      + +
                      +
                      + +
                      +
                      +
                      +

                      Répondre à HugoPoi Annuler la réponse

                      Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                      +
                      +
                      +

                      + +

                      +
                      +
                      +
                      +
                      +
                      +
                      + +
                      +
                      +
                      +
                      +
                      +
                      + + +
                      + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/730a1b56cfb8abc9cb7e93d57e4029476b9be29c.00001313.xml b/www/.content.EZtzwPjb/html/730a1b56cfb8abc9cb7e93d57e4029476b9be29c.00001313.xml new file mode 100644 index 0000000..c710f8e --- /dev/null +++ b/www/.content.EZtzwPjb/html/730a1b56cfb8abc9cb7e93d57e4029476b9be29c.00001313.xml @@ -0,0 +1,7 @@ + +1.0HugoPoihttp://blog.hugopoi.netHugoPoihttp://blog.hugopoi.net/author/hugopoi/Et si on faisait sans Twitch et sans Youtuberich600338<blockquote class="wp-embedded-content"><a href="/2015/10/24/et-si-on-faisait-sans-twitch-et-sans-youtube/">Et si on faisait sans Twitch et sans Youtube</a></blockquote> +<script type='text/javascript'> +<!--//--><![CDATA[//><!-- + !function(a,b){"use strict";function c(){if(!e){e=!0;var a,c,d,f,g=-1!==navigator.appVersion.indexOf("MSIE 10"),h=!!navigator.userAgent.match(/Trident.*rv:11\./),i=b.querySelectorAll("iframe.wp-embedded-content");for(c=0;c<i.length;c++){if(d=i[c],!d.getAttribute("data-secret"))f=Math.random().toString(36).substr(2,10),d.src+="#?secret="+f,d.setAttribute("data-secret",f);if(g||h)a=d.cloneNode(!0),a.removeAttribute("security"),d.parentNode.replaceChild(a,d)}}}var d=!1,e=!1;if(b.querySelector)if(a.addEventListener)d=!0;if(a.wp=a.wp||{},!a.wp.receiveEmbedMessage)if(a.wp.receiveEmbedMessage=function(c){var d=c.data;if(d.secret||d.message||d.value)if(!/[^a-zA-Z0-9]/.test(d.secret)){var e,f,g,h,i,j=b.querySelectorAll('iframe[data-secret="'+d.secret+'"]'),k=b.querySelectorAll('blockquote[data-secret="'+d.secret+'"]');for(e=0;e<k.length;e++)k[e].style.display="none";for(e=0;e<j.length;e++)if(f=j[e],c.source===f.contentWindow){if(f.removeAttribute("style"),"height"===d.message){if(g=parseInt(d.value,10),g>1e3)g=1e3;else if(~~g<200)g=200;f.height=g}if("link"===d.message)if(h=b.createElement("a"),i=b.createElement("a"),h.href=f.getAttribute("src"),i.href=d.value,i.host===h.host)if(b.activeElement===f)a.top.location.href=d.value}else;}},d)a.addEventListener("message",a.wp.receiveEmbedMessage,!1),b.addEventListener("DOMContentLoaded",c,!1),a.addEventListener("load",c,!1)}(window,document); +//--><!]]> +</script><iframe sandbox="allow-scripts" security="restricted" src="/2015/10/24/et-si-on-faisait-sans-twitch-et-sans-youtube/embed/" width="600" height="338" title="« Et si on faisait sans Twitch et sans Youtube » — HugoPoi" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" class="wp-embedded-content"></iframe> diff --git a/www/.content.EZtzwPjb/html/7317c210236c9255a06ed68aea1e09157da4d0bf.00000537.html b/www/.content.EZtzwPjb/html/7317c210236c9255a06ed68aea1e09157da4d0bf.00000537.html new file mode 100644 index 0000000..e392f80 --- /dev/null +++ b/www/.content.EZtzwPjb/html/7317c210236c9255a06ed68aea1e09157da4d0bf.00000537.html @@ -0,0 +1,364 @@ + + + + + + + twitch – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                      +
                      +
                      +
                      + +
                      +
                      +
                      +
                      +
                      +
                      +
                      + +
                      +
                      +
                      +
                      + +
                      +
                      + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/734adc0d19c447a06e7e02de1cdbd4c31f715a90.00000685.css b/www/.content.EZtzwPjb/html/734adc0d19c447a06e7e02de1cdbd4c31f715a90.00000685.css new file mode 100644 index 0000000..20df2bb --- /dev/null +++ b/www/.content.EZtzwPjb/html/734adc0d19c447a06e7e02de1cdbd4c31f715a90.00000685.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7 .screen-reader-response{position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);height:1px;width:1px;margin:0;padding:0;border:0}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{color:#f00;font-size:1em;display:block}.use-floating-validation-tip span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;border:1px +solid #f00;background:#fff;padding: .2em .8em}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/7394be1e29cfa85cb52ac6b419e26eae271cd7e4.00000794.css b/www/.content.EZtzwPjb/html/7394be1e29cfa85cb52ac6b419e26eae271cd7e4.00000794.css new file mode 100644 index 0000000..be92e9b --- /dev/null +++ b/www/.content.EZtzwPjb/html/7394be1e29cfa85cb52ac6b419e26eae271cd7e4.00000794.css @@ -0,0 +1 @@ +a,.btn.btn-border,.form-group.label-static label.control-label,.form-group.label-placeholder label.control-label,.form-group.label-floating label.control-label,.pagination a,.pagination span,.card-background:after,.authors-on-blog .footer a,.hestia-top-bar .widget.widget_search form:not(.form-group),.hestia-top-bar .widget.widget_product_search form:not(.form-group),.hestia-top-bar .widget.widget_shopping_cart .cart_list,.hestia-top-bar li a[href*="facebook.com"]:before,.hestia-top-bar li a[href*="twitter.com"]:before,.hestia-top-bar li a[href*="pinterest.com"]:before,.hestia-top-bar li a[href*="google.com"]:before,.hestia-top-bar li a[href*="linkedin.com"]:before,.hestia-top-bar li a[href*="dribbble.com"]:before,.hestia-top-bar li a[href*="github.com"]:before,.hestia-top-bar li a[href*="youtube.com"]:before,.hestia-top-bar li a[href*="instagram.com"]:before,.hestia-top-bar li a[href*="reddit.com"]:before,.hestia-top-bar li a[href*="tumblr.com"]:before,.hestia-top-bar li a[href*="behance.com"]:before,.hestia-top-bar li a[href*="snapchat.com"]:before,.hestia-top-bar li a[href*="deviantart.com"]:before,.hestia-top-bar li a[href*="vimeo.com"]:before{-webkit-transition:all 0.3s ease;-moz-transition:all 0.3s ease;-ms-transition:all 0.3s ease;-o-transition:all 0.3s ease;transition:all 0.3s ease}button,input[type="submit"],input[type="button"],.btn{-webkit-transition:background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1),-webkit-box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1);transition:background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1),-webkit-box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1);transition:box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1),background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);transition:box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1),background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1),-webkit-box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1)}.form-control,.form-group .form-control,.woocommerce form .form-row input.input-text,.woocommerce form .form-row textarea,div.wpforms-container .wpforms-form input[type=date],div.wpforms-container .wpforms-form input[type=datetime],div.wpforms-container .wpforms-form input[type=datetime-local],div.wpforms-container .wpforms-form input[type=email],div.wpforms-container .wpforms-form input[type=month],div.wpforms-container .wpforms-form input[type=number],div.wpforms-container .wpforms-form input[type=password],div.wpforms-container .wpforms-form input[type=range],div.wpforms-container .wpforms-form input[type=search],div.wpforms-container .wpforms-form input[type=tel],div.wpforms-container .wpforms-form input[type=text],div.wpforms-container .wpforms-form input[type=time],div.wpforms-container .wpforms-form input[type=url],div.wpforms-container .wpforms-form input[type=week],div.wpforms-container .wpforms-form select,div.wpforms-container .wpforms-form textarea,.form-group.is-focused .form-control,div.wpforms-container .wpforms-form .form-group.is-focused .form-control,.btn.disabled,.btn.disabled:hover,.btn.disabled:focus,.btn.disabled.focus,.btn.disabled:active,.btn.disabled.active,.btn:disabled,.btn:disabled:hover,.btn:disabled:focus,.btn.focus:disabled,.btn:disabled:active,.btn.active:disabled,.btn[disabled],.btn[disabled]:hover,.btn[disabled]:focus,.btn[disabled].focus,.btn[disabled]:active,.btn[disabled].active,fieldset[disabled] .btn,fieldset[disabled] .btn:hover,fieldset[disabled] .btn:focus,fieldset[disabled] .btn.focus,fieldset[disabled] .btn:active,fieldset[disabled] .btn.active,.btn.btn-simple,.btn.btn-default.btn-simple,.btn.btn-primary.btn-simple,.btn.btn-white.btn-simple,.btn.btn-border,.btn.btn-border:hover,.btn.btn-border:focus,.navbar button.navbar-toggle,.navbar button.navbar-toggle:hover,.btn.btn-facebook.btn-simple,.navbar .navbar-nav>li>a.btn.btn-facebook.btn-simple,.btn.btn-twitter.btn-simple,.navbar .navbar-nav>li>a.btn.btn-twitter.btn-simple,.btn.btn-pinterest.btn-simple,.navbar .navbar-nav>li>a.btn.btn-pinterest.btn-simple,.btn.btn-google.btn-simple,.navbar .navbar-nav>li>a.btn.btn-google.btn-simple,.btn.btn-linkedin.btn-simple,.navbar .navbar-nav>li>a.btn.btn-linkedin.btn-simple,.btn.btn-dribbble.btn-simple,.navbar .navbar-nav>li>a.btn.btn-dribbble.btn-simple,.btn.btn-github.btn-simple,.navbar .navbar-nav>li>a.btn.btn-github.btn-simple,.btn.btn-youtube.btn-simple,.navbar .navbar-nav>li>a.btn.btn-youtube.btn-simple,.btn.btn-instagram.btn-simple,.navbar .navbar-nav>li>a.btn.btn-instagram.btn-simple,.btn.btn-reddit.btn-simple,.navbar .navbar-nav>li>a.btn.btn-reddit.btn-simple,.btn.btn-tumblr.btn-simple,.navbar .navbar-nav>li>a.btn.btn-tumblr.btn-simple,.btn.btn-behance.btn-simple,.navbar .navbar-nav>li>a.btn.btn-behance.btn-simple,.btn.btn-snapchat.btn-simple,.navbar .navbar-nav>li>a.btn.btn-snapchat.btn-simple,.btn.btn-deviantart.btn-simple,.navbar .navbar-nav>li>a.btn.btn-deviantart.btn-simple,.btn.btn-vimeo.btn-simple,.navbar .navbar-nav>li>a.btn.btn-vimeo.btn-simple,.form-group.is-focused select.form-control,.form-group.has-warning .form-control,.form-group.has-error .form-control,.form-group.has-success .form-control,.form-group.has-info .form-control,select.form-control{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.form-control,.form-group .form-control,.woocommerce form .form-row input.input-text,.woocommerce form .form-row textarea,div.wpforms-container .wpforms-form input[type=date],div.wpforms-container .wpforms-form input[type=datetime],div.wpforms-container .wpforms-form input[type=datetime-local],div.wpforms-container .wpforms-form input[type=email],div.wpforms-container .wpforms-form input[type=month],div.wpforms-container .wpforms-form input[type=number],div.wpforms-container .wpforms-form input[type=password],div.wpforms-container .wpforms-form input[type=range],div.wpforms-container .wpforms-form input[type=search],div.wpforms-container .wpforms-form input[type=tel],div.wpforms-container .wpforms-form input[type=text],div.wpforms-container .wpforms-form input[type=time],div.wpforms-container .wpforms-form input[type=url],div.wpforms-container .wpforms-form input[type=week],div.wpforms-container .wpforms-form select,div.wpforms-container .wpforms-form textarea{background-image:-webkit-gradient(linear, left top, left bottom, from(#9c27b0), to(#9c27b0)),-webkit-gradient(linear, left top, left bottom, from(#d2d2d2), to(#d2d2d2));background-image:-webkit-linear-gradient(#9c27b0, #9c27b0),-webkit-linear-gradient(#d2d2d2, #d2d2d2);background-image:linear-gradient(#9c27b0, #9c27b0),linear-gradient(#d2d2d2, #d2d2d2);float:none;border:0;border-radius:0;background-color:transparent;background-repeat:no-repeat;background-position:center bottom,center -webkit-calc(100% - 1px);background-position:center bottom,center calc(100% - 1px);background-size:0 2px, 100% 1px;font-weight:400;-webkit-transition:background 0s ease-out;transition:background 0s ease-out}.form-group.is-focused .form-control,div.wpforms-container .wpforms-form .form-group.is-focused .form-control{background-image:-webkit-gradient(linear, left top, left bottom, from(#9c27b0), to(#9c27b0)),-webkit-gradient(linear, left top, left bottom, from(#d2d2d2), to(#d2d2d2));background-image:-webkit-linear-gradient(#9c27b0, #9c27b0),-webkit-linear-gradient(#d2d2d2, #d2d2d2);background-image:linear-gradient(#9c27b0, #9c27b0),linear-gradient(#d2d2d2, #d2d2d2);outline:none;background-size:100% 2px,100% 1px;-webkit-transition-duration:0.3s;transition-duration:0.3s}.navbar .navbar-brand,.carousel .sub-title,h4.author,.hestia-about p,.card-product .price,.card-product .price h4,.blog-sidebar .widget h5,.shop-sidebar .widget h5,blockquote,.media .media-heading,.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta{font-size:18px}a:not(.btn){transition:.3s ease}a:not(.btn):not(.button):not(.added_to_cart):hover{opacity:.75}.media p,h3#ship-to-different-address{font-size:16px}body,.btn,.form-control,ul,ol,.woocommerce #reviews #comments label{font-size:14px}.navbar,.navbar a,.label,.footer .footer-menu a,.media-footer a,.hestia-top-bar{font-size:12px}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-weight:300;line-height:1.618}ul,ol,.blog-post .section-text p,output{line-height:1.618}h1,h2,h3,h4,h5,h6{font-weight:300;line-height:1.618}h6.category{font-weight:500}.hestia-title,.title,.card-title,.info-title,.footer-brand,.footer-big h4,.footer-big h5,.media .media-heading,.woocommerce.archive .blog-post .products .product-category h2{font-weight:700}button,input[type="submit"],input[type="button"],.btn{font-size:12px;font-weight:400}.btn:not(.btn-just-icon):not(.btn-fab) .fa{font-size:18px}.btn.btn-just-icon{font-size:20px;line-height:20px}.btn.btn-just-icon.btn-lg{font-size:22px}.btn .fa{font-size:17px}legend{font-size:21px}output{font-size:14px}button,input,select,textarea{font-size:inherit;line-height:inherit}.form-control{font-size:14px;line-height:1.42857}.form-control::-moz-placeholder,.form-group .form-control::-moz-placeholder,.form-control:-ms-input-placeholder,.form-group .form-control:-ms-input-placeholder,.form-control::-webkit-input-placeholder,.form-group .form-control::-webkit-input-placeholder,.checkbox label,.form-group .checkbox label,.radio label,.form-group .radio label,label,.form-group label{font-size:14px;font-weight:400;line-height:1.42857}.form-control::-moz-placeholder,.form-control:-ms-input-placeholder,.form-control::-webkit-input-placeholder,.form-group .form-control::-moz-placeholder,.form-group .form-control:-ms-input-placeholder,.form-group .form-control::-webkit-input-placeholder{font-weight:400}.form-group label.control-label{font-size:11px;font-weight:400;line-height:1.07143}.form-group.label-floating label.control-label,.form-group.label-placeholder label.control-label{font-size:14px;line-height:1.42857}.form-group.label-static label.control-label,.form-group.label-floating.is-focused label.control-label,.form-group.label-floating:not(.is-empty) label.control-label{font-size:11px;line-height:1.07143}label.control-label{font-size:11px;font-weight:400;line-height:1.07143}label.subscribe-label{font-weight:300}table>thead>tr>th{font-size:17px;font-weight:300}.help-block{font-size:11px}.hestia-info .icon>i,.info .icon>i{font-size:61.6px}.info-horizontal .icon>i{font-size:36.4px}.media .media-heading{font-size:18.2px}.media p{font-size:16px}.wp-caption-text{font-size:14px;font-weight:700}.blog-post .comment-reply-link{font-size:12px;font-weight:400}.blog-post .section-blog-info .card-profile .description{font-size:14px}.carousel .carousel-control .fa{font-size:50px}.card .footer .stats{line-height:30px}.card .footer .stats .fa{font-size:18px}.card .category .fa{line-height:0}.card-product .footer h4{line-height:1.2}.card-title,.card-product .category{line-height:1.4}.card-pricing .card-title{font-size:60px;line-height:35px}.card-pricing .card-title small{font-size:18px}.card-pricing .card-title small:first-child{font-size:26px}.navbar .navbar-brand{line-height:30px}.navbar .navbar-nav>li>a{font-weight:400}.navbar .navbar-nav>li>a .fa{font-size:20px}.navbar .dropdown-menu li>a{font-size:13px}.navbar .dropdown-menu li>a>i{font-size:20px}.navbar .dropdown-menu li>a .fa{font-size:20px}.navbar .hestia-mm-heading>span{font-size:14px;font-weight:600}.hestia-mm-description{font-size:12px;font-weight:400}.hestia-top-bar{line-height:40px}.hestia-top-bar .widget,.hestia-top-bar .widget h5,.hestia-top-bar .widget .textwidget{line-height:inherit}.hestia-top-bar .widget.widget_search .label-floating,.hestia-top-bar .widget.widget_product_search .label-floating{font-size:inherit}.hestia-top-bar .widget.widget_search .label-floating.is-empty,.hestia-top-bar .widget.widget_product_search .label-floating.is-empty{font-size:inherit;font-weight:300}.hestia-top-bar .widget.widget_search .label-floating.is-focused .control-label,.hestia-top-bar .widget.widget_product_search .label-floating.is-focused .control-label{font-size:inherit;line-height:20px}.hestia-top-bar .widget.widget_search form.form-group input[type=search],.hestia-top-bar .widget.widget_product_search form.form-group input[type=search]{font-size:inherit;font-weight:300}.hestia-top-bar .widget.widget_search form.form-group:before,.hestia-top-bar .widget.widget_product_search form.form-group:before{font-size:18px}.hestia-top-bar .widget.widget_shopping_cart:before{font-size:18px}.hestia-top-bar .widget.widget_shopping_cart .cart_list li.empty{font-size:inherit;line-height:1.2}.hestia-top-bar ul{line-height:inherit}.hestia-top-bar ul li a{font-size:inherit;line-height:inherit}.hestia-top-bar ul li a:before{font-size:16px}.pagination a,.pagination span{font-size:12px;font-weight:400;line-height:30px}.footer .widget h5{line-height:1.4}.footer-big .footer-menu li a[href*="mailto:"],.footer-big .footer-menu li a[href*="tel:"]{font-size:0}.footer-big .footer-menu li a[href*="mailto:"]:before,.footer-big .footer-menu li a[href*="tel:"]:before{font-size:16px}.footer-big ul li a{font-weight:500}h5.description{line-height:1.5}.hestia-about{font-weight:300}.hestia-about h1,.hestia-about h2,.hestia-about h3,.hestia-about h4,.hestia-about h5{font-weight:700}.widget h5{font-weight:700}.searchform:after,.search-form:after,.woocommerce-product-search:after{font-size:18px}.header-widgets-wrapper .widget,.header-widgets-wrapper .widget h5,.header-widgets-wrapper .widget .textwidget{line-height:inherit}.header-widgets-wrapper .widget.widget_shopping_cart:before{font-size:18px}.header-widgets-wrapper .widget.widget_shopping_cart .cart_list li.empty{font-size:inherit;line-height:1.2}.header-widgets-wrapper ul{line-height:inherit}.header-widgets-wrapper ul li a{font-size:inherit;line-height:inherit}.header-widgets-wrapper ul li a:before{font-size:16px}.woocommerce ul.product_list_widget li,.footer ul.product_list_widget li,ul.product_list_widget li{font-size:14px}.woocommerce ul.product_list_widget li a,.footer ul.product_list_widget li a,ul.product_list_widget li a{line-height:normal;font-weight:400}#secondary div[id^=woocommerce_rating_filter] li a,.footer div[id^=woocommerce_rating_filter] li a{font-weight:300}#secondary div[id^=woocommerce_layered_nav] ul li a,#secondary div[id^=woocommerce_product_categories] ul li a,.footer div[id^=woocommerce_layered_nav] ul li a,.footer div[id^=woocommerce_product_categories] ul li a{font-weight:400;font-size:14px}#secondary div[id^=woocommerce_layered_nav] ul .count,#secondary div[id^=woocommerce_product_categories] ul .count,.footer div[id^=woocommerce_layered_nav] ul .count,.footer div[id^=woocommerce_product_categories] ul .count{font-size:14px}#secondary div[id^=woocommerce_recent_reviews] .reviewer,.footer div[id^=woocommerce_recent_reviews] .reviewer{font-size:15px}#secondary div[id^=woocommerce_price_filter] .button,.footer div[id^=woocommerce_price_filter] .button{font-size:12px}#secondary div[id^=woocommerce_price_filter] .price_slider,.footer div[id^=woocommerce_price_filter] .price_slider{font-size:inherit;line-height:inherit}#secondary div[id^=woocommerce_price_filter] .price_label,.footer div[id^=woocommerce_price_filter] .price_label{font-size:14px}div[id^=woocommerce_product_tag_cloud].widget a{font-weight:600;line-height:27px;font-size:10px !important}div[id^=woocommerce_layered_nav_filters].widget li a{font-weight:100}.widget_shopping_cart.widget .remove{font-size:18px;line-height:18px;font-weight:600}.widget_shopping_cart.widget .variation dt,.widget_shopping_cart.widget .variation dd{font-size:12px;line-height:14px}.widget_shopping_cart.widget .variation dd p{font-size:12px;line-height:14px}aside .widget a{font-weight:500}.star-rating{line-height:1;font-size:12px}.woocommerce.single-product .product_title{font-weight:700}.woocommerce.single-product .summary .price,.woocommerce.single-product .woocommerce-variation-price .price{font-weight:300}.woocommerce.single-product .summary .price del,.woocommerce.single-product .summary .price ins,.woocommerce.single-product .summary .price span,.woocommerce.single-product .woocommerce-variation-price .price del,.woocommerce.single-product .woocommerce-variation-price .price ins,.woocommerce.single-product .woocommerce-variation-price .price span{font-weight:300}.woocommerce.single-product .summary .price ins{font-weight:400}.woocommerce.single-product .summary .price.price-unit{font-size:16px}.woocommerce.single-product div.product form.cart table.variations td.value:before{font-size:12px}.woocommerce.single-product div.product form.cart table.variations td label{font-weight:400}.woocommerce.single-product div.product form.cart .reset_variations{font-size:14px}.woocommerce.single-product div.product .woocommerce-tabs ul.tabs.wc-tabs li a{font-size:14px;font-weight:400;line-height:24px}.woocommerce.single-product .product .woocommerce-product-rating .star-rating{font-size:12px}.woocommerce.single-product .product .woocommerce-review-link{font-size:14px}.woocommerce.single-product .section-text{font-size:14px}.woocommerce .shop-item p{font-size:14px}.woocommerce ul.products li.product .onsale,.woocommerce span.onsale{font-size:12px;font-weight:300;line-height:50px}.woocommerce .single-product div.product form.cart .button,.woocommerce #respond input#submit,.woocommerce a.button,.woocommerce button.button,.woocommerce input.button,.woocommerce #respond input#submit.alt,.woocommerce a.button.alt,.woocommerce button.button.alt{font-size:12px;font-weight:400}.woocommerce input.button.alt{font-size:12px;font-weight:400}.woocommerce input.button:disabled{font-size:12px;font-weight:400}.woocommerce input.button[disabled]{font-size:12px;font-weight:400}.woocommerce .cart-collaterals .cart_totals th{font-weight:300}.woocommerce .cart-collaterals .cart_totals td{font-weight:700}.woocommerce .cart-collaterals .cart_totals .checkout-button{font-size:14px}.woocommerce .product .card-product .card-description p{font-weight:300}.woocommerce ul.products li.product .price ins{font-weight:300}.woocommerce .hestia-features p{font-weight:300}.woocommerce .related.products h2{font-weight:700}.woocommerce ul.products li.product .price{font-weight:300}.woocommerce ul.products li.product .price.price-unit{font-size:12px}.woocommerce nav.woocommerce-pagination ul li a{font-size:14px;font-weight:400;line-height:30px}.woocommerce nav.woocommerce-pagination ul li span{line-height:30px}.woocommerce dl.variation dd p{font-size:14px}.woocommerce .col2-set .woocommerce-account-fields label.checkbox span{font-weight:300}.woocommerce .woocommerce-breadcrumb{font-size:12px}.woocommerce .section-text{font-size:14px}.woocommerce .woocommerce-result-count{font-size:14px}.woocommerce ul.products li.product .onsale,.woocommerce span.onsale{font-size:12px;font-weight:300;line-height:35px;border-radius:3px;width:auto;height:auto}.woocommerce .woocommerce-ordering:before{font-size:12px}.woocommerce .product .wc-gzd-additional-info{font-size:12px;line-height:1.5}.woocommerce .comment-reply-title{font-weight:700}.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta .woocommerce-review__dash,.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta .woocommerce-review__published-date{font-size:75%}.woocommerce.archive .blog-post .products li.product-category a h2{line-height:1.5}.woocommerce.archive .blog-post .products li.product-category a h2 .count{font-weight:300}.products .shop-item .added_to_cart{font-size:10px}.woocommerce-cart .shop_table .actions .coupon .input-text{font-size:14px}.woocommerce-cart table.shop_table th{font-size:13px;font-weight:300}.woocommerce-cart table.shop_table .product-name a{font-size:16px;font-weight:500;line-height:30px}.woocommerce-cart table.shop_table td.actions input[type=submit],.woocommerce-cart table.shop_table td.actions button[type=submit]{font-size:14px}.woocommerce-cart p.units-info{line-height:1.5;font-size:14px}.woocommerce-cart .wc-gzd-additional-wrapper p{font-size:14px;font-weight:700}.woocommerce-checkout .form-row label{font-weight:300}.woocommerce-checkout .woocommerce-checkout-payment .form-row .woocommerce-form__label-for-checkbox,.woocommerce-checkout .woocommerce-checkout-payment li>label{font-weight:400}.woocommerce-checkout .woocommerce-shipping-fields h3 label{line-height:1}.woocommerce-checkout .woocommerce-shipping-fields h3 label span{font-weight:300}.woocommerce-checkout .col-md-12 #customer_details label{font-weight:500}.woocommerce-checkout .shop_table tr td p.units-info{font-size:12px}.woocommerce-checkout .shop_table .wc-gzd-additional-info{font-size:14px}#add_payment_method .wc-proceed-to-checkout a.checkout-button,.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button{font-size:12px;font-weight:400}.woocommerce-account .woocommerce-button,.woocommerce-account .woocommerce-Button,.woocommerce-account a.button{line-height:20px !important}.woocommerce-account .woocommerce-MyAccount-content h2{font-weight:600}.added_to_cart.wc-forward{font-weight:400;font-size:10px;line-height:30px}.variations tr .label{font-size:14px}.woocommerce-info,.woocommerce-error,.woocommerce-message{line-height:20px}.woocommerce-info li,.woocommerce-error li,.woocommerce-message li{line-height:1.5}.woocommerce-info>a.button,.woocommerce-error>a.button,.woocommerce-message>a.button{font-size:12px;font-weight:bold}.woocommerce-info a{font-weight:700}.woocommerce-message a:not(.button){font-weight:800}@media (max-width: 991px){.woocommerce-account input.woocommerce-Button.button{font-size:11px}.woocommerce-breadcrumb{line-height:33px}}@media (min-width: 769px){.navbar.full-screen-menu .navbar-nav>li a{font-size:17px}}@media (max-width: 768px){h4.author{font-size:16px}.woocommerce-cart table.shop_table dl.variation dd,.woocommerce-cart table.shop_table dl.variation dt{font-size:16px;line-height:30px}.woocommerce-cart table.shop_table dl.variation dd p{font-size:16px}.woocommerce-cart table.shop_table td.product-name{line-height:30px}.woocommerce-checkout td.product-name dl.variation dt,.woocommerce-checkout td.product-name dl.variation dd{font-size:16px}.woocommerce-checkout td.product-name dl.variation dd p{font-size:16px}.navbar .navbar-nav li>a>i,.navbar .navbar-nav li>a .fa{font-size:22px}.navbar .navbar-nav li .caret{font-size:20px}.navbar .navbar-nav li .dropdown>i,.navbar .navbar-nav li .dropdown .fa{font-size:20px}.navbar .navbar-nav .dropdown .dropdown-menu li a{line-height:20px}.navbar .navbar-nav .dropdown .dropdown-menu li a .caret{line-height:1}}@media (max-width: 480px){.woocommerce .woocommerce-ordering select,.woocommerce-page .woocommerce-ordering select{font-size:12px}}body{direction:ltr;color:#3C4858;font-family:"Roboto","Helvetica","Arial",sans-serif}h1,h2,h3,h4,h5,h6{font-family:"Roboto","Helvetica","Arial",sans-serif}a{color:#9c27b0}a:hover,a:focus{color:#89229b;text-decoration:none}blockquote p{font-style:italic}h3{margin:20px 0 10px}h5{margin-bottom:15px}h6.category{text-transform:uppercase}.hestia-title,.title,.card-title,.info-title,.footer-brand,.footer-big h4,.footer-big h5,.media .media-heading,.woocommerce.archive .blog-post .products .product-category h2{font-family:"Roboto Slab","Times New Roman",serif}.hestia-title,.hestia-title a,.hestia-title a:hover,.title,.title a,.title a:hover,.card-title,.card-title a,.card-title a:hover,.info-title,.info-title a,.info-title a:hover,.footer-brand,.footer-brand a,.footer-brand a:hover,.footer-big h4,.footer-big h4 a,.footer-big h4 a:hover,.footer-big h5,.footer-big h5 a,.footer-big h5 a:hover,.media .media-heading,.media .media-heading a,.media .media-heading a:hover,.woocommerce.archive .blog-post .products .product-category h2,.woocommerce.archive .blog-post .products .product-category h2 a,.woocommerce.archive .blog-post .products .product-category h2 a:hover{color:#3C4858;text-decoration:none;word-wrap:break-word}.page-header .hestia-title{line-height:1.1}.title-in-content{line-height:1.3}h1.title,h1.hestia-title,.pricing h2.title,.pricing h2.hestia-title,.contactus h2.title,.contactus h2.hestia-title{margin-bottom:30px}h2.title,h2.hestia-title{margin-bottom:10px}.carousel h1.hestia-title,.carousel h2.title{font-family:"Roboto","Helvetica","Arial",sans-serif}.carousel span.sub-title{display:block;margin:10px 0 0;font-family:"Roboto Slab","Times New Roman",serif}.carousel .buttons{margin-top:60px}.description,.card-description,.footer-big{color:#999}.subscribe-line-image .subscribe-description{color:#efefef}.text-warning{color:#ff9800}.text-primary{color:#9c27b0}.text-danger{color:#f44336}.text-success{color:#4caf50}.text-info{color:#00bcd4}.text-rose{color:#e91e63}.text-gray{color:#999}.has-black-color{color:#000}.has-white-color{color:#fff}.has-background.has-black-background-color{background-color:#000}.has-background.has-white-background-color{background-color:#fff}.single-post .blog-post .section-text h1,.single-post .blog-post .section-text h2,.single-post .blog-post .section-text h3,.single-post .blog-post .section-text h4,.single-post .blog-post .section-text h5,.single-post .blog-post .section-text h6,.single-post .blog-post .section-text p,.page:not(.woocommerce-page) .blog-post .section-text h1,.page:not(.woocommerce-page) .blog-post .section-text h2,.page:not(.woocommerce-page) .blog-post .section-text h3,.page:not(.woocommerce-page) .blog-post .section-text h4,.page:not(.woocommerce-page) .blog-post .section-text h5,.page:not(.woocommerce-page) .blog-post .section-text h6,.page:not(.woocommerce-page) .blog-post .section-text p{margin:0 0 15px}.single-post .blog-post .section-text h1.form-submit,.single-post .blog-post .section-text h2.form-submit,.single-post .blog-post .section-text h3.form-submit,.single-post .blog-post .section-text h4.form-submit,.single-post .blog-post .section-text h5.form-submit,.single-post .blog-post .section-text h6.form-submit,.single-post .blog-post .section-text p.form-submit,.page:not(.woocommerce-page) .blog-post .section-text h1.form-submit,.page:not(.woocommerce-page) .blog-post .section-text h2.form-submit,.page:not(.woocommerce-page) .blog-post .section-text h3.form-submit,.page:not(.woocommerce-page) .blog-post .section-text h4.form-submit,.page:not(.woocommerce-page) .blog-post .section-text h5.form-submit,.page:not(.woocommerce-page) .blog-post .section-text h6.form-submit,.page:not(.woocommerce-page) .blog-post .section-text p.form-submit{margin:0 0 10px}.tooltip{opacity:0;-webkit-transition:opacity,-webkit-transform 0.2s ease;transition:opacity,-webkit-transform 0.2s ease;transition:opacity,transform 0.2s ease;transition:opacity,transform 0.2s ease,-webkit-transform 0.2s ease;-webkit-transform:translate3d(0, 5px, 0);-ms-transform:translate3d(0, 5px, 0);transform:translate3d(0, 5px, 0)}.tooltip.in{opacity:1;-webkit-transform:translate3d(0, 0px, 0);-ms-transform:translate3d(0, 0px, 0);transform:translate3d(0, 0px, 0)}.tooltip.left .tooltip-arrow{border-left-color:#fff}.tooltip.right .tooltip-arrow{border-right-color:#fff}.tooltip.top .tooltip-arrow{border-top-color:#fff}.tooltip.bottom .tooltip-arrow{border-bottom-color:#fff}.tooltip-inner{min-width:130px;padding:10px 15px;border:none;border-radius:3px;color:#555;background:#fff;-webkit-box-shadow:0 8px 10px 1px rgba(0,0,0,0.14),0 3px 14px 2px rgba(0,0,0,0.12),0 5px 5px -3px rgba(0,0,0,0.2);box-shadow:0 8px 10px 1px rgba(0,0,0,0.14),0 3px 14px 2px rgba(0,0,0,0.12),0 5px 5px -3px rgba(0,0,0,0.2);font-size:12px;line-height:1.5;text-transform:none}.screen-reader-text{clip:rect(1px, 1px, 1px, 1px);position:absolute !important;height:1px;width:1px;overflow:hidden}.screen-reader-text:focus{background-color:#f1f1f1;border-radius:3px;-webkit-box-shadow:0 0 2px 2px rgba(0,0,0,0.6);box-shadow:0 0 2px 2px rgba(0,0,0,0.6);clip:auto !important;color:#21759b;display:block;font-size:14px;font-weight:bold;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}.container{max-width:100%}@media (min-width: 749px){.container{max-width:748px}}@media (min-width: 768px){.container{max-width:750px}}@media (min-width: 992px){.container{max-width:970px}}@media (min-width: 1200px){.container{max-width:2000px}}body{direction:ltr;background-color:#e5e5e5;overflow-x:hidden}*{-webkit-tap-highlight-color:rgba(255,255,255,0);-webkit-tap-highlight-color:transparent}embed,iframe,img,object,video,button,input,select,textarea,.wp-caption{max-width:100%}img{height:auto}ul,ol{margin-bottom:30px}legend{border-bottom:0}.container{max-width:100%}.margin-left-auto{margin-left:auto}.margin-right-auto{margin-right:auto}.animation-transition-fast,.navbar,.panel .panel-heading i,.section-cards .card{-webkit-transition:all 150ms ease;transition:all 150ms ease}.thumbnail{padding:0;border:0 none;border-radius:0}.section-image .description .default-link,.section-image .default-link,.hestia-title .default-link,.title .default-link,.default-link:hover,.default-link{color:#fff}.description .default-link{color:#999}body.menu-open{overflow:hidden}@media (min-width: 992px){.row.hestia-like-table{display:table;width:100%}.row.hestia-like-table>div{display:table-cell;vertical-align:middle;float:none}}@media (max-width: 991px){.hestia-xs-text-center{text-align:center}}.hestia-blogs article:nth-of-type(6n) .category a,.related.products ul li:nth-of-type(6n) .category a,.woocommerce.archive .blog-post .products li:nth-of-type(6n) .category a,.woocommerce .products li:nth-of-type(6n) .category a,.shop-item:nth-of-type(6n) .category a,.related-posts div:nth-of-type(6n) .category a{color:#4caf50}.hestia-blogs article:nth-of-type(6n+1) .category a,.related.products ul li:nth-of-type(6n+1) .category a,.woocommerce.archive .blog-post .products li:nth-of-type(6n+1) .category a,.woocommerce .products li:nth-of-type(6n+1) .category a,.shop-item:nth-of-type(6n+1) .category a,.related-posts div:nth-of-type(6n+1) .category a{color:#89229b}.hestia-blogs article:nth-of-type(6n+2) .category a,.related.products ul li:nth-of-type(6n+2) .category a,.woocommerce.archive .blog-post .products li:nth-of-type(6n+2) .category a,.woocommerce .products li:nth-of-type(6n+2) .category a,.shop-item:nth-of-type(6n+2) .category a,.related-posts div:nth-of-type(6n+2) .category a{color:#00bcd4}.hestia-blogs article:nth-of-type(6n+3) .category a,.related.products ul li:nth-of-type(6n+3) .category a,.woocommerce.archive .blog-post .products li:nth-of-type(6n+3) .category a,.woocommerce .products li:nth-of-type(6n+3) .category a,.shop-item:nth-of-type(6n+3) .category a,.related-posts div:nth-of-type(6n+3) .category a{color:#f44336}.hestia-blogs article:nth-of-type(6n+4) .category a,.related.products ul li:nth-of-type(6n+4) .category a,.woocommerce.archive .blog-post .products li:nth-of-type(6n+4) .category a,.woocommerce .products li:nth-of-type(6n+4) .category a,.shop-item:nth-of-type(6n+4) .category a,.related-posts div:nth-of-type(6n+4) .category a{color:#ff9800}.hestia-blogs article:nth-of-type(6n+5) .category a,.related.products ul li:nth-of-type(6n+5) .category a,.woocommerce.archive .blog-post .products li:nth-of-type(6n+5) .category a,.woocommerce .products li:nth-of-type(6n+5) .category a,.shop-item:nth-of-type(6n+5) .category a,.related-posts div:nth-of-type(6n+5) .category a{color:#e91e63}.hestia-blogs article:nth-of-type(6n) .card-body .btn{background-color:#4caf50}.hestia-blogs article:nth-of-type(6n+1) .card-body .btn{background-color:#89229b}.hestia-blogs article:nth-of-type(6n+2) .card-body .btn{background-color:#00bcd4}.hestia-blogs article:nth-of-type(6n+3) .card-body .btn{background-color:#f44336}.hestia-blogs article:nth-of-type(6n+4) .card-body .btn{background-color:#ff9800}.hestia-blogs article:nth-of-type(6n+5) .card-body .btn{background-color:#e91e63}.wp-audio-shortcode{margin-bottom:20px}.wp-video-shortcode{margin-bottom:20px}input[type="radio"]+label,input[type="checkbox"]+label{font-weight:400}:focus,:active,::-moz-focus-inner{outline:0 !important}button,input[type="submit"]::-moz-focus-inner,input[type="button"]::-moz-focus-inner,.btn::-moz-focus-inner{border:0}button,input,select,textarea{font-family:inherit;padding:7px}button:focus,input:focus,select:focus,textarea:focus{outline:0 !important}button,input[type="submit"],input[type="button"],.btn{position:relative;margin:10px 1px;padding:12px 30px;border:none;border-radius:3px;white-space:normal;letter-spacing:0;text-transform:uppercase;will-change:box-shadow,transform}.fca_qc_next_question{will-change:unset}input[type="number"]{padding:0}button,input[type="submit"],input[type="button"],.btn,.btn.btn-default{-webkit-box-shadow:0 2px 2px 0 rgba(153,153,153,0.14),0 3px 1px -2px rgba(153,153,153,0.2),0 1px 5px 0 rgba(153,153,153,0.12);-moz-box-shadow:0 2px 2px 0 rgba(153,153,153,0.14),0 3px 1px -2px rgba(153,153,153,0.2),0 1px 5px 0 rgba(153,153,153,0.12);box-shadow:0 2px 2px 0 rgba(153,153,153,0.14),0 3px 1px -2px rgba(153,153,153,0.2),0 1px 5px 0 rgba(153,153,153,0.12)}button:hover,button:focus,button:active,input[type="submit"]:hover,input[type="submit"]:focus,input[type="submit"]:active,input[type="button"]:hover,input[type="button"]:focus,input[type="button"]:active,.btn:hover,.btn:focus,.btn:active,.btn.btn-default:hover,.btn.btn-default:focus,.btn.btn-default:active{-webkit-box-shadow:0 14px 26px -12px rgba(153,153,153,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(153,153,153,0.2);-moz-box-shadow:0 14px 26px -12px rgba(153,153,153,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(153,153,153,0.2);box-shadow:0 14px 26px -12px rgba(153,153,153,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(153,153,153,0.2)}button:hover,button:focus,input[type="submit"]:hover,input[type="submit"]:focus,input[type="submit"]:active,input[type="button"]:hover,input[type="button"]:focus,input[type="button"]:active,.btn,.btn:hover,.btn:focus,.btn:active,.btn.active,.btn:active:focus,.btn:active:hover,.btn.active:focus,.btn.active:hover,.open>.btn.dropdown-toggle,.open>.btn.dropdown-toggle:focus,.open>.btn.dropdown-toggle:hover,.btn.btn-default,.btn.btn-default:hover,.btn.btn-default:focus,.btn.btn-default:active,.btn.btn-default.active,.btn.btn-default:active:focus,.btn.btn-default:active:hover,.btn.btn-default.active:focus,.btn.btn-default.active:hover,.open>.btn.btn-default.dropdown-toggle,.open>.btn.btn-default.dropdown-toggle:focus,.open>.btn.btn-default.dropdown-toggle:hover{color:#fff;background-color:#999;outline:none}.btn>a:hover,.btn>a:focus,.btn>a:active,.btn:hover>a,.btn:focus>a,.btn:active>a{color:#fff}.btn.btn-simple,.btn.btn-simple:hover,.btn.btn-simple:focus,.btn.btn-simple:active,.btn.btn-default.btn-simple,.btn.btn-default.btn-simple:hover,.btn.btn-default.btn-simple:focus,.btn.btn-default.btn-simple:active{color:#999;background-color:transparent}button,input[type="submit"],input[type="button"],.btn.btn-primary{-webkit-box-shadow:0 2px 2px 0 rgba(156,39,176,0.14),0 3px 1px -2px rgba(156,39,176,0.2),0 1px 5px 0 rgba(156,39,176,0.12);-moz-box-shadow:0 2px 2px 0 rgba(156,39,176,0.14),0 3px 1px -2px rgba(156,39,176,0.2),0 1px 5px 0 rgba(156,39,176,0.12);box-shadow:0 2px 2px 0 rgba(156,39,176,0.14),0 3px 1px -2px rgba(156,39,176,0.2),0 1px 5px 0 rgba(156,39,176,0.12)}button:hover,button:focus,button:active,input[type="submit"]:hover,input[type="submit"]:focus,input[type="submit"]:active,input[type="button"]:hover,input[type="button"]:focus,input[type="button"]:active,.btn.btn-primary:hover,.btn.btn-primary:focus,.btn.btn-primary:active{-webkit-box-shadow:0 14px 26px -12px rgba(156,39,176,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(156,39,176,0.2);-moz-box-shadow:0 14px 26px -12px rgba(156,39,176,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(156,39,176,0.2);box-shadow:0 14px 26px -12px rgba(156,39,176,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(156,39,176,0.2)}.btn.btn-primary.btn-simple,.btn.btn-primary.btn-simple:hover,.btn.btn-primary.btn-simple:focus,.btn.btn-primary.btn-simple:active{color:#9c27b0;background-color:transparent}button,button:hover,input[type="submit"],input[type="submit"]:hover,input[type="button"],input[type="button"]:hover,input#searchsubmit,.btn.btn-primary,.btn.btn-primary:hover,.btn.btn-primary:focus,.btn.btn-primary:active,.btn.btn-primary.active,.btn.btn-primary:active:focus,.btn.btn-primary:active:hover,.btn.btn-primary.active:focus,.btn.btn-primary.active:hover,.open>.btn.btn-primary.dropdown-toggle,.open>.btn.btn-primary.dropdown-toggle:focus,.open>.btn.btn-primary.dropdown-toggle:hover{color:#fff;background-color:#9c27b0}.btn.btn-white{box-shadow:0 2px 2px 0 rgba(153,153,153,0.14),0 3px 1px -2px rgba(153,153,153,0.2),0 1px 5px 0 rgba(153,153,153,0.12);color:#999999;background-color:#fff}.btn.btn-white.btn-white:focus,.btn.btn-white.btn-white:hover{color:#fff;background-color:rgba(153,153,153,0.6)}.btn.btn-white.btn-simple{color:#fff;background:transparent}.btn.btn-round{border-radius:30px}.btn:not(.btn-just-icon):not(.btn-fab) .fa{position:relative}.btn.btn-just-icon{padding:12px}.btn.btn-just-icon:hover{box-shadow:none}.btn.btn-just-icon i{width:20px}.btn.btn-just-icon.btn-lg{padding:13px 18px}.btn.btn-border{background:transparent;border:1px solid #d2d2d2;color:#999}.btn.btn-border:hover,.btn.btn-border:focus{background:transparent;color:#3C4858}.btn .fa{position:relative;top:-1px;vertical-align:middle}.navbar button.navbar-toggle,.navbar button.navbar-toggle:hover{color:#555}.navbar .button:hover{box-shadow:none !important;color:#e91e63}.navbar .dropdown-menu li.btn:hover>a,.navbar .dropdown-menu li.btn:focus>a,.navbar .dropdown-menu li.btn:active>a{color:#ffffff !important}.btn.btn-facebook,.btn.btn-facebook:hover,.btn.btn-facebook:focus,.btn.btn-facebook:active,.navbar .navbar-nav>li>a.btn.btn-facebook,.navbar .navbar-nav>li>a.btn.btn-facebook:hover,.navbar .navbar-nav>li>a.btn.btn-facebook:focus,.navbar .navbar-nav>li>a.btn.btn-facebook:active{color:#fff;background-color:#3b5998}.btn.btn-facebook,.navbar .navbar-nav>li>a.btn.btn-facebook{-webkit-box-shadow:0 2px 2px 0 rgba(59,89,152,0.14),0 3px 1px -2px rgba(59,89,152,0.2),0 1px 5px 0 rgba(59,89,152,0.12);-moz-box-shadow:0 2px 2px 0 rgba(59,89,152,0.14),0 3px 1px -2px rgba(59,89,152,0.2),0 1px 5px 0 rgba(59,89,152,0.12);box-shadow:0 2px 2px 0 rgba(59,89,152,0.14),0 3px 1px -2px rgba(59,89,152,0.2),0 1px 5px 0 rgba(59,89,152,0.12)}.btn.btn-facebook:hover,.btn.btn-facebook:focus,.btn.btn-facebook:active,.navbar .navbar-nav>li>a.btn.btn-facebook:hover,.navbar .navbar-nav>li>a.btn.btn-facebook:focus,.navbar .navbar-nav>li>a.btn.btn-facebook:active{-webkit-box-shadow:0 14px 26px -12px rgba(59,89,152,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(59,89,152,0.2);-moz-box-shadow:0 14px 26px -12px rgba(59,89,152,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(59,89,152,0.2);box-shadow:0 14px 26px -12px rgba(59,89,152,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(59,89,152,0.2)}.btn.btn-facebook.btn-simple,.navbar .navbar-nav>li>a.btn.btn-facebook.btn-simple{color:#3b5998;background-color:transparent}.btn.btn-twitter,.btn.btn-twitter:hover,.btn.btn-twitter:focus,.btn.btn-twitter:active,.navbar .navbar-nav>li>a.btn.btn-twitter,.navbar .navbar-nav>li>a.btn.btn-twitter:hover,.navbar .navbar-nav>li>a.btn.btn-twitter:focus,.navbar .navbar-nav>li>a.btn.btn-twitter:active{color:#fff;background-color:#55acee}.btn.btn-twitter,.navbar .navbar-nav>li>a.btn.btn-twitter{-webkit-box-shadow:0 2px 2px 0 rgba(85,172,238,0.14),0 3px 1px -2px rgba(85,172,238,0.2),0 1px 5px 0 rgba(85,172,238,0.12);-moz-box-shadow:0 2px 2px 0 rgba(85,172,238,0.14),0 3px 1px -2px rgba(85,172,238,0.2),0 1px 5px 0 rgba(85,172,238,0.12);box-shadow:0 2px 2px 0 rgba(85,172,238,0.14),0 3px 1px -2px rgba(85,172,238,0.2),0 1px 5px 0 rgba(85,172,238,0.12)}.btn.btn-twitter:hover,.btn.btn-twitter:focus,.btn.btn-twitter:active,.navbar .navbar-nav>li>a.btn.btn-twitter:hover,.navbar .navbar-nav>li>a.btn.btn-twitter:focus,.navbar .navbar-nav>li>a.btn.btn-twitter:active{-webkit-box-shadow:0 14px 26px -12px rgba(85,172,238,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(85,172,238,0.2);-moz-box-shadow:0 14px 26px -12px rgba(85,172,238,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(85,172,238,0.2);box-shadow:0 14px 26px -12px rgba(85,172,238,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(85,172,238,0.2)}.btn.btn-twitter.btn-simple,.navbar .navbar-nav>li>a.btn.btn-twitter.btn-simple{color:#55acee;background-color:transparent}.btn.btn-pinterest,.btn.btn-pinterest:hover,.btn.btn-pinterest:focus,.btn.btn-pinterest:active,.navbar .navbar-nav>li>a.btn.btn-pinterest,.navbar .navbar-nav>li>a.btn.btn-pinterest:hover,.navbar .navbar-nav>li>a.btn.btn-pinterest:focus,.navbar .navbar-nav>li>a.btn.btn-pinterest:active{color:#fff;background-color:#cc2127}.btn.btn-pinterest,.navbar .navbar-nav>li>a.btn.btn-pinterest{-webkit-box-shadow:0 2px 2px 0 rgba(204,33,39,0.14),0 3px 1px -2px rgba(204,33,39,0.2),0 1px 5px 0 rgba(204,33,39,0.12);-moz-box-shadow:0 2px 2px 0 rgba(204,33,39,0.14),0 3px 1px -2px rgba(204,33,39,0.2),0 1px 5px 0 rgba(204,33,39,0.12);box-shadow:0 2px 2px 0 rgba(204,33,39,0.14),0 3px 1px -2px rgba(204,33,39,0.2),0 1px 5px 0 rgba(204,33,39,0.12)}.btn.btn-pinterest:hover,.btn.btn-pinterest:focus,.btn.btn-pinterest:active,.navbar .navbar-nav>li>a.btn.btn-pinterest:hover,.navbar .navbar-nav>li>a.btn.btn-pinterest:focus,.navbar .navbar-nav>li>a.btn.btn-pinterest:active{-webkit-box-shadow:0 14px 26px -12px rgba(204,33,39,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(204,33,39,0.2);-moz-box-shadow:0 14px 26px -12px rgba(204,33,39,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(204,33,39,0.2);box-shadow:0 14px 26px -12px rgba(204,33,39,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(204,33,39,0.2)}.btn.btn-pinterest.btn-simple,.navbar .navbar-nav>li>a.btn.btn-pinterest.btn-simple{color:#cc2127;background-color:transparent}.btn.btn-google,.btn.btn-google:hover,.btn.btn-google:focus,.btn.btn-google:active,.navbar .navbar-nav>li>a.btn.btn-google,.navbar .navbar-nav>li>a.btn.btn-google:hover,.navbar .navbar-nav>li>a.btn.btn-google:focus,.navbar .navbar-nav>li>a.btn.btn-google:active{color:#fff;background-color:#dd4b39}.btn.btn-google,.navbar .navbar-nav>li>a.btn.btn-google{-webkit-box-shadow:0 2px 2px 0 rgba(221,75,57,0.14),0 3px 1px -2px rgba(221,75,57,0.2),0 1px 5px 0 rgba(221,75,57,0.12);-moz-box-shadow:0 2px 2px 0 rgba(221,75,57,0.14),0 3px 1px -2px rgba(221,75,57,0.2),0 1px 5px 0 rgba(221,75,57,0.12);box-shadow:0 2px 2px 0 rgba(221,75,57,0.14),0 3px 1px -2px rgba(221,75,57,0.2),0 1px 5px 0 rgba(221,75,57,0.12)}.btn.btn-google:hover,.btn.btn-google:focus,.btn.btn-google:active,.navbar .navbar-nav>li>a.btn.btn-google:hover,.navbar .navbar-nav>li>a.btn.btn-google:focus,.navbar .navbar-nav>li>a.btn.btn-google:active{-webkit-box-shadow:0 14px 26px -12px rgba(221,75,57,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(221,75,57,0.2);-moz-box-shadow:0 14px 26px -12px rgba(221,75,57,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(221,75,57,0.2);box-shadow:0 14px 26px -12px rgba(221,75,57,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(221,75,57,0.2)}.btn.btn-google.btn-simple,.navbar .navbar-nav>li>a.btn.btn-google.btn-simple{color:#dd4b39;background-color:transparent}.btn.btn-linkedin,.btn.btn-linkedin:hover,.btn.btn-linkedin:focus,.btn.btn-linkedin:active,.navbar .navbar-nav>li>a.btn.btn-linkedin,.navbar .navbar-nav>li>a.btn.btn-linkedin:hover,.navbar .navbar-nav>li>a.btn.btn-linkedin:focus,.navbar .navbar-nav>li>a.btn.btn-linkedin:active{color:#fff;background-color:#0976b4}.btn.btn-linkedin,.navbar .navbar-nav>li>a.btn.btn-linkedin{-webkit-box-shadow:0 2px 2px 0 rgba(9,118,180,0.14),0 3px 1px -2px rgba(9,118,180,0.2),0 1px 5px 0 rgba(9,118,180,0.12);-moz-box-shadow:0 2px 2px 0 rgba(9,118,180,0.14),0 3px 1px -2px rgba(9,118,180,0.2),0 1px 5px 0 rgba(9,118,180,0.12);box-shadow:0 2px 2px 0 rgba(9,118,180,0.14),0 3px 1px -2px rgba(9,118,180,0.2),0 1px 5px 0 rgba(9,118,180,0.12)}.btn.btn-linkedin:hover,.btn.btn-linkedin:focus,.btn.btn-linkedin:active,.navbar .navbar-nav>li>a.btn.btn-linkedin:hover,.navbar .navbar-nav>li>a.btn.btn-linkedin:focus,.navbar .navbar-nav>li>a.btn.btn-linkedin:active{-webkit-box-shadow:0 14px 26px -12px rgba(9,118,180,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(9,118,180,0.2);-moz-box-shadow:0 14px 26px -12px rgba(9,118,180,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(9,118,180,0.2);box-shadow:0 14px 26px -12px rgba(9,118,180,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(9,118,180,0.2)}.btn.btn-linkedin.btn-simple,.navbar .navbar-nav>li>a.btn.btn-linkedin.btn-simple{color:#0976b4;background-color:transparent}.btn.btn-dribbble,.btn.btn-dribbble:hover,.btn.btn-dribbble:focus,.btn.btn-dribbble:active,.navbar .navbar-nav>li>a.btn.btn-dribbble,.navbar .navbar-nav>li>a.btn.btn-dribbble:hover,.navbar .navbar-nav>li>a.btn.btn-dribbble:focus,.navbar .navbar-nav>li>a.btn.btn-dribbble:active{color:#fff;background-color:#ea4c89}.btn.btn-dribbble,.navbar .navbar-nav>li>a.btn.btn-dribbble{-webkit-box-shadow:0 2px 2px 0 rgba(234,76,137,0.14),0 3px 1px -2px rgba(234,76,137,0.2),0 1px 5px 0 rgba(234,76,137,0.12);-moz-box-shadow:0 2px 2px 0 rgba(234,76,137,0.14),0 3px 1px -2px rgba(234,76,137,0.2),0 1px 5px 0 rgba(234,76,137,0.12);box-shadow:0 2px 2px 0 rgba(234,76,137,0.14),0 3px 1px -2px rgba(234,76,137,0.2),0 1px 5px 0 rgba(234,76,137,0.12)}.btn.btn-dribbble:hover,.btn.btn-dribbble:focus,.btn.btn-dribbble:active,.navbar .navbar-nav>li>a.btn.btn-dribbble:hover,.navbar .navbar-nav>li>a.btn.btn-dribbble:focus,.navbar .navbar-nav>li>a.btn.btn-dribbble:active{-webkit-box-shadow:0 14px 26px -12px rgba(234,76,137,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(234,76,137,0.2);-moz-box-shadow:0 14px 26px -12px rgba(234,76,137,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(234,76,137,0.2);box-shadow:0 14px 26px -12px rgba(234,76,137,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(234,76,137,0.2)}.btn.btn-dribbble.btn-simple,.navbar .navbar-nav>li>a.btn.btn-dribbble.btn-simple{color:#ea4c89;background-color:transparent}.btn.btn-github,.btn.btn-github:hover,.btn.btn-github:focus,.btn.btn-github:active,.navbar .navbar-nav>li>a.btn.btn-github,.navbar .navbar-nav>li>a.btn.btn-github:hover,.navbar .navbar-nav>li>a.btn.btn-github:focus,.navbar .navbar-nav>li>a.btn.btn-github:active{color:#fff;background-color:#333}.btn.btn-github,.navbar .navbar-nav>li>a.btn.btn-github{-webkit-box-shadow:0 2px 2px 0 rgba(51,51,51,0.14),0 3px 1px -2px rgba(51,51,51,0.2),0 1px 5px 0 rgba(51,51,51,0.12);-moz-box-shadow:0 2px 2px 0 rgba(51,51,51,0.14),0 3px 1px -2px rgba(51,51,51,0.2),0 1px 5px 0 rgba(51,51,51,0.12);box-shadow:0 2px 2px 0 rgba(51,51,51,0.14),0 3px 1px -2px rgba(51,51,51,0.2),0 1px 5px 0 rgba(51,51,51,0.12)}.btn.btn-github:hover,.btn.btn-github:focus,.btn.btn-github:active,.navbar .navbar-nav>li>a.btn.btn-github:hover,.navbar .navbar-nav>li>a.btn.btn-github:focus,.navbar .navbar-nav>li>a.btn.btn-github:active{-webkit-box-shadow:0 14px 26px -12px rgba(51,51,51,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(51,51,51,0.2);-moz-box-shadow:0 14px 26px -12px rgba(51,51,51,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(51,51,51,0.2);box-shadow:0 14px 26px -12px rgba(51,51,51,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(51,51,51,0.2)}.btn.btn-github.btn-simple,.navbar .navbar-nav>li>a.btn.btn-github.btn-simple{color:#333;background-color:transparent}.btn.btn-youtube,.btn.btn-youtube:hover,.btn.btn-youtube:focus,.btn.btn-youtube:active,.navbar .navbar-nav>li>a.btn.btn-youtube,.navbar .navbar-nav>li>a.btn.btn-youtube:hover,.navbar .navbar-nav>li>a.btn.btn-youtube:focus,.navbar .navbar-nav>li>a.btn.btn-youtube:active{color:#fff;background-color:#e52d27}.btn.btn-youtube,.navbar .navbar-nav>li>a.btn.btn-youtube{-webkit-box-shadow:0 2px 2px 0 rgba(229,45,39,0.14),0 3px 1px -2px rgba(229,45,39,0.2),0 1px 5px 0 rgba(229,45,39,0.12);-moz-box-shadow:0 2px 2px 0 rgba(229,45,39,0.14),0 3px 1px -2px rgba(229,45,39,0.2),0 1px 5px 0 rgba(229,45,39,0.12);box-shadow:0 2px 2px 0 rgba(229,45,39,0.14),0 3px 1px -2px rgba(229,45,39,0.2),0 1px 5px 0 rgba(229,45,39,0.12)}.btn.btn-youtube:hover,.btn.btn-youtube:focus,.btn.btn-youtube:active,.navbar .navbar-nav>li>a.btn.btn-youtube:hover,.navbar .navbar-nav>li>a.btn.btn-youtube:focus,.navbar .navbar-nav>li>a.btn.btn-youtube:active{-webkit-box-shadow:0 14px 26px -12px rgba(229,45,39,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(229,45,39,0.2);-moz-box-shadow:0 14px 26px -12px rgba(229,45,39,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(229,45,39,0.2);box-shadow:0 14px 26px -12px rgba(229,45,39,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(229,45,39,0.2)}.btn.btn-youtube.btn-simple,.navbar .navbar-nav>li>a.btn.btn-youtube.btn-simple{color:#e52d27;background-color:transparent}.btn.btn-instagram,.btn.btn-instagram:hover,.btn.btn-instagram:focus,.btn.btn-instagram:active,.navbar .navbar-nav>li>a.btn.btn-instagram,.navbar .navbar-nav>li>a.btn.btn-instagram:hover,.navbar .navbar-nav>li>a.btn.btn-instagram:focus,.navbar .navbar-nav>li>a.btn.btn-instagram:active{color:#fff;background-color:#125688}.btn.btn-instagram,.navbar .navbar-nav>li>a.btn.btn-instagram{-webkit-box-shadow:0 2px 2px 0 rgba(18,86,136,0.14),0 3px 1px -2px rgba(18,86,136,0.2),0 1px 5px 0 rgba(18,86,136,0.12);-moz-box-shadow:0 2px 2px 0 rgba(18,86,136,0.14),0 3px 1px -2px rgba(18,86,136,0.2),0 1px 5px 0 rgba(18,86,136,0.12);box-shadow:0 2px 2px 0 rgba(18,86,136,0.14),0 3px 1px -2px rgba(18,86,136,0.2),0 1px 5px 0 rgba(18,86,136,0.12)}.btn.btn-instagram:hover,.btn.btn-instagram:focus,.btn.btn-instagram:active,.navbar .navbar-nav>li>a.btn.btn-instagram:hover,.navbar .navbar-nav>li>a.btn.btn-instagram:focus,.navbar .navbar-nav>li>a.btn.btn-instagram:active{-webkit-box-shadow:0 14px 26px -12px rgba(18,86,136,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(18,86,136,0.2);-moz-box-shadow:0 14px 26px -12px rgba(18,86,136,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(18,86,136,0.2);box-shadow:0 14px 26px -12px rgba(18,86,136,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(18,86,136,0.2)}.btn.btn-instagram.btn-simple,.navbar .navbar-nav>li>a.btn.btn-instagram.btn-simple{color:#125688;background-color:transparent}.btn.btn-reddit,.btn.btn-reddit:hover,.btn.btn-reddit:focus,.btn.btn-reddit:active,.navbar .navbar-nav>li>a.btn.btn-reddit,.navbar .navbar-nav>li>a.btn.btn-reddit:hover,.navbar .navbar-nav>li>a.btn.btn-reddit:focus,.navbar .navbar-nav>li>a.btn.btn-reddit:active{color:#fff;background-color:#ff4500}.btn.btn-reddit,.navbar .navbar-nav>li>a.btn.btn-reddit{-webkit-box-shadow:0 2px 2px 0 rgba(255,69,0,0.14),0 3px 1px -2px rgba(255,69,0,0.2),0 1px 5px 0 rgba(255,69,0,0.12);-moz-box-shadow:0 2px 2px 0 rgba(255,69,0,0.14),0 3px 1px -2px rgba(255,69,0,0.2),0 1px 5px 0 rgba(255,69,0,0.12);box-shadow:0 2px 2px 0 rgba(255,69,0,0.14),0 3px 1px -2px rgba(255,69,0,0.2),0 1px 5px 0 rgba(255,69,0,0.12)}.btn.btn-reddit:hover,.btn.btn-reddit:focus,.btn.btn-reddit:active,.navbar .navbar-nav>li>a.btn.btn-reddit:hover,.navbar .navbar-nav>li>a.btn.btn-reddit:focus,.navbar .navbar-nav>li>a.btn.btn-reddit:active{-webkit-box-shadow:0 14px 26px -12px rgba(255,69,0,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(255,69,0,0.2);-moz-box-shadow:0 14px 26px -12px rgba(255,69,0,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(255,69,0,0.2);box-shadow:0 14px 26px -12px rgba(255,69,0,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(255,69,0,0.2)}.btn.btn-reddit.btn-simple,.navbar .navbar-nav>li>a.btn.btn-reddit.btn-simple{color:#ff4500;background-color:transparent}.btn.btn-tumblr,.btn.btn-tumblr:hover,.btn.btn-tumblr:focus,.btn.btn-tumblr:active,.navbar .navbar-nav>li>a.btn.btn-tumblr,.navbar .navbar-nav>li>a.btn.btn-tumblr:hover,.navbar .navbar-nav>li>a.btn.btn-tumblr:focus,.navbar .navbar-nav>li>a.btn.btn-tumblr:active{color:#fff;background-color:#35465c}.btn.btn-tumblr,.navbar .navbar-nav>li>a.btn.btn-tumblr{-webkit-box-shadow:0 2px 2px 0 rgba(53,70,92,0.14),0 3px 1px -2px rgba(53,70,92,0.2),0 1px 5px 0 rgba(53,70,92,0.12);-moz-box-shadow:0 2px 2px 0 rgba(53,70,92,0.14),0 3px 1px -2px rgba(53,70,92,0.2),0 1px 5px 0 rgba(53,70,92,0.12);box-shadow:0 2px 2px 0 rgba(53,70,92,0.14),0 3px 1px -2px rgba(53,70,92,0.2),0 1px 5px 0 rgba(53,70,92,0.12)}.btn.btn-tumblr:hover,.btn.btn-tumblr:focus,.btn.btn-tumblr:active,.navbar .navbar-nav>li>a.btn.btn-tumblr:hover,.navbar .navbar-nav>li>a.btn.btn-tumblr:focus,.navbar .navbar-nav>li>a.btn.btn-tumblr:active{-webkit-box-shadow:0 14px 26px -12px rgba(53,70,92,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(53,70,92,0.2);-moz-box-shadow:0 14px 26px -12px rgba(53,70,92,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(53,70,92,0.2);box-shadow:0 14px 26px -12px rgba(53,70,92,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(53,70,92,0.2)}.btn.btn-tumblr.btn-simple,.navbar .navbar-nav>li>a.btn.btn-tumblr.btn-simple{color:#35465c;background-color:transparent}.btn.btn-behance,.btn.btn-behance:hover,.btn.btn-behance:focus,.btn.btn-behance:active,.navbar .navbar-nav>li>a.btn.btn-behance,.navbar .navbar-nav>li>a.btn.btn-behance:hover,.navbar .navbar-nav>li>a.btn.btn-behance:focus,.navbar .navbar-nav>li>a.btn.btn-behance:active{color:#fff;background-color:#1769ff}.btn.btn-behance,.navbar .navbar-nav>li>a.btn.btn-behance{-webkit-box-shadow:0 2px 2px 0 rgba(23,105,255,0.14),0 3px 1px -2px rgba(23,105,255,0.2),0 1px 5px 0 rgba(23,105,255,0.12);-moz-box-shadow:0 2px 2px 0 rgba(23,105,255,0.14),0 3px 1px -2px rgba(23,105,255,0.2),0 1px 5px 0 rgba(23,105,255,0.12);box-shadow:0 2px 2px 0 rgba(23,105,255,0.14),0 3px 1px -2px rgba(23,105,255,0.2),0 1px 5px 0 rgba(23,105,255,0.12)}.btn.btn-behance:hover,.btn.btn-behance:focus,.btn.btn-behance:active,.navbar .navbar-nav>li>a.btn.btn-behance:hover,.navbar .navbar-nav>li>a.btn.btn-behance:focus,.navbar .navbar-nav>li>a.btn.btn-behance:active{-webkit-box-shadow:0 14px 26px -12px rgba(23,105,255,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(23,105,255,0.2);-moz-box-shadow:0 14px 26px -12px rgba(23,105,255,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(23,105,255,0.2);box-shadow:0 14px 26px -12px rgba(23,105,255,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(23,105,255,0.2)}.btn.btn-behance.btn-simple,.navbar .navbar-nav>li>a.btn.btn-behance.btn-simple{color:#1769ff;background-color:transparent}.btn.btn-snapchat,.btn.btn-snapchat:hover,.btn.btn-snapchat:focus,.btn.btn-snapchat:active,.navbar .navbar-nav>li>a.btn.btn-snapchat,.navbar .navbar-nav>li>a.btn.btn-snapchat:hover,.navbar .navbar-nav>li>a.btn.btn-snapchat:focus,.navbar .navbar-nav>li>a.btn.btn-snapchat:active{color:#fff;background-color:#fffc00}.btn.btn-snapchat,.navbar .navbar-nav>li>a.btn.btn-snapchat{-webkit-box-shadow:0 2px 2px 0 rgba(255,252,0,0.14),0 3px 1px -2px rgba(255,252,0,0.2),0 1px 5px 0 rgba(255,252,0,0.12);-moz-box-shadow:0 2px 2px 0 rgba(255,252,0,0.14),0 3px 1px -2px rgba(255,252,0,0.2),0 1px 5px 0 rgba(255,252,0,0.12);box-shadow:0 2px 2px 0 rgba(255,252,0,0.14),0 3px 1px -2px rgba(255,252,0,0.2),0 1px 5px 0 rgba(255,252,0,0.12)}.btn.btn-snapchat:hover,.btn.btn-snapchat:focus,.btn.btn-snapchat:active,.navbar .navbar-nav>li>a.btn.btn-snapchat:hover,.navbar .navbar-nav>li>a.btn.btn-snapchat:focus,.navbar .navbar-nav>li>a.btn.btn-snapchat:active{-webkit-box-shadow:0 14px 26px -12px rgba(255,252,0,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(255,252,0,0.2);-moz-box-shadow:0 14px 26px -12px rgba(255,252,0,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(255,252,0,0.2);box-shadow:0 14px 26px -12px rgba(255,252,0,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(255,252,0,0.2)}.btn.btn-snapchat.btn-simple,.navbar .navbar-nav>li>a.btn.btn-snapchat.btn-simple{color:#fffc00;background-color:transparent}.btn.btn-deviantart,.btn.btn-deviantart:hover,.btn.btn-deviantart:focus,.btn.btn-deviantart:active,.navbar .navbar-nav>li>a.btn.btn-deviantart,.navbar .navbar-nav>li>a.btn.btn-deviantart:hover,.navbar .navbar-nav>li>a.btn.btn-deviantart:focus,.navbar .navbar-nav>li>a.btn.btn-deviantart:active{color:#fff;background-color:#05cc47}.btn.btn-deviantart,.navbar .navbar-nav>li>a.btn.btn-deviantart{-webkit-box-shadow:0 2px 2px 0 rgba(5,204,71,0.14),0 3px 1px -2px rgba(5,204,71,0.2),0 1px 5px 0 rgba(5,204,71,0.12);-moz-box-shadow:0 2px 2px 0 rgba(5,204,71,0.14),0 3px 1px -2px rgba(5,204,71,0.2),0 1px 5px 0 rgba(5,204,71,0.12);box-shadow:0 2px 2px 0 rgba(5,204,71,0.14),0 3px 1px -2px rgba(5,204,71,0.2),0 1px 5px 0 rgba(5,204,71,0.12)}.btn.btn-deviantart:hover,.btn.btn-deviantart:focus,.btn.btn-deviantart:active,.navbar .navbar-nav>li>a.btn.btn-deviantart:hover,.navbar .navbar-nav>li>a.btn.btn-deviantart:focus,.navbar .navbar-nav>li>a.btn.btn-deviantart:active{-webkit-box-shadow:0 14px 26px -12px rgba(5,204,71,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(5,204,71,0.2);-moz-box-shadow:0 14px 26px -12px rgba(5,204,71,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(5,204,71,0.2);box-shadow:0 14px 26px -12px rgba(5,204,71,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(5,204,71,0.2)}.btn.btn-deviantart.btn-simple,.navbar .navbar-nav>li>a.btn.btn-deviantart.btn-simple{color:#05cc47;background-color:transparent}.btn.btn-vimeo,.btn.btn-vimeo:hover,.btn.btn-vimeo:focus,.btn.btn-vimeo:active,.navbar .navbar-nav>li>a.btn.btn-vimeo,.navbar .navbar-nav>li>a.btn.btn-vimeo:hover,.navbar .navbar-nav>li>a.btn.btn-vimeo:focus,.navbar .navbar-nav>li>a.btn.btn-vimeo:active{color:#fff;background-color:#1ab7ea}.btn.btn-vimeo,.navbar .navbar-nav>li>a.btn.btn-vimeo{-webkit-box-shadow:0 2px 2px 0 rgba(26,183,234,0.14),0 3px 1px -2px rgba(26,183,234,0.2),0 1px 5px 0 rgba(26,183,234,0.12);-moz-box-shadow:0 2px 2px 0 rgba(26,183,234,0.14),0 3px 1px -2px rgba(26,183,234,0.2),0 1px 5px 0 rgba(26,183,234,0.12);box-shadow:0 2px 2px 0 rgba(26,183,234,0.14),0 3px 1px -2px rgba(26,183,234,0.2),0 1px 5px 0 rgba(26,183,234,0.12)}.btn.btn-vimeo:hover,.btn.btn-vimeo:focus,.btn.btn-vimeo:active,.navbar .navbar-nav>li>a.btn.btn-vimeo:hover,.navbar .navbar-nav>li>a.btn.btn-vimeo:focus,.navbar .navbar-nav>li>a.btn.btn-vimeo:active{-webkit-box-shadow:0 14px 26px -12px rgba(26,183,234,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(26,183,234,0.2);-moz-box-shadow:0 14px 26px -12px rgba(26,183,234,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(26,183,234,0.2);box-shadow:0 14px 26px -12px rgba(26,183,234,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(26,183,234,0.2)}.btn.btn-vimeo.btn-simple,.navbar .navbar-nav>li>a.btn.btn-vimeo.btn-simple{color:#1ab7ea;background-color:transparent}body [class*="fl-builder"] button,body [class*="fl-builder"] button:hover,button.customize-partial-edit-shortcut-button,button.customize-partial-edit-shortcut-button:hover{box-shadow:none !important}legend{margin-bottom:20px}output{padding-top:8px}.radio label,.checkbox label{min-height:20px}select{-webkit-appearance:none;-moz-appearance:none;appearance:none}.label{background-color:#fff;border-radius:2px}.label.label-default{background-color:#fff}.label.label-primary{background-color:#9c27b0}.label.label-success{background-color:#4caf50}.label.label-danger{background-color:#f44336}.label.label-rose{background-color:#e91e63}.form-control{height:36px;padding:7px 0;vertical-align:middle}.form-control-static{min-height:34px;padding-top:8px;padding-bottom:8px}.form-control::-moz-placeholder,.form-control:-ms-input-placeholder,.form-control::-webkit-input-placeholder,.form-group .form-control::-moz-placeholder,.form-group .form-control:-ms-input-placeholder,.form-group .form-control::-webkit-input-placeholder{color:#aaa}.form-control[readonly],.form-control[disabled],fieldset[disabled] .form-control,.form-group .form-control[readonly],.form-group .form-control[disabled],fieldset[disabled] .form-group .form-control{background-color:transparent}.form-control[disabled],fieldset[disabled] .form-control,.form-group .form-control[disabled],fieldset[disabled] .form-group .form-control{border-bottom:1px dotted #d2d2d2;background-image:none}.form-control{margin-bottom:7px}.form-control::-moz-placeholder,.form-group .form-control::-moz-placeholder,.form-control:-ms-input-placeholder,.form-group .form-control:-ms-input-placeholder,.form-control::-webkit-input-placeholder,.form-group .form-control::-webkit-input-placeholder,.checkbox label,.form-group .checkbox label,.radio label,.form-group .radio label,label,.form-group label{color:#aaa}label.control-label{margin:16px 0 0;color:#aaa}.help-block{margin-top:0}.form-group{padding-bottom:7px;position:relative}.form-group .form-control{margin-bottom:7px}.form-group label.control-label{margin:16px 0 0;color:#aaa}.form-group input[type=file]{position:relative;z-index:100;top:0;right:0;bottom:0;left:0;width:100%;height:100%;opacity:1}.form-group textarea{resize:none}.form-group textarea ~ .form-control-highlight{margin-top:-11px}.form-group .help-block{margin-top:0;display:none;position:absolute}.form-group.label-static label.control-label,.form-group.label-placeholder label.control-label,.form-group.label-floating label.control-label{position:absolute;pointer-events:none}.form-group.label-floating label.control-label{will-change:left,top,contents}.form-group.label-placeholder:not(.is-empty) label.control-label{display:none}.form-group.label-floating label.control-label,.form-group.label-placeholder label.control-label{top:-7px;left:0}.form-group.label-static label.control-label,.form-group.label-floating.is-focused label.control-label,.form-group.label-floating:not(.is-empty) label.control-label{top:-28px;left:0}.form-group.is-focused .form-control .material-input:after{background-color:#9c27b0}.form-group.is-focused.label-placeholder label,.form-group.is-focused.label-placeholder label.control-label{color:#aaa}.form-group.is-focused select.form-control{border-color:#d2d2d2}.form-group.has-warning.is-focused .form-control{background-image:-webkit-gradient(linear, left top, left bottom, from(#ff9800), to(#ff9800)),-webkit-gradient(linear, left top, left bottom, from(#d2d2d2), to(#d2d2d2));background-image:-webkit-linear-gradient(#ff9800, #ff9800),-webkit-linear-gradient(#d2d2d2, #d2d2d2);background-image:linear-gradient(#ff9800, #ff9800),linear-gradient(#d2d2d2, #d2d2d2)}.form-group.has-warning label.control-label{color:#ff9800}.form-group.has-error.is-focused .form-control{background-image:-webkit-gradient(linear, left top, left bottom, from(#f44336), to(#f44336)),-webkit-gradient(linear, left top, left bottom, from(#d2d2d2), to(#d2d2d2));background-image:-webkit-linear-gradient(#f44336, #f44336),-webkit-linear-gradient(#d2d2d2, #d2d2d2);background-image:linear-gradient(#f44336, #f44336),linear-gradient(#d2d2d2, #d2d2d2)}.form-group.has-error label.control-label{color:#f44336}.form-group.has-success.is-focused .form-control{background-image:-webkit-gradient(linear, left top, left bottom, from(#4caf50), to(#4caf50)),-webkit-gradient(linear, left top, left bottom, from(#d2d2d2), to(#d2d2d2));background-image:-webkit-linear-gradient(#4caf50, #4caf50),-webkit-linear-gradient(#d2d2d2, #d2d2d2);background-image:linear-gradient(#4caf50, #4caf50),linear-gradient(#d2d2d2, #d2d2d2)}.form-group.has-success label.control-label{color:#4caf50}.form-group.has-info.is-focused .form-control{background-image:-webkit-gradient(linear, left top, left bottom, from(#00bcd4), to(#00bcd4)),-webkit-gradient(linear, left top, left bottom, from(#d2d2d2), to(#d2d2d2));background-image:-webkit-linear-gradient(#00bcd4, #00bcd4),-webkit-linear-gradient(#d2d2d2, #d2d2d2);background-image:linear-gradient(#00bcd4, #00bcd4),linear-gradient(#d2d2d2, #d2d2d2)}.form-group.has-info label.control-label,.form-group.has-info .help-block{color:#00bcd4}select.form-control{border:0;border-radius:0}select.form-control[multiple],select .form-group.is-focused select.form-control[multiple]{height:85px}.input-group-btn .btn{margin:0 0 7px}.input-group .input-group-btn{padding:0 12px}.input-group .input-group-addon{padding:6px 15px 0;border:0;background:transparent}.form-control-feedback{opacity:0}.has-success .form-control-feedback{opacity:1;color:#4caf50}.has-error .form-control-feedback{opacity:1;color:#f44336}.searchform label,.search-form label{display:table-cell;vertical-align:top;padding-right:25px;width:100%}.searchform:not(.media-toolbar-primary),.search-form:not(.media-toolbar-primary),.woocommerce-product-search{display:table;position:relative}.searchform:not(.media-toolbar-primary) input[type=submit],.searchform:not(.media-toolbar-primary) button,.search-form:not(.media-toolbar-primary) input[type=submit],.search-form:not(.media-toolbar-primary) button,.woocommerce-product-search input[type=submit],.woocommerce-product-search button{display:table-cell;vertical-align:top;padding-left:0;padding-right:0;text-align:center;text-indent:-9999px;top:-19px;width:45px}.searchform:not(.media-toolbar-primary) input[type=search],.search-form:not(.media-toolbar-primary) input[type=search],.woocommerce-product-search input[type=search]{height:36px}.searchform:not(.media-toolbar-primary):after,.search-form:not(.media-toolbar-primary):after,.woocommerce-product-search:after{color:#fff;content:"\f002";font-family:'Fontawesome';pointer-events:none;position:absolute;right:15px;top:0}.woocommerce-product-search{width:100%}.woocommerce-product-search input[type=submit]{float:right}.woocommerce-product-search input[type=search]{display:table-cell;vertical-align:top;float:left;width:70%}.blog-sidebar-wrapper .widget:nth-of-type(1).widget_search,.blog-sidebar-wrapper .widget:nth-of-type(1).widget_product_search{padding-top:11px}.comment-form-cookies-consent #wp-comment-cookies-consent{margin:0 10px 0 0}.comment-form-cookies-consent label{display:inline}body:not(.home) .navbar-default .navbar-nav>.active>a,body:not(.home) .navbar-default .navbar-nav>.active>a:hover,body:not(.home) .navbar-default .navbar-nav>.active>a:focus{background:transparent}body.admin-bar .navbar{margin-top:32px}.navbar.navbar-transparent{color:#fff;background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.navbar.navbar-transparent>.container{padding-top:25px}.navbar{background-color:#fff;color:#555;border-radius:0;position:fixed;border:none;padding:0;transition:none;-webkit-box-shadow:0 1px 10px -6px rgba(0,0,0,0.42),0 1px 10px 0 rgba(0,0,0,0.12),0 4px 5px -2px rgba(0,0,0,0.1);box-shadow:0 1px 10px -6px rgba(0,0,0,0.42),0 1px 10px 0 rgba(0,0,0,0.12),0 4px 5px -2px rgba(0,0,0,0.1)}.navbar .navbar-collapse{border:none}.navbar .title-logo-wrapper{max-width:250px;display:flex;align-items:center}.navbar>.container{display:flex;transition:padding 0.1s ease;padding:10px 15px;vertical-align:middle;align-items:center}.navbar.hestia_left .navbar-collapse{margin-left:auto}.navbar.hestia_left>.container{flex-direction:row}.navbar.hestia_left .navbar-nav{display:flex;flex-wrap:wrap;justify-content:flex-end}.navbar.hestia_center>.container{flex-direction:column}.navbar.hestia_center .navbar-nav{display:flex;flex-wrap:wrap;justify-content:center}.navbar.hestia_right>.container{flex-wrap:wrap;flex-direction:row-reverse}.navbar.hestia_right .navbar-header{max-width:250px}.navbar.hestia_right .navbar-header,.navbar.hestia_right .header-sidebar-wrapper{flex:1}.navbar.hestia_right .navbar-nav{display:flex;flex-wrap:wrap;width:100%}.navbar .navbar-header .navbar-brand{padding:0 15px;position:relative;color:inherit;height:auto}.navbar .navbar-header .navbar-brand img{width:auto;max-height:50px}.navbar .navbar-header .navbar-brand p{margin-bottom:0;padding:10px 0}.navbar-toggle-wrapper{margin-left:auto;display:flex;align-items:center;flex-direction:row}.navbar .navbar-toggle{float:none;border:0;margin-right:0}.navbar .navbar-toggle:hover,.navbar .navbar-toggle:focus{background:transparent}.navbar .navbar-toggle .icon-bar{border:1px solid;transition:0.3s ease;position:relative}.navbar .navbar-toggle[aria-expanded=true] .icon-bar:nth-child(1){-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg);top:6px}.navbar .navbar-toggle[aria-expanded=true] .icon-bar:nth-child(2){width:0;opacity:0}.navbar .navbar-toggle[aria-expanded=true] .icon-bar:nth-child(3){-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-o-transform:rotate(-45deg);transform:rotate(-45deg);top:-6px}.navbar .navbar-toggle[aria-expanded=false] .icon-bar:nth-child(1){top:0;-webkit-transform-origin:left center;-moz-transform-origin:left center;-o-transform-origin:left center;transform-origin:left center}.navbar .navbar-toggle[aria-expanded=false] .icon-bar:nth-child(2){top:0;-webkit-transform-origin:left center;-moz-transform-origin:left center;-o-transform-origin:left center;transform-origin:left center}.navbar .navbar-toggle[aria-expanded=false] .icon-bar:nth-child(3){top:0;-webkit-transform-origin:left center;-moz-transform-origin:left center;-o-transform-origin:left center;transform-origin:left center}.navbar .navbar-nav>li{margin:0}.navbar .navbar-nav>li>a{padding-top:15px;padding-bottom:15px;border-radius:3px;color:inherit;text-transform:uppercase}.navbar .navbar-nav>li>a:hover,.navbar .navbar-nav>li>a:focus{color:inherit;opacity:1}.navbar .navbar-nav>li>a .fa{max-width:20px;position:relative;top:2px;margin-top:-4px;margin-right:4px}.navbar .navbar-nav>li.btn{padding:0 10px}.navbar .navbar-nav>li.btn a{color:#fff}.navbar .navbar-nav>li.btn li a{text-transform:none}.navbar .navbar-nav>li .dropdown-menu{margin-top:-5px;border:none}.navbar .navbar-nav>li .dropdown-menu>.active>a{background-color:transparent}.navbar .navbar-nav>li .dropdown-menu li{color:#333;position:relative}.navbar .navbar-nav>li .dropdown-menu li.active>a{color:#333}.navbar .navbar-nav>li .dropdown-menu li:hover>a{color:#e91e63}.navbar .navbar-nav>li .dropdown-menu li:hover>a>i{opacity:0.7}.navbar .navbar-nav>li .dropdown-menu li>a{background-color:transparent;margin:0 5px;padding:10px;border-radius:2px;-webkit-transition:all 150ms linear;transition:all 150ms linear}.navbar .navbar-nav>li .dropdown-menu li>a>i{position:relative;top:1px;min-width:30px;margin-right:12px;opacity:0.5;text-align:center}.navbar .navbar-nav>li .dropdown-menu li>a .fa{position:relative;top:1px;margin-top:-4px;margin-right:12px;vertical-align:middle}.navbar .navbar-nav>li:hover .dropdown-menu{margin-top:0;z-index:10}.navbar .navbar-nav>li:not(.btn)>a:before,.navbar .navbar-nav>li:not(.btn) .hestia-toggle-search:before{position:absolute;z-index:-1;top:0;right:0;bottom:0;left:0;border-radius:3px;background-color:rgba(255,255,255,0.1);content:"";transition:all 300ms cubic-bezier(0.34, 0.9, 0.7, 1);-webkit-transform:scaleX(0);-ms-transform:scaleX(0);transform:scaleX(0);-webkit-transform-origin:50%;-ms-transform-origin:50%;transform-origin:50%}.navbar .navbar-nav>li:not(.btn):hover a:before,.navbar .navbar-nav>li:not(.btn):hover .hestia-toggle-search:before{color:inherit;-webkit-transform:scaleX(1);-ms-transform:scaleX(1);transform:scaleX(1)}.dropdown-submenu{position:relative}.dropdown-submenu .dropdown-menu{display:none;top:0;left:100%;margin-top:-6px;margin-left:-1px}.dropdown-submenu.open>.dropdown-menu{display:table;visibility:visible;opacity:1}.dropdown-submenu:hover>.dropdown-toggle .caret,.dropdown-submenu.open>.dropdown-toggle .caret{border-left:4px dashed;border-top:4px solid transparent;border-bottom:4px solid transparent}.dropdown-submenu:hover .dropdown-menu,.dropdown-submenu.open .dropdown-menu{display:table}.navbar.header-with-topbar{position:absolute;top:40px}.navbar.navbar-scroll-point{position:fixed;top:0}.navbar.full-screen-menu.navbar-scroll-point .header-sidebar-wrapper{display:none}.dropdown-helper-overlay{position:fixed;top:0;left:0;right:0;height:100vh;z-index:-1}#main-navigation ul.nav>li{opacity:1;transition:opacity .25s ease-in-out;-moz-transition:opacity .25s ease-in-out;-webkit-transition:opacity .25s ease-in-out;visibility:visible}@media (max-width: 768px){.hestia-nav-search{margin-top:25px}.hestia-nav-search .search-submit{display:block;pointer-events:all}.hestia-nav-search form{width:100%;margin-bottom:0}.hestia-nav-search form:after{font-size:16px;display:block}.hestia-nav-search label{padding-right:25px}.hestia-toggle-search{display:none}}.full-screen-menu .hestia-toggle-search{display:none}.full-screen-menu .hestia-nav-search{margin-top:25px;text-align:left}@media (min-width: 769px){.navbar:not(.full-screen-menu) .hestia-toggle-search{display:block;padding:12.5px;width:38px}.navbar:not(.full-screen-menu) .hestia-search-in-menu{cursor:pointer;position:relative;vertical-align:middle;display:inline-block}.navbar:not(.full-screen-menu).nav-searching .hestia-nav-search form{max-width:200px;opacity:1;pointer-events:all}.navbar:not(.full-screen-menu).nav-searching #main-navigation ul.nav li:not(.hestia-search-in-menu){opacity:0;visibility:hidden}.navbar:not(.full-screen-menu) .hestia-nav-search{padding:0 15px;text-align:left}.navbar:not(.full-screen-menu) .hestia-nav-search .search-submit{display:none;pointer-events:none}.navbar:not(.full-screen-menu) .hestia-nav-search form{width:200px;max-width:0;padding:5px;transition:all .5s ease;position:absolute;right:40px;box-sizing:border-box;opacity:0;pointer-events:none}.navbar:not(.full-screen-menu) .hestia-nav-search form:after{display:none}.navbar:not(.full-screen-menu) .hestia-nav-search label{padding:0}.navbar:not(.full-screen-menu).navbar-transparent .hestia-nav-search form .search-field{color:#ffffff}.navbar:not(.full-screen-menu).navbar-transparent .hestia-nav-search form .search-field::-webkit-input-placeholder{color:#ffffff}.navbar:not(.full-screen-menu).navbar-transparent .hestia-nav-search form .search-field::-moz-placeholder{color:#ffffff}.navbar:not(.full-screen-menu).navbar-transparent .hestia-nav-search form .search-field:-ms-input-placeholder{color:#ffffff}.navbar:not(.full-screen-menu).navbar-transparent .hestia-nav-search form .search-field:-moz-placeholder{color:#ffffff}.navbar:not(.full-screen-menu).navbar-transparent .hestia-nav-search form .control-label{color:#fff}}.navbar.navbar-default .navbar-nav>.btn.open>a,.navbar.navbar-default .navbar-nav>.btn.active>a,.navbar.navbar-default .navbar-nav>.btn>a{color:#fff;background:transparent}.navbar.navbar-not-transparent .navbar-nav>.active:not(.btn)>a,.navbar.navbar-not-transparent .navbar-nav>.active:not(.btn)>a:hover,.navbar.navbar-not-transparent .navbar-nav>.active:not(.btn)>a:focus{background:transparent}.hestia_right .blog-sidebar-wrapper,.hestia_right .header-sidebar-wrapper{float:none;display:table-cell;width:100%;vertical-align:middle}.hestia_right .blog-sidebar-wrapper .header-widgets-wrapper,.hestia_right .header-sidebar-wrapper .header-widgets-wrapper{align-items:center;display:flex;flex-direction:row;justify-content:flex-end}.hestia_right .blog-sidebar-wrapper .header-widgets-wrapper .searchform label,.hestia_right .blog-sidebar-wrapper .header-widgets-wrapper .search-form label,.hestia_right .header-sidebar-wrapper .header-widgets-wrapper .searchform label,.hestia_right .header-sidebar-wrapper .header-widgets-wrapper .search-form label{width:inherit}.header-widgets-wrapper .widget{margin:0 10px 0 0}.header-widgets-wrapper .widget:last-of-type{margin-right:0}.header-widgets-wrapper .widget,.header-widgets-wrapper .widget h5,.header-widgets-wrapper .widget .textwidget{display:inline-block}.header-widgets-wrapper .widget h5{margin:0 5px 0 0}.header-widgets-wrapper .widget .btn{padding:3px 10px}.header-widgets-wrapper .widget .btn a{color:#fff}.header-widgets-wrapper .widget.widget_nav_menu h5,.header-widgets-wrapper .widget.widget_categories h5,.header-widgets-wrapper .widget.widget_product_categories h5,.header-widgets-wrapper .widget.widget_search h5,.header-widgets-wrapper .widget.widget_product_search h5,.header-widgets-wrapper .widget.widget_meta h5{display:none}.header-widgets-wrapper .widget.widget_nav_menu input[type=submit],.header-widgets-wrapper .widget.widget_categories input[type=submit],.header-widgets-wrapper .widget.widget_product_categories input[type=submit],.header-widgets-wrapper .widget.widget_search input[type=submit],.header-widgets-wrapper .widget.widget_product_search input[type=submit],.header-widgets-wrapper .widget.widget_meta input[type=submit]{opacity:0;left:-15px}.header-widgets-wrapper .widget .searchform:after,.header-widgets-wrapper .widget .search-form:after,.header-widgets-wrapper .widget .woocommerce-product-search:after{right:30px}.header-widgets-wrapper .widget.widget_product_search form,.header-widgets-wrapper .widget.widget_search form{top:15px}.header-widgets-wrapper .widget.widget_product_search form:after,.header-widgets-wrapper .widget.widget_search form:after{color:#333}.header-widgets-wrapper .widget.widget_product_search form .control-label,.header-widgets-wrapper .widget.widget_search form .control-label{color:#333}.header-widgets-wrapper .widget.widget_shopping_cart{margin-top:7px;cursor:pointer;position:relative}.header-widgets-wrapper .widget.widget_shopping_cart .button.checkout{display:none}.header-widgets-wrapper .widget.widget_shopping_cart .wc-forward:not(.checkout){opacity:0;position:absolute;top:-5px;left:-4px;padding:0}.header-widgets-wrapper .widget.widget_shopping_cart:before{color:#333;content:"\f07a";font-family:'Fontawesome';margin-right:5px}.header-widgets-wrapper .widget.widget_shopping_cart:hover .cart_list{opacity:1;display:block;visibility:visible;margin-top:10px}.header-widgets-wrapper .widget.widget_shopping_cart h5{display:none}.header-widgets-wrapper .widget.widget_shopping_cart .widget_shopping_cart_content{display:inline-block}.header-widgets-wrapper .widget.widget_shopping_cart .cart_list{margin-top:0;display:block;visibility:hidden;transition:all .3s ease;opacity:0;padding:0 15px 15px;position:absolute;right:0;top:15px;z-index:10;border:0;-webkit-box-shadow:0 2px 5px 0 rgba(0,0,0,0.26);box-shadow:0 2px 5px 0 rgba(0,0,0,0.26);border-radius:3px !important;background:#fff}.header-widgets-wrapper .widget.widget_shopping_cart .cart_list li{color:#333;display:block;margin-top:15px;padding-bottom:0;white-space:nowrap}.header-widgets-wrapper .widget.widget_shopping_cart .cart_list li a:not(.remove){color:#333;margin:0;padding-right:65px;text-align:left}.header-widgets-wrapper .widget.widget_shopping_cart .cart_list li img{float:left;width:50px;margin-left:0;margin-right:15px}.header-widgets-wrapper .widget.widget_shopping_cart .cart_list li .quantity{float:left}.header-widgets-wrapper .widget.widget_shopping_cart .cart_list li .variation{display:none}.header-widgets-wrapper .widget.widget_shopping_cart .cart_list li.empty{padding:0}.header-widgets-wrapper .widget.widget_shopping_cart .total{border:none;margin:0;padding:0}.header-widgets-wrapper .widget.widget_shopping_cart .total strong{display:none}.header-widgets-wrapper .widget.widget_shopping_cart .total .amount{float:none}.header-widgets-wrapper ul li{cursor:auto;display:inline-block;margin:0 5px}.header-widgets-wrapper ul li:first-child{margin-left:0}.header-widgets-wrapper ul li:last-child{margin-right:0}.header-widgets-wrapper ul li a{padding:0;text-transform:inherit}.header-widgets-wrapper ul li a:before{background-color:transparent;position:static;font-family:'FontAwesome'}.header-widgets-wrapper ul li a:hover,.header-widgets-wrapper ul li a:focus{background-color:transparent;outline:none}.header-widgets-wrapper ul li a[href*="tel:"]:before,.header-widgets-wrapper ul li a[href*="mailto:"]:before{margin-right:7px}.header-widgets-wrapper ul li a[href*="tel:"]:before{content:'\f095'}.header-widgets-wrapper ul li a[href*="mailto:"]:before{content:'\f0e0'}.header-widgets-wrapper ul li.dropdown .caret{display:none}.navbar-transparent .widget .btn:hover a{color:#fff}.navbar-transparent .widget.widget_shopping_cart:before{color:#fff}.navbar-transparent .widget.widget_search form:after,.navbar-transparent .widget.widget_search form.form-group:before,.navbar-transparent .widget.widget_search form .control-label,.navbar-transparent .widget.widget_product_search form:after,.navbar-transparent .widget.widget_product_search form.form-group:before,.navbar-transparent .widget.widget_product_search form .control-label{color:#fff}.woocommerce-product-search input[type=submit],.woocommerce-product-search button{float:right}.pagination{width:100%;text-align:center}.pagination>li>a{border:0}.pagination a,.pagination span{min-width:30px;height:30px;margin:0 3px;padding:0 11px;border-radius:30px !important;color:#999;background:transparent;text-transform:uppercase;display:inline-block}.pagination a:hover,.pagination a:focus{color:#999;background-color:#eee}.pagination span:not(.dots):hover,.pagination span:not(.dots):focus{color:#999;background-color:#eee}.pagination span.current,.pagination span.current:focus,.pagination span.current:hover{border-color:#9c27b0;color:#fff;background-color:#9c27b0;-webkit-box-shadow:0 4px 5px 0 rgba(156,39,176,0.14),0 1px 10px 0 rgba(156,39,176,0.12),0 2px 4px -1px rgba(156,39,176,0.2);box-shadow:0 4px 5px 0 rgba(156,39,176,0.14),0 1px 10px 0 rgba(156,39,176,0.12),0 2px 4px -1px rgba(156,39,176,0.2)}.pagination .next.page-numbers:after{content:" \00bb"}.pagination .prev.page-numbers:before{content:"\00ab "}.label{padding:5px 12px;border-radius:12px;text-transform:uppercase}.label.label-default{background-color:#999}.card,.card-no-width{display:inline-block;position:relative;margin-bottom:30px;border-radius:6px;color:rgba(0,0,0,0.87);background:#fff;max-width:100%;-webkit-box-shadow:0 2px 2px 0 rgba(0,0,0,0.14),0 3px 1px -2px rgba(0,0,0,0.2),0 1px 5px 0 rgba(0,0,0,0.12);-moz-box-shadow:0 2px 2px 0 rgba(0,0,0,0.14),0 3px 1px -2px rgba(0,0,0,0.2),0 1px 5px 0 rgba(0,0,0,0.12);box-shadow:0 2px 2px 0 rgba(0,0,0,0.14),0 3px 1px -2px rgba(0,0,0,0.2),0 1px 5px 0 rgba(0,0,0,0.12)}.card .card-image,.card-no-width .card-image{overflow:hidden;position:relative;height:60%;margin-top:-30px;margin-right:15px;margin-left:15px;border-radius:6px;-webkit-transition:all 300ms cubic-bezier(0.34, 1.61, 0.7, 1);-moz-transition:all 300ms cubic-bezier(0.34, 1.61, 0.7, 1);-o-transition:all 300ms cubic-bezier(0.34, 1.61, 0.7, 1);-ms-transition:all 300ms cubic-bezier(0.34, 1.61, 0.7, 1);transition:all 300ms cubic-bezier(0.34, 1.61, 0.7, 1);-webkit-transform:translate(0, 0);-ms-transform:translate(0, 0);transform:translate(0, 0)}.card .card-image img,.card-no-width .card-image img{width:100%;height:100%;margin:0 !important;border-radius:6px}.card .category:not([class*="text-"]),.card-no-width .category:not([class*="text-"]){color:#999}.card .content,.card-no-width .content{padding:15px 30px}.card .header,.card-no-width .header{margin:15px;padding:15px 0;border-radius:3px;background-color:#fff}.card .header-primary,.card .content-primary,.card-no-width .header-primary,.card-no-width .content-primary{background:-webkit-linear-gradient(30deg, #ab47bc, #7b1fa2);background:linear-gradient(60deg, #ab47bc, #7b1fa2)}.card [class*="header-"],.card [class*="content-"],.card [class*="header-"] .card-title a,.card [class*="header-"] .card-title,.card [class*="header-"] .icon i,.card [class*="content-"] .card-title a,.card [class*="content-"] .card-title,.card [class*="content-"] .icon i,.card [class*="header-"] .author a:hover,.card [class*="header-"] .author a:focus,.card [class*="header-"] .author a:active,.card [class*="content-"] .author a:hover,.card [class*="content-"] .author a:focus,.card [class*="content-"] .author a:active,.card-no-width [class*="header-"],.card-no-width [class*="content-"],.card-no-width [class*="header-"] .card-title a,.card-no-width [class*="header-"] .card-title,.card-no-width [class*="header-"] .icon i,.card-no-width [class*="content-"] .card-title a,.card-no-width [class*="content-"] .card-title,.card-no-width [class*="content-"] .icon i,.card-no-width [class*="header-"] .author a:hover,.card-no-width [class*="header-"] .author a:focus,.card-no-width [class*="header-"] .author a:active,.card-no-width [class*="content-"] .author a:hover,.card-no-width [class*="content-"] .author a:focus,.card-no-width [class*="content-"] .author a:active{color:#fff}.card [class*="header-"] .icon i,.card [class*="content-"] .icon i,.card-no-width [class*="header-"] .icon i,.card-no-width [class*="content-"] .icon i{border-color:rgba(255,255,255,0.25)}.card [class*="header-"] .author a,.card [class*="header-"] .footer .stats,.card [class*="header-"] .category,.card [class*="header-"] .card-description,.card [class*="content-"] .author a,.card [class*="content-"] .footer .stats,.card [class*="content-"] .category,.card [class*="content-"] .card-description,.card [class*="content-"] h1 small,.card [class*="content-"] h2 small,.card [class*="content-"] h3 small,.card-no-width [class*="header-"] .author a,.card-no-width [class*="header-"] .footer .stats,.card-no-width [class*="header-"] .category,.card-no-width [class*="header-"] .card-description,.card-no-width [class*="content-"] .author a,.card-no-width [class*="content-"] .footer .stats,.card-no-width [class*="content-"] .category,.card-no-width [class*="content-"] .card-description,.card-no-width [class*="content-"] h1 small,.card-no-width [class*="content-"] h2 small,.card-no-width [class*="content-"] h3 small{color:rgba(255,255,255,0.8)}.card [class*="content-"],.card-no-width [class*="content-"]{border-radius:6px}.card img,.card-no-width img{width:100%;height:auto}.card .category .fa,.card-no-width .category .fa{position:relative;top:6px}.card .author .avatar,.card-no-width .author .avatar{overflow:hidden;width:30px;height:30px;margin-right:5px;border-radius:50%}.card .author a,.card-no-width .author a{color:#3C4858;text-decoration:none}.card .author .date,.card-no-width .author .date{display:none}.card .footer,.card-no-width .footer{margin-top:15px}.card .footer div,.card-no-width .footer div{display:inline-block !important}.card .footer .author,.card .footer .stats,.card-no-width .footer .author,.card-no-width .footer .stats{color:#999}.card .footer .stats,.card-no-width .footer .stats{float:right}.card .footer .stats .fa,.card-no-width .footer .stats .fa{position:relative;top:4px}.card .checkbox,.card-no-width .checkbox{margin-top:16px}.card{width:100%}@media (max-width: 768px){.card-no-width{width:100%}}.card-contact .header{margin-top:-20px;padding:17px 10px}.card-plain{background:transparent;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.card-plain .content{padding-right:5px;padding-left:5px}.card-plain .card-image{margin:0;border-radius:3px}.card-plain .card-image a{display:block}.card-plain .card-image img{border-radius:3px}.card-form-horizontal .content{padding-right:15px;padding-left:15px}.card-form-horizontal .form-group{margin:3px 0 0;padding-bottom:0}.card-form-horizontal .form-group .form-control{margin-bottom:0}.card-form-horizontal .btn{margin:0}.card-form-horizontal .input-group .input-group-addon{padding-left:0}.card-profile{margin-top:30px;text-align:center}.card-profile .card-avatar{overflow:hidden;max-width:130px;max-height:130px;margin:-50px auto 0;border-radius:50%}.card-profile.card-plain .card-avatar{margin-top:0}.card-testimonial{margin-top:30px;text-align:center}.card-testimonial .card-avatar{max-width:100px;max-height:100px;margin:30px auto 0}.card-testimonial .card-avatar img{overflow:hidden;max-width:130px;max-height:130px;margin:-50px auto 0;border-radius:50%}.card-testimonial .card-avatar+.content{margin-top:15px}.card-blog{margin-top:30px}.card-blog.sticky{padding:20px}.card-blog.sticky.layout-alternative2{padding:0 20px;margin-top:50px}.card-blog.sticky.layout-alternative2 .card-header-image{margin-top:-20px}.card-blog.sticky .card-image{margin-left:0;margin-right:0}.card-blog.sticky .featured-alt-2{padding-bottom:15px}.card-blog .row .category{margin-bottom:0}.card-blog .row .category a{color:#00bcd4}.card-blog .card-title{margin-top:5px}.card-blog a.moretag,.card-blog a.more-link{display:inline-block;margin-left:5px;color:#23527c}.card-blog a.moretag:hover,.card-blog a.more-link:hover{color:#89229b}.card-background{background-position:center center;background-size:cover;text-align:center}.card-background .content{position:relative;z-index:2;max-width:440px;min-height:280px;margin:0 auto;padding-top:40px;padding-bottom:40px}.card-background .card-title{margin-top:10px;color:#fff}.card-background:after{display:block;position:absolute;z-index:1;top:0;left:0;width:100%;height:100%;border-radius:6px;opacity:0;background-color:rgba(0,0,0,0.56);content:""}.card-background:hover:after{opacity:1}.card-product{vertical-align:top;margin-top:30px}.card-product .btn-simple.btn-just-icon{padding:0}.card-product .footer{display:table;margin-top:5px;width:100%}.card-product .footer .price{display:table-cell !important;vertical-align:top;text-align:left}.card-product .footer .price h4{color:#3C4858;margin-bottom:0}.card-product .footer .stats{display:table-cell !important;padding-left:10px;vertical-align:bottom;float:none;text-align:right}.card-product .footer .stats a{margin:10px 0 !important}.card-product .footer .stats a.button,.card-product .footer .stats a.button:hover{box-shadow:none !important;color:inherit !important}.card-product .footer .stats .fa{top:0;margin-bottom:2px}.card-product .card-description ul{list-style:none outside;padding:0;margin-bottom:10px}.card-product .card-title,.card-product .category,.card-product .card-description{text-align:center}.card-product.card-hover-style-pop-and-glow .card-image a img:nth-of-type(2),.card-product.card-hover-style-swap-images .card-image a img:nth-of-type(2){display:none}.card-product.card-hover-style-swap-images:hover .card-image{-webkit-transform:none;-moz-transform:none;-ms-transform:none;-o-transform:none;transform:none}.card-product.card-hover-style-swap-images:hover .card-image a img:nth-of-type(2){display:block;position:absolute;top:0}.img-thumbnail{border-radius:16px}.iframe-container iframe{width:100%}.card .card-image,.card-no-width .card-image,.card .header,.card-no-width .header,.card-profile .card-avatar,.card-testimonial .card-avatar img,.card-raised,.img-raised,.iframe-container iframe{-webkit-box-shadow:0 16px 38px -12px rgba(0,0,0,0.56),0 4px 25px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(0,0,0,0.2);-moz-box-shadow:0 16px 38px -12px rgba(0,0,0,0.56),0 4px 25px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(0,0,0,0.2);box-shadow:0 16px 38px -12px rgba(0,0,0,0.56),0 4px 25px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(0,0,0,0.2)}table,.table{width:100%}table>thead>tr>th,.table>thead>tr>th{border-bottom-width:1px;padding:12px 8px;vertical-align:middle}table>tbody>tr>th,table>tfoot>tr>th,table>thead>tr>td,table>tbody>tr>td,table>tfoot>tr>td,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:12px 8px;vertical-align:middle}table>tbody>tr,.table>tbody>tr{border-bottom:1px solid #eee}table>tbody>tr:last-child,.table>tbody>tr:last-child{border-bottom:0}.woocommerce ul.products:before{display:none !important}.woocommerce ul.products.columns-6,.woocommerce ul.products.columns-5,.woocommerce ul.products.columns-4,.woocommerce ul.products.columns-3,.woocommerce ul.products.columns-2,.woocommerce ul.products.columns-1{display:grid}.woocommerce ul.products.columns-6 li.product,.woocommerce ul.products.columns-5 li.product,.woocommerce ul.products.columns-4 li.product,.woocommerce ul.products.columns-3 li.product,.woocommerce ul.products.columns-2 li.product,.woocommerce ul.products.columns-1 li.product{width:auto;min-width:0;margin:0}.woocommerce ul.products.columns-6 li.product-category,.woocommerce ul.products.columns-5 li.product-category,.woocommerce ul.products.columns-4 li.product-category,.woocommerce ul.products.columns-3 li.product-category,.woocommerce ul.products.columns-2 li.product-category,.woocommerce ul.products.columns-1 li.product-category{text-align:center}@media (min-width: 992px){.woocommerce .products.columns-6{grid-template-columns:repeat(6, 1fr)}.woocommerce .products.columns-5{grid-template-columns:repeat(5, 1fr)}.woocommerce .products.columns-4{grid-template-columns:repeat(4, 1fr)}.woocommerce .products.columns-3{grid-template-columns:repeat(3, 1fr)}.woocommerce .products.columns-2{grid-template-columns:repeat(2, 1fr)}.woocommerce .products.columns-1{grid-template-columns:1fr}.woocommerce .products.columns-1 li.product-category{margin:30px auto 0 !important}.woocommerce .products.columns-2 li.product-category>a>img,.woocommerce .products.columns-1 li.product-category>a>img{max-width:230px}.woocommerce .products.columns-2 li.product,.woocommerce .products.columns-1 li.product{text-align:center}.woocommerce .products.columns-2 li.product .card-product,.woocommerce .products.columns-1 li.product .card-product{width:auto}.woocommerce .products.columns-2 li.product .card-product .card-image>a>img,.woocommerce .products.columns-1 li.product .card-product .card-image>a>img{max-width:230px}.woocommerce .products.columns-2 li.product .card-product .content,.woocommerce .products.columns-1 li.product .card-product .content{max-width:230px;margin-left:auto;margin-right:auto;padding:15px}.woocommerce .content-sidebar-left .products.columns-6,.woocommerce .content-sidebar-left .products.columns-5,.woocommerce .content-sidebar-right .products.columns-6,.woocommerce .content-sidebar-right .products.columns-5{grid-template-columns:repeat(4, 1fr)}}@media (max-width: 991px){.woocommerce .products.columns-6,.woocommerce .products.columns-5,.woocommerce .products.columns-4,.woocommerce .products.columns-3,.woocommerce .products.columns-2{grid-template-columns:repeat(2, 1fr)}.woocommerce .products.columns-2 li.product-category{margin:30px auto 30px}.woocommerce .products.columns-1{grid-template-columns:1fr}.woocommerce .products.columns-1 li{margin:25px auto}.woocommerce .products.columns-1 li.product-category{margin:55px auto 25px}.woocommerce .products.columns-6 li.product-category>a>img,.woocommerce .products.columns-5 li.product-category>a>img,.woocommerce .products.columns-4 li.product-category>a>img,.woocommerce .products.columns-3 li.product-category>a>img,.woocommerce .products.columns-2 li.product-category>a>img,.woocommerce .products.columns-1 li.product-category>a>img{max-width:230px}.woocommerce .products.columns-6 li.product,.woocommerce .products.columns-5 li.product,.woocommerce .products.columns-4 li.product,.woocommerce .products.columns-3 li.product,.woocommerce .products.columns-2 li.product,.woocommerce .products.columns-1 li.product{text-align:center}.woocommerce .products.columns-6 li.product .card-product,.woocommerce .products.columns-5 li.product .card-product,.woocommerce .products.columns-4 li.product .card-product,.woocommerce .products.columns-3 li.product .card-product,.woocommerce .products.columns-2 li.product .card-product,.woocommerce .products.columns-1 li.product .card-product{width:auto}.woocommerce .products.columns-6 li.product .card-product .card-image>a>img,.woocommerce .products.columns-5 li.product .card-product .card-image>a>img,.woocommerce .products.columns-4 li.product .card-product .card-image>a>img,.woocommerce .products.columns-3 li.product .card-product .card-image>a>img,.woocommerce .products.columns-2 li.product .card-product .card-image>a>img,.woocommerce .products.columns-1 li.product .card-product .card-image>a>img{max-width:230px}.woocommerce .products.columns-6 li.product .card-product .content,.woocommerce .products.columns-5 li.product .card-product .content,.woocommerce .products.columns-4 li.product .card-product .content,.woocommerce .products.columns-3 li.product .card-product .content,.woocommerce .products.columns-2 li.product .card-product .content,.woocommerce .products.columns-1 li.product .card-product .content{max-width:230px;margin-left:auto;margin-right:auto;padding:15px}.woocommerce .content-sidebar-left .products.columns-6,.woocommerce .content-sidebar-left .products.columns-5,.woocommerce .content-sidebar-right .products.columns-6,.woocommerce .content-sidebar-right .products.columns-5{grid-template-columns:repeat(2, 1fr)}}@media (max-width: 767px){.woocommerce .products[class*="columns-"]{grid-template-columns:1fr}.woocommerce .products[class*="columns-"] li{margin:20px auto 1px !important}.woocommerce .products[class*="columns-"] li.product-category{margin:50px auto 1px !important}.woocommerce .content-sidebar-left .products.columns-6,.woocommerce .content-sidebar-left .products.columns-5,.woocommerce .content-sidebar-right .products.columns-6,.woocommerce .content-sidebar-right .products.columns-5{grid-template-columns:1fr}}@supports not (display: grid){@media (min-width: 992px){.woocommerce ul.products.columns-6,.woocommerce ul.products.columns-5,.woocommerce ul.products.columns-4,.woocommerce ul.products.columns-3,.woocommerce ul.products.columns-2,.woocommerce ul.products.columns-1{display:block;-ms-grid-columns:none}.woocommerce .content-full ul.products.columns-4 li.product,.woocommerce .content-sidebar-left ul.products.columns-4 li.product,.woocommerce .content-sidebar-right ul.products.columns-4 li.product{width:25%}.woocommerce .content-full ul.products.columns-3 li.product,.woocommerce .content-sidebar-left ul.products.columns-3 li.product,.woocommerce .content-sidebar-right ul.products.columns-3 li.product{width:33.33%}.woocommerce .content-full ul.products.columns-2 li.product,.woocommerce .content-sidebar-left ul.products.columns-2 li.product,.woocommerce .content-sidebar-right ul.products.columns-2 li.product{width:50%}.woocommerce .content-full ul.products.columns-1 li.product,.woocommerce .content-sidebar-left ul.products.columns-1 li.product,.woocommerce .content-sidebar-right ul.products.columns-1 li.product{width:100%}.woocommerce .content-full ul.products.columns-6 li.product{width:16.66%}.woocommerce .content-full ul.products.columns-5 li.product{width:20%}.woocommerce .content-sidebar-left ul.products.columns-6 li.product,.woocommerce .content-sidebar-left ul.products.columns-5 li.product,.woocommerce .content-sidebar-right ul.products.columns-6 li.product,.woocommerce .content-sidebar-right ul.products.columns-5 li.product{width:25%}.woocommerce .content-sidebar-left ul.products.columns-6 li.first,.woocommerce .content-sidebar-left ul.products.columns-5 li.first,.woocommerce .content-sidebar-right ul.products.columns-6 li.first,.woocommerce .content-sidebar-right ul.products.columns-5 li.first{clear:none}.woocommerce.single-product ul.products{display:block}.woocommerce.single-product ul.products li.product{width:25%}.woocommerce-cart ul.products{display:block}.woocommerce-cart ul.products li.product{width:50%}}@media (max-width: 991px){.woocommerce ul.products.columns-6,.woocommerce ul.products.columns-5,.woocommerce ul.products.columns-4,.woocommerce ul.products.columns-3,.woocommerce ul.products.columns-2,.woocommerce ul.products.columns-1{display:block}.woocommerce ul.products.columns-6 li.first,.woocommerce ul.products.columns-6 li.last,.woocommerce ul.products.columns-5 li.first,.woocommerce ul.products.columns-5 li.last,.woocommerce ul.products.columns-4 li.first,.woocommerce ul.products.columns-4 li.last,.woocommerce ul.products.columns-3 li.first,.woocommerce ul.products.columns-3 li.last,.woocommerce ul.products.columns-2 li.first,.woocommerce ul.products.columns-2 li.last,.woocommerce ul.products.columns-1 li.first,.woocommerce ul.products.columns-1 li.last{clear:none}.woocommerce ul.products.columns-6 li.product,.woocommerce ul.products.columns-5 li.product,.woocommerce ul.products.columns-4 li.product,.woocommerce ul.products.columns-3 li.product,.woocommerce ul.products.columns-2 li.product{width:50%}.woocommerce ul.products.columns-1 li.product{width:100%}.woocommerce-cart ul.products,.woocommerce.single-product ul.products{display:block}.woocommerce-cart ul.products li.product,.woocommerce.single-product ul.products li.product{width:50%}}@media (max-width: 767px){.woocommerce ul.products.columns-6 li.product,.woocommerce ul.products.columns-5 li.product,.woocommerce ul.products.columns-4 li.product,.woocommerce ul.products.columns-3 li.product,.woocommerce ul.products.columns-2 li.product,.woocommerce ul.products.columns-1 li.product{width:100%}.woocommerce-cart ul.products,.woocommerce.single-product ul.products{display:block}.woocommerce-cart ul.products li.product,.woocommerce.single-product ul.products li.product{width:100%}}}@media (min-width: 992px) and (-ms-high-contrast: active), (min-width: 992px) and (-ms-high-contrast: none){.woocommerce ul.products.columns-6,.woocommerce ul.products.columns-5,.woocommerce ul.products.columns-4,.woocommerce ul.products.columns-3,.woocommerce ul.products.columns-2,.woocommerce ul.products.columns-1{display:block;-ms-grid-columns:none}.woocommerce .content-full ul.products.columns-4 li.product,.woocommerce .content-sidebar-left ul.products.columns-4 li.product,.woocommerce .content-sidebar-right ul.products.columns-4 li.product{width:25%}.woocommerce .content-full ul.products.columns-3 li.product,.woocommerce .content-sidebar-left ul.products.columns-3 li.product,.woocommerce .content-sidebar-right ul.products.columns-3 li.product{width:33.33%}.woocommerce .content-full ul.products.columns-2 li.product,.woocommerce .content-sidebar-left ul.products.columns-2 li.product,.woocommerce .content-sidebar-right ul.products.columns-2 li.product{width:50%}.woocommerce .content-full ul.products.columns-1 li.product,.woocommerce .content-sidebar-left ul.products.columns-1 li.product,.woocommerce .content-sidebar-right ul.products.columns-1 li.product{width:100%}.woocommerce .content-full ul.products.columns-6 li.product{width:16.66%}.woocommerce .content-full ul.products.columns-5 li.product{width:20%}.woocommerce .content-sidebar-left ul.products.columns-6 li.product,.woocommerce .content-sidebar-left ul.products.columns-5 li.product,.woocommerce .content-sidebar-right ul.products.columns-6 li.product,.woocommerce .content-sidebar-right ul.products.columns-5 li.product{width:25%}.woocommerce .content-sidebar-left ul.products.columns-6 li.first,.woocommerce .content-sidebar-left ul.products.columns-5 li.first,.woocommerce .content-sidebar-right ul.products.columns-6 li.first,.woocommerce .content-sidebar-right ul.products.columns-5 li.first{clear:none}.woocommerce.single-product ul.products{display:block}.woocommerce.single-product ul.products li.product{width:25%}.woocommerce-cart ul.products{display:block}.woocommerce-cart ul.products li.product{width:50%}}@media (max-width: 991px) and (-ms-high-contrast: active), (max-width: 991px) and (-ms-high-contrast: none){.woocommerce ul.products.columns-6,.woocommerce ul.products.columns-5,.woocommerce ul.products.columns-4,.woocommerce ul.products.columns-3,.woocommerce ul.products.columns-2,.woocommerce ul.products.columns-1{display:block}.woocommerce ul.products.columns-6 li.first,.woocommerce ul.products.columns-6 li.last,.woocommerce ul.products.columns-5 li.first,.woocommerce ul.products.columns-5 li.last,.woocommerce ul.products.columns-4 li.first,.woocommerce ul.products.columns-4 li.last,.woocommerce ul.products.columns-3 li.first,.woocommerce ul.products.columns-3 li.last,.woocommerce ul.products.columns-2 li.first,.woocommerce ul.products.columns-2 li.last,.woocommerce ul.products.columns-1 li.first,.woocommerce ul.products.columns-1 li.last{clear:none}.woocommerce ul.products.columns-6 li.product,.woocommerce ul.products.columns-5 li.product,.woocommerce ul.products.columns-4 li.product,.woocommerce ul.products.columns-3 li.product,.woocommerce ul.products.columns-2 li.product{width:50%}.woocommerce ul.products.columns-1 li.product{width:100%}.woocommerce-cart ul.products,.woocommerce.single-product ul.products{display:block}.woocommerce-cart ul.products li.product,.woocommerce.single-product ul.products li.product{width:50%}}@media (max-width: 767px) and (-ms-high-contrast: active), (max-width: 767px) and (-ms-high-contrast: none){.woocommerce ul.products.columns-6 li.product,.woocommerce ul.products.columns-5 li.product,.woocommerce ul.products.columns-4 li.product,.woocommerce ul.products.columns-3 li.product,.woocommerce ul.products.columns-2 li.product,.woocommerce ul.products.columns-1 li.product{width:100%}.woocommerce-cart ul.products,.woocommerce.single-product ul.products{display:block}.woocommerce-cart ul.products li.product,.woocommerce.single-product ul.products li.product{width:100%}}.header-layout-classic-blog.page:not(.home) .main-raised{border-radius:0}.carousel #parallax_move{width:100%;height:100%;position:absolute}.carousel #parallax_move .layer{background-size:cover;width:100%;height:100%;background-position:top center}.carousel #parallax_move .layer2{position:absolute;top:0}.carousel .btn{margin:0}.carousel .page-header{display:flex;z-index:-2}.carousel .page-header .row{display:flex;align-items:center;padding:0 15px;margin:0;flex:1;max-width:100%}.carousel .carousel-control.left,.carousel .carousel-control.right{z-index:0;background-image:none}.carousel .item{text-align:center}.carousel .item .container{display:flex;position:relative;padding:100px 0}.carousel .carousel-control{text-shadow:none}.carousel .carousel-control.left{right:auto;left:0}.carousel .carousel-control.right{right:0}.carousel .carousel-control .fa{display:inline-block;position:absolute;z-index:5;top:50%;bottom:15px}.carousel .buttons .btn-left+.btn-right{margin-left:30px}.wp-custom-header img,.wp-custom-header video,.wp-custom-header iframe{width:100%;position:absolute;left:50%;top:50%;max-width:100%;-ms-transform:translateX(-50%) translateY(-50%);-moz-transform:translateX(-50%) translateY(-50%);-webkit-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%);z-index:-1}.wp-custom-header img{-o-object-fit:cover;object-fit:cover;height:100%}.wp-custom-header .wp-custom-header-video-button{display:none}#carousel-hestia-generic .carousel{overflow:hidden}.big-title-sidebar-wrapper .widget{padding:30px 0}.big-title-sidebar-wrapper .pirate-forms-contact-widget{background:#Fff;color:#3C4858;padding:10px;border-radius:6px;-webkit-box-shadow:0 2px 2px 0 rgba(0,0,0,0.14),0 3px 1px -2px rgba(0,0,0,0.2),0 1px 5px 0 rgba(0,0,0,0.12);-moz-box-shadow:0 2px 2px 0 rgba(0,0,0,0.14),0 3px 1px -2px rgba(0,0,0,0.2),0 1px 5px 0 rgba(0,0,0,0.12);box-shadow:0 2px 2px 0 rgba(0,0,0,0.14),0 3px 1px -2px rgba(0,0,0,0.2),0 1px 5px 0 rgba(0,0,0,0.12)}.hestia-slider-alignment-left .pirate-forms-contact-widget{margin-left:auto}.hestia-slider-alignment-left .widget_media_image img{display:block;margin-left:auto}.hestia-slider-alignment-right .pirate-forms-contact-widget{margin-right:auto}.hestia-slider-alignment-right .widget_media_image img{display:block;margin-right:auto}@media (max-width: 1600px){.carousel-control.left{width:50px}.carousel-control.left i{left:10px}.carousel-control.right{width:50px}.carousel-control.right i{right:10px}}@media all and (-ms-high-contrast: none), (-ms-high-contrast: active){.carousel .page-header .container{display:table;min-height:inherit}.carousel .page-header .container .row{display:table-row}.carousel .page-header .container .row .big-title-slider-content{display:table-cell;vertical-align:middle;float:none;margin:auto}.carousel .page-header .container .row .big-title-slider-content.col-md-7{display:table-cell;vertical-align:middle;float:none;margin:auto}.carousel .page-header .container .row .big-title-sidebar-wrapper.col-md-5{display:table-cell;vertical-align:middle;float:none;margin:auto}.carousel .carousel-control .fa{left:50%}}.section-gray{background:#f0f0f0}.section{padding:70px 0}.section-dark,.section-image{background:#232323;background:-webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #585858), color-stop(100%, #232323));background:-webkit-radial-gradient(center, ellipse cover, #585858 0%, #232323 100%);background:-webkit-radial-gradient(center ellipse, #585858 0%, #232323 100%);background:radial-gradient(ellipse at center, #585858 0%, #232323 100%);background-color:#343434;background-size:200% 240%;background-size:550% 450%}.section-dark .hestia-title,.section-dark .title,.section-dark .card-plain .card-title,.section-dark .card-plain .icon i,.section-dark .card-plain [class*="text-"],.section-dark .card-plain ul li b,.section-image .hestia-title,.section-image .title,.section-image .card-plain .card-title,.section-image .card-plain .icon i,.section-image .card-plain [class*="text-"],.section-image .card-plain ul li b{color:#fff}.section-dark .description,.section-dark .card-plain .card-description,.section-dark .card-plain .icon,.section-image .description,.section-image .card-plain .card-description,.section-image .card-plain .icon{color:#eaeaea}.section-dark .card-plain .category,.section-image .card-plain .category{color:rgba(255,255,255,0.5)}.section-image{position:relative;-webkit-backface-visibility:hidden;-webkit-transform:translate3d(0, 0, 0)}.section-image:after{display:block;position:absolute;z-index:1;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,0.7);content:""}.section-image .container{position:relative;z-index:2}.section,.section-image{background-position:center center;background-size:cover}.hestia-features,.features,.products,.hestia-work,.hestia-testimonials,.hestia-blogs,.subscribe-line{padding:65px 0 70px}.wrapper.classic-blog .title-in-content,.wrapper.no-content .title-in-content{margin-top:0;margin-bottom:15px}.wrapper.classic-blog .hestia-blogs,.wrapper.no-content .hestia-blogs{padding-top:40px}@media (max-width: 768px){.wrapper.classic-blog .hestia-blogs,.wrapper.no-content .hestia-blogs{padding-top:30px}}.wrapper.classic-blog .section,.wrapper.no-content .section{padding-top:40px}@media (max-width: 768px){.wrapper.classic-blog .section,.wrapper.no-content .section{padding-top:30px}}.wrapper.classic-blog .before-shop-main,.wrapper.no-content .before-shop-main{margin-top:0;padding-top:40px}@media (max-width: 768px){.wrapper.classic-blog .before-shop-main,.wrapper.no-content .before-shop-main{padding-top:30px}}.image-in-page-wrapper{margin-bottom:20px}.image-in-page{margin-bottom:30px}.about,.hestia-about{padding:65px 0 30px}.team,.hestia-team{padding:65px 0 20px}.testimonials,.hestia-testimonials{padding:65px 0 40px}.contactus{padding:90px 0 70px}.pricing{padding:100px 0 70px}.hestia-shop-content .shop-item.col-ms-6.col-sm-6{text-align:center}.hestia-shop-content .shop-item.col-ms-6.col-sm-6 .card-product{width:auto}.hestia-shop-content .shop-item.col-ms-6.col-sm-6 .card-product .card-image>a>img{max-width:230px}.hestia-shop-content .shop-item.col-ms-6.col-sm-6 .card-product .content{max-width:230px;margin-left:auto;margin-right:auto}body.product-card-style-plain .hestia-shop{background-color:#ffffff}@media (min-width: 992px){.home .hestia-features .row,.home .hestia-work .row,.home .hestia-team .row,.home .hestia-testimonials .row,.home #blog.hestia-blogs .row,.home .hestia-clients-bar .row{text-align:center}.home .feature-box,.home .hestia-work .col-md-4,.home .hestia-testimonials .col-md-4,.home .hestia-work .col-md-6,.home .hestia-team .col-sm-6,.home #blog.hestia-blogs .hestia-blog-item,.home .hestia-clients-bar .col-md-3{display:inline-block;float:none !important;margin-right:-4px;margin-left:-4px;vertical-align:top}.home .hestia-blog-item{text-align:left}}@media (min-width: 768px){.home section.products .col-md-3.shop-item{display:inline-block;float:none !important;margin-right:-3px;margin-left:-2px}.home section.products .row{text-align:center}}@media (min-width: 480px){.home .hestia-features .row,.home .hestia-work .row,.home .hestia-team .row,.home .hestia-testimonials .row,.home #blog.hestia-blogs .row,.home .hestia-clients-bar .row{text-align:center}.home .feature-box,.home .hestia-work .portfolio-item,.home .hestia-testimonials .col-sm-6,.home .hestia-team .col-sm-6,.home #blog.hestia-blogs .hestia-blog-item,.home .hestia-clients-bar .col-md-3{display:inline-block;float:none !important;margin-right:-4px;margin-left:-4px;vertical-align:top}}@media (min-width: 481px) and (max-width: 991px){.hestia-shop-content .shop-item.col-sm-6.col-ms-6{text-align:right}.hestia-shop-content .shop-item.col-sm-6.col-ms-6:nth-of-type(2n){text-align:left}}.hestia-about{background-attachment:fixed;color:#999}.hestia-about h1,.hestia-about h2,.hestia-about h3,.hestia-about h4,.hestia-about h5{color:#3C4858;text-decoration:none;word-wrap:break-word;font-family:"Roboto Slab","Times New Roman",serif}.hestia-about.section-image{color:#fefefe}.hestia-about.section-image h1,.hestia-about.section-image h2,.hestia-about.section-image h3,.hestia-about.section-image h4,.hestia-about.section-image h5{color:#fff}.hestia-about.section-image h6{color:rgba(255,255,255,0.76)}.hestia-about .customizer-hidden{display:none}.products .shop-item{margin-top:30px}.is-ios .hestia-about,.is-ios .hestia-ribbon{background-attachment:scroll}.hestia-work .portfolio-item{margin-top:30px;cursor:pointer}.hestia-work .card-background .content{padding-bottom:50px;opacity:0}.hestia-work .col-md-4 .card-background .content{padding-top:30%}.hestia-work .col-md-6 .card-background .content{padding-top:20%}.hestia-work .card-background:hover a{opacity:1}.hestia-work .card-background:hover .content{opacity:1;-webkit-transition:all ease 0.5s;transition:all ease 0.5s}.hestia-work .portfolio-item:nth-child(6n) .label{background-color:#4caf50}.hestia-work .portfolio-item:nth-child(6n+1) .label{background-color:#89229b}.hestia-work .portfolio-item:nth-child(6n+2) .label{background-color:#00bcd4}.hestia-work .portfolio-item:nth-child(6n+3) .label{background-color:#f44336}.hestia-work .portfolio-item:nth-child(6n+4) .label{background-color:#ff9800}.hestia-work .portfolio-item:nth-child(6n+5) .label{background-color:#e91e63}.hestia-portfolio-modal .header-filter-gradient{border-radius:6px 6px 0 0;background-size:cover;background-repeat:no-repeat;background-position:center}.hestia-portfolio-modal{background:rgba(0,0,0,0.7)}.hestia-portfolio-modal .modal-header{position:relative;border-radius:6px 6px 0 0}.hestia-portfolio-modal .modal-header h3{margin:0;padding:104px 0;color:#fff}.hestia-portfolio-modal .modal-header:before{border-radius:6px 6px 0 0}.hestia-portfolio-modal .modal-header a{color:#ffffff;z-index:2}.hestia-portfolio-modal .modal-header a:hover{color:#ffffff}.hestia-portfolio-modal .modal-header:after{background-color:rgba(0,0,0,0.5);border-radius:6px 6px 0 0}.hestia-portfolio-modal .modal-header .close{z-index:3;font-size:30px;background:none;float:right;box-shadow:none;line-height:16px;margin:0;padding:10px}.hestia-portfolio-modal .modal-header .portfolio-title-container{position:relative;z-index:2}.hestia-portfolio-modal .modal-content{border-radius:6px}.hestia-portfolio-modal .modal-content .modal-body{padding:40px}.hestia-portfolio-modal .modal-content .portfolio-loading{padding:20px 0}.contactus .content .row{padding:0}.contactus .col-md-offset-2{padding:0 20px}.contactus .form-group{margin:0;padding-bottom:24px}.contactus .pirate-forms-footer .form-group{padding-bottom:0}.contactus .card .content{padding:30px 30px 0}.contactus .pirate_forms_wrap{float:none}.contactus .pirate_forms_wrap #pirate-forms-contact-message{height:130px}.contactus .pirate_forms_wrap .form_field_wrap{margin-bottom:17px}.contactus .pirate_forms_wrap .btn{margin:0}.contactus .pirate_forms_wrap .pirateform_wrap_classes_spam_wrap{color:#aaa;font-weight:400}.contactus .contact_message_wrap{margin-bottom:0}.contactus .contact_submit_wrap{text-align:right;margin-bottom:0}.contactus .hestia-info,.contactus .info{margin:0;padding:0}.contactus .hestia-info,.contactus .hestia-info p,.contactus .hestia-info a:not(.btn),.contactus .info,.contactus .info p,.contactus .info a:not(.btn){color:#ccc}.contactus .hestia-info a:not(.btn):hover,.contactus .info a:not(.btn):hover{text-decoration:underline}.contactus .hestia-info:first-child,.contactus .info:first-child{margin-top:30px}.contactus .hestia-info .info-title,.contactus .info .info-title{margin-top:20px;color:#fff}.contactus .hestia-info .icon,.contactus .info .icon{margin-top:14px;color:#fff}.contactus h5.description{color:#ccc}.contactus .card-contact{margin-top:30px}.contactus .pirate_forms_wrap .pirate-forms-footer{display:block}.contactus .pirate_forms_wrap .pirate-forms-footer .form_captcha_wrap{display:block}.contactus .pirate_forms_wrap .pirate-forms-footer .form_captcha_wrap>div>div{margin:0 auto 20px}.contactus .pirate_forms_wrap .pirate-forms-footer .form_captcha_wrap+.contact_submit_wrap{text-align:center;display:block}.pirate_forms_wrap .pirate-forms-footer .form_field_wrap.contact_submit_wrap{width:100%;text-align:right}.pirate-forms-maps-custom span:before,.pirate-forms-maps-custom span:after{content:'';position:absolute;top:0;bottom:0;margin:auto}.pirate-forms-maps-custom span:before{background:transparent;border:1px solid #aaa;border-radius:3px;left:0;height:18px;width:18px}.pirate-forms-maps-custom span:after{content:'\f00c';font-family:'FontAwesome';left:2px;top:1px;color:transparent}.pirate-forms-maps-custom input[type="checkbox"]{display:none}.pirate-forms-maps-custom label{color:#aaa;cursor:pointer;font-weight:100;margin:8px 0;padding-left:20px;position:relative}.pirate-forms-maps-custom input[type="checkbox"]:checked+label span:after{color:#787878}.pirate-forms-file-upload-input,.pirate_forms_three_inputs_wrap .form_field_wrap input.pirate-forms-file-upload-input{height:50px;padding:0 15px;margin:10px 0 0}div.wpforms-container .wpforms-form input[type=date].form-control,div.wpforms-container .wpforms-form input[type=datetime].form-control,div.wpforms-container .wpforms-form input[type=datetime-local].form-control,div.wpforms-container .wpforms-form input[type=email].form-control,div.wpforms-container .wpforms-form input[type=month].form-control,div.wpforms-container .wpforms-form input[type=number].form-control,div.wpforms-container .wpforms-form input[type=password].form-control,div.wpforms-container .wpforms-form input[type=range].form-control,div.wpforms-container .wpforms-form input[type=search].form-control,div.wpforms-container .wpforms-form input[type=tel].form-control,div.wpforms-container .wpforms-form input[type=text].form-control,div.wpforms-container .wpforms-form input[type=time].form-control,div.wpforms-container .wpforms-form input[type=url].form-control,div.wpforms-container .wpforms-form input[type=week].form-control,div.wpforms-container .wpforms-form select.form-control,div.wpforms-container .wpforms-form textarea.form-control{border:none;padding:7px 0;font-size:14px}div.wpforms-container .wpforms-form .wpforms-field-select select{border-radius:3px}div.wpforms-container .wpforms-form .wpforms-field-number input[type=number]{background-image:none;border-radius:3px}div.wpforms-container .wpforms-form button[type=submit].wpforms-submit,div.wpforms-container .wpforms-form button[type=submit].wpforms-submit:hover{color:#ffffff;border:none}.home div.wpforms-container-full .wpforms-form{margin-left:15px;margin-right:15px}div.wpforms-container-full .wpforms-form .wpforms-field{padding:0 0 24px 0 !important;margin-bottom:17px}div.wpforms-container-full .wpforms-form .wpforms-submit-container{text-align:right}div.wpforms-container-full .wpforms-form .wpforms-submit-container button{text-transform:uppercase}div.wpforms-container-full .wpforms-form textarea{border:none !important}div.wpforms-container-full .wpforms-form textarea:focus{border-width:0 0 0 0 !important}.home div.wpforms-container .wpforms-form textarea{background-image:linear-gradient(#9c27b0, #9c27b0),linear-gradient(#d2d2d2, #d2d2d2);background-color:transparent;background-repeat:no-repeat;background-position:center bottom,center calc(100% - 1px);background-size:0 2px, 100% 1px}@media only screen and (max-width: 768px){.wpforms-container-full .wpforms-form .wpforms-one-half,.wpforms-container-full .wpforms-form button{width:100% !important;margin-left:0 !important}.wpforms-container-full .wpforms-form .wpforms-submit-container{text-align:center}}.hestia-features,.features{padding:75px 0 55px;text-align:center}.hestia-features .hestia-title,.hestia-features .title,.features .hestia-title,.features .title{margin-top:10px}.hestia-features .hestia-info,.hestia-features .info,.features .hestia-info,.features .info{padding:70px 0 30px;margin:0 auto}.hestia-features .feature-box .card,.features .feature-box .card{width:auto;overflow:hidden;margin-bottom:0}.hestia-features .feature-box img,.features .feature-box img{max-width:150px}.hestia-info,.info{max-width:360px}.hestia-info a:hover .info-title,.hestia-info a:hover .icon,.info a:hover .info-title,.info a:hover .icon{opacity:.75}.hestia-info a:hover .icon,.info a:hover .icon{transform:scale(1.05) translateY(-5px)}.hestia-info .icon,.info .icon{transition:.3s ease;color:#999}.hestia-info .info-title,.info .info-title{transition:.3s ease;margin:30px 0 15px;color:#3C4858}.hestia-info p,.info p{color:#999}.info-horizontal .icon{float:left;margin-top:24px;margin-right:10px}.info-horizontal .description{overflow:hidden}.icon.icon-primary{color:#9c27b0}.icon.icon-success{color:#4caf50}.icon.icon-danger{color:#f44336}.icon.icon-rose{color:#e91e63}.single-product .hestia-features,.single-product .features{padding:50px 0 0}.single-product .hestia-features .hestia-info>p,.single-product .hestia-features .info>p,.single-product .features .hestia-info>p,.single-product .features .info>p{margin-bottom:10px}.hestia-team .col-xs-6,.team .col-xs-6{padding-left:0;padding-right:0}.hestia-team .btn-just-icon,.team .btn-just-icon{transition:.3s ease}.hestia-team .btn-just-icon:hover,.team .btn-just-icon:hover{opacity:.75}.hestia-team .card,.team .card{text-align:left}.hestia-team .card .content,.team .card .content{padding-top:0}.hestia-team .card .content a:hover>.card-title,.team .card .content a:hover>.card-title{opacity:.75}.hestia-team .card .footer,.team .card .footer{margin-left:-12px;margin-top:0}.hestia-team h5.description,.team h5.description{margin-bottom:70px}.hestia-team img,.team img{transition:1s ease-in}.hestia-team .card-image a:hover,.team .card-image a:hover{opacity:1}.hestia-team .card-image a:hover img,.team .card-image a:hover img{-webkit-transform:scale3d(1.1, 1.1, 1);transform:scale3d(1.1, 1.1, 1)}.authors-on-blog{background:#121417;background:-moz-linear-gradient(top, #121417 0%, #323437 100%);background:-webkit-gradient(left top, left bottom, color-stop(0%, #121417), color-stop(100%, #323437));background:-webkit-linear-gradient(top, #121417 0%, #323437 100%);background:-o-linear-gradient(top, #121417 0%, #323437 100%);background:-ms-linear-gradient(top, #121417 0%, #323437 100%);background:linear-gradient(to bottom, #121417 0%, #323437 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#121417', endColorstr='#323437', GradientType=0 );background-position:center center;background-size:cover}.authors-on-blog .card-title{color:#fff}.authors-on-blog .footer a:hover{color:#fff}.hestia-team .footer a[href*="facebook.com"],.team .footer a[href*="facebook.com"],.footer-menu a[href*="facebook.com"]{color:#3b5998}.hestia-team .footer a[href*="twitter.com"],.team .footer a[href*="twitter.com"],.footer-menu a[href*="twitter.com"]{color:#55acee}.hestia-team .footer a[href*="pinterest.com"],.team .footer a[href*="pinterest.com"],.footer-menu a[href*="pinterest.com"]{color:#cc2127}.hestia-team .footer a[href*="google.com"],.team .footer a[href*="google.com"],.footer-menu a[href*="google.com"]{color:#dd4b39}.hestia-team .footer a[href*="linkedin.com"],.team .footer a[href*="linkedin.com"],.footer-menu a[href*="linkedin.com"]{color:#0976b4}.hestia-team .footer a[href*="dribbble.com"],.team .footer a[href*="dribbble.com"],.footer-menu a[href*="dribbble.com"]{color:#ea4c89}.hestia-team .footer a[href*="github.com"],.team .footer a[href*="github.com"],.footer-menu a[href*="github.com"]{color:#333}.hestia-team .footer a[href*="youtube.com"],.team .footer a[href*="youtube.com"],.footer-menu a[href*="youtube.com"]{color:#e52d27}.hestia-team .footer a[href*="instagram.com"],.team .footer a[href*="instagram.com"],.footer-menu a[href*="instagram.com"]{color:#125688}.hestia-team .footer a[href*="reddit.com"],.team .footer a[href*="reddit.com"],.footer-menu a[href*="reddit.com"]{color:#ff4500}.hestia-team .footer a[href*="tumblr.com"],.team .footer a[href*="tumblr.com"],.footer-menu a[href*="tumblr.com"]{color:#35465c}.hestia-team .footer a[href*="behance.com"],.team .footer a[href*="behance.com"],.footer-menu a[href*="behance.com"]{color:#1769ff}.hestia-team .footer a[href*="snapchat.com"],.team .footer a[href*="snapchat.com"],.footer-menu a[href*="snapchat.com"]{color:#fffc00}.hestia-team .footer a[href*="deviantart.com"],.team .footer a[href*="deviantart.com"],.footer-menu a[href*="deviantart.com"]{color:#05cc47}.hestia-team .footer a[href*="vimeo.com"],.team .footer a[href*="vimeo.com"],.footer-menu a[href*="vimeo.com"]{color:#1ab7ea}.card-pricing{text-align:center}.card-pricing .card-title{margin-top:30px}.card-pricing .content{padding:15px !important}.card-pricing small:first-child{position:relative;top:-17px}.card-pricing ul{max-width:240px;margin:10px auto;padding:0;list-style:none}.card-pricing ul li{padding:12px 0;border-bottom:1px solid rgba(153,153,153,0.3);color:#999;text-align:center}.card-pricing ul li:last-child{border:0}.card-pricing ul li b{color:#3C4858}.card-pricing .hestia-pricing-icon-wrapper{border-radius:50%;border:1px solid #e5e5e5;width:80px;height:80px;margin:10px auto 0}.card-pricing .hestia-pricing-icon-wrapper i{color:inherit;font-size:30px;line-height:80px}.card-pricing .hestia-pricing-icon-wrapper.pricing-has-icon+.card-title{font-size:25px;margin-top:20px}.card-pricing .hestia-pricing-icon-wrapper.pricing-has-icon+.card-title small{color:inherit;top:0;font-size:inherit;font-weight:inherit;line-height:inherit}.card-pricing .card-pricing.card-plain .hestia-pricing-icon-wrapper{border-color:#d6d1d1}.hestia-ribbon{background-attachment:fixed;padding:100px 0}@media (max-width: 991px){.hestia-subscribe-button{margin-top:40px}}.subscribe-line{padding:65px 0}.subscribe-line .card{margin-top:30px}.subscribe-line .card .content .row{margin:0}.subscribe-line .card .input-group{display:table}.subscribe-line .card .input-group .input-group-addon{display:table-cell;padding:0 15px 0 0;width:1%}.subscribe-line .card .input-group .form-group{display:table-cell;padding-bottom:0}.subscribe-line .card input[type=submit],.subscribe-line .card input[type=button],.subscribe-line .card .btn{white-space:nowrap}.subscribe-line.subscribe-line-image{position:relative;background-position:top center;background-size:cover}.subscribe-line.subscribe-line-image .title,.subscribe-line.subscribe-line-image .hestia-title{color:#fff}.subscribe-line.subscribe-line-image:after{display:block;position:absolute;z-index:1;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,0.66);content:""}.subscribe-line.subscribe-line-image .container{position:relative;z-index:2}.subscribe-line .card h5,.subscribe-line .sib_loader{display:none !important}#sib_signup_form_1{text-align:center}#sib_signup_form_1 .input-group-addon{width:20px;display:inline-block;vertical-align:bottom;text-align:center;margin-right:10px;font-size:16px;margin-bottom:15px}#sib_signup_form_1 p.form-group{display:inline-block;width:calc(100% - 30px);margin-bottom:15px;text-align:left;position:relative;z-index:0}#sib_signup_form_1 p.form-group label{z-index:-1;top:10px;position:absolute;font-weight:400;color:#909090}#sib_signup_form_1 p.form-group:not(.is-empty) label{display:none}.hestia-blogs article .card-image img{transition:1s ease-out}.hestia-blogs article .card-image a:hover{opacity:1}.hestia-blogs article .card-image a:hover img{-webkit-transform:scale3d(1.1, 1.1, 1);transform:scale3d(1.1, 1.1, 1)}.hestia-blogs article .category a:not(:last-child):after{content:", "}.footer .widget h5{margin-bottom:20px}.footer a{color:#3C4858}.footer-big{color:#999;padding:30px 0 18px;text-align:center}.footer-big ul{margin-bottom:0;padding:0;list-style:none}.footer-big ul li a{display:inline-block;position:relative;padding:5px 0;border-radius:3px;text-decoration:none;text-transform:uppercase}.footer-big ul li a:hover{text-decoration:none}.footer-big ul li .btn{margin:0}.footer-big p{color:#999}.footer-big .footer-menu li{display:inline-block}.footer-big .footer-menu li a{padding:15px}.footer-big .copyright{padding:15px 0}.footer-big .content{text-align:left}.footer-big hr{margin-top:10px}footer.footer{background:#fff}footer.footer.footer-black{background:#323437}footer.footer.footer-black a{opacity:0.86;color:#fff}footer.footer.footer-black a:hover,footer.footer.footer-black a:focus{opacity:1}footer.footer.footer-black h5,footer.footer.footer-black h4,footer.footer.footer-black i,footer.footer.footer-black .copyright{color:#fff}footer.footer.footer-black hr{border-color:rgba(255,255,255,0.2)}.hestia-bottom-footer-content{position:relative}.hestia-center{width:100%;text-align:center}.footer-big .footer-menu li a[href*="mailto:"],.footer-big .footer-menu li a[href*="tel:"]{color:transparent;padding:10px}.footer-big .footer-menu li a[href*="mailto:"]:before,.footer-big .footer-menu li a[href*="tel:"]:before{color:#fff;font-family:'FontAwesome'}.footer-big .footer-menu li a[href*="mailto:"]:hover:before,.footer-big .footer-menu li a[href*="tel:"]:hover:before{color:#999}.footer-big .footer-menu li a[href*="mailto:"]:before{content:'\f0e0'}.footer-big .footer-menu li a[href*="tel:"]:before{content:'\f095'}.footer-big .footer-menu li a[href*="facebook.com"]{color:transparent;font-size:0;padding:10px}.footer-big .footer-menu li a[href*="facebook.com"]:before{content:"";font-family:'FontAwesome';color:#3c4858;font-size:16px}.footer-big .footer-menu li a[href*="facebook.com"]:hover:before{color:#3b5998}.footer-black .footer-menu li a[href*="facebook.com"]:before{color:#fff}.footer-big .footer-menu li a[href*="twitter.com"]{color:transparent;font-size:0;padding:10px}.footer-big .footer-menu li a[href*="twitter.com"]:before{content:"";font-family:'FontAwesome';color:#3c4858;font-size:16px}.footer-big .footer-menu li a[href*="twitter.com"]:hover:before{color:#55acee}.footer-black .footer-menu li a[href*="twitter.com"]:before{color:#fff}.footer-big .footer-menu li a[href*="pinterest.com"]{color:transparent;font-size:0;padding:10px}.footer-big .footer-menu li a[href*="pinterest.com"]:before{content:"";font-family:'FontAwesome';color:#3c4858;font-size:16px}.footer-big .footer-menu li a[href*="pinterest.com"]:hover:before{color:#cc2127}.footer-black .footer-menu li a[href*="pinterest.com"]:before{color:#fff}.footer-big .footer-menu li a[href*="google.com"]{color:transparent;font-size:0;padding:10px}.footer-big .footer-menu li a[href*="google.com"]:before{content:"";font-family:'FontAwesome';color:#3c4858;font-size:16px}.footer-big .footer-menu li a[href*="google.com"]:hover:before{color:#dd4b39}.footer-black .footer-menu li a[href*="google.com"]:before{color:#fff}.footer-big .footer-menu li a[href*="linkedin.com"]{color:transparent;font-size:0;padding:10px}.footer-big .footer-menu li a[href*="linkedin.com"]:before{content:"";font-family:'FontAwesome';color:#3c4858;font-size:16px}.footer-big .footer-menu li a[href*="linkedin.com"]:hover:before{color:#0976b4}.footer-black .footer-menu li a[href*="linkedin.com"]:before{color:#fff}.footer-big .footer-menu li a[href*="dribbble.com"]{color:transparent;font-size:0;padding:10px}.footer-big .footer-menu li a[href*="dribbble.com"]:before{content:"";font-family:'FontAwesome';color:#3c4858;font-size:16px}.footer-big .footer-menu li a[href*="dribbble.com"]:hover:before{color:#ea4c89}.footer-black .footer-menu li a[href*="dribbble.com"]:before{color:#fff}.footer-big .footer-menu li a[href*="github.com"]{color:transparent;font-size:0;padding:10px}.footer-big .footer-menu li a[href*="github.com"]:before{content:"";font-family:'FontAwesome';color:#3c4858;font-size:16px}.footer-big .footer-menu li a[href*="github.com"]:hover:before{color:#333}.footer-black .footer-menu li a[href*="github.com"]:before{color:#fff}.footer-big .footer-menu li a[href*="youtube.com"]{color:transparent;font-size:0;padding:10px}.footer-big .footer-menu li a[href*="youtube.com"]:before{content:"";font-family:'FontAwesome';color:#3c4858;font-size:16px}.footer-big .footer-menu li a[href*="youtube.com"]:hover:before{color:#e52d27}.footer-black .footer-menu li a[href*="youtube.com"]:before{color:#fff}.footer-big .footer-menu li a[href*="instagram.com"]{color:transparent;font-size:0;padding:10px}.footer-big .footer-menu li a[href*="instagram.com"]:before{content:"";font-family:'FontAwesome';color:#3c4858;font-size:16px}.footer-big .footer-menu li a[href*="instagram.com"]:hover:before{color:#125688}.footer-black .footer-menu li a[href*="instagram.com"]:before{color:#fff}.footer-big .footer-menu li a[href*="reddit.com"]{color:transparent;font-size:0;padding:10px}.footer-big .footer-menu li a[href*="reddit.com"]:before{content:"";font-family:'FontAwesome';color:#3c4858;font-size:16px}.footer-big .footer-menu li a[href*="reddit.com"]:hover:before{color:#ff4500}.footer-black .footer-menu li a[href*="reddit.com"]:before{color:#fff}.footer-big .footer-menu li a[href*="tumblr.com"]{color:transparent;font-size:0;padding:10px}.footer-big .footer-menu li a[href*="tumblr.com"]:before{content:"";font-family:'FontAwesome';color:#3c4858;font-size:16px}.footer-big .footer-menu li a[href*="tumblr.com"]:hover:before{color:#35465c}.footer-black .footer-menu li a[href*="tumblr.com"]:before{color:#fff}.footer-big .footer-menu li a[href*="behance.com"]{color:transparent;font-size:0;padding:10px}.footer-big .footer-menu li a[href*="behance.com"]:before{content:"";font-family:'FontAwesome';color:#3c4858;font-size:16px}.footer-big .footer-menu li a[href*="behance.com"]:hover:before{color:#1769ff}.footer-black .footer-menu li a[href*="behance.com"]:before{color:#fff}.footer-big .footer-menu li a[href*="snapchat.com"]{color:transparent;font-size:0;padding:10px}.footer-big .footer-menu li a[href*="snapchat.com"]:before{content:"";font-family:'FontAwesome';color:#3c4858;font-size:16px}.footer-big .footer-menu li a[href*="snapchat.com"]:hover:before{color:#fffc00}.footer-black .footer-menu li a[href*="snapchat.com"]:before{color:#fff}.footer-big .footer-menu li a[href*="deviantart.com"]{color:transparent;font-size:0;padding:10px}.footer-big .footer-menu li a[href*="deviantart.com"]:before{content:"";font-family:'FontAwesome';color:#3c4858;font-size:16px}.footer-big .footer-menu li a[href*="deviantart.com"]:hover:before{color:#05cc47}.footer-black .footer-menu li a[href*="deviantart.com"]:before{color:#fff}.footer-big .footer-menu li a[href*="vimeo.com"]{color:transparent;font-size:0;padding:10px}.footer-big .footer-menu li a[href*="vimeo.com"]:before{content:"";font-family:'FontAwesome';color:#3c4858;font-size:16px}.footer-big .footer-menu li a[href*="vimeo.com"]:hover:before{color:#1ab7ea}.footer-black .footer-menu li a[href*="vimeo.com"]:before{color:#fff}.hestia-scroll-to-top{position:fixed;bottom:15px;right:15px;z-index:999;opacity:0;transition:opacity .25s ease-in-out;-moz-transition:opacity .25s ease-in-out;-webkit-transition:opacity .25s ease-in-out;padding:0;margin:0;border-radius:50%;width:50px;height:50px;text-align:center;line-height:50px;font-size:20px;background-color:#999999;-webkit-box-shadow:none;box-shadow:none}.hestia-scroll-to-top:hover{background-color:#999999;-webkit-box-shadow:0 14px 26px -12px rgba(49,49,49,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(49,49,49,0.42);box-shadow:0 14px 26px -12px rgba(49,49,49,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(49,49,49,0.2)}.hestia-scroll-to-top:focus{background-color:#999999;-webkit-box-shadow:0 14px 26px -12px rgba(49,49,49,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(49,49,49,0.42);box-shadow:0 14px 26px -12px rgba(49,49,49,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(49,49,49,0.2)}.hestia-fade{opacity:1}.hestia-top-bar{height:40px;max-height:40px}.hestia-top-bar .col-md-6,.hestia-top-bar .col-md-12{max-height:40px}.hestia-top-bar .col-md-6.pull-right,.hestia-top-bar .col-md-12.pull-right{text-align:right}.hestia-top-bar .col-md-6.pull-right .widget.widget_shopping_cart .cart_list,.hestia-top-bar .col-md-12.pull-right .widget.widget_shopping_cart .cart_list{left:auto;right:0}.hestia-top-bar .widget{margin:0 10px 0 0}.hestia-top-bar .widget:last-of-type{margin-right:0}.hestia-top-bar .widget,.hestia-top-bar .widget h5,.hestia-top-bar .widget .textwidget{display:inline-block}.hestia-top-bar .widget h5{margin:0 5px 0 0}.hestia-top-bar .widget .btn{padding:3px 10px}.hestia-top-bar .widget.widget_nav_menu h5,.hestia-top-bar .widget.widget_categories h5,.hestia-top-bar .widget.widget_product_categories h5{display:none}.hestia-top-bar .widget.widget_search button[type=submit],.hestia-top-bar .widget.widget_search h5,.hestia-top-bar .widget.widget_product_search button[type=submit],.hestia-top-bar .widget.widget_product_search h5{display:none}.hestia-top-bar .widget.widget_search .label-floating,.hestia-top-bar .widget.widget_product_search .label-floating{display:inline-block;margin:0;padding:0;width:auto}.hestia-top-bar .widget.widget_search .label-floating .control-label,.hestia-top-bar .widget.widget_product_search .label-floating .control-label{padding:0}.hestia-top-bar .widget.widget_search .label-floating.is-empty .control-label,.hestia-top-bar .widget.widget_product_search .label-floating.is-empty .control-label{position:absolute;left:25px;top:12px;right:-25px;margin-top:0;text-align:left;opacity:1}.hestia-top-bar .widget.widget_search .label-floating.is-focused .control-label,.hestia-top-bar .widget.widget_product_search .label-floating.is-focused .control-label{opacity:0}.hestia-top-bar .widget.widget_search .label-floating:not(.is-empty) .control-label,.hestia-top-bar .widget.widget_product_search .label-floating:not(.is-empty) .control-label{opacity:0;left:25px;top:12px}.hestia-top-bar .widget.widget_search form:not(.form-group),.hestia-top-bar .widget.widget_product_search form:not(.form-group){opacity:0}.hestia-top-bar .widget.widget_search form.form-group,.hestia-top-bar .widget.widget_product_search form.form-group{opacity:1}.hestia-top-bar .widget.widget_search form.form-group input[type=search],.hestia-top-bar .widget.widget_product_search form.form-group input[type=search]{background:none;border:none;float:none;margin:2px 25px 0 25px;width:auto}.hestia-top-bar .widget.widget_search form.form-group input[type=submit],.hestia-top-bar .widget.widget_product_search form.form-group input[type=submit]{display:none}.hestia-top-bar .widget.widget_search form.form-group:after,.hestia-top-bar .widget.widget_product_search form.form-group:after{display:none}.hestia-top-bar .widget.widget_search form.form-group:before,.hestia-top-bar .widget.widget_product_search form.form-group:before{color:#fff;content:"\f002";font-family:'Fontawesome';position:absolute;left:0;top:0}.hestia-top-bar .widget.widget_search .search-form{display:inline-block}.hestia-top-bar .widget.widget_shopping_cart{cursor:pointer;padding-left:25px;position:relative;vertical-align:top}.hestia-top-bar .widget.widget_shopping_cart:before{color:#fff;content:"\f07a";font-family:'Fontawesome';position:absolute;left:0;top:0;z-index:50}.hestia-top-bar .widget.widget_shopping_cart:hover .cart_list{display:inline-block;opacity:1;visibility:visible;margin-top:0}.hestia-top-bar .widget.widget_shopping_cart .button.checkout{display:none}.hestia-top-bar .widget.widget_shopping_cart .wc-forward:not(.checkout){opacity:0;position:absolute;top:-5px;left:-4px}.hestia-top-bar .widget.widget_shopping_cart h5{display:none}.hestia-top-bar .widget.widget_shopping_cart .widget_shopping_cart_content{display:inline-block}.hestia-top-bar .widget.widget_shopping_cart .cart_list{border-radius:0 0 6px 6px;opacity:0;visibility:hidden;margin-top:-10px;padding:0 15px 15px;position:absolute;left:0;top:40px;z-index:1050}.hestia-top-bar .widget.widget_shopping_cart .cart_list li{display:block;margin-top:15px;padding-bottom:0;white-space:nowrap}.hestia-top-bar .widget.widget_shopping_cart .cart_list li a:not(.remove){margin:0;padding-right:65px;text-align:left}.hestia-top-bar .widget.widget_shopping_cart .cart_list li img{float:left;width:50px;margin-left:0;margin-right:15px}.hestia-top-bar .widget.widget_shopping_cart .cart_list li .quantity{padding-right:65px}.hestia-top-bar .widget.widget_shopping_cart .cart_list li .variation{display:none}.hestia-top-bar .widget.widget_shopping_cart .cart_list li.empty{padding:0}.hestia-top-bar .widget.widget_shopping_cart .total{border:none;margin:0;padding:0}.hestia-top-bar .widget.widget_shopping_cart .total strong{display:none}.hestia-top-bar .widget.widget_shopping_cart .total .amount{float:none}.hestia-top-bar ul li{cursor:auto;display:inline-block;margin:0 5px}.hestia-top-bar ul li:first-child{margin-left:0}.hestia-top-bar ul li:last-child{margin-right:0}.hestia-top-bar ul li a{padding:0;text-transform:inherit}.hestia-top-bar ul li a:before{background-color:transparent;position:static;font-family:'FontAwesome'}.hestia-top-bar ul li a:hover,.hestia-top-bar ul li a:focus{background-color:transparent;outline:none}.hestia-top-bar ul li a[href*="tel:"]:before,.hestia-top-bar ul li a[href*="mailto:"]:before{margin-right:7px}.hestia-top-bar ul li a[href*="tel:"]:before{content:'\f095'}.hestia-top-bar ul li a[href*="mailto:"]:before{content:'\f0e0'}.hestia-top-bar ul li.dropdown .caret{display:none}.hestia-top-bar.placeholder{box-sizing:content-box;border:2px dashed}.hestia-top-bar.placeholder .top-widgets-placeholder{display:inline-block;cursor:pointer;position:relative;vertical-align:top}.hestia-top-bar li a[href*="facebook.com"]{font-size:0}.hestia-top-bar li a[href*="facebook.com"]:before{content:""}.hestia-top-bar li a[href*="facebook.com"]:hover:before{color:#3b5998}.hestia-top-bar li a[href*="twitter.com"]{font-size:0}.hestia-top-bar li a[href*="twitter.com"]:before{content:""}.hestia-top-bar li a[href*="twitter.com"]:hover:before{color:#55acee}.hestia-top-bar li a[href*="pinterest.com"]{font-size:0}.hestia-top-bar li a[href*="pinterest.com"]:before{content:""}.hestia-top-bar li a[href*="pinterest.com"]:hover:before{color:#cc2127}.hestia-top-bar li a[href*="google.com"]{font-size:0}.hestia-top-bar li a[href*="google.com"]:before{content:""}.hestia-top-bar li a[href*="google.com"]:hover:before{color:#dd4b39}.hestia-top-bar li a[href*="linkedin.com"]{font-size:0}.hestia-top-bar li a[href*="linkedin.com"]:before{content:""}.hestia-top-bar li a[href*="linkedin.com"]:hover:before{color:#0976b4}.hestia-top-bar li a[href*="dribbble.com"]{font-size:0}.hestia-top-bar li a[href*="dribbble.com"]:before{content:""}.hestia-top-bar li a[href*="dribbble.com"]:hover:before{color:#ea4c89}.hestia-top-bar li a[href*="github.com"]{font-size:0}.hestia-top-bar li a[href*="github.com"]:before{content:""}.hestia-top-bar li a[href*="github.com"]:hover:before{color:#333}.hestia-top-bar li a[href*="youtube.com"]{font-size:0}.hestia-top-bar li a[href*="youtube.com"]:before{content:""}.hestia-top-bar li a[href*="youtube.com"]:hover:before{color:#e52d27}.hestia-top-bar li a[href*="instagram.com"]{font-size:0}.hestia-top-bar li a[href*="instagram.com"]:before{content:""}.hestia-top-bar li a[href*="instagram.com"]:hover:before{color:#125688}.hestia-top-bar li a[href*="reddit.com"]{font-size:0}.hestia-top-bar li a[href*="reddit.com"]:before{content:""}.hestia-top-bar li a[href*="reddit.com"]:hover:before{color:#ff4500}.hestia-top-bar li a[href*="tumblr.com"]{font-size:0}.hestia-top-bar li a[href*="tumblr.com"]:before{content:""}.hestia-top-bar li a[href*="tumblr.com"]:hover:before{color:#35465c}.hestia-top-bar li a[href*="behance.com"]{font-size:0}.hestia-top-bar li a[href*="behance.com"]:before{content:""}.hestia-top-bar li a[href*="behance.com"]:hover:before{color:#1769ff}.hestia-top-bar li a[href*="snapchat.com"]{font-size:0}.hestia-top-bar li a[href*="snapchat.com"]:before{content:""}.hestia-top-bar li a[href*="snapchat.com"]:hover:before{color:#fffc00}.hestia-top-bar li a[href*="deviantart.com"]{font-size:0}.hestia-top-bar li a[href*="deviantart.com"]:before{content:""}.hestia-top-bar li a[href*="deviantart.com"]:hover:before{color:#05cc47}.hestia-top-bar li a[href*="vimeo.com"]{font-size:0}.hestia-top-bar li a[href*="vimeo.com"]:before{content:""}.hestia-top-bar li a[href*="vimeo.com"]:hover:before{color:#1ab7ea}.hestia-clients-bar{padding:70px 0}.hestia-clients-bar .clients-bar-wrapper{list-style-type:none;margin:0;padding:0}.hestia-clients-bar .clients-bar-wrapper li{display:inline-block;margin:25px;vertical-align:middle}.hestia-clients-bar .clients-bar-wrapper li a{display:block;padding:5px}.hestia-clients-bar .clients-bar-wrapper li img{max-width:100%;height:auto}.hestia-clients-bar .row>div{padding:30px}.search-no-results .search-form,.error404 .search-form{margin-top:40px}#authors-on-blog{padding:80px 0}#authors-on-blog .card-profile{text-align:left}#authors-on-blog .col-ms-6:nth-child(2n+1){clear:both}.blog-post{word-wrap:break-word}.blog-post .section-text{padding-bottom:0}.blog-post .section-text p{margin-bottom:30px}.blog-post .section-blog-info{padding-top:15px}.blog-post .section-blog-info .entry-categories span{font-size:10px}.blog-post .section-blog-info .entry-categories,.blog-post .section-blog-info .entry-tags{word-break:break-all}.blog-post .section-blog-info .entry-categories span,.blog-post .section-blog-info .entry-tags span{display:inline-block;margin:5px}.blog-post .section-blog-info .entry-categories a{display:inline-block;padding:2px 2px;color:#fff}.blog-post .section-blog-info .card-profile{margin-top:0;text-align:left}dl dd,pre{margin-bottom:30px}.alignleft .avatar{margin-right:24px}.alignright .avatar{margin-left:24px}article.sticky h2:before{content:"Featured: "}img.centered,.aligncenter{display:block;margin:0 auto 24px}img.alignnone{margin-bottom:12px}.alignleft{float:left;text-align:left}.alignright{float:right;text-align:right}img.alignleft,.wp-caption.alignleft{margin:0 24px 24px 0;margin:0 2.4rem 2.4rem 0}img.alignright,.wp-caption.alignright{margin:0 0 24px 24px}.wp-caption-text{padding-top:10px;text-align:center}.gallery-caption{padding-top:10px}.gallery .gallery-item{padding:5px}.gallery img{border:none !important;border-radius:6px;-webkit-box-shadow:0 16px 38px -12px rgba(0,0,0,0.56),0 4px 25px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(0,0,0,0.2);box-shadow:0 16px 38px -12px rgba(0,0,0,0.56),0 4px 25px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(0,0,0,0.2)}.bypostauthor{display:block}.related-posts .hestia-title{margin-bottom:50px}.related-posts .category a:not(:last-child):after{content:", "}.single-post .blog-post .section-text .title-in-content{margin-bottom:0}.blog-post .section-text .author.meta-in-content{opacity:.9;margin-bottom:20px;font-size:15px}.flex-row{display:flex;flex-wrap:wrap;flex-direction:row}.layout-alternative2 .category{padding-top:10px}.alignfull,.alignwide{width:unset;max-width:unset}.hestia-hidden{display:none}.media .avatar,.media-body .avatar,.media-area .avatar{overflow:hidden;width:64px;height:64px;margin:0 auto;margin-right:15px;border-radius:50%;-webkit-box-shadow:0 6px 10px 0 rgba(0,0,0,0.14),0 1px 18px 0 rgba(0,0,0,0.12),0 3px 5px -1px rgba(0,0,0,0.2);box-shadow:0 6px 10px 0 rgba(0,0,0,0.14),0 1px 18px 0 rgba(0,0,0,0.12),0 3px 5px -1px rgba(0,0,0,0.2)}.media-area .hestia-title,.comment-respond .hestia-title{margin-bottom:30px}.single-post .blog-post .section-comments .hestia-title{margin-bottom:30px;margin-top:20px}.comment .pull-left{padding-right:10px}.media-body div.avatar{margin:0 10px}.media{overflow:visible}.media .avatar img{width:100%}.media .media-heading{margin-top:0;margin-bottom:10px}.media .media-heading small{font-family:"Roboto","Helvetica","Arial",sans-serif}.media .media-body{padding-right:10px}.media .media-body .media .media-body{padding-right:0}.media .media-footer .btn{margin-bottom:20px}.media .media-footer:after{display:table;clear:both;content:" "}.media p{color:#999}#comments .comment-notes{display:none}.section-comments ul.children .comment-author.avatar,.section-comments ul.children .avatar img{width:40px;height:40px}.blog-post .media p{color:#555}.blog-post .section-comments .title{margin-bottom:30px}.blog-post .section-comments .comment-respond .author{margin:15px 20px 0 0}.blog-post .section-comments .comment-respond .author img{border-radius:100%}.blog-post .comment-reply-link{text-transform:uppercase;float:right}.media-body{width:10000px;display:table-cell;overflow:visible}.widget{margin-bottom:30px;word-break:break-word}.widget ul{padding:0 0 0 10px;margin:0;list-style:none}.widget ul li{line-height:2.4;padding-top:5px}.widget ul li:first-child{padding-top:0}aside .widget .btn a{color:#fff}aside .widget a{color:#23527c}.widget a:hover{color:#89229b}.widget #searchform{margin-bottom:0;padding-bottom:0}.widget h5{font-family:"Roboto Slab","Times New Roman",serif;margin-bottom:10px}.widget select{width:100%}.hestia-widget-placeholder{border:1px dashed #b4b9be;padding:25px;text-align:center}.hestia-widget-placeholder .widget{margin:0}.single .hestia_right aside.blog-sidebar{padding:0}.hestia_right .hestia-widget-placeholder{padding:5px}.widget_calendar th,.widget_calendar tr,.widget_calendar td{padding:7px 0;text-align:center}.hestia-sidebar-close,.hestia-sidebar-open{display:none}.attachment .main-raised .blog-post{padding-bottom:130px}.attachment .sizes{margin-top:20px}.hestia-blog-featured-posts{padding:0}.hestia-blog-featured-posts article:nth-of-type(1) .card{margin-top:0}.hestia-blog-featured-posts article:nth-child(6n) .btn{background-color:#4caf50}.hestia-blog-featured-posts article:nth-child(6n+1) .btn{background-color:#89229b}.hestia-blog-featured-posts article:nth-child(6n+2) .btn{background-color:#00bcd4}.hestia-blog-featured-posts article:nth-child(6n+3) .btn{background-color:#f44336}.hestia-blog-featured-posts article:nth-child(6n+4) .btn{background-color:#ff9800}.hestia-blog-featured-posts article:nth-child(6n+5) .btn{background-color:#e91e63}.hestia-blog-featured-card .card-background{text-align:center}.hestia-blog-featured-card .card-background:after{position:absolute;z-index:1;width:100%;height:100%;display:block;left:0;top:0;content:"";background-color:rgba(0,0,0,0.56);border-radius:6px;opacity:1}.hestia-blog-featured-card .card-background .card-body{position:relative;z-index:2;min-height:280px;padding-top:40px;padding-bottom:40px;max-width:440px;margin:0 auto}.hestia-blog-featured-card .card-background .card-body .card-description{color:rgba(255,255,255,0.7)}.hestia-blog-featured-card .card-background .card-body .category a{color:rgba(255,255,255,0.7)}.hestia-blog-featured-card .card-body{padding:15px 30px}.hestia-blog-featured-card.col-md-12 .card-body{max-width:750px}.page-header .container,.page-header .author,.page-header .author a,.page-header .hestia-title,.page-header .title,.page-header .description{color:#fff}.page-content-wrap:after,.single-post-wrap:after{content:"";display:table;clear:both}#parallax_move ~ .item .page-header,#wp-custom-header ~ .item .page-header{overflow:inherit}.page-header{will-change:transform;overflow:hidden;margin:0;padding:0;border:0;background-position:center center;background-size:cover}.page-header .container{padding-top:30vh;color:#fff}.page-header .container .hestia-title,.page-header .container .title{margin:0 0 20px}.page-header.header-small .container .hestia-title,.page-header.header-small .container .title{margin:20px 0 10px}.page-header.header-small{min-height:300px;position:relative;height:auto}.page-header.header-small .container{padding-top:180px;padding-bottom:110px}.page-header.header-small .hestia-title,.page-header.header-small .title{font-family:"Roboto","Helvetica","Arial",sans-serif}.boxed-layout-header{padding-bottom:60px}.header-filter-gradient{background:linear-gradient(45deg, #a81d84 0%, #ea396f 100%)}.header-filter.header-filter-gradient:before{background-color:transparent}.header-filter{position:absolute;top:0;bottom:0;left:0;right:0;z-index:-1;background-position:center center;background-size:cover}.header-filter:before,.header-filter:after{display:block;position:absolute;top:0;left:0;width:100%;height:100%;content:""}.header-filter::before{background-color:rgba(0,0,0,0.5)}.header-filter .container{position:relative}.woocommerce.single-product .header-filter{background-position:top center}.carousel .header-filter:before,.carousel .header-filter:after{z-index:-1}.clear-filter:before{display:none}.header .wrapper{background:#ccc}.header .btn{margin:0}.header h6{margin-bottom:0}.phone-container img{width:100%}.main{position:relative;background:#fff}.main-raised{margin:-60px 30px 0;border-radius:6px 6px 0 0;-webkit-box-shadow:0 16px 24px 2px rgba(0,0,0,0.14),0 6px 30px 5px rgba(0,0,0,0.12),0 8px 10px -5px rgba(0,0,0,0.2);box-shadow:0 16px 24px 2px rgba(0,0,0,0.14),0 6px 30px 5px rgba(0,0,0,0.12),0 8px 10px -5px rgba(0,0,0,0.2)}.home .main-raised section:first-of-type{border-radius:6px 6px 0 0;overflow:hidden}.page-template-template-pagebuilder-blank .section{padding:0}.woocommerce.archive .main-raised,.single .main-raised{margin-top:-60px;margin-bottom:30px}.single .main-raised.classic-blog{margin-top:0}.woocommerce.archive .main-raised{background-color:#e5e5e5}.content-sidebar-left{padding-left:30px;padding-right:0}.content-sidebar-right{padding-right:30px;padding-left:0}.shop-sidebar-wrapper{padding:0}.content-full.col-md-12{padding:0}.page:not(.home) .wrapper{display:flex;flex-direction:column;min-height:100vh}.page:not(.home) .wrapper .main{display:flex;flex-direction:column;flex:1 0 auto}.page:not(.home) .wrapper .main .blog-post{flex:1 0 auto}@media (max-width: 1199px){.hestia-features .row,.hestia-about .row,.products .row,.hestia-work .row,.hestia-team .row,.pricing .row,.hestia-testimonials .row,section.hestia-blogs .row,.contactus .row{padding:0 15px}.products .container{width:100%}.main-raised{margin:-60px 15px 0}}@media (max-width: 991px){.navbar .navbar-nav>li{margin-right:10px;margin-left:10px}.page-header{height:auto;min-height:0}.card.card-raised .card-image{margin-top:-30px;display:block;margin-left:0;margin-right:0}.card.card-raised{padding:20px}.woocommerce-checkout .page-header{height:auto}.hestia-about .text-area{margin:0 0 10px}.blog .page-header.header-small h2{margin:0}.blog .page-header.header-small{height:auto;min-height:0}.page-header .iframe-container{padding:30px 0}.card-form-horizontal .form-group{padding-bottom:20px}.carousel .page-header{padding:0 30px}.btn.btn-simple{padding-right:0;padding-left:0;text-align:left}.hestia-work .col-md-6 .card-background .content,.hestia-work .col-md-4 .card-background .content{padding-top:15%}.hestia-features .row,.features .row,.hestia-about .row,.about .row,.products .row,.hestia-work .row,.work .row,.hestia-team .row,.team .row,.pricing .row,.hestia-testimonials .row,.testimonials .row,section.hestia-blogs .row,.contactus .row{padding:0 10px}.single aside.blog-sidebar{padding:40px 30px}.shop-sidebar.card{width:100%;text-align:initial}.shop-sidebar-wrapper{text-align:center}.products .shop-item:nth-of-type(2n+1){clear:both}.subscribe-line .card .content{padding:0}.subscribe-line .card .form-group{padding-bottom:0}.blog .hestia-blogs,.archive .hestia-blogs{padding-top:0}.blog .hestia-blogs .card-blog .card-image,.archive .hestia-blogs .card-blog .card-image{margin-bottom:30px}.blog #authors-on-blog,.archive #authors-on-blog{padding-bottom:40px}.home section.hestia-blogs{padding:30px 0 65px}.single.single-post .section-blog-info .card-profile .card-title,.single.single-post .section-blog-info .card-profile .description{text-align:center}.hestia-sidebar-open,.hestia-sidebar-close{cursor:pointer;display:inline-block;margin:0;padding:12px 15px}.row-sidebar-toggle{margin:30px 15px 0;text-align:right}.page .row-sidebar-toggle{margin-top:0;margin-bottom:30px}.shop-sidebar-wrapper{float:none;overflow-x:hidden;position:fixed;z-index:9999;top:0;left:-100%;width:100%;height:100%;padding:15px 0;background:#fff;-webkit-transition:0.5s ease;-moz-transition:0.5s ease;-ms-transition:0.5s ease;-o-transition:0.5s ease;transition:0.5s ease}.shop-sidebar-wrapper .row-sidebar-toggle{margin:0 15px 30px}.archive.woocommerce .hestia-sidebar-open{margin-bottom:30px}.archive.woocommerce .shop-sidebar-active{margin-top:10px}.archive.woocommerce .row-sidebar-toggle.col-sm-3{margin:0;text-align:left}.archive.woocommerce .row-sidebar-toggle.col-sm-3 .hestia-sidebar-open{margin:15px 0 0}.shop-sidebar.card.card-raised{box-shadow:none;margin:0;padding:0 15px}.hestia-top-bar .container{width:100%}.hestia-top-bar .col-md-6{width:50%}.hestia-team .card .content,.team .card .content{padding-top:15px}.hestia-team .card .content .footer .btn.btn-just-icon,.team .card .content .footer .btn.btn-just-icon{padding:12px;text-align:center}.pricing p.text-gray{margin-bottom:40px}.related-posts .hestia-title{margin-bottom:60px}.hestia-blog-featured-posts{padding-top:30px}.hestia-blog-featured-posts .card-raised{margin:30px 0}.hestia-blog-featured-posts .card-background .card-body{padding-top:20px;padding-bottom:20px;max-width:100%}.hestia-blog-featured-posts .card-body{padding:20px 15px}}@media (min-width: 992px){.navbar .navbar-collapse{text-align:center}.card.card-raised .card-image{margin-left:0;margin-right:0}.navbar .navbar-center{display:inline-block;float:none}.navbar .navbar-nav>li{margin:0}.navbar .navbar-nav>li.btn{margin:0 10px}.navbar .navbar-nav>li.btn:last-child{margin-right:0}.entry-social{text-align:right}.footer .content{margin-left:-15px;margin-right:-15px}.footer .row{margin-left:-15px;margin-right:-15px}.footer .col-md-4{padding:0 30px}.blog-sidebar-wrapper,.shop-sidebar-wrapper{float:left;position:static;background:transparent;left:0 !important}.big-title-sidebar-wrapper .pirate-forms-contact-widget{max-width:370px}}@media (min-width: 783px) and (min-width: 601px){body.admin-bar .navbar-default:not(.navbar-transparent){margin-top:32px}}@media (min-width: 769px){.form-horizontal .control-label{padding-top:8px}.nav-cart.responsive-nav-cart{display:none}.navbar.hestia_left .title-logo-wrapper{min-width:250px}.navbar.hestia_right.navbar-scroll-point .title-logo-wrapper,.navbar.hestia_right.navbar-scroll-point .header-sidebar-wrapper{display:none}.navbar.hestia_right .title-logo-wrapper{min-width:250px}.navbar.hestia_right .navbar-collapse{min-width:100%}.navbar.hestia_center .navbar-brand{margin:0 auto}.navbar.hestia_center.navbar-scroll-point .title-logo-wrapper{display:none}.navbar.full-screen-menu .navbar-brand{float:none;margin:0;padding:0}.navbar.full-screen-menu .navbar-header{width:100%;display:flex}.navbar.full-screen-menu .navbar-toggle{z-index:999999}.navbar.full-screen-menu.navbar-scroll-point .title-logo-wrapper{display:block}.navbar.full-screen-menu .navbar-toggle,.navbar.full-screen-menu .nav-cart:not(.responsive-nav-cart){display:inline-block}.navbar.full-screen-menu .nav-cart .nav-cart-icon span{top:10px;left:15px}.navbar.full-screen-menu .navbar-nav{background-color:rgba(255,255,255,0.9)}.navbar.full-screen-menu.hestia_center .navbar-header .title-logo-wrapper{left:50%;transform:translateX(-50%);position:relative}.navbar.full-screen-menu.hestia_right .navbar-header{max-width:100%}.navbar.full-screen-menu .navbar-nav.nav{opacity:0;display:flex;flex-direction:column;flex-wrap:inherit;justify-content:flex-start;transition:all .3s ease;visibility:hidden;pointer-events:none;z-index:9999;overflow-x:scroll;position:fixed;width:100%;background-color:rgba(255,255,255,0.9);left:0;top:0;bottom:0;padding-top:100px}.navbar.full-screen-menu .navbar-nav.nav>li,.navbar.full-screen-menu .navbar-nav.nav>li.btn:last-child{display:table;margin:20px auto}.navbar.full-screen-menu .in .navbar-nav.nav{opacity:1;visibility:visible;pointer-events:inherit}.dropdown .dropdown-menu{display:block;visibility:hidden;margin-top:-20px;opacity:0;-webkit-transition:all 150ms linear;transition:all 150ms linear}.dropdown.open,.dropdown:hover{z-index:1}.dropdown.open>.dropdown-menu,.dropdown:hover>.dropdown-menu{visibility:visible;margin-top:1px;opacity:1;z-index:100}}@media (max-width: 768px){li.nav-cart{display:none}li.nav-cart.responsive-nav-cart{display:block;margin-left:5px}.container .navbar-header{width:100%;display:flex;margin:0 auto}.navbar>.container{transition:padding 0.1s ease;padding:10px 15px;align-items:center;display:block}.navbar.navbar-transparent{background:#fff;color:#555}.navbar.navbar-transparent>.container{padding-top:10px}.navbar .nav.navbar-nav{display:block}.hestia-sidebar-header{display:none}.navbar.hestia_right .navbar-header{max-width:inherit}.navbar.navbar-default .dropdown.btn a .caret{border-color:#fff !important;color:#fff !important}.navbar.navbar-default li.btn a,.navbar.navbar-default li.btn a i,.navbar.navbar-default .navbar-nav .menu-item.btn.active a,.navbar.navbar-default .navbar-nav .menu-item.btn.active a i{color:#fff}.navbar.navbar-default li.btn:hover a,.navbar.navbar-default li.btn:hover i{color:#fff}.navbar.navbar-default li.btn:hover ul li i{color:#fff}.navbar.navbar-default li.btn ul li a,.navbar.navbar-default li.btn ul li i{opacity:1;color:#fff !important}.navbar.navbar-default li.btn ul li:hover a,.navbar.navbar-default li.btn ul li i{color:#fff !important}.navbar.navbar-fixed-top .navbar-collapse{max-height:calc(100% - 70px);margin-top:70px;overflow-y:auto;position:fixed;z-index:9999;background:#fff;width:100%;left:0;top:0;margin-left:0;margin-right:0;-webkit-overflow-scrolling:auto}.navbar.navbar-fixed-top.header-with-topbar:not(.navbar-scroll-point) .navbar-collapse{margin-top:110px}.navbar .navbar-nav{margin:7.5px 0}.navbar .navbar-nav li{box-sizing:border-box;float:left;margin:0;padding:0;width:100%;text-align:left}.navbar .navbar-nav li.btn{margin-top:10px}.navbar .navbar-nav .dropdown a .caret{border:1px solid #555;border-radius:2px;box-sizing:content-box;color:#555;cursor:pointer;display:inline-block;font-family:Fontawesome;height:30px;margin-left:0;position:absolute;right:15px;text-align:center;top:10px;width:30px;z-index:100}.navbar .navbar-nav .dropdown a .caret:before{content:"\f107";top:5px;position:relative;display:inline-block;transition:all 0.3s ease}.navbar .navbar-nav .dropdown a .caret-open .caret:before{transform:rotate(-180deg)}.navbar .navbar-nav .dropdown a>i{margin-right:12px}.navbar .navbar-nav .dropdown.open a>.caret:before{-webkit-transform:rotate(-180deg);-moz-transform:rotate(-180deg);-ms-transform:rotate(-180deg);-o-transform:rotate(-180deg);transform:rotate(-180deg)}.navbar .navbar-nav .dropdown.open .dropdown-menu{display:block !important}.navbar .navbar-nav .dropdown .dropdown-menu{background:transparent;box-shadow:none;position:static;margin-top:0;padding:0;width:100%}.navbar .navbar-nav .dropdown .dropdown-menu.open{display:block !important}.navbar .navbar-nav .dropdown .dropdown-menu li a{margin:0;padding:15px 0 15px 30px}.navbar .navbar-nav .dropdown .dropdown-menu li a:hover,.navbar .navbar-nav .dropdown .dropdown-menu li a:focus{background-color:transparent;color:#e91e63}.navbar .navbar-nav .dropdown .dropdown-menu li li a{padding:15px 0 15px 45px}.navbar .navbar-header .navbar-brand{padding-left:0}.navbar .navbar-brand h1,.navbar .navbar-brand p{padding:10px 0}.navbar .dropdown-submenu:hover .dropdown-menu{display:none !important}.navbar .dropdown-submenu.open>a{background:transparent !important;color:inherit;-webkit-box-shadow:none;box-shadow:none}.navbar.navbar-transparent .open .dropdown-menu>li>a:hover,.navbar.navbar-transparent .open .dropdown-menu>li>a:focus,.navbar.navbar-transparent .open .dropdown-menu>.active>a,.navbar.navbar-transparent .open .dropdown-menu>.active>a:hover,.navbar.navbar-transparent .open .dropdown-menu>.active>a:focus{color:inherit;background-color:transparent}.navbar.navbar-transparent .navbar-nav>.active>a{color:#555}.navbar .open .dropdown-menu>li>a:hover,.navbar .open .dropdown-menu>li>a:focus,.navbar .open .dropdown-menu>.active>a,.navbar .open .dropdown-menu>.active>a:hover,.navbar .open .dropdown-menu>.active>a:focus{color:#e91e63;background-color:transparent}.navbar .dropdown-menu li>a>i{opacity:1}.hestia_right .header-sidebar-wrapper{display:none}body.admin-bar .navbar{margin-top:45px}body.admin-bar .navbar.navbar-default .navbar-collapse{max-height:calc(100% - 115px);margin-top:115px}body.admin-bar .navbar.header-with-topbar{margin-top:0;top:85px}body.admin-bar .navbar.header-with-topbar.navbar-fixed-top .navbar-collapse{max-height:calc(100% - 155px);margin-top:155px}body.admin-bar .navbar.header-with-topbar.navbar-fixed-top.navbar-scroll-point .navbar-collapse{margin-top:115px}body.admin-bar .navbar.navbar-scroll-point.header-with-topbar{top:45px}body.admin-bar .navbar.navbar-scroll-point.navbar-fixed-top .navbar-collapse{max-height:calc(100% - 115px)}.big-title-sidebar-wrapper{width:100%;padding:0}.big-title-sidebar-wrapper .pirate-forms-contact-widget{max-width:370px;margin:0 auto}.single .section{padding:30px 0 0}.single .section.section-blog-info{padding:15px 0 30px}.media .avatar,.media-body .avatar,.media-area .avatar{margin:0;width:35px;height:35px}.subscribe-line .btn{margin-top:15px}ul.children{padding-left:5px;border-left:1px #cfcfcf solid}.blog-post .section-comments .comment-respond .author{display:none}.hestia-about .text-area{margin-bottom:20px}.home .main-raised section:first-of-type{border-radius:0}.footer.footer-big{padding:30px 0 26px}.footer .footer-menu{width:100%}.footer .copyright{display:inline-block;float:none !important;width:100%;padding:10px 0;text-align:center}.main-raised{margin-right:0;margin-left:0;border-radius:0}hr{margin-top:0}.hestia-about{padding-top:30px}.hestia-about h2{margin-top:0}.hestia-about .widget_sow-image .panel-widget-style{margin-top:-60px;padding:0 0 60px 0 !important}.hestia-team .card-image,.team .card-image,.authors-on-blog .card-image{height:100px;margin:0 auto;width:100px}.hestia-team .card-image img,.team .card-image img,.authors-on-blog .card-image img{object-fit:cover}.hestia-team .card .content,.team .card .content,.authors-on-blog .card .content{text-align:center}.hestia-team .card .content .card-description,.team .card .content .card-description,.authors-on-blog .card .content .card-description{display:none}.hestia-team .card .content .footer,.team .card .content .footer,.authors-on-blog .card .content .footer{margin-left:0;margin-top:0}.hestia-team .card .content .footer .btn.btn-just-icon,.team .card .content .footer .btn.btn-just-icon,.authors-on-blog .card .content .footer .btn.btn-just-icon{margin:0 5px;padding:0}.hestia-team .card .content .footer .btn.btn-just-icon i,.team .card .content .footer .btn.btn-just-icon i,.authors-on-blog .card .content .footer .btn.btn-just-icon i{width:auto}.hestia-work .card{cursor:pointer}.pricing{padding:60px 0 40px}.contactus .card-contact{margin-top:90px}.contactus .form_captcha_wrap .pirate-forms-google-recaptcha>div{margin:0 auto}.contactus .contact_submit_wrap{text-align:center}.single.single-post .section-blog-info .entry-social{margin:15px 0 30px}.single.single-post .section-blog-info .card-profile{margin-top:20px}.page .section.section-text{padding:30px 0}.single-post .page-header.header-small .container,.page .page-header.header-small .container,.blog .page-header.header-small .container,.archive .page-header.header-small .container,.category .page-header.header-small .container{padding:170px 15px 90px}.single-post .page-header.header-small .container .hestia-title,.page .page-header.header-small .container .hestia-title,.blog .page-header.header-small .container .hestia-title,.archive .page-header.header-small .container .hestia-title,.category .page-header.header-small .container .hestia-title{margin-top:0}.hestia-top-bar{overflow:hidden}.hestia-top-bar .col-md-6{text-align:center;width:100%}.hestia-top-bar .col-md-6.pull-right{display:none}.hestia-top-bar .col-md-12,.hestia-top-bar .col-md-12.pull-right{float:none !important;text-align:center}.hestia-top-bar .widget.widget_shopping_cart{display:none}.home:not(.blog) .main-raised{margin-top:0}.home:not(.blog) .page-header{min-height:0}.header .carousel .item .container{padding-top:170px;padding-bottom:100px}.header .buttons>.btn-right ~ .btn-left{margin-top:40px}.header.header-with-topbar .carousel .item .container{padding-top:210px}.header .carousel .carousel-control{margin-top:35px}.header.header-with-topbar .carousel .carousel-control{margin-top:55px}.obfx-sharing-bottom{left:0}.carousel .buttons .btn-left+.btn-right,.carousel .buttons .btn-left,.carousel .buttons .btn-right{margin:0 15px 15px}}@media (max-width: 767px){.carousel .page-header .row{flex-direction:column;justify-content:center;padding:0;text-align:center}.carousel .page-header .row .margin-right-auto,.carousel .page-header .row .margin-left-auto{margin:inherit}.carousel .page-header .row .big-title-slider-content{text-align:center}.carousel .item .container.container-height-auto{top:0;transform:none}.carousel .carousel-control.left .fa{left:10px}.carousel .carousel-control.right .fa{right:10px}}@media (max-width: 600px){body.admin-bar .navbar{margin-top:0}}@media (max-width: 600px){body.admin-bar .navbar.navbar-scroll-point{top:0}body.admin-bar .navbar.navbar-scroll-point.header-with-topbar{top:0}body.admin-bar .navbar.navbar-scroll-point.navbar-transparent{margin-top:0;top:46px}body.admin-bar .navbar.navbar-not-transparent{margin-top:0}body.admin-bar .navbar.navbar-scroll-point.navbar-fixed-top .navbar-collapse,body.admin-bar .navbar.navbar-scroll-point.header-with-topbar.navbar-fixed-top .navbar-collapse{max-height:calc(100% - 70px);margin-top:70px}body.admin-bar .navbar.navbar-scroll-point.navbar-fixed-top.navbar-transparent .navbar-collapse,body.admin-bar .navbar.navbar-scroll-point.header-with-topbar.navbar-fixed-top.navbar-transparent .navbar-collapse{max-height:calc(100% - 70px);margin-top:115px}}@media (max-width: 480px){.single .main-raised{margin:-60px 0 30px}.comment-respond .form-submit input{display:block;float:none !important;margin:0 auto}.hestia-features{padding:40px 0 55px}.alternative-blog-row{display:table;width:100%;margin:0 auto;table-layout:fixed}.alternative-blog-row div:first-child{display:table-footer-group}.alternative-blog-row div:last-child{padding:0;display:block}.contactus .hestia-contact-form-col{padding:0 5px}.contactus .card-contact{margin-top:30px}.contactus .card-contact .content{padding:30px 15px 0}.contactus .pirate_forms_wrap .pirate-forms-footer .form_captcha_wrap{margin-bottom:0;padding:0}.contactus .pirate_forms_wrap .form_captcha_wrap>div>div{transform:scale(0.8);overflow:visible}}.elementor-page .hestia-about>.container{width:100%}.elementor-page .pagebuilder-section{padding:0}.elementor-page .title-in-content,.elementor-page .image-in-page{display:none}.home.elementor-page .main-raised>section.hestia-about{overflow:visible}.elementor-editor-active .navbar{pointer-events:none}.elementor-editor-active #elementor.elementor-edit-mode .elementor-element-overlay{z-index:1000000}.elementor-page.page-template-template-fullwidth .blog-post-wrapper>.container{width:100%}.elementor-page.page-template-template-fullwidth .blog-post-wrapper>.container .col-md-12{padding:0}.elementor-page.page-template-template-fullwidth article.section{padding:0}form.form-group[id^=sib] input[type=text],form.form-group[id^=sib] input[type=email],form.form-group[id^=sib] select{border:none !important}footer .wpml-ls-item-legacy-dropdown a,footer .wpml-ls-item-legacy-dropdown-click a{color:#000000}.wpml-ls-statics-footer{margin:0 auto}.bbp-template-notice.info{max-width:inherit}#bbpress-forums p.bbp-topic-meta img.avatar,#bbpress-forums ul.bbp-reply-revision-log img.avatar,#bbpress-forums ul.bbp-topic-revision-log img.avatar,#bbpress-forums div.bbp-template-notice img.avatar,#bbpress-forums .widget_display_topics img.avatar,#bbpress-forums .widget_display_replies img.avatar{margin-bottom:0}.bbpress.blog-post .section-text p{font-size:15px;margin-bottom:20px}#wp-link-close{box-shadow:none}.elementor-editor-preview .hestia-pagebuilder-frontpage-controls{display:none}.elementor-editor-active .main>section,.fl-builder-edit .main>section{position:relative}.elementor-editor-active .main>section .hestia-pagebuilder-frontpage-controls,.fl-builder-edit .main>section .hestia-pagebuilder-frontpage-controls{position:absolute;top:35px;bottom:20px;left:20px;right:20px;border:2px solid #76cfe8;text-align:center;display:none;z-index:100}.elementor-editor-active .main>section .hestia-pagebuilder-frontpage-controls>a,.fl-builder-edit .main>section .hestia-pagebuilder-frontpage-controls>a{cursor:pointer;position:relative;background:#71d7f7;border-radius:3px 3px 0 0;top:-30px;line-height:30px;min-width:30px;text-align:center;color:#fff;font-weight:800;padding:0 10px;display:inline-block}.elementor-editor-active .main>section .hestia-pagebuilder-frontpage-controls>a:hover,.fl-builder-edit .main>section .hestia-pagebuilder-frontpage-controls>a:hover{color:#f00}.elementor-editor-active .main>section .hestia-pagebuilder-frontpage-controls>a>.dashicons,.fl-builder-edit .main>section .hestia-pagebuilder-frontpage-controls>a>.dashicons{height:30px;width:auto;margin-right:5px;line-height:27px}.elementor-editor-active .main>section:hover .hestia-pagebuilder-frontpage-controls,.fl-builder-edit .main>section:hover .hestia-pagebuilder-frontpage-controls{display:block}#checkout_paypal_message{background-color:#f0f0f0;color:#515151;max-width:100%;padding:20px !important}#checkout_paypal_message:before{content:'';display:none}#checkout_paypal_message p{font-size:14px;line-height:1.5;margin:0}#checkout_paypal_message .checkoutStatus{width:100%}#checkout_paypal_message #paypal_box_button{text-align:center}#checkout_paypal_message #paypal_ec_button,#checkout_paypal_message #paypal_ec_paypal_credit_button{display:inline-block;float:none;margin:0 10px}#checkout_paypal_message .woocommerce_paypal_ec_checkout_message{margin-top:10px}.woocommerce-cart .angelleye_cart_button a.paypal_checkout_button,.woocommerce-cart a.paypal_checkout_button{clear:none}.woocommerce-cart article .woocommerce{display:inline-block;width:100%}@media (max-width: 480px){#checkout_paypal_message #paypal_ec_paypal_credit_button{margin-top:10px}}.hestia-top-bar .widget a.paypal_checkout_button,.nav-cart .widget a.paypal_checkout_button{display:none}.woocommerce-checkout .mc4wp-checkbox,.woocommerce-checkout .mc4wp-checkbox-woocommerce{margin-bottom:0 !important;padding-left:3px}.woocommerce-checkout .mc4wp-checkbox span,.woocommerce-checkout .mc4wp-checkbox-woocommerce span{color:#999999;font-size:16px;font-weight:300;margin-left:7px}.col-ms-1,.col-ms-2,.col-ms-3,.col-ms-4,.col-ms-5,.col-ms-6,.col-ms-7,.col-ms-8,.col-ms-9,.col-ms-10,.col-ms-11,.col-ms-12{position:relative;min-height:1px;padding-left:15px;padding-right:15px}@media (min-width: 481px) and (max-width: 767px){.col-ms-1,.col-ms-2,.col-ms-3,.col-ms-4,.col-ms-5,.col-ms-6,.col-ms-7,.col-ms-8,.col-ms-9,.col-ms-10,.col-ms-11{float:left}.col-ms-1{width:8.33333%}.col-ms-2{width:16.66667%}.col-ms-3{width:25%}.col-ms-4{width:33.33333%}.col-ms-5{width:41.66667%}.col-ms-6{width:50%}.col-ms-7{width:58.33333%}.col-ms-8{width:66.66667%}.col-ms-9{width:75%}.col-ms-10{width:83.33333%}.col-ms-11{width:91.66667%}.col-ms-12{width:100%}.col-ms-push-1{left:8.33333%}.col-ms-push-2{left:16.66667%}.col-ms-push-3{left:25%}.col-ms-push-4{left:33.33333%}.col-ms-push-5{left:41.66667%}.col-ms-push-6{left:50%}.col-ms-push-7{left:58.33333%}.col-ms-push-8{left:66.66667%}.col-ms-push-9{left:75%}.col-ms-push-10{left:83.33333%}.col-ms-push-11{left:91.66667%}.col-ms-pull-1{right:8.33333%}.col-ms-pull-2{right:16.66667%}.col-ms-pull-3{right:25%}.col-ms-pull-4{right:33.33333%}.col-ms-pull-5{right:41.66667%}.col-ms-pull-6{right:50%}.col-ms-pull-7{right:58.33333%}.col-ms-pull-8{right:66.66667%}.col-ms-pull-9{right:75%}.col-ms-pull-10{right:83.33333%}.col-ms-pull-11{right:91.66667%}.col-ms-offset-1{margin-left:8.33333%}.col-ms-offset-2{margin-left:16.66667%}.col-ms-offset-3{margin-left:25%}.col-ms-offset-4{margin-left:33.33333%}.col-ms-offset-5{margin-left:41.66667%}.col-ms-offset-6{margin-left:50%}.col-ms-offset-7{margin-left:58.33333%}.col-ms-offset-8{margin-left:66.66667%}.col-ms-offset-9{margin-left:75%}.col-ms-offset-10{margin-left:83.33333%}.col-ms-offset-11{margin-left:91.66667%}}@media (min-width: 480px) and (max-width: 767px){.form-horizontal .form-group .control-label{text-align:right}}.elementor-text-editor p,.elementor-text-editor h1,.elementor-text-editor h2,.elementor-text-editor h3,.elementor-text-editor h4,.elementor-text-editor h5,.elementor-text-editor h6{font-size:inherit}div.wpforms-container .wpforms-form input:focus,div.wpforms-container .wpforms-form select:focus{border:none}.sbi_photo{border-radius:6px;overflow:hidden;box-shadow:0 10px 15px -8px rgba(0,0,0,0.24),0 8px 10px -5px rgba(0,0,0,0.2)}#mega-menu-wrap-primary{display:table-cell;width:100%;text-align:right;vertical-align:middle}#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link{text-transform:uppercase}.navbar-transparent #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link{color:#fff}.navbar-transparent #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link:hover{color:#fff}.mega-menu-primary .navbar-toggle-wrapper{display:none}.mega-menu-primary .obfx-menu-icon{margin-right:5px;vertical-align:middle}@media (max-width: 768px){.mega-menu-primary .container .navbar-header{width:auto;float:left}#mega-menu-wrap-primary{width:auto;display:inline;top:5px}#mega-menu-wrap-primary #mega-menu-primary{width:100%}.navbar-transparent #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link,.navbar-transparent #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link:hover{color:inherit}}@media (min-width: 769px){.mega-menu-primary .navbar.full-screen-menu .navbar-header{width:auto}.mega-menu-primary .hestia_center #mega-menu-wrap-primary #mega-menu-primary{text-align:center}.mega-menu-primary .hestia_right #mega-menu-wrap-primary #mega-menu-primary{text-align:left}}.fl-builder-bar-actions button,.fl-builder-bar-actions input[type="submit"],.fl-builder-bar-actions input[type="button"],.fl-builder-panel button,.fl-builder-panel input[type="submit"],.fl-builder-panel input[type="button"],.fl-builder--main-menu-panel-views button,.fl-builder--main-menu-panel-views input[type="submit"],.fl-builder--main-menu-panel-views input[type="button"],.fl-lightbox-footer button,.fl-lightbox-footer input[type="submit"],.fl-lightbox-footer input[type="button"]{-webkit-box-shadow:inherit;-moz-box-shadow:inherit;box-shadow:inherit}.fl-builder-bar-actions button:hover,.fl-builder-bar-actions input[type="submit"]:hover,.fl-builder-bar-actions input[type="button"]:hover,.fl-builder-panel button:hover,.fl-builder-panel input[type="submit"]:hover,.fl-builder-panel input[type="button"]:hover,.fl-builder--main-menu-panel-views button:hover,.fl-builder--main-menu-panel-views input[type="submit"]:hover,.fl-builder--main-menu-panel-views input[type="button"]:hover,.fl-lightbox-footer button:hover,.fl-lightbox-footer input[type="submit"]:hover,.fl-lightbox-footer input[type="button"]:hover{-webkit-box-shadow:inherit;-moz-box-shadow:inherit;box-shadow:inherit}.media-modal.wp-core-ui .media-modal-close{background-color:inherit}.media-modal.wp-core-ui select{-webkit-appearance:menulist-button;-moz-appearance:menulist-button;appearance:menulist-button}body.fl-builder-edit .navbar.header-with-topbar.navbar-default:not(.navbar-transparent){margin-top:40px}.hestia-mm-description{display:none;opacity:.75}.hestia-mega-menu .hestia-mm-description{display:block}.navbar .hestia-mega-menu>.dropdown-menu{margin:auto;left:0;right:0}@media (min-width: 769px){.navbar .hestia-mega-menu>.dropdown-menu{width:750px;left:50%;transform:translateX(-50%)}.hestia-mega-menu>.dropdown-menu .hestia-mm-col:first-child:nth-last-child(1){width:100%}.hestia-mega-menu>.dropdown-menu .hestia-mm-col:first-child:nth-last-child(2),.hestia-mega-menu>.dropdown-menu .hestia-mm-col:first-child:nth-last-child(2) ~ li{width:50%}.hestia-mega-menu>.dropdown-menu .hestia-mm-col:first-child:nth-last-child(3),.hestia-mega-menu>.dropdown-menu .hestia-mm-col:first-child:nth-last-child(3) ~ li{width:33.3333%}.hestia-mega-menu>.dropdown-menu .hestia-mm-col:first-child:nth-last-child(4),.hestia-mega-menu>.dropdown-menu .hestia-mm-col:first-child:nth-last-child(4) ~ li{width:25%}.hestia-mega-menu>.dropdown-menu .hestia-mm-col:first-child:nth-last-child(5),.hestia-mega-menu>.dropdown-menu .hestia-mm-col:first-child:nth-last-child(5) ~ li{width:20%}.hestia-mega-menu>.dropdown-menu .hestia-mm-col:first-child:nth-last-child(5),.hestia-mega-menu>.dropdown-menu .hestia-mm-col:first-child:nth-last-child(5) ~ li{width:16.66666666666667%}}@media (min-width: 992px){.navbar .hestia-mega-menu>.dropdown-menu{width:970px}}@media (min-width: 1200px){.navbar .hestia-mega-menu>.dropdown-menu{width:1170px}}.navbar .navbar-nav>li.hestia-mega-menu{position:static}.navbar .hestia-mega-menu>.dropdown-menu>li>a{margin:0}.hestia-mega-menu>.dropdown-menu{padding:5px;color:#333 !important;right:auto;width:100%;left:0;display:table;top:inherit}.hestia-mega-menu>.dropdown-menu .divider{height:1px;margin:9px auto;width:75%}.hestia-mega-menu:hover .hestia-mm-col>.dropdown-menu,.hestia-mega-menu.open .hestia-mm-col>.dropdown-menu{visibility:visible}.hestia-mega-menu .hestia-mm-col{text-align:center;vertical-align:top;display:table-cell;position:relative;padding:5px}.hestia-mega-menu .hestia-mm-col>a{display:none}.hestia-mega-menu .hestia-mm-col>.dropdown-menu{float:none;background:none;box-shadow:none;opacity:1;display:inline-block !important;position:static;left:inherit}.navbar .hestia-mm-heading{margin:10px 5px 10px 0}.navbar .hestia-mm-heading>span{text-transform:uppercase;padding:7px 10px 5px 10px;margin:0 5px}.navbar .hestia-mm-heading>.mm-heading-wrapper a:hover{text-decoration:underline}.mm-heading-wrapper a{color:#333;padding:0}.hestia-mm-description{color:#333;padding:7px 10px 5px 10px;margin:0 5px}.hestia_right .dropdown-menu>.hestia-mega-menu>.dropdown-menu{display:block;width:auto;left:100%}.hestia_left .dropdown-menu>.hestia-mega-menu>.dropdown-menu{display:block;width:auto;right:100%;left:auto;top:0}@media (max-width: 768px){.navbar .hestia-mm-col.dropdown-submenu:hover>.dropdown-menu{display:inline-block !important}.navbar .navbar-nav .dropdown .dropdown-menu li li .mm-heading-wrapper a{padding:0}.hestia-mega-menu>.dropdown-menu{display:none}.hestia-mega-menu>.dropdown-menu .divider{width:100%;margin:15px auto}.navbar .navbar-nav .dropdown li.hestia-mm-heading{padding:15px 0}} diff --git a/www/.content.EZtzwPjb/html/73a5753ee3d6dc0d4298316fe8725a8df360abfa.00000439.html b/www/.content.EZtzwPjb/html/73a5753ee3d6dc0d4298316fe8725a8df360abfa.00000439.html new file mode 100644 index 0000000..d72cd16 --- /dev/null +++ b/www/.content.EZtzwPjb/html/73a5753ee3d6dc0d4298316fe8725a8df360abfa.00000439.html @@ -0,0 +1,372 @@ + + + + + + + MacBook – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                      +
                      +
                      +
                      + +
                      +
                      +
                      +
                      +
                      +

                      Trolling

                      Apple New MacBook Air

                      +

                      J’avais envie de me défouler un peu donc je vais troller sur la sortie du nouveau MacBook Air. Alors oui il est beau, il est léger, la finition est nikel Chrome. Mais c’est du Apple donc c’est cher le prix d’entrée est de 999€ ouch ! pour la version 11 pouces … (suite…)

                      +
                      Par HugoPoi, il y a
                      +
                      + +
                      +
                      +
                      +
                      + +
                      +
                      + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/73a7a64a497a2d22e7abc2a148ff34b62b482150.00000273.html b/www/.content.EZtzwPjb/html/73a7a64a497a2d22e7abc2a148ff34b62b482150.00000273.html new file mode 100644 index 0000000..28c32aa --- /dev/null +++ b/www/.content.EZtzwPjb/html/73a7a64a497a2d22e7abc2a148ff34b62b482150.00000273.html @@ -0,0 +1,411 @@ + + + + + + + HugoPoi – Page 3 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                      +
                      +
                      +
                      + +
                      +
                      +
                      +
                      +
                      +

                      Pourquoi je suis sous Linux bordel !

                      Début d’année 2017, 6 mois que j’ai pas écrit sur le blog ! Cette année j’ai pris une résolution un choix de merde je n’installerais plus Windaube que se soit pour moi ou pour la dépanne, les amis, la famille, mon chat … Bref pendant les fêtes j’avais de la maintenance à faire comme d’habitude fallait faire une réinstallation pour la famille « met moi Windows 7 ça me suffit et au moins il y tout qui marche dessus » ça faisait environ plus 1 an que j’avais pas installé de windaube. Je me dit que ça va me prendre une petite demi journée. J’ai mis plus d’une journée si on compte le temps de faire les mises à jour. (suite…)

                      +
                      Par HugoPoi, il y a

                      Reflow Dell Inspiron 1546

                      +
                      Les choses n’ont pas beaucoup changé en terme d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un cadeau empoisonné de la belle-famille « Essaye de faire ce que tu peux pour récupérer mes photos, j’en rachèterais un ». Le pc portable en question était dans un état de mort certain.
                      + (suite…)
                      +
                      +
                      Par HugoPoi, il y a

                      Test et démontage d’un Sony Multi Flip 15 SVF15N1C5E

                      Longtemps que je n’avais pas posté ici, mais la je suis en vacances donc j’ai le temps. Voici donc mes retours sur ce pc portable Sony un peu atypique. J’ai choisit cette machine sur plusieurs critères qui m’avait convaincu pour les usages de ma chérie (c’est sa machine), elle fait du dessin vectoriel et de la retouche d’images principalement.
                      + (suite…)

                      +
                      Par HugoPoi, il y a

                      Écran miraculé d’un Asus N53SN

                      Comme d’habitude tantine vient me voir pour me dire que son écran d’ordinateur ne marche plus. Le pc portable, un Asus N53SN d’un plus de 2 ans de services, présente un écran noir complètement éteint mais le portable fonctionne parfaitement sur un écran externe. Ni une ni deux je commence par démonter la bête pour récupérer la référence exacte du moniteur.

                      +

                      asusn53sn_open_lcd_front (suite…)

                      +
                      Par HugoPoi, il y a

                      Installer Mac OS X Mavericks avec VirtualBox

                      Capture Installation Mac OS X MavericksComme Apple c’est des blaireaux et que j’avais besoin d’un environnement de développement pour iDaube. J’ai du me résoudre à installer un Mac OS X dans une machine virtuel.

                      +

                      Ce dont vous avez besoin :

                      + +

                      Moi je travail sous Linux Mint mais vous devriez réussir à faire les manipulations sous Windaube. (suite…)

                      +
                      Par HugoPoi, il y a
                      +
                      +
                      + +
                      +
                      +
                      +
                      + +
                      +
                      + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/73fb2ae657bf8beafb14781dd9d26334d9122792.00001290.json b/www/.content.EZtzwPjb/html/73fb2ae657bf8beafb14781dd9d26334d9122792.00001290.json new file mode 100644 index 0000000..c9bb3af --- /dev/null +++ b/www/.content.EZtzwPjb/html/73fb2ae657bf8beafb14781dd9d26334d9122792.00001290.json @@ -0,0 +1 @@ +{"version":"1.0","provider_name":"HugoPoi","provider_url":"http:\/\/blog.hugopoi.net","author_name":"HugoPoi","author_url":"http:\/\/blog.hugopoi.net\/author\/hugopoi\/","title":"Pascal Negre tu m'emmerdes","type":"rich","width":600,"height":338,"html":"
                      Pascal Negre tu m’emmerdes<\/a><\/blockquote>\n + + + + + + + + + + + + + + + + + + + + + + + + +
                      +
                      +
                      +
                      + +
                      +
                      +
                      +
                      +
                      +
                      +

                      Allô docteur on a un problème,

                      +

                      En ce dimanche calme avant la fin de mes partiels, mon écran Samsung SyncMaster 2232BW commençait à faire des siennes. Celui-ci depuis un mois ou deux clignotait de façon systématique au démarrage, au début pendant seulement quelques secondes, puis au fur et à mesure, de plus en plus jusqu’à devoir attendre 10 minutes pour que je puisse l’utiliser. Après 3 ans et 4 mois de bons et loyaux services, il voulait me quitter. J’ai tenté le support Samsung par email avec peu d’espoir car l’écran a dépassé sa garantie de 4 mois (oui oui les bâtards -> obsolescence programmée). Et donc j’ai eu le droit à un joli mail automatique me disant de contacter un numéro non surtaxé (mais avec combien de temps d’attente ?), ce que je n’ai pas fait car je n’avais pas envie de passer 30min au téléphone pour au final avoir un « On est désolé mais on ne peut rien faire pour vous car la garantie est dépassée, mais on peut envoyer votre écran en SAV pour faire un devis pour seulement 50 boules ». Concernant le support email de Samsung France, je leur donne une note de 0/20 puisque ce n’est pas un support mais une redirection vers le téléphone.

                      +

                      +

                      Symptômes

                      +

                      Clignotements de l’écran et de la LED power systématiques à chaque démarrage de l’écran. Je me suis tout de suite douté d’un problème d’alimentation et après quelques recherches sur google, confirmation du problème sur beaucoup d’écrans et téléviseurs. Dans 99% des cas ce clignotement est dû à des condensateurs défectueux qu’il faut simplement changer :-D

                      +

                      Démontage

                      +

                      Donc après avoir cerné le problème, j’ai ouvert l’écran pour chercher les condos défectueux. J’ai trouvé une petite vidéo pour mon écran :

                      +

                      +

                      Voici quelques photos en plus pour vous aider :

                      +

                      Les outils que j’ai utilisé pour le démontage

                      +

                      Position des clips

                      +

                      Carte d’alimentation dans son emplacement

                      +

                      Et voici les condensateurs qui posent problèmes. Comme vous pouvez le voir sur la photo, ils sont très facilement identifiable car ils sont bombés sur le dessus.

                      +

                      Condensateurs défectueux

                      +

                      Vous devez donc acheter des condensateurs de remplacement, par exemple sur Conrad.

                      +

                      Mes condensateurs suivant étaient endommagés:

                      +
                        +
                      • 1 de 330uF 25V remplacé par un 470uF 25V
                      • +
                      • 3 de 820uF 25V remplacé par des 1000uF 50V
                      • +
                      +

                      Pour la réparation, il vous faut un fer à souder avec une panne pas trop grosse mais d’une grosse puissance car les soudures sont très solides (j’ai galéré avec un fer pro qui monte jusqu’à 400°).

                      +

                      Tout remarche nickel après remontage, plus de clignotement pour seulement quelques euros.

                      +

                      edit du 19 aout 2014 : j’ai trouvé le service manuel de l’écran si besoin samsung_2232bw_chassis_lpe22bs_sm

                      + + +
                      +
                      + +
                      +
                      +
                      +
                      +
                      +

                      + 41 commentaires

                      +
                      + +
                      +
                      +
                      +
                      +

                      + c'est_moi + · 30 janvier 2012 à 18 h 57 min +

                      +

                      Mille mercis et mille félicitations pour cette fiche technique si pédagogue.

                      +

                      J’espère que le partiels se passent plus que parfait !!

                      +

                      J’ai gardé l’url de la page pour réparer mon écran dans un petit mois : j’espère que la page soit toujours là ;-)

                      +

                      Merci encore.

                      + +
                      +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + Maxime + · 5 mai 2012 à 12 h 31 min +

                      +

                      Bonjour HugoPoi!

                      +

                      Merci pour toutes vos infos et votre topic, je voulais avoir quelques précisions sur les condos à changer pour samsung 2232bw, je veux passer commande mais j’ai un problème avec les dimensions des condos, si vous pouvez m’informer de ce que je pourrais acheter car il y a trop de références. En vous remerciant A+ Maxime

                      + +
                      +
                      +
                        +
                        + +
                        +
                        +
                        +
                        +

                        + HugoPoi + · 14 juin 2012 à 22 h 56 min +

                        +

                        N’importe quel condensateur polarisé avec des caractéristiques proches devrait marché.

                        + +
                        +
                        + +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + gaubjezj + · 14 juin 2012 à 22 h 32 min +

                      +

                      Merci pour le tuto qui m’a bien aidé.
                      +J’ai utilisé un fer de 40 W avec une panne fine et
                      +une pompe à dessouder et j’ai retiré les condensateurs sans problème.
                      +Merci encore (3€40 pour le dépannage).

                      + +
                      +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + DragonTribal + · 2 juillet 2012 à 12 h 02 min +

                      +

                      super merci pour manifique tuto.
                      +Est-il possible de changer les 5 condensateurs 820uF 25V par des 1000uF 50V? car moi mes 5 condensateurs sont presque HS ;-)

                      +

                      Cordialement

                      + +
                      +
                      +
                        +
                        + +
                        +
                        +
                        +
                        +

                        + HugoPoi + · 2 juillet 2012 à 12 h 25 min +

                        +

                        Oui je penses que ça marchera étant donné que c’est des valeurs plus grandes.

                        + +
                        +
                        + +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + FRED + · 11 juillet 2012 à 19 h 11 min +

                      +

                      Bravo, MERCI.
                      +Je n’ai encore rien fait…mais j’ai le même problème, et tu me donnes la solution.
                      +Super.

                      + +
                      +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + daninpet + · 31 août 2012 à 10 h 10 min +

                      +

                      Merci mille fois!

                      +

                      J’avais ce problème, et j’ai emmener la photo des trucs a remplacer chez le réparateur du coin et voila!! Ça m’a coûté 7 Euros (mais j’habite en Thaïlande)

                      + +
                      +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + moi + · 15 novembre 2012 à 15 h 25 min +

                      +

                      super mon 2232bw vient de lâcher, les 3 + 1 condos sont gonflés j ai trouvé un 330 en 35v qui traîné sur un écran mort et j’ai commander 5 1000uf 35v sur ebay pour moins de 3 dollars, ca devrait le faire j’espere j’attend d’être livré merci! par contre j’ai qu’un gros pistolet a soudure et un gros fil d’étain, c’est pas évident mais bon ca le fait quand même =)

                      + +
                      +
                      +
                        +
                        + +
                        +
                        +
                        +
                        +

                        + moi + · 7 décembre 2012 à 9 h 33 min +

                        +

                        parfait je vient de recevoir les condos; j ai meuler la panne du fer a souder pour la tailler en mine de crayon et j ai reussi a les souder facilement ils étaient un peu plus gros mais ca passe tout juste, mais attention ne pas prendre des plus gros! l écran fonctionne nickel maintenant.

                        + +
                        +
                        + +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + Croco + · 19 janvier 2013 à 18 h 39 min +

                      +

                      Je souhaiterai savoir si tu as utilisé un fer à souder bien précis étant donné que la carte est une multi couche.
                      +Merci

                      + +
                      +
                      + + +
                      + +
                      +
                      +
                      +
                      +

                      + momo + · 10 juin 2013 à 13 h 15 min +

                      +

                      slut je voudrai savoir ou trouvé les condansateur a changer sur mon ecran qui clignote

                      + +
                      +
                      + + +
                      + +
                      +
                      +
                      +
                      +

                      + lokmane + · 5 juillet 2013 à 16 h 08 min +

                      +

                      merci j’avais un ecran rouge ! et c’etais la tresse qui relie mon ecran votre page m’a aider a l’ouvrir et a le reparer merci bien

                      + +
                      +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + ML + · 21 août 2013 à 19 h 11 min +

                      +

                      Merci ! Ecran réparé. Halte à l’obsolescence programmée.

                      + +
                      +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + raymond + · 31 octobre 2013 à 13 h 20 min +

                      +

                      ai vu votre vidéo et les explications pour la reparation de mon écran , apparemment le méme probléme l écran passe au noir apres quelque seconde , j ai vu un le condensateur en bas a gauche gonflé , je l ai fait changé (10€) les autre condensateur étant toujour bon d après la personne qui me l a changé , mais j ai toujour le méme probléme cela peut il venir de la carte video a gauche ?

                      + +
                      +
                      +
                        +
                        + +
                        +
                        +
                        +
                        +

                        + HugoPoi + · 20 décembre 2013 à 12 h 27 min +

                        +

                        Si la led bleu du bouton power s’éteint aussi c’est un problème d’alimentation sinon c’est plus compliqué et ça peut provenir de condensateurs sur la partie vidéo. Changé tous les plus gros condensateurs sur la partie alimentation pourrait être un bon début même si ils ne paraissent pas endommagé.

                        + +
                        +
                        + +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + damien + · 4 novembre 2013 à 0 h 29 min +

                      +

                      bonjour,

                      +

                      j’ai des crasses coincées entres l’écran et le truc juste derrière, est ce qu’on sais les enlever en démontant la dalle ?

                      + +
                      +
                      +
                        +
                        + +
                        +
                        +
                        +
                        +

                        + HugoPoi + · 20 décembre 2013 à 12 h 28 min +

                        +

                        Je ne sais si cette partie de la dalle est démontable, je penses que c’est collé mais vous pouvez essayer.

                        + +
                        +
                        + +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + mac + · 1 décembre 2013 à 17 h 30 min +

                      +

                      Merci HugoPoi, avec ces excellents conseils et tuto vidéo, mon écran est reparti pour une nouvelle vie.
                      +Pour les composants, si vous êtes sur Paris ou proche. La boutique RAM électroniques est une bonne adresse, 138 bd Diderot 75012 Paris (Place de la Nation).

                      + +
                      +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + Bouddhid + · 16 janvier 2014 à 19 h 21 min +

                      +

                      Merci beaucoup pour ces conseils ! J’étais à 2 doigts de jeter mon écran, le voilà comme neuf pour moins de 5€ ! Vive la bricole !

                      + +
                      +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + Vincent + · 17 mai 2014 à 16 h 45 min +

                      +

                      Alors là merci.

                      +

                      Pour ce post, les photos, la vidéo, tout y est.

                      +

                      J’ai démonté l’écran assez vite, enlevé la carte, regarder quel condensateurs étaient gonflés,(il y en avaient 4), un magasin d’électronique sur lyon et une heure de démontage, soudure, remontage plus tard, voilà, c’est tout beau.
                      +Ca ne clignote plus, ça s’allume comme avant, comme neuf.

                      +

                      Et dire que j’allais jeter cet écran et claquer 350 euros pour un neuf…

                      +

                      Coût de l’opération pour 4 condensateurs, du fil d’étain 7 euros.

                      +

                      Je précise que je n’avais jamais fais de soudure sur composant électronique auparavant.
                      +Comme quoi cette opération de réparation est à la portée de tous.

                      + +
                      +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + Julot + · 6 juillet 2014 à 13 h 49 min +

                      +

                      Site vraiment détaillé et très claire. J’ai pu dépanner mon écran avec succès. Merci beaucoup pour ces précieuses explications.

                      + +
                      +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + PaniK31 + · 29 juillet 2014 à 9 h 21 min +

                      +

                      Pas besoin d’une grosse puissance pour le fer, il faut au préalable gratter le vernis sur l’étain afin de pouvoir le faire fondre plus facilement

                      + +
                      +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + R211_IP-45130B + · 20 août 2014 à 14 h 04 min +

                      +

                      Bonjour à tous,

                      +

                      Une âme charitable peut-elle me communiquer ce qui est gravé sur la résistance CMS R211 de la carte d’alimentation/inverter IP-45130B qui équipe le SAMSUNG 2232BW ? Cette résistance a pris un coup de tournevis et je n’arrive pas à déterminer sa valeur de résistance car son marquage est effacé et comme le composant est abimé la mesure à l’ohmmètre indique l’infinie.

                      +

                      Merci par avance.

                      + +
                      +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + roger + · 24 octobre 2014 à 17 h 21 min +

                      +

                      Ca refonctionne après échange de 4 condensateurs :
                      +-un 330uf25v remplacé à l’identique.
                      +-trois 820uf25v remplacés par 1000uf25v.
                      +Le tout pour quelques €. Le plus dur était le dessoudage, la tresse n’était pas très efficace contrairement à la pompe.
                      +Grand merci à HugoPoi.

                      + +
                      +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + Max + · 26 février 2015 à 16 h 28 min +

                      +

                      ENORME MERCI!! J’ai réparé mon écran en 20mn pour 3,50€, il était à 2 doigts de partir à la déchetterie. Ca faisait des mois qu’il clignotait, et l’allumage mettait parfois plus d’une demi heure. J’ai changé 5 condos 820uf25v et 1 330uf25v, par exactement les mêmes en neuf, et là il démarre au quart de tour! Ca fait plaisir! :)

                      + +
                      +
                      +
                        +
                        + +
                        +
                        +
                        +
                        +

                        + rocco michelle + · 7 octobre 2015 à 10 h 16 min +

                        +

                        Bonjour je ne sais si vous verrez mon message mais je tente…je cherche quelqu’un qui accepterait de changer mes condensateurs sur mon samsung, les réparateurs me demandent 70 à 80 euros et encore ils n’ont pss envie de le faire et me disent d’acheter un nouvel écran. j’aurais bien tenter mais je n’ai pas de matériel et j’ai lu que les condo pouvaient être très dangereux s’ils avaient de la charge alors j’ai la trouille de bidouiller pq je n’y connais rien. si vous êtes de lyon acccepteriez vous de changer mes condensateurs pour 45 euros? merci de votre réponse.

                        + +
                        +
                        + +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + lecakeseb + · 27 juillet 2015 à 15 h 26 min +

                      +

                      Bonjour,

                      +

                      J’ai utilisé la vidéo pour démonter mon écran afin de le nettoyer de 4 bêtes d’orage infiltrés entre le premier écran (noir) et la dalle (blanche) de mon samsung SyncMaster 2232W

                      +

                      Petits conseils afin de modérer ce que j’ai pu voir dans cette vidéo :

                      +

                      0 : aspirez, nettoyez l’extérieur de l’écran avant de l’ouvrir et nettoyez la table qui vous servira d’atelier, pour éviter les poussières qui s’infiltreront forcément plus tard si vous ne le faites pas…
                      +1 : pour ouvrir, utilisez plutôt un couteau à enduire pour la première partie (le cadre). Vous n’abîmerez ainsi pas du tout l’écran. Soyez patients, ne forcez pas ! ça viendra doucement, mais ça viendra. Il m’a fallu à peine 10 minutes, sans détériorer l’écran, sans le griffer… Il est encore nickel !
                      +2 : attention à ne pas déconnecter les fils reliant le cadre à la carte. Inutile pour simplement nettoyer l’écran.
                      +3 : pour séparer les deux éléments de la dalle entre lesquels les bêtes se sont infiltrées, les doigts suffisent, pas besoin d’outils qui viendraient les endommager. La dalle blanche reste à l’horizontale, l’écran noir sera tenu à la verticale.
                      +4 : utiliser un chiffon doux ne peluchant pas pour enlever les bêtes (faites-vous aider de quelqu’un qui les enlèvera pendant que vous tenez l’écran extérieur en position verticale).
                      +5 : repositionnez la colle d’étanchéité qui aurait pu se déplacer, avant de repositionner les deux écrans.
                      +6 : commencer par refermer par le bas de l’écran (sinon les éléments de réglage situés au bas de l’écran – luminosité, contraste,…- ne se replaceront pas correctement).
                      +7 : Une fois l’écran refermé, j’ai appliqué un peu de « barrage aux insectes », avec un chiffon à l’arrière de mon écran en insistant surtout sur les bouches d’aération par lesquelles les maudites bestioles ont du s’infiltrer. En espérant ne pas avoir à ouvrir !

                      +

                      Bon courage à vous !

                      + +
                      +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + Michel Jousserandot + · 20 janvier 2017 à 20 h 41 min +

                      +

                      Merci pour les conseils au démontage.
                      +J’avais un problème un peu différent :l’écran ne s’allumait plus du tout. Avec un copain beaucoup plus malin que moi, on a détecté 2 fusibles dont l’un était fichu. On l’a remplacé par un petit fil de cuivre. Et tout a remarché comme avant.
                      +Il faut surtout faire attention quand on teste la partie haute tension
                      +Michel.

                      + +
                      +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + Crec + · 14 juillet 2017 à 10 h 20 min +

                      +

                      Bonjour. Très bons conseils avertis. Merci beaucoup.
                      +Peut-on avoir les mêmes conseils pour un écran BX2250.
                      +Merci par avance.
                      +Crec

                      + +
                      +
                      +
                        +
                        + +
                        +
                        +
                        +
                        +

                        + HugoPoi + · 6 août 2017 à 14 h 03 min +

                        +

                        J’ai pas de BX2250 donc dans le détails non mais si c’est les même symptômes ça doit la même procédure.

                        + +
                        +
                        + +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + Ferronnier + · 10 août 2017 à 17 h 42 min +

                      +

                      Un grand merci !
                      +J’ai changé tous les condensateurs de la partie alimentation de la carte, en déportant certains qui n’avaient pas le même format qu’à l’origine, et ça tourne nickel !

                      + +
                      +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + Nours + · 1 décembre 2017 à 15 h 17 min +

                      +

                      Ca fait des années que j’ai cet article enregistré dans un coin, en nourrissant l’espoir d’avoir un jour le courage de réparer ce foutu écran… Après plus de cinq ans c’est chose faite \o/
                      +Un giga, hypra, immense merci pour ce tutoriel tellement bien expliqué et facile d’accès (je n’avais pas touché à un fer à souder depuis… Oh boy 15 ans déjà).
                      +Après une longue pause, l’écran reprend du service… Jusqu’à la prochaine panne /o/

                      + +
                      +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + Alex + · 11 août 2018 à 13 h 28 min +

                      +

                      Quelqu’un sait qui pourrait me le faire svp j ai le même problème mais aucun matériel

                      + +
                      +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + David + · 5 février 2019 à 21 h 06 min +

                      +

                      Merci Hugo pour ce tuto qui m’a déjà servi en 2013 et qui va me resservir aujourd’hui car mon 2ème 2232bw commence à avoir les mêmes symptômes.

                      + +
                      +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + yvan + · 23 novembre 2019 à 17 h 14 min +

                      +

                      Bonjour
                      +j’ai tenté de changer le condensateur qui avait l’air naze mais ça n’a pas marché … toujours le bouton bleu allumé, l’écran est reconnu par Windows 10 même si l’écran est éteint
                      +grâce au service manuel de l’écran fourni plus haut, j’ai vérifié les tensions jusque sur la carte de la dalle et elles sont correctes, ainsi que sur la carte elle-même, tout est ok, donc je pense que ce n’est plus un problème de condensateur
                      +pour les fusibles, ils ressemblent plutôt à des composants qu’à de simple fusibles, mais comme j’ai les bonnes tension, je ne pense pas que ça vienne de là
                      +j’ai bien peur que ce soit la dalle qui soit naze ? quelqu’un a t il des idées supplémentaires avant que je le jette avec grand regret (c’est un 2032bw, mais c’est la même chose, même si ma carte électronique est un peu différente car plus récente
                      +merci d’avance pour vos conseils

                      + +
                      +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + yvan + · 24 novembre 2019 à 17 h 26 min +

                      +

                      finalement j’ai trouvé, c’est un petit fusible vert qui ressemble à une résistance mais tout vert avec écrit 4A LF qui assure l’alimentation de la dalle.
                      +En le shuntant, mon écran a retrouvé l’image.
                      +après enquête il s’agit d’un fusible pico de 4ampères de chez little fuse, pas du tout évident à trouver
                      +Résolu !

                      + +
                      +
                      + +
                      +
                      +

                      + Reflow Dell 1546 | HugoPoi + · 22 août 2016 à 16 h 09 min +

                      +

                      […] « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable de marque Dell un 1546 pour être précis. Encore […]

                      + +
                      +
                      + +
                      +
                      +

                      + Reflow Dell Inspiron 1546 – HugoPoi + · 23 juin 2017 à 23 h 18 min +

                      +

                      […] d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un […]

                      + +
                      +
                      + +
                      +
                      +
                      +

                      Répondre à Max Annuler la réponse

                      Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                      +
                      +
                      +

                      + +

                      +
                      +
                      +
                      +
                      +
                      +
                      + +
                      +
                      +
                      +
                      +
                      +
                      + + +
                      + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/753c5cbea4dc11b2f2e321193d05cf7db2cad38d.00000403.html b/www/.content.EZtzwPjb/html/753c5cbea4dc11b2f2e321193d05cf7db2cad38d.00000403.html new file mode 100644 index 0000000..3ed7e52 --- /dev/null +++ b/www/.content.EZtzwPjb/html/753c5cbea4dc11b2f2e321193d05cf7db2cad38d.00000403.html @@ -0,0 +1,379 @@ + + + + + + + Error 3016 pas de HDCP – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                      +
                      +
                      +
                      + +
                      +
                      +
                      +
                      +
                      +

                      Home Cinéma

                      Bientôt fini mais peut-être jamais terminé tellement il y a de boulot autour d’un système home-cinema complet et parfait. Cela fait bientôt deux semaines que je suis dans mes travaux et ma configuration HTPC. Première semaine, je suis parti de rien, aucun câble posé, pas de pc installé et pas de meuble. Du coup, le lundi, je suis allé à Ikea et j’ai trouvé à peu près ce que je voulais pour pas trop cher (120 € pour de l’aggloméré de merde). Le mardi, je venais de recevoir tout le matos, à savoir :

                      +
                        +
                      • Un Amplificateur Yamaha RX-671
                      • +
                      • Un kit d’enceinte Jamo 5.1
                      • +
                      • Un boitier Antec Remote black et les 2-3 composants qui vont bien
                      • +
                      +

                      Salon Wii

                      +

                       

                      + +
                      Par HugoPoi, il y a
                      +
                      + +
                      +
                      +
                      +
                      + +
                      +
                      + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/75a423294aafdb6d94ec621435f9d816b5138c93.00000096.html b/www/.content.EZtzwPjb/html/75a423294aafdb6d94ec621435f9d816b5138c93.00000096.html new file mode 100644 index 0000000..f64d78d --- /dev/null +++ b/www/.content.EZtzwPjb/html/75a423294aafdb6d94ec621435f9d816b5138c93.00000096.html @@ -0,0 +1,580 @@ + + + + + + + + Pascal Negre tu m’emmerdes – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                      +
                      +
                      +
                      + +
                      +
                      +
                      +
                      +
                      +
                      +


                      +
                      Bon sérieux, Pascal Negre il commence à me les briser sec. Après Deezer qui est devenu une belle merde car il n’y a plus que les Black Eyed Peas, Justin et Britney, la plateforme est devenue complètement payante et cela reste cher au vu du catalogue proposé. Puis l’année dernière j’ai pris un abonnement téléphonique chez Orange avec la vente forcée d’un compte premium Deezer dont malheureusement je ne me sers pas.

                      +

                      +

                      Peu de temps après, j’ai découvert Grooveshark, une plateforme un peu différente sur laquelle on peut ajouter sa musique perso. Vous cherchez un titre? Vous ne le trouvez pas ? Si vous l’avez dans votre ordinateur, vous pouvez l’envoyer sur la plateforme pour le rendre disponible à tous. Grooveshark se base sur un business model pub pour leur site web donc l’accès est gratuit et sans inscription. Pour l’accès depuis votre mobile, cela est payant via un abonnement mensuel de quelques euros. Mais après avoir fais mes premiers pas sur la plateforme, je me suis demandé comment Grooveshark pouvait obtenir les droits de diffusion pour tous les titres ajoutés par les utilisateurs. Cela est en faite impossible car il n’y a pas de catalogue unifié et donc chaque major et artiste fait valoir ses droits séparément. Donc au final, je me retrouve avec un Grooveshark qui se fait grignoter au fur et à mesure du temps, et qui va finir comme Deezer avec un catalogue incomplet et amputé. Et cela commence vraiment à m’emmerder car je n’ai pas envie de payer trois abonnements différents sur trois plateformes. En plus, ce sera vraiment pratique pour écouter de la musique en changeant d’application entre deux titres. Donc à moins que les majors se bougent la rondelle pour faire des vraies offres unifiées avec des tarifs raisonnables, je vais devoir monter ma plateforme musicale communautaire en ligne. Je pensais à un truc avec une interface simple style grooveshark, voici mes 2,3 idées :

                      +
                        +
                      • Interface Web en HTML5
                      • +
                      • Application mobile Android Iphone et cie
                      • +
                      • Accès avec inscription, le tout gratuit (genre tracker privé)
                      • +
                      • Alors j’en ai rêvé la nuit dernière, pour stocker la musique, je pensais à un système décentralisé basé sur BitTorrent. Comme ça, impossible de fermer les serveurs qui hébergent la base de données contenant les infos sur chaque titre.
                      • +
                      • En gros, il faudrait un client lourd avec un protocole spécifiquement développé pour l’occasion
                      • +
                      • Au niveau de la qualité, il nous faut du Flac et du MP3 (minimum 320kbits/s)
                      • +
                      • Donc un système d’ajout à la BDD avec vérification de l’intégrité par les utilisateurs (proposition d’écoute pour savoir si le titre que l’on ajoute est déjà présent)
                      • +
                      • Chaque utilisateur stocke sa bibliothèque musicale, et en plus éventuellement un cache de redondance d’une partie de la bibliothèque totale
                      • +
                      • Complétition progressive de la BDD par les utilisateurs
                      • +
                      +
                      Bref, je pense que je rêves à 15000km mais ce concept pourrait amener à construire la plus grosse base de  données musicales de l’Internet et faire chier les majors. Montrer que la culture et le partage sont plus important que la BMW de Pascal Negre et ses potes.
                      +

                       

                      +
                      +
                      +
                      +
                      +
                      Catégories : InternetNews
                      +
                      +
                      +
                      + + + + + + + + + +
                      +
                      +
                      +
                      +
                      +
                      +
                      +

                      + 4 commentaires

                      +
                      + +
                      +
                      +
                      +
                      +

                      + Thibault + · 7 janvier 2012 à 19 h 50 min +

                      +

                      Très bonne idée mais …
                      +Le seul hic dans tes 2,3 idées c’est le stockage via BitTorrent je crois :)

                      + +
                      +
                      +
                        +
                        + +
                        +
                        +
                        +
                        +

                        + HugoPoi + · 7 janvier 2012 à 19 h 57 min +

                        +

                        Pourquoi ? si on stock la musique sur les serveurs, ça va représenter une bande passante énorme et en plus vu qu’il n’y aura que de la « contrefaçon ». Je serais obligé de fermer mon service si je veux pas vendre mes 2 bras.

                        + +
                        +
                        + +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + Thibault + · 8 janvier 2012 à 18 h 02 min +

                      +

                      A moins de tout passer en full-encrypt et d’autres méthodes pour cacher l’ip du client vis à vis du tracker (je ne suis pas un pro-torrent donc je dis p’tet des conneries)
                      +Dans ce cas bonjour l’appli bien lourde :)

                      + +
                      +
                      +
                        +
                        + +
                        +
                        +
                        +
                        +

                        + HugoPoi + · 8 janvier 2012 à 21 h 49 min +

                        +

                        Non tu ne dis pas de connerie bittorrent à besoin de l’ip public pour fonctionner, stocké au niveau du tracker. Le protocol bittorrent dispose déjà de chiffrement sur la partie pair à pair et aussi connexion au tracker qui peux se faire en SSL. Au niveau confidentialité, faire une plateforme uniquement avec client web ou bittorrent revient au même car le serveur peux stocké indéfiniment les ip qui s’y connectent dans les deux cas. Moi je suis pour les systèmes décentralisés qui sont la base d’Internet qui ont l’avantage de répartir la charge sur tous le réseau et pas provoqué d’engorgement. Appli bien lourde je ne sais pas, ça sera toujours moins lourd que iTunes lol

                        + +
                        +
                        + +
                      + +
                      +
                      +
                      +

                      Répondre à Thibault Annuler la réponse

                      Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                      +
                      +
                      +

                      + +

                      +
                      +
                      +
                      +
                      +
                      +
                      + +
                      +
                      +
                      +
                      +
                      +
                      + + +
                      + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/75a9b54a899addf96827fac13f99c727759cfa4d.00000606.css b/www/.content.EZtzwPjb/html/75a9b54a899addf96827fac13f99c727759cfa4d.00000606.css new file mode 100644 index 0000000..20df2bb --- /dev/null +++ b/www/.content.EZtzwPjb/html/75a9b54a899addf96827fac13f99c727759cfa4d.00000606.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7 .screen-reader-response{position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);height:1px;width:1px;margin:0;padding:0;border:0}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{color:#f00;font-size:1em;display:block}.use-floating-validation-tip span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;border:1px +solid #f00;background:#fff;padding: .2em .8em}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/76da48fbb10238af99740928bcc52956c31566a7.00000111.html b/www/.content.EZtzwPjb/html/76da48fbb10238af99740928bcc52956c31566a7.00000111.html new file mode 100644 index 0000000..22d19d1 --- /dev/null +++ b/www/.content.EZtzwPjb/html/76da48fbb10238af99740928bcc52956c31566a7.00000111.html @@ -0,0 +1,1370 @@ + + + + + + + + Réparations Samsung SyncMaster 2232BW – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                      +
                      +
                      +
                      + +
                      +
                      +
                      +
                      +
                      +
                      +

                      Allô docteur on a un problème,

                      +

                      En ce dimanche calme avant la fin de mes partiels, mon écran Samsung SyncMaster 2232BW commençait à faire des siennes. Celui-ci depuis un mois ou deux clignotait de façon systématique au démarrage, au début pendant seulement quelques secondes, puis au fur et à mesure, de plus en plus jusqu’à devoir attendre 10 minutes pour que je puisse l’utiliser. Après 3 ans et 4 mois de bons et loyaux services, il voulait me quitter. J’ai tenté le support Samsung par email avec peu d’espoir car l’écran a dépassé sa garantie de 4 mois (oui oui les bâtards -> obsolescence programmée). Et donc j’ai eu le droit à un joli mail automatique me disant de contacter un numéro non surtaxé (mais avec combien de temps d’attente ?), ce que je n’ai pas fait car je n’avais pas envie de passer 30min au téléphone pour au final avoir un « On est désolé mais on ne peut rien faire pour vous car la garantie est dépassée, mais on peut envoyer votre écran en SAV pour faire un devis pour seulement 50 boules ». Concernant le support email de Samsung France, je leur donne une note de 0/20 puisque ce n’est pas un support mais une redirection vers le téléphone.

                      +

                      +

                      Symptômes

                      +

                      Clignotements de l’écran et de la LED power systématiques à chaque démarrage de l’écran. Je me suis tout de suite douté d’un problème d’alimentation et après quelques recherches sur google, confirmation du problème sur beaucoup d’écrans et téléviseurs. Dans 99% des cas ce clignotement est dû à des condensateurs défectueux qu’il faut simplement changer :-D

                      +

                      Démontage

                      +

                      Donc après avoir cerné le problème, j’ai ouvert l’écran pour chercher les condos défectueux. J’ai trouvé une petite vidéo pour mon écran :

                      +

                      +

                      Voici quelques photos en plus pour vous aider :

                      +

                      Les outils que j’ai utilisé pour le démontage

                      +

                      Position des clips

                      +

                      Carte d’alimentation dans son emplacement

                      +

                      Et voici les condensateurs qui posent problèmes. Comme vous pouvez le voir sur la photo, ils sont très facilement identifiable car ils sont bombés sur le dessus.

                      +

                      Condensateurs défectueux

                      +

                      Vous devez donc acheter des condensateurs de remplacement, par exemple sur Conrad.

                      +

                      Mes condensateurs suivant étaient endommagés:

                      +
                        +
                      • 1 de 330uF 25V remplacé par un 470uF 25V
                      • +
                      • 3 de 820uF 25V remplacé par des 1000uF 50V
                      • +
                      +

                      Pour la réparation, il vous faut un fer à souder avec une panne pas trop grosse mais d’une grosse puissance car les soudures sont très solides (j’ai galéré avec un fer pro qui monte jusqu’à 400°).

                      +

                      Tout remarche nickel après remontage, plus de clignotement pour seulement quelques euros.

                      +

                      edit du 19 aout 2014 : j’ai trouvé le service manuel de l’écran si besoin samsung_2232bw_chassis_lpe22bs_sm

                      + + +
                      +
                      + +
                      +
                      +
                      +
                      +
                      +

                      + 41 commentaires

                      +
                      + +
                      +
                      +
                      +
                      +

                      + c'est_moi + · 30 janvier 2012 à 18 h 57 min +

                      +

                      Mille mercis et mille félicitations pour cette fiche technique si pédagogue.

                      +

                      J’espère que le partiels se passent plus que parfait !!

                      +

                      J’ai gardé l’url de la page pour réparer mon écran dans un petit mois : j’espère que la page soit toujours là ;-)

                      +

                      Merci encore.

                      + +
                      +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + Maxime + · 5 mai 2012 à 12 h 31 min +

                      +

                      Bonjour HugoPoi!

                      +

                      Merci pour toutes vos infos et votre topic, je voulais avoir quelques précisions sur les condos à changer pour samsung 2232bw, je veux passer commande mais j’ai un problème avec les dimensions des condos, si vous pouvez m’informer de ce que je pourrais acheter car il y a trop de références. En vous remerciant A+ Maxime

                      + +
                      +
                      +
                        +
                        + +
                        +
                        +
                        +
                        +

                        + HugoPoi + · 14 juin 2012 à 22 h 56 min +

                        +

                        N’importe quel condensateur polarisé avec des caractéristiques proches devrait marché.

                        + +
                        +
                        + +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + gaubjezj + · 14 juin 2012 à 22 h 32 min +

                      +

                      Merci pour le tuto qui m’a bien aidé.
                      +J’ai utilisé un fer de 40 W avec une panne fine et
                      +une pompe à dessouder et j’ai retiré les condensateurs sans problème.
                      +Merci encore (3€40 pour le dépannage).

                      + +
                      +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + DragonTribal + · 2 juillet 2012 à 12 h 02 min +

                      +

                      super merci pour manifique tuto.
                      +Est-il possible de changer les 5 condensateurs 820uF 25V par des 1000uF 50V? car moi mes 5 condensateurs sont presque HS ;-)

                      +

                      Cordialement

                      + +
                      +
                      +
                        +
                        + +
                        +
                        +
                        +
                        +

                        + HugoPoi + · 2 juillet 2012 à 12 h 25 min +

                        +

                        Oui je penses que ça marchera étant donné que c’est des valeurs plus grandes.

                        + +
                        +
                        + +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + FRED + · 11 juillet 2012 à 19 h 11 min +

                      +

                      Bravo, MERCI.
                      +Je n’ai encore rien fait…mais j’ai le même problème, et tu me donnes la solution.
                      +Super.

                      + +
                      +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + daninpet + · 31 août 2012 à 10 h 10 min +

                      +

                      Merci mille fois!

                      +

                      J’avais ce problème, et j’ai emmener la photo des trucs a remplacer chez le réparateur du coin et voila!! Ça m’a coûté 7 Euros (mais j’habite en Thaïlande)

                      + +
                      +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + moi + · 15 novembre 2012 à 15 h 25 min +

                      +

                      super mon 2232bw vient de lâcher, les 3 + 1 condos sont gonflés j ai trouvé un 330 en 35v qui traîné sur un écran mort et j’ai commander 5 1000uf 35v sur ebay pour moins de 3 dollars, ca devrait le faire j’espere j’attend d’être livré merci! par contre j’ai qu’un gros pistolet a soudure et un gros fil d’étain, c’est pas évident mais bon ca le fait quand même =)

                      + +
                      +
                      +
                        +
                        + +
                        +
                        +
                        +
                        +

                        + moi + · 7 décembre 2012 à 9 h 33 min +

                        +

                        parfait je vient de recevoir les condos; j ai meuler la panne du fer a souder pour la tailler en mine de crayon et j ai reussi a les souder facilement ils étaient un peu plus gros mais ca passe tout juste, mais attention ne pas prendre des plus gros! l écran fonctionne nickel maintenant.

                        + +
                        +
                        + +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + Croco + · 19 janvier 2013 à 18 h 39 min +

                      +

                      Je souhaiterai savoir si tu as utilisé un fer à souder bien précis étant donné que la carte est une multi couche.
                      +Merci

                      + +
                      +
                      + + +
                      + +
                      +
                      +
                      +
                      +

                      + momo + · 10 juin 2013 à 13 h 15 min +

                      +

                      slut je voudrai savoir ou trouvé les condansateur a changer sur mon ecran qui clignote

                      + +
                      +
                      + + +
                      + +
                      +
                      +
                      +
                      +

                      + lokmane + · 5 juillet 2013 à 16 h 08 min +

                      +

                      merci j’avais un ecran rouge ! et c’etais la tresse qui relie mon ecran votre page m’a aider a l’ouvrir et a le reparer merci bien

                      + +
                      +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + ML + · 21 août 2013 à 19 h 11 min +

                      +

                      Merci ! Ecran réparé. Halte à l’obsolescence programmée.

                      + +
                      +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + raymond + · 31 octobre 2013 à 13 h 20 min +

                      +

                      ai vu votre vidéo et les explications pour la reparation de mon écran , apparemment le méme probléme l écran passe au noir apres quelque seconde , j ai vu un le condensateur en bas a gauche gonflé , je l ai fait changé (10€) les autre condensateur étant toujour bon d après la personne qui me l a changé , mais j ai toujour le méme probléme cela peut il venir de la carte video a gauche ?

                      + +
                      +
                      +
                        +
                        + +
                        +
                        +
                        +
                        +

                        + HugoPoi + · 20 décembre 2013 à 12 h 27 min +

                        +

                        Si la led bleu du bouton power s’éteint aussi c’est un problème d’alimentation sinon c’est plus compliqué et ça peut provenir de condensateurs sur la partie vidéo. Changé tous les plus gros condensateurs sur la partie alimentation pourrait être un bon début même si ils ne paraissent pas endommagé.

                        + +
                        +
                        + +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + damien + · 4 novembre 2013 à 0 h 29 min +

                      +

                      bonjour,

                      +

                      j’ai des crasses coincées entres l’écran et le truc juste derrière, est ce qu’on sais les enlever en démontant la dalle ?

                      + +
                      +
                      +
                        +
                        + +
                        +
                        +
                        +
                        +

                        + HugoPoi + · 20 décembre 2013 à 12 h 28 min +

                        +

                        Je ne sais si cette partie de la dalle est démontable, je penses que c’est collé mais vous pouvez essayer.

                        + +
                        +
                        + +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + mac + · 1 décembre 2013 à 17 h 30 min +

                      +

                      Merci HugoPoi, avec ces excellents conseils et tuto vidéo, mon écran est reparti pour une nouvelle vie.
                      +Pour les composants, si vous êtes sur Paris ou proche. La boutique RAM électroniques est une bonne adresse, 138 bd Diderot 75012 Paris (Place de la Nation).

                      + +
                      +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + Bouddhid + · 16 janvier 2014 à 19 h 21 min +

                      +

                      Merci beaucoup pour ces conseils ! J’étais à 2 doigts de jeter mon écran, le voilà comme neuf pour moins de 5€ ! Vive la bricole !

                      + +
                      +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + Vincent + · 17 mai 2014 à 16 h 45 min +

                      +

                      Alors là merci.

                      +

                      Pour ce post, les photos, la vidéo, tout y est.

                      +

                      J’ai démonté l’écran assez vite, enlevé la carte, regarder quel condensateurs étaient gonflés,(il y en avaient 4), un magasin d’électronique sur lyon et une heure de démontage, soudure, remontage plus tard, voilà, c’est tout beau.
                      +Ca ne clignote plus, ça s’allume comme avant, comme neuf.

                      +

                      Et dire que j’allais jeter cet écran et claquer 350 euros pour un neuf…

                      +

                      Coût de l’opération pour 4 condensateurs, du fil d’étain 7 euros.

                      +

                      Je précise que je n’avais jamais fais de soudure sur composant électronique auparavant.
                      +Comme quoi cette opération de réparation est à la portée de tous.

                      + +
                      +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + Julot + · 6 juillet 2014 à 13 h 49 min +

                      +

                      Site vraiment détaillé et très claire. J’ai pu dépanner mon écran avec succès. Merci beaucoup pour ces précieuses explications.

                      + +
                      +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + PaniK31 + · 29 juillet 2014 à 9 h 21 min +

                      +

                      Pas besoin d’une grosse puissance pour le fer, il faut au préalable gratter le vernis sur l’étain afin de pouvoir le faire fondre plus facilement

                      + +
                      +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + R211_IP-45130B + · 20 août 2014 à 14 h 04 min +

                      +

                      Bonjour à tous,

                      +

                      Une âme charitable peut-elle me communiquer ce qui est gravé sur la résistance CMS R211 de la carte d’alimentation/inverter IP-45130B qui équipe le SAMSUNG 2232BW ? Cette résistance a pris un coup de tournevis et je n’arrive pas à déterminer sa valeur de résistance car son marquage est effacé et comme le composant est abimé la mesure à l’ohmmètre indique l’infinie.

                      +

                      Merci par avance.

                      + +
                      +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + roger + · 24 octobre 2014 à 17 h 21 min +

                      +

                      Ca refonctionne après échange de 4 condensateurs :
                      +-un 330uf25v remplacé à l’identique.
                      +-trois 820uf25v remplacés par 1000uf25v.
                      +Le tout pour quelques €. Le plus dur était le dessoudage, la tresse n’était pas très efficace contrairement à la pompe.
                      +Grand merci à HugoPoi.

                      + +
                      +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + Max + · 26 février 2015 à 16 h 28 min +

                      +

                      ENORME MERCI!! J’ai réparé mon écran en 20mn pour 3,50€, il était à 2 doigts de partir à la déchetterie. Ca faisait des mois qu’il clignotait, et l’allumage mettait parfois plus d’une demi heure. J’ai changé 5 condos 820uf25v et 1 330uf25v, par exactement les mêmes en neuf, et là il démarre au quart de tour! Ca fait plaisir! :)

                      + +
                      +
                      +
                        +
                        + +
                        +
                        +
                        +
                        +

                        + rocco michelle + · 7 octobre 2015 à 10 h 16 min +

                        +

                        Bonjour je ne sais si vous verrez mon message mais je tente…je cherche quelqu’un qui accepterait de changer mes condensateurs sur mon samsung, les réparateurs me demandent 70 à 80 euros et encore ils n’ont pss envie de le faire et me disent d’acheter un nouvel écran. j’aurais bien tenter mais je n’ai pas de matériel et j’ai lu que les condo pouvaient être très dangereux s’ils avaient de la charge alors j’ai la trouille de bidouiller pq je n’y connais rien. si vous êtes de lyon acccepteriez vous de changer mes condensateurs pour 45 euros? merci de votre réponse.

                        + +
                        +
                        + +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + lecakeseb + · 27 juillet 2015 à 15 h 26 min +

                      +

                      Bonjour,

                      +

                      J’ai utilisé la vidéo pour démonter mon écran afin de le nettoyer de 4 bêtes d’orage infiltrés entre le premier écran (noir) et la dalle (blanche) de mon samsung SyncMaster 2232W

                      +

                      Petits conseils afin de modérer ce que j’ai pu voir dans cette vidéo :

                      +

                      0 : aspirez, nettoyez l’extérieur de l’écran avant de l’ouvrir et nettoyez la table qui vous servira d’atelier, pour éviter les poussières qui s’infiltreront forcément plus tard si vous ne le faites pas…
                      +1 : pour ouvrir, utilisez plutôt un couteau à enduire pour la première partie (le cadre). Vous n’abîmerez ainsi pas du tout l’écran. Soyez patients, ne forcez pas ! ça viendra doucement, mais ça viendra. Il m’a fallu à peine 10 minutes, sans détériorer l’écran, sans le griffer… Il est encore nickel !
                      +2 : attention à ne pas déconnecter les fils reliant le cadre à la carte. Inutile pour simplement nettoyer l’écran.
                      +3 : pour séparer les deux éléments de la dalle entre lesquels les bêtes se sont infiltrées, les doigts suffisent, pas besoin d’outils qui viendraient les endommager. La dalle blanche reste à l’horizontale, l’écran noir sera tenu à la verticale.
                      +4 : utiliser un chiffon doux ne peluchant pas pour enlever les bêtes (faites-vous aider de quelqu’un qui les enlèvera pendant que vous tenez l’écran extérieur en position verticale).
                      +5 : repositionnez la colle d’étanchéité qui aurait pu se déplacer, avant de repositionner les deux écrans.
                      +6 : commencer par refermer par le bas de l’écran (sinon les éléments de réglage situés au bas de l’écran – luminosité, contraste,…- ne se replaceront pas correctement).
                      +7 : Une fois l’écran refermé, j’ai appliqué un peu de « barrage aux insectes », avec un chiffon à l’arrière de mon écran en insistant surtout sur les bouches d’aération par lesquelles les maudites bestioles ont du s’infiltrer. En espérant ne pas avoir à ouvrir !

                      +

                      Bon courage à vous !

                      + +
                      +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + Michel Jousserandot + · 20 janvier 2017 à 20 h 41 min +

                      +

                      Merci pour les conseils au démontage.
                      +J’avais un problème un peu différent :l’écran ne s’allumait plus du tout. Avec un copain beaucoup plus malin que moi, on a détecté 2 fusibles dont l’un était fichu. On l’a remplacé par un petit fil de cuivre. Et tout a remarché comme avant.
                      +Il faut surtout faire attention quand on teste la partie haute tension
                      +Michel.

                      + +
                      +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + Crec + · 14 juillet 2017 à 10 h 20 min +

                      +

                      Bonjour. Très bons conseils avertis. Merci beaucoup.
                      +Peut-on avoir les mêmes conseils pour un écran BX2250.
                      +Merci par avance.
                      +Crec

                      + +
                      +
                      +
                        +
                        + +
                        +
                        +
                        +
                        +

                        + HugoPoi + · 6 août 2017 à 14 h 03 min +

                        +

                        J’ai pas de BX2250 donc dans le détails non mais si c’est les même symptômes ça doit la même procédure.

                        + +
                        +
                        + +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + Ferronnier + · 10 août 2017 à 17 h 42 min +

                      +

                      Un grand merci !
                      +J’ai changé tous les condensateurs de la partie alimentation de la carte, en déportant certains qui n’avaient pas le même format qu’à l’origine, et ça tourne nickel !

                      + +
                      +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + Nours + · 1 décembre 2017 à 15 h 17 min +

                      +

                      Ca fait des années que j’ai cet article enregistré dans un coin, en nourrissant l’espoir d’avoir un jour le courage de réparer ce foutu écran… Après plus de cinq ans c’est chose faite \o/
                      +Un giga, hypra, immense merci pour ce tutoriel tellement bien expliqué et facile d’accès (je n’avais pas touché à un fer à souder depuis… Oh boy 15 ans déjà).
                      +Après une longue pause, l’écran reprend du service… Jusqu’à la prochaine panne /o/

                      + +
                      +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + Alex + · 11 août 2018 à 13 h 28 min +

                      +

                      Quelqu’un sait qui pourrait me le faire svp j ai le même problème mais aucun matériel

                      + +
                      +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + David + · 5 février 2019 à 21 h 06 min +

                      +

                      Merci Hugo pour ce tuto qui m’a déjà servi en 2013 et qui va me resservir aujourd’hui car mon 2ème 2232bw commence à avoir les mêmes symptômes.

                      + +
                      +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + yvan + · 23 novembre 2019 à 17 h 14 min +

                      +

                      Bonjour
                      +j’ai tenté de changer le condensateur qui avait l’air naze mais ça n’a pas marché … toujours le bouton bleu allumé, l’écran est reconnu par Windows 10 même si l’écran est éteint
                      +grâce au service manuel de l’écran fourni plus haut, j’ai vérifié les tensions jusque sur la carte de la dalle et elles sont correctes, ainsi que sur la carte elle-même, tout est ok, donc je pense que ce n’est plus un problème de condensateur
                      +pour les fusibles, ils ressemblent plutôt à des composants qu’à de simple fusibles, mais comme j’ai les bonnes tension, je ne pense pas que ça vienne de là
                      +j’ai bien peur que ce soit la dalle qui soit naze ? quelqu’un a t il des idées supplémentaires avant que je le jette avec grand regret (c’est un 2032bw, mais c’est la même chose, même si ma carte électronique est un peu différente car plus récente
                      +merci d’avance pour vos conseils

                      + +
                      +
                      + +
                      + +
                      +
                      +
                      +
                      +

                      + yvan + · 24 novembre 2019 à 17 h 26 min +

                      +

                      finalement j’ai trouvé, c’est un petit fusible vert qui ressemble à une résistance mais tout vert avec écrit 4A LF qui assure l’alimentation de la dalle.
                      +En le shuntant, mon écran a retrouvé l’image.
                      +après enquête il s’agit d’un fusible pico de 4ampères de chez little fuse, pas du tout évident à trouver
                      +Résolu !

                      + +
                      +
                      + +
                      +
                      +

                      + Reflow Dell 1546 | HugoPoi + · 22 août 2016 à 16 h 09 min +

                      +

                      […] « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable de marque Dell un 1546 pour être précis. Encore […]

                      + +
                      +
                      + +
                      +
                      +

                      + Reflow Dell Inspiron 1546 – HugoPoi + · 23 juin 2017 à 23 h 18 min +

                      +

                      […] d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un […]

                      + +
                      +
                      + +
                      +
                      +
                      +

                      Répondre à HugoPoi Annuler la réponse

                      Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                      +
                      +
                      +

                      + +

                      +
                      +
                      +
                      +
                      +
                      +
                      + +
                      +
                      +
                      +
                      +
                      +
                      + + +
                      + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/770c6b5c04101e4920634ddb63bba7db84cf0210.00000467.xml b/www/.content.EZtzwPjb/html/770c6b5c04101e4920634ddb63bba7db84cf0210.00000467.xml new file mode 100644 index 0000000..10a2a0d --- /dev/null +++ b/www/.content.EZtzwPjb/html/770c6b5c04101e4920634ddb63bba7db84cf0210.00000467.xml @@ -0,0 +1,41 @@ + + + + HugoPoi » Noël 2.0 + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Sat, 14 Sep 2013 23:01:40 +0000 + fr-FR + hourly + 1 + http://wordpress.org/?v=3.6 + + Liste de Noël + http://blog.hugopoi.net/2012/11/18/liste-de-noel-2/ + http://blog.hugopoi.net/2012/11/18/liste-de-noel-2/#comments + Sun, 18 Nov 2012 21:00:38 +0000 + HugoPoi + + + + + + + + + + http://blog.hugopoi.net/?p=556 + Lire la suite »

                      ]]>
                      + http://blog.hugopoi.net/2012/11/18/liste-de-noel-2/feed/ + 0 +
                      +
                      +
                      diff --git a/www/.content.EZtzwPjb/html/770ffdab76611b2dc8d180d6d994fac875e07ae6.00000002.html b/www/.content.EZtzwPjb/html/770ffdab76611b2dc8d180d6d994fac875e07ae6.00000002.html new file mode 100644 index 0000000..5a1cf81 --- /dev/null +++ b/www/.content.EZtzwPjb/html/770ffdab76611b2dc8d180d6d994fac875e07ae6.00000002.html @@ -0,0 +1,513 @@ + + + + + + + + Hello World – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                      +
                      +
                      +
                      + +
                      +
                      +
                      +
                      +
                      +
                      +

                      hadopi.fr

                      +

                      Bienvenue sur mon blog, voila c’est fait, je voulais depuis un petit moment ouvrir un blog pour m’ exprimer sur l’ actualité geek et raconter ma vie parler technique. Alors j’annonce les couleurs ici je vais pas parler coupe de cheveux ni sous-vêtement mais des sujets orientés internet, réseaux, développement et politique #hadopi #fail.

                      +

                      Bon comme je suis pas trop mal parti pour ce premier article, quelques mises au point : premièrement je suis nul en orthographe et pour écrire en général, c’ est pas vraiment mon truc donc si je suis nul et que le contenu de mon blog est nul, je suis près à tout arrêter si je sert à rien (n’hésité à me le faire savoir dans vos commentaire pour que je puisse m’arrêter à temps). Pour les corrections orthographique insulter houspillé moi dans vos commentaires.

                      +

                      Deuxièment je vais pas écrire cet article pour juste ouvrir mon blog donc je vais rentrer direct dans le vif du sujet.

                      +

                      H. A. D. O. P. I. seulement 6 lettres qui me font lever chaque matin et le sujet qui me fait bien marrer en ce moment. Pour résumer pour ceux qui ne savent pas la Hadopi, c’est la Haute Autorité pour La Diffusion des Oeuvres et Protection des droits sur Internet, c’est un truc administratif qui coute la bagatelle de 12 millions d’euros dans le budget de l’état. Enfin pas si sur peut-être le double si les rumeurs sur le coût d’identification des adresses IP se vérifie.

                      +

                      La Haute Autorité elle fait quoi ? Plusieurs choses officiellement :

                      +
                        +
                      • Mettre en place la réponce graduée
                      • +
                      • Faire de la pédagogie sur le respect des droits auteurs et la sécurisation de son accès à internet
                      • +
                      • Réfléchir ensemble sur les questions de la vie sur internet (Labs)
                      • +
                      • Développer l’offre légale
                      • +
                      +

                      En vrai ce qu’ils font déjà c’est fliquer les internautes avec des méthodes douteuses avec ma police privée du net préféré TMG. Pour les fameux Labs qui vont permettre de réfléchir si on va pouvoir mettre hadopi à la poubelle ou installer du DPI sur vos connexions internet très neutre ; on va les voir arriver que dans 6 mois si tout se passe bien. Chaque sujet sera traité par un Labs dirigé par une personne choisie par la hadopi qui à son tour choisira par cooptation les personnes faisant parti de son Labs cela posant problème car si l’expert pilote du labs a parti pris dans le débat alors il choisira des personne de son coté, faussant ainsi les résultats du labs. Donc pour remédier à cela le blogueur Spyou en dialogue avec M. Walter, propose que tous les experts pilotes choisissent ensembles les membres des labs ce qui me parait être une bonne idée.

                      +

                      Pour répondre aux différentes tendances du moment concernant les Labs certaines personnes refusent le dialogue avec hadopi, d’autres acceptent de jouer le jeu. Moi j’annonce, je prends la tangente car refuser le dialogue me parait une réponse normale car il y a un an Mme Albanel n’a pas trouvé bon de consulter des experts pour faire la loi hadopi et hadopi a décidé de taper sur les gens avant de lancer les discussions avec les labs ! En gros c’est un peu mettre la charrue avant les bœufs. Mais d’un coté si on laisse les labs sans personne du coté anti-dpi les majors vont se faire un plaisir de nous sortir des études bidonnées des labs.

                      +

                      Pour la pédagogie faut passer par la case à revoir parce que envoyer des jolis mails aux internautes pour leur dire de sécuriser leur connexion internet alors que la majorité d’entre eux ne savent pas comment marche un ordinateur et ont pour ainsi dire zéro notion en sécurité informatique.

                      +

                      Bon bah je vais m’arrêter là pour l’instant et vous laisser suivre tranquillement l’actualité Hadopi et vous informer sur le sujet si vous ne l’êtes pas déjà.

                      +
                      +
                      +
                      +
                      +
                      Catégories : HadopiNews
                      +
                      +
                      +
                      + + + + + + + + + +
                      +
                      +
                      +
                      +
                      +
                      +
                      +

                      + 1 commentaire

                      +
                      + +
                      +
                      +
                      +
                      +

                      + Calcifer + · 17 octobre 2010 à 14 h 27 min +

                      +

                      Cool de te voir ouvrir un blog, pour avoir vécu avec toi en coloc, je sais que ça sera très passionnant :)
                      +See you !

                      + +
                      +
                      + +
                      +
                      +
                      +

                      Laisser un commentaire

                      Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                      +
                      +
                      +

                      + +

                      +
                      +
                      +
                      +
                      +
                      +
                      + +
                      +
                      +
                      +
                      +
                      +
                      + + +
                      + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/7766f0093df0aba7975cbe761f6d83e4f298c420.00000091.html b/www/.content.EZtzwPjb/html/7766f0093df0aba7975cbe761f6d83e4f298c420.00000091.html new file mode 100644 index 0000000..70d692b --- /dev/null +++ b/www/.content.EZtzwPjb/html/7766f0093df0aba7975cbe761f6d83e4f298c420.00000091.html @@ -0,0 +1,497 @@ + + + + + + Démontage Asus U36 | HugoPoi + + + + + + + + + + + + + + + + + +
                      + +
                      +
                      +

                      Démontage Asus U36

                      + +
                      +
                      + +

                      J’ai acheté un petit SSD pour mettre dans mon U36 acheté il y a quelques mois, je n’ai pas trouvé de procédure de démontage sur Internet donc voici les photos de mon démontage.

                      +

                      1) Commencer par enlever toutes les vis et la trappe pour accéder à la RAM, puis déconnecter les deux connecteurs clavier et touchpad qui se situent juste à coté de la carte wifi.

                      +

                      2) Retourner le pc et à l’aide d’un petit tournevis plat, dé-clipser les petits clips sur tout le tour du pc. Vous pouvez maintenant enlever toute la partie supérieur.

                      +

                      +

                      3) Démontage Terminé :D

                      +

                      4) Galerie

                      + + +
                      +
                      +
                      + + +
                      + + +
                        +
                      1. +
                        + +
                        +

                        Salut Hugo,

                        +

                        Comment as tu fait pour déconnecter les deux connecteurs clavier et touchpad qui se situent juste à coté de la carte wifi ?

                        +

                        Merci d’avance,
                        +John

                        +
                        + +
                        +
                          +
                        • +
                          + +
                          +

                          Désolé pour l’attente,

                          +

                          Il faut prendre un petit tournevis plat et relever les petites languettes au dessus des nappes de façon à la mettre à 90° par rapport à la carte mère.

                          +
                          + +
                          +
                        • +
                        +
                      2. +
                      3. +
                        +
                        + leboulanger + +
                        +
                        +

                        bonjour,
                        +super ton tuto ! j’ai la m idée que toi à savoir mettre un ssd mais est ce que tu sais si çest du SATA 1 ou 2 ? concernant les connecteurs je ne l’ai situe pas du tout. est ce que tu pourrais ajoutait une photo stp ?
                        +merci en ts cas pour la contribution

                        +
                        + +
                        +
                          +
                        • +
                          + +
                          +

                          Salut,
                          +Pour le mode SATA c’est du 2. Après j’ai pas d’autre photo mais le connecteur il est situé juste au bout du disque sur la gauche.

                          +
                          + +
                          +
                        • +
                        +
                      4. +
                      5. +
                        +
                        + Asus U36 et OCZ Vertex 3 la suite | HugoPoi - pingback on 15 mai 2012 at 3 h 39 min +
                        +
                        +
                      6. +
                      7. +
                        + +
                        +

                        J’ai aussi démonté le mien pour mettre un ssd et il n’a plus jamais redémarré (même avec le disque dur initial) …
                        +Un conseil, soyez très prudents !

                        +
                        + +
                        + +
                      8. +
                      9. +
                        + +
                        +

                        Emiso tu es un boulet

                        +
                        + +
                        + +
                      10. +
                      11. +
                        + +
                        +

                        Mon U36 avec un SSD Crucial M4 et une carte Intel Centrino n-6230 à la place de la n-100… que du bonheur.

                        +

                        Merci pour le tuto bien utile.

                        +
                        + +
                        +
                      12. +
                      13. +
                        + +
                        +

                        merci pour ce tuto; a noter un truc pour ne pas perdre les vis et savoir où les replacer:

                        +

                        http://fr.slideshare.net/stepmond/remplacement-ecran-sony-vaio?ref=http://www.pcsoleil.fr/ecran-pc-portable-sony-vaio-casse/

                        +

                        3eme diapo

                        +
                        + +
                        +
                      14. +
                      15. +
                        + +
                        +

                        Can you send me a close up picture of both sides of the U36JC I/O board? It would be nice if you could give me also the resistor/capacitor values. I need to connect my SATA hard drive, but the board itself is very expensive. Do you think I can solder the SATA wires to a cable and plug that to the hard drive?

                        +
                        + +
                        +
                          +
                        • +
                          + +
                          +

                          I don’t want to reopen my laptop just for take picture. I don’t know if there are any out pins to solder a SATA connector but in Intel driver menu on Windows a port with no-connection appear.

                          +
                          + +
                          +
                        • +
                        +
                      16. +
                      17. +
                        + +
                        +

                        Hello , j’ai également cet Asus et comme tout le monde je pense, bien tenté de remplacer le disque dur de base par un ssd ^^.
                        + Sur la première image de ton petit tuto, tu sembles montrer des emplacements vis sous les antidérapants.. ca me semble étrange ;p. Je voulais savoir si ceux si ne risquaient pas de s’abîmer (et du coup s’ils se remettaient également facilement).
                        + Si tu passe par là, merci de la réponse!

                        +
                        + +
                        +
                          +
                        • +
                          + +
                          +

                          J’ai pu décoller et recoller sans problème les patins antidérapants. Mais à la rigueur prévoir du double-face pour remplacement.

                          +
                          + +
                          +
                        • +
                        +
                      18. +
                      19. +
                        + +
                        +

                        Oh my goodness! Incredible article dude! Thank
                        +you so much, However I am going through issues with your RSS.
                        +I don’t know why I am unable to subscribe to it. Is there anyone else getting the same RSS problems? Anybody who knows the answer will you kindly respond? Thanks!!

                        +
                        + +
                        + +
                      20. +
                      + +
                      +

                      Répondre à HugoPoi ¬
                      Annuler la réponse

                      +
                      +

                      + +

                      +

                      NOTE - Vous pouvez utiliser les éléments et attributs HTML tags and attributes:
                      <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

                      + + + +

                      +

                      +
                      +
                      +

                      Trackbacks and Pingbacks:

                      + +
                      +
                      +
                      +
                      + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/7776f1cb7e679b70ada51871cdab6f88b0e1c361.00000494.html b/www/.content.EZtzwPjb/html/7776f1cb7e679b70ada51871cdab6f88b0e1c361.00000494.html new file mode 100644 index 0000000..501e537 --- /dev/null +++ b/www/.content.EZtzwPjb/html/7776f1cb7e679b70ada51871cdab6f88b0e1c361.00000494.html @@ -0,0 +1,364 @@ + + + + + + + redondance – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                      +
                      +
                      +
                      + +
                      +
                      +
                      +
                      +
                      +

                      Vos données sauvegardées

                      Dans le monde d’aujourd’hui, le numérique est omniprésent, tout ce que vous faites est ou peut être numérisé. Qu’il s’agisse de vos photos de vacances, de votre CV ou votre liste de course, vos contacts et tous les documents que vous utilisez pour travailler sont surement numériques. L’informatique est partout et aide à gérer votre comptabilité, vos contacts pro ou perso et même bientôt votre frigo. Quand je pense qu’il y a 10 ans, beaucoup de professions géraient leur base clients avec des fiches papiers, et que ça existe encore… Pourtant, c’est une perte de temps importante de gérer des clientèles de plus 100 personnes, trier les fiches à la main dans l’ordre alphabétique. Imaginez devoir sortir tous les clients que vous n’avez pas contacté depuis 2 mois, même avec uniquement 100 personnes vous allez y passer au moins une 1 heure avant que votre liste soit faite, avec une base de données, cela est fait en moins d’1 seconde. Tous ça pour dire que l’informatique facilite grandement votre vie jusqu’au jour où ça tombe en panne ! J’ai donc quelques propositions à vous faire concernant la protection de vos données. (suite…)

                      +
                      Par HugoPoi, il y a
                      +
                      + +
                      +
                      +
                      +
                      + +
                      +
                      + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/7797d0679a202c0381c4eedf5744a458a8b5e5ff.00000239.html b/www/.content.EZtzwPjb/html/7797d0679a202c0381c4eedf5744a458a8b5e5ff.00000239.html new file mode 100644 index 0000000..6bbcd85 --- /dev/null +++ b/www/.content.EZtzwPjb/html/7797d0679a202c0381c4eedf5744a458a8b5e5ff.00000239.html @@ -0,0 +1,333 @@ + + + + + + + Screenshot_test-uefi-install-mok_2018-12-23_17:33:16 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                      +
                      +
                      +
                      +
                      +
                      +
                      +
                      + + + +

                      +
                      +
                      +
                      +
                      +

                      + 0 commentaire

                      +
                      +
                      +
                      +

                      Laisser un commentaire

                      Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                      +
                      +
                      +

                      + +

                      +
                      +
                      +
                      +
                      +
                      +
                      +
                      +
                      + +
                      + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/77fd77265c134623e813a4ff688adde0ea042569.00001199.css b/www/.content.EZtzwPjb/html/77fd77265c134623e813a4ff688adde0ea042569.00001199.css new file mode 100644 index 0000000..ac1db33 --- /dev/null +++ b/www/.content.EZtzwPjb/html/77fd77265c134623e813a4ff688adde0ea042569.00001199.css @@ -0,0 +1,11 @@ +:root{--wp-admin-theme-color:#007cba;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-20:#005a87}#start-resizable-editor-section{display:none}.wp-block-audio figcaption{margin-top:.5em;margin-bottom:1em}.wp-block-audio audio{width:100%;min-width:300px}.wp-block-button__link{color:#fff;background-color:#32373c;border:none;border-radius:28px;box-shadow:none;cursor:pointer;display:inline-block;font-size:18px;padding:12px 24px;text-align:center;text-decoration:none;overflow-wrap:break-word}.wp-block-button__link:active,.wp-block-button__link:focus,.wp-block-button__link:hover,.wp-block-button__link:visited{color:#fff}.wp-block-button__link.aligncenter{text-align:center}.wp-block-button__link.alignright{text-align:right}.wp-block-button.is-style-squared,.wp-block-button__link.wp-block-button.is-style-squared{border-radius:0}.wp-block-button.no-border-radius,.wp-block-button__link.no-border-radius{border-radius:0!important}.is-style-outline .wp-block-button__link,.wp-block-button__link.is-style-outline{color:#32373c;background-color:transparent;border:2px solid}.wp-block-buttons .wp-block-button{display:inline-block;margin-right:8px;margin-bottom:8px}.wp-block-buttons .wp-block-button:last-child{margin-right:0}.wp-block-buttons.alignright .wp-block-button{margin-right:0;margin-left:8px}.wp-block-buttons.alignright .wp-block-button:first-child{margin-left:0}.wp-block-buttons.alignleft .wp-block-button{margin-left:0;margin-right:8px}.wp-block-buttons.alignleft .wp-block-button:last-child{margin-right:0}.wp-block-button.aligncenter,.wp-block-buttons.aligncenter,.wp-block-calendar{text-align:center}.wp-block-calendar tbody td,.wp-block-calendar th{padding:4px;border:1px solid #ddd}.wp-block-calendar tfoot td{border:none}.wp-block-calendar table{width:100%;border-collapse:collapse;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif}.wp-block-calendar table th{font-weight:400;background:#ddd}.wp-block-calendar a{text-decoration:underline}.wp-block-calendar tfoot a{color:#007cba;color:var(--wp-admin-theme-color)}.wp-block-calendar table caption,.wp-block-calendar table tbody{color:#40464d}.wp-block-categories.alignleft{margin-right:2em}.wp-block-categories.alignright{margin-left:2em}.wp-block-columns{display:flex;margin-bottom:28px;flex-wrap:wrap}@media (min-width:782px){.wp-block-columns{flex-wrap:nowrap}}.wp-block-columns.has-background{padding:20px 38px}.wp-block-column{flex-grow:1;min-width:0;word-break:break-word;overflow-wrap:break-word}@media (max-width:599px){.wp-block-column{flex-basis:100%!important}}@media (min-width:600px) and (max-width:781px){.wp-block-column{flex-basis:calc(50% - 16px)!important;flex-grow:0}.wp-block-column:nth-child(2n){margin-left:32px}}@media (min-width:782px){.wp-block-column{flex-basis:0;flex-grow:1}.wp-block-column[style*=flex-basis]{flex-grow:0}.wp-block-column:not(:first-child){margin-left:32px}}.wp-block-columns.are-vertically-aligned-top{align-items:flex-start}.wp-block-columns.are-vertically-aligned-center{align-items:center}.wp-block-columns.are-vertically-aligned-bottom{align-items:flex-end}.wp-block-column.is-vertically-aligned-top{align-self:flex-start}.wp-block-column.is-vertically-aligned-center{-ms-grid-row-align:center;align-self:center}.wp-block-column.is-vertically-aligned-bottom{align-self:flex-end}.wp-block-column.is-vertically-aligned-bottom,.wp-block-column.is-vertically-aligned-center,.wp-block-column.is-vertically-aligned-top{width:100%}.wp-block-cover,.wp-block-cover-image{position:relative;background-size:cover;background-position:50%;min-height:430px;height:100%;width:100%;display:flex;justify-content:center;align-items:center;padding:16px}.wp-block-cover-image.has-parallax,.wp-block-cover.has-parallax{background-attachment:fixed}@supports (-webkit-overflow-scrolling:touch){.wp-block-cover-image.has-parallax,.wp-block-cover.has-parallax{background-attachment:scroll}}@media (prefers-reduced-motion:reduce){.wp-block-cover-image.has-parallax,.wp-block-cover.has-parallax{background-attachment:scroll}}.wp-block-cover-image.has-background-dim,.wp-block-cover.has-background-dim{background-color:#000}.wp-block-cover-image.has-background-dim:before,.wp-block-cover.has-background-dim:before{content:"";background-color:inherit}.wp-block-cover-image.has-background-dim:not(.has-background-gradient):before,.wp-block-cover-image .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim:not(.has-background-gradient):before,.wp-block-cover .wp-block-cover__gradient-background{position:absolute;top:0;left:0;bottom:0;right:0;z-index:1}.wp-block-cover-image.has-background-dim:not(.has-background-gradient):before,.wp-block-cover-image .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim:not(.has-background-gradient):before,.wp-block-cover .wp-block-cover__gradient-background{opacity:.5}.wp-block-cover-image.has-background-dim.has-background-dim-10:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-10:not(.has-background-gradient):before{opacity:.1}.wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background{opacity:.1}.wp-block-cover-image.has-background-dim.has-background-dim-20:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-20:not(.has-background-gradient):before{opacity:.2}.wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background{opacity:.2}.wp-block-cover-image.has-background-dim.has-background-dim-30:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-30:not(.has-background-gradient):before{opacity:.3}.wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background{opacity:.3}.wp-block-cover-image.has-background-dim.has-background-dim-40:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-40:not(.has-background-gradient):before{opacity:.4}.wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background{opacity:.4}.wp-block-cover-image.has-background-dim.has-background-dim-50:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-50:not(.has-background-gradient):before{opacity:.5}.wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background{opacity:.5}.wp-block-cover-image.has-background-dim.has-background-dim-60:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-60:not(.has-background-gradient):before{opacity:.6}.wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background{opacity:.6}.wp-block-cover-image.has-background-dim.has-background-dim-70:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-70:not(.has-background-gradient):before{opacity:.7}.wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background{opacity:.7}.wp-block-cover-image.has-background-dim.has-background-dim-80:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-80:not(.has-background-gradient):before{opacity:.8}.wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background{opacity:.8}.wp-block-cover-image.has-background-dim.has-background-dim-90:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-90:not(.has-background-gradient):before{opacity:.9}.wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background{opacity:.9}.wp-block-cover-image.has-background-dim.has-background-dim-100:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-100:not(.has-background-gradient):before{opacity:1}.wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background{opacity:1}.wp-block-cover-image.alignleft,.wp-block-cover-image.alignright,.wp-block-cover.alignleft,.wp-block-cover.alignright{max-width:290px;width:100%}.wp-block-cover-image:after,.wp-block-cover:after{display:block;content:"";font-size:0;min-height:inherit}@supports ((position:-webkit-sticky) or (position:sticky)){.wp-block-cover-image:after,.wp-block-cover:after{content:none}}.wp-block-cover-image.aligncenter,.wp-block-cover-image.alignleft,.wp-block-cover-image.alignright,.wp-block-cover.aligncenter,.wp-block-cover.alignleft,.wp-block-cover.alignright{display:flex}.wp-block-cover-image .wp-block-cover__inner-container,.wp-block-cover .wp-block-cover__inner-container{width:calc(100% - 70px);z-index:1;color:#fff}.wp-block-cover-image .wp-block-subhead:not(.has-text-color),.wp-block-cover-image h1:not(.has-text-color),.wp-block-cover-image h2:not(.has-text-color),.wp-block-cover-image h3:not(.has-text-color),.wp-block-cover-image h4:not(.has-text-color),.wp-block-cover-image h5:not(.has-text-color),.wp-block-cover-image h6:not(.has-text-color),.wp-block-cover-image p:not(.has-text-color),.wp-block-cover .wp-block-subhead:not(.has-text-color),.wp-block-cover h1:not(.has-text-color),.wp-block-cover h2:not(.has-text-color),.wp-block-cover h3:not(.has-text-color),.wp-block-cover h4:not(.has-text-color),.wp-block-cover h5:not(.has-text-color),.wp-block-cover h6:not(.has-text-color),.wp-block-cover p:not(.has-text-color){color:inherit}.wp-block-cover-image.is-position-top-left,.wp-block-cover.is-position-top-left{align-items:flex-start;justify-content:flex-start}.wp-block-cover-image.is-position-top-center,.wp-block-cover.is-position-top-center{align-items:flex-start;justify-content:center}.wp-block-cover-image.is-position-top-right,.wp-block-cover.is-position-top-right{align-items:flex-start;justify-content:flex-end}.wp-block-cover-image.is-position-center-left,.wp-block-cover.is-position-center-left{align-items:center;justify-content:flex-start}.wp-block-cover-image.is-position-center-center,.wp-block-cover.is-position-center-center{align-items:center;justify-content:center}.wp-block-cover-image.is-position-center-right,.wp-block-cover.is-position-center-right{align-items:center;justify-content:flex-end}.wp-block-cover-image.is-position-bottom-left,.wp-block-cover.is-position-bottom-left{align-items:flex-end;justify-content:flex-start}.wp-block-cover-image.is-position-bottom-center,.wp-block-cover.is-position-bottom-center{align-items:flex-end;justify-content:center}.wp-block-cover-image.is-position-bottom-right,.wp-block-cover.is-position-bottom-right{align-items:flex-end;justify-content:flex-end}.wp-block-cover-image.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container,.wp-block-cover.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container{margin:0;width:auto}.wp-block-cover__video-background{position:absolute;top:50%;left:50%;transform:translateX(-50%) translateY(-50%);width:100%;height:100%;z-index:0;object-fit:cover}.wp-block-cover-image-text,.wp-block-cover-text,section.wp-block-cover-image h2{color:#fff}.wp-block-cover-image-text a,.wp-block-cover-image-text a:active,.wp-block-cover-image-text a:focus,.wp-block-cover-image-text a:hover,.wp-block-cover-text a,.wp-block-cover-text a:active,.wp-block-cover-text a:focus,.wp-block-cover-text a:hover,section.wp-block-cover-image h2 a,section.wp-block-cover-image h2 a:active,section.wp-block-cover-image h2 a:focus,section.wp-block-cover-image h2 a:hover{color:#fff}.wp-block-cover-image .wp-block-cover.has-left-content{justify-content:flex-start}.wp-block-cover-image .wp-block-cover.has-right-content{justify-content:flex-end}.wp-block-cover-image.has-left-content .wp-block-cover-image-text,.wp-block-cover.has-left-content .wp-block-cover-text,section.wp-block-cover-image.has-left-content>h2{margin-left:0;text-align:left}.wp-block-cover-image.has-right-content .wp-block-cover-image-text,.wp-block-cover.has-right-content .wp-block-cover-text,section.wp-block-cover-image.has-right-content>h2{margin-right:0;text-align:right}.wp-block-cover-image .wp-block-cover-image-text,.wp-block-cover .wp-block-cover-text,section.wp-block-cover-image>h2{font-size:2em;line-height:1.25;z-index:1;margin-bottom:0;max-width:580px;padding:14px;text-align:center}.wp-block-embed.alignleft,.wp-block-embed.alignright,.wp-block[data-align=left]>[data-type^=core-embed],.wp-block[data-align=right]>[data-type^=core-embed]{max-width:360px;width:100%}.wp-block-embed.alignleft .wp-block-embed__wrapper,.wp-block-embed.alignright .wp-block-embed__wrapper,.wp-block[data-align=left]>[data-type^=core-embed] .wp-block-embed__wrapper,.wp-block[data-align=right]>[data-type^=core-embed] .wp-block-embed__wrapper{min-width:280px}.wp-block-embed{margin-bottom:1em}.wp-block-embed figcaption{margin-top:.5em;margin-bottom:1em}.wp-block-embed iframe{max-width:100%}.wp-block-embed__wrapper{position:relative}.wp-embed-responsive .wp-has-aspect-ratio .wp-block-embed__wrapper:before{content:"";display:block;padding-top:50%}.wp-embed-responsive .wp-has-aspect-ratio iframe{position:absolute;top:0;right:0;bottom:0;left:0;height:100%;width:100%}.wp-embed-responsive .wp-embed-aspect-21-9 .wp-block-embed__wrapper:before{padding-top:42.85%}.wp-embed-responsive .wp-embed-aspect-18-9 .wp-block-embed__wrapper:before{padding-top:50%}.wp-embed-responsive .wp-embed-aspect-16-9 .wp-block-embed__wrapper:before{padding-top:56.25%}.wp-embed-responsive .wp-embed-aspect-4-3 .wp-block-embed__wrapper:before{padding-top:75%}.wp-embed-responsive .wp-embed-aspect-1-1 .wp-block-embed__wrapper:before{padding-top:100%}.wp-embed-responsive .wp-embed-aspect-9-6 .wp-block-embed__wrapper:before{padding-top:66.66%}.wp-embed-responsive .wp-embed-aspect-1-2 .wp-block-embed__wrapper:before{padding-top:200%}.wp-block-file{margin-bottom:1.5em}.wp-block-file.aligncenter{text-align:center}.wp-block-file.alignright{text-align:right}.wp-block-file .wp-block-file__button{background:#32373c;border-radius:2em;color:#fff;font-size:13px;padding:.5em 1em}.wp-block-file a.wp-block-file__button{text-decoration:none}.wp-block-file a.wp-block-file__button:active,.wp-block-file a.wp-block-file__button:focus,.wp-block-file a.wp-block-file__button:hover,.wp-block-file a.wp-block-file__button:visited{box-shadow:none;color:#fff;opacity:.85;text-decoration:none}.wp-block-file *+.wp-block-file__button{margin-left:.75em}.blocks-gallery-grid,.wp-block-gallery{display:flex;flex-wrap:wrap;list-style-type:none;padding:0;margin:0}.blocks-gallery-grid .blocks-gallery-image,.blocks-gallery-grid .blocks-gallery-item,.wp-block-gallery .blocks-gallery-image,.wp-block-gallery .blocks-gallery-item{margin:0 16px 16px 0;display:flex;flex-grow:1;flex-direction:column;justify-content:center;position:relative}.blocks-gallery-grid .blocks-gallery-image figure,.blocks-gallery-grid .blocks-gallery-item figure,.wp-block-gallery .blocks-gallery-image figure,.wp-block-gallery .blocks-gallery-item figure{margin:0;height:100%}@supports ((position:-webkit-sticky) or (position:sticky)){.blocks-gallery-grid .blocks-gallery-image figure,.blocks-gallery-grid .blocks-gallery-item figure,.wp-block-gallery .blocks-gallery-image figure,.wp-block-gallery .blocks-gallery-item figure{display:flex;align-items:flex-end;justify-content:flex-start}}.blocks-gallery-grid .blocks-gallery-image img,.blocks-gallery-grid .blocks-gallery-item img,.wp-block-gallery .blocks-gallery-image img,.wp-block-gallery .blocks-gallery-item img{display:block;max-width:100%;height:auto;width:100%}@supports ((position:-webkit-sticky) or (position:sticky)){.blocks-gallery-grid .blocks-gallery-image img,.blocks-gallery-grid .blocks-gallery-item img,.wp-block-gallery .blocks-gallery-image img,.wp-block-gallery .blocks-gallery-item img{width:auto}}.blocks-gallery-grid .blocks-gallery-image figcaption,.blocks-gallery-grid .blocks-gallery-item figcaption,.wp-block-gallery .blocks-gallery-image figcaption,.wp-block-gallery .blocks-gallery-item figcaption{position:absolute;bottom:0;width:100%;max-height:100%;overflow:auto;padding:40px 10px 9px;color:#fff;text-align:center;font-size:13px;background:linear-gradient(0deg,rgba(0,0,0,.7),rgba(0,0,0,.3) 70%,transparent)}.blocks-gallery-grid .blocks-gallery-image figcaption img,.blocks-gallery-grid .blocks-gallery-item figcaption img,.wp-block-gallery .blocks-gallery-image figcaption img,.wp-block-gallery .blocks-gallery-item figcaption img{display:inline}.blocks-gallery-grid.is-cropped .blocks-gallery-image a,.blocks-gallery-grid.is-cropped .blocks-gallery-image img,.blocks-gallery-grid.is-cropped .blocks-gallery-item a,.blocks-gallery-grid.is-cropped .blocks-gallery-item img,.wp-block-gallery.is-cropped .blocks-gallery-image a,.wp-block-gallery.is-cropped .blocks-gallery-image img,.wp-block-gallery.is-cropped .blocks-gallery-item a,.wp-block-gallery.is-cropped .blocks-gallery-item img{width:100%}@supports ((position:-webkit-sticky) or (position:sticky)){.blocks-gallery-grid.is-cropped .blocks-gallery-image a,.blocks-gallery-grid.is-cropped .blocks-gallery-image img,.blocks-gallery-grid.is-cropped .blocks-gallery-item a,.blocks-gallery-grid.is-cropped .blocks-gallery-item img,.wp-block-gallery.is-cropped .blocks-gallery-image a,.wp-block-gallery.is-cropped .blocks-gallery-image img,.wp-block-gallery.is-cropped .blocks-gallery-item a,.wp-block-gallery.is-cropped .blocks-gallery-item img{height:100%;flex:1;object-fit:cover}}.blocks-gallery-grid .blocks-gallery-image,.blocks-gallery-grid .blocks-gallery-item,.wp-block-gallery .blocks-gallery-image,.wp-block-gallery .blocks-gallery-item{width:calc(50% - 16px)}.blocks-gallery-grid .blocks-gallery-image:nth-of-type(2n),.blocks-gallery-grid .blocks-gallery-item:nth-of-type(2n),.wp-block-gallery .blocks-gallery-image:nth-of-type(2n),.wp-block-gallery .blocks-gallery-item:nth-of-type(2n){margin-right:0}.blocks-gallery-grid.columns-1 .blocks-gallery-image,.blocks-gallery-grid.columns-1 .blocks-gallery-item,.wp-block-gallery.columns-1 .blocks-gallery-image,.wp-block-gallery.columns-1 .blocks-gallery-item{width:100%;margin-right:0}@media (min-width:600px){.blocks-gallery-grid.columns-3 .blocks-gallery-image,.blocks-gallery-grid.columns-3 .blocks-gallery-item,.wp-block-gallery.columns-3 .blocks-gallery-image,.wp-block-gallery.columns-3 .blocks-gallery-item{width:calc(33.33333% - 10.66667px);margin-right:16px}.blocks-gallery-grid.columns-4 .blocks-gallery-image,.blocks-gallery-grid.columns-4 .blocks-gallery-item,.wp-block-gallery.columns-4 .blocks-gallery-image,.wp-block-gallery.columns-4 .blocks-gallery-item{width:calc(25% - 12px);margin-right:16px}.blocks-gallery-grid.columns-5 .blocks-gallery-image,.blocks-gallery-grid.columns-5 .blocks-gallery-item,.wp-block-gallery.columns-5 .blocks-gallery-image,.wp-block-gallery.columns-5 .blocks-gallery-item{width:calc(20% - 12.8px);margin-right:16px}.blocks-gallery-grid.columns-6 .blocks-gallery-image,.blocks-gallery-grid.columns-6 .blocks-gallery-item,.wp-block-gallery.columns-6 .blocks-gallery-image,.wp-block-gallery.columns-6 .blocks-gallery-item{width:calc(16.66667% - 13.33333px);margin-right:16px}.blocks-gallery-grid.columns-7 .blocks-gallery-image,.blocks-gallery-grid.columns-7 .blocks-gallery-item,.wp-block-gallery.columns-7 .blocks-gallery-image,.wp-block-gallery.columns-7 .blocks-gallery-item{width:calc(14.28571% - 13.71429px);margin-right:16px}.blocks-gallery-grid.columns-8 .blocks-gallery-image,.blocks-gallery-grid.columns-8 .blocks-gallery-item,.wp-block-gallery.columns-8 .blocks-gallery-image,.wp-block-gallery.columns-8 .blocks-gallery-item{width:calc(12.5% - 14px);margin-right:16px}.blocks-gallery-grid.columns-1 .blocks-gallery-image:nth-of-type(1n),.blocks-gallery-grid.columns-1 .blocks-gallery-item:nth-of-type(1n),.wp-block-gallery.columns-1 .blocks-gallery-image:nth-of-type(1n),.wp-block-gallery.columns-1 .blocks-gallery-item:nth-of-type(1n){margin-right:0}.blocks-gallery-grid.columns-2 .blocks-gallery-image:nth-of-type(2n),.blocks-gallery-grid.columns-2 .blocks-gallery-item:nth-of-type(2n),.wp-block-gallery.columns-2 .blocks-gallery-image:nth-of-type(2n),.wp-block-gallery.columns-2 .blocks-gallery-item:nth-of-type(2n){margin-right:0}.blocks-gallery-grid.columns-3 .blocks-gallery-image:nth-of-type(3n),.blocks-gallery-grid.columns-3 .blocks-gallery-item:nth-of-type(3n),.wp-block-gallery.columns-3 .blocks-gallery-image:nth-of-type(3n),.wp-block-gallery.columns-3 .blocks-gallery-item:nth-of-type(3n){margin-right:0}.blocks-gallery-grid.columns-4 .blocks-gallery-image:nth-of-type(4n),.blocks-gallery-grid.columns-4 .blocks-gallery-item:nth-of-type(4n),.wp-block-gallery.columns-4 .blocks-gallery-image:nth-of-type(4n),.wp-block-gallery.columns-4 .blocks-gallery-item:nth-of-type(4n){margin-right:0}.blocks-gallery-grid.columns-5 .blocks-gallery-image:nth-of-type(5n),.blocks-gallery-grid.columns-5 .blocks-gallery-item:nth-of-type(5n),.wp-block-gallery.columns-5 .blocks-gallery-image:nth-of-type(5n),.wp-block-gallery.columns-5 .blocks-gallery-item:nth-of-type(5n){margin-right:0}.blocks-gallery-grid.columns-6 .blocks-gallery-image:nth-of-type(6n),.blocks-gallery-grid.columns-6 .blocks-gallery-item:nth-of-type(6n),.wp-block-gallery.columns-6 .blocks-gallery-image:nth-of-type(6n),.wp-block-gallery.columns-6 .blocks-gallery-item:nth-of-type(6n){margin-right:0}.blocks-gallery-grid.columns-7 .blocks-gallery-image:nth-of-type(7n),.blocks-gallery-grid.columns-7 .blocks-gallery-item:nth-of-type(7n),.wp-block-gallery.columns-7 .blocks-gallery-image:nth-of-type(7n),.wp-block-gallery.columns-7 .blocks-gallery-item:nth-of-type(7n){margin-right:0}.blocks-gallery-grid.columns-8 .blocks-gallery-image:nth-of-type(8n),.blocks-gallery-grid.columns-8 .blocks-gallery-item:nth-of-type(8n),.wp-block-gallery.columns-8 .blocks-gallery-image:nth-of-type(8n),.wp-block-gallery.columns-8 .blocks-gallery-item:nth-of-type(8n){margin-right:0}}.blocks-gallery-grid .blocks-gallery-image:last-child,.blocks-gallery-grid .blocks-gallery-item:last-child,.wp-block-gallery .blocks-gallery-image:last-child,.wp-block-gallery .blocks-gallery-item:last-child{margin-right:0}.blocks-gallery-grid.alignleft,.blocks-gallery-grid.alignright,.wp-block-gallery.alignleft,.wp-block-gallery.alignright{max-width:290px;width:100%}.blocks-gallery-grid.aligncenter .blocks-gallery-item figure,.wp-block-gallery.aligncenter .blocks-gallery-item figure{justify-content:center}h1.has-background,h2.has-background,h3.has-background,h4.has-background,h5.has-background,h6.has-background{padding:20px 38px}.wp-block-image{margin-bottom:1em}.wp-block-image img{max-width:100%}.wp-block-image.aligncenter{text-align:center}.wp-block-image.alignfull img,.wp-block-image.alignwide img{width:100%}.wp-block-image .aligncenter,.wp-block-image .alignleft,.wp-block-image .alignright,.wp-block-image.is-resized{display:table}.wp-block-image .aligncenter>figcaption,.wp-block-image .alignleft>figcaption,.wp-block-image .alignright>figcaption,.wp-block-image.is-resized>figcaption{display:table-caption;caption-side:bottom}.wp-block-image .alignleft{float:left;margin:.5em 1em .5em 0}.wp-block-image .alignright{float:right;margin:.5em 0 .5em 1em}.wp-block-image .aligncenter{margin-left:auto;margin-right:auto}.wp-block-image figcaption{margin-top:.5em;margin-bottom:1em}.is-style-circle-mask img,.is-style-rounded img{border-radius:9999px}@supports ((-webkit-mask-image:none) or (mask-image:none)) or (-webkit-mask-image:none){.is-style-circle-mask img{-webkit-mask-image:url('data:image/svg+xml;utf8,');mask-image:url('data:image/svg+xml;utf8,');mask-mode:alpha;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-position:center;mask-position:center;border-radius:0}}.wp-block-latest-comments__comment{font-size:15px;line-height:1.1;list-style:none;margin-bottom:1em}.has-avatars .wp-block-latest-comments__comment{min-height:36px;list-style:none}.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt,.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta{margin-left:52px}.has-dates .wp-block-latest-comments__comment,.has-excerpts .wp-block-latest-comments__comment{line-height:1.5}.wp-block-latest-comments__comment-excerpt p{font-size:14px;line-height:1.8;margin:5px 0 20px}.wp-block-latest-comments__comment-date{color:#8f98a1;display:block;font-size:12px}.wp-block-latest-comments .avatar,.wp-block-latest-comments__comment-avatar{border-radius:24px;display:block;float:left;height:40px;margin-right:12px;width:40px}.wp-block-latest-posts.alignleft{margin-right:2em}.wp-block-latest-posts.alignright{margin-left:2em}.wp-block-latest-posts.wp-block-latest-posts__list{list-style:none}.wp-block-latest-posts.wp-block-latest-posts__list li{clear:both}.wp-block-latest-posts.is-grid{display:flex;flex-wrap:wrap;padding:0}.wp-block-latest-posts.is-grid li{margin:0 20px 20px 0;width:100%}@media (min-width:600px){.wp-block-latest-posts.columns-2 li{width:calc(50% - 20px)}.wp-block-latest-posts.columns-3 li{width:calc(33.33333% - 20px)}.wp-block-latest-posts.columns-4 li{width:calc(25% - 20px)}.wp-block-latest-posts.columns-5 li{width:calc(20% - 20px)}.wp-block-latest-posts.columns-6 li{width:calc(16.66667% - 20px)}}.wp-block-latest-posts__post-author,.wp-block-latest-posts__post-date{display:block;color:#6c7781;font-size:13px}.wp-block-latest-posts__post-excerpt{margin-top:8px;margin-bottom:16px}.wp-block-latest-posts__featured-image img{height:auto;width:auto}.wp-block-latest-posts__featured-image.alignleft{margin-right:1em}.wp-block-latest-posts__featured-image.alignright{margin-left:1em}.wp-block-latest-posts__featured-image.aligncenter{margin-bottom:1em;text-align:center}.edit-post-visual-editor .wp-block-latest-posts.is-grid li{margin-bottom:20px}.wp-block-media-text{ + /*!rtl:begin:ignore*/direction:ltr; + /*!rtl:end:ignore*/display:-ms-grid;display:grid;-ms-grid-columns:50% 1fr;grid-template-columns:50% 1fr;-ms-grid-rows:auto;grid-template-rows:auto}.wp-block-media-text.has-media-on-the-right{-ms-grid-columns:1fr 50%;grid-template-columns:1fr 50%}.wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__content,.wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__media{-ms-grid-row-align:start;align-self:start}.wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__content,.wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__media,.wp-block-media-text .wp-block-media-text__content,.wp-block-media-text .wp-block-media-text__media{-ms-grid-row-align:center;align-self:center}.wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__content,.wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__media{-ms-grid-row-align:end;align-self:end}.wp-block-media-text .wp-block-media-text__media{ + /*!rtl:begin:ignore*/-ms-grid-column:1;grid-column:1;-ms-grid-row:1;grid-row:1; + /*!rtl:end:ignore*/margin:0}.wp-block-media-text .wp-block-media-text__content{direction:ltr; + /*!rtl:begin:ignore*/-ms-grid-column:2;grid-column:2;-ms-grid-row:1;grid-row:1; + /*!rtl:end:ignore*/padding:0 8%;word-break:break-word}.wp-block-media-text.has-media-on-the-right .wp-block-media-text__media{ + /*!rtl:begin:ignore*/-ms-grid-column:2;grid-column:2;-ms-grid-row:1;grid-row:1 + /*!rtl:end:ignore*/}.wp-block-media-text.has-media-on-the-right .wp-block-media-text__content{ + /*!rtl:begin:ignore*/-ms-grid-column:1;grid-column:1;-ms-grid-row:1;grid-row:1 + /*!rtl:end:ignore*/}.wp-block-media-text__media img,.wp-block-media-text__media video{max-width:unset;width:100%;vertical-align:middle}.wp-block-media-text.is-image-fill figure.wp-block-media-text__media{height:100%;min-height:250px;background-size:cover}.wp-block-media-text.is-image-fill figure.wp-block-media-text__media>img{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}@media (max-width:600px){.wp-block-media-text.is-stacked-on-mobile{-ms-grid-columns:100%!important;grid-template-columns:100%!important}.wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__media{-ms-grid-column:1;grid-column:1;-ms-grid-row:1;grid-row:1}.wp-block-media-text.is-stacked-on-mobile.has-media-on-the-right .wp-block-media-text__media,.wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content{-ms-grid-column:1;grid-column:1;-ms-grid-row:2;grid-row:2}.wp-block-media-text.is-stacked-on-mobile.has-media-on-the-right .wp-block-media-text__content{-ms-grid-column:1;grid-column:1;-ms-grid-row:1;grid-row:1}}.wp-block-navigation.is-style-light .wp-block-navigation-link:not(.has-text-color),.wp-block-navigation .wp-block-navigation-link:not(.has-text-color){color:#1e1e1e}.wp-block-navigation.is-style-light:not(.has-background) .wp-block-navigation__container,.wp-block-navigation:not(.has-background) .wp-block-navigation__container{background-color:#fff}.wp-block-navigation.is-style-dark .wp-block-navigation-link:not(.has-text-color){color:#fff}.wp-block-navigation.is-style-dark:not(.has-background) .wp-block-navigation__container{background-color:#1e1e1e}.items-justified-left>ul{justify-content:flex-start}.items-justified-center>ul{justify-content:center}.items-justified-right>ul{justify-content:flex-end}.wp-block-navigation-link{display:flex;align-items:center;position:relative;margin:0}.wp-block-navigation-link .wp-block-navigation__container:empty{display:none}.wp-block-navigation__container{list-style:none;margin:0;padding-left:0;display:flex;flex-wrap:wrap}.is-vertical .wp-block-navigation__container{display:block}.has-child .wp-block-navigation__container{border:1px solid rgba(0,0,0,.15);background-color:inherit;color:inherit;position:absolute;left:0;top:100%;width:fit-content;z-index:1;opacity:0;transition:opacity .1s linear;visibility:hidden}.has-child .wp-block-navigation__container>.wp-block-navigation-link>.wp-block-navigation-link__content{flex-grow:1}.has-child .wp-block-navigation__container>.wp-block-navigation-link>.wp-block-navigation-link__submenu-icon{padding-right:8px}@media (min-width:782px){.has-child .wp-block-navigation__container{left:24px}.has-child .wp-block-navigation__container .wp-block-navigation__container{left:100%;top:-1px}.has-child .wp-block-navigation__container .wp-block-navigation__container:before{content:"";position:absolute;right:100%;height:100%;display:block;width:8px;background:transparent}.has-child .wp-block-navigation__container .wp-block-navigation-link__submenu-icon svg{transform:rotate(0)}}.has-child:hover{cursor:pointer}.has-child:hover>.wp-block-navigation__container{visibility:visible;opacity:1;display:flex;flex-direction:column}.has-child:focus-within{cursor:pointer}.has-child:focus-within>.wp-block-navigation__container{visibility:visible;opacity:1;display:flex;flex-direction:column}.wp-block-navigation-link__content{text-decoration:none;padding:8px 16px}.wp-block-navigation-link__content+.wp-block-navigation-link__content{padding-top:0}.has-text-color .wp-block-navigation-link__content{color:inherit}.wp-block-navigation-link__label{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;word-break:normal;overflow-wrap:break-word}.wp-block-navigation-link__submenu-icon{height:inherit;padding:6px 16px}.wp-block-navigation-link__submenu-icon svg{fill:currentColor}@media (min-width:782px){.wp-block-navigation-link__submenu-icon svg{transform:rotate(90deg)}}.is-small-text{font-size:14px}.is-regular-text{font-size:16px}.is-large-text{font-size:36px}.is-larger-text{font-size:48px}.has-drop-cap:not(:focus):first-letter{float:left;font-size:8.4em;line-height:.68;font-weight:100;margin:.05em .1em 0 0;text-transform:uppercase;font-style:normal}p.has-background{padding:20px 38px}p.has-text-color a{color:inherit}.wp-block-post-author{display:flex;flex-wrap:wrap;line-height:1.5}.wp-block-post-author__byline{width:100%;margin-top:0;margin-bottom:0;font-size:.5em}.wp-block-post-author__avatar{margin-right:16px}.wp-block-post-author__bio{margin-bottom:8px;font-size:.7em}.wp-block-post-author__content{flex-grow:1;flex-basis:0}.wp-block-post-author__name{font-weight:700;margin:0}.wp-block-pullquote{padding:3em 0;margin-left:0;margin-right:0;text-align:center}.wp-block-pullquote.alignleft,.wp-block-pullquote.alignright{max-width:290px}.wp-block-pullquote.alignleft p,.wp-block-pullquote.alignright p{font-size:20px}.wp-block-pullquote p{font-size:28px;line-height:1.6}.wp-block-pullquote cite,.wp-block-pullquote footer{position:relative}.wp-block-pullquote .has-text-color a{color:inherit}.wp-block-pullquote:not(.is-style-solid-color){background:none}.wp-block-pullquote.is-style-solid-color{border:none}.wp-block-pullquote.is-style-solid-color blockquote{margin-left:auto;margin-right:auto;text-align:left;max-width:60%}.wp-block-pullquote.is-style-solid-color blockquote p{margin-top:0;margin-bottom:0;font-size:32px}.wp-block-pullquote.is-style-solid-color blockquote cite{text-transform:none;font-style:normal}.wp-block-pullquote cite{color:inherit}.wp-block-quote.is-large,.wp-block-quote.is-style-large{margin:0 0 16px;padding:0 1em}.wp-block-quote.is-large p,.wp-block-quote.is-style-large p{font-size:24px;font-style:italic;line-height:1.6}.wp-block-quote.is-large cite,.wp-block-quote.is-large footer,.wp-block-quote.is-style-large cite,.wp-block-quote.is-style-large footer{font-size:18px;text-align:right}.wp-block-rss.alignleft{margin-right:2em}.wp-block-rss.alignright{margin-left:2em}.wp-block-rss.is-grid{display:flex;flex-wrap:wrap;padding:0;list-style:none}.wp-block-rss.is-grid li{margin:0 16px 16px 0;width:100%}@media (min-width:600px){.wp-block-rss.columns-2 li{width:calc(50% - 16px)}.wp-block-rss.columns-3 li{width:calc(33.33333% - 16px)}.wp-block-rss.columns-4 li{width:calc(25% - 16px)}.wp-block-rss.columns-5 li{width:calc(20% - 16px)}.wp-block-rss.columns-6 li{width:calc(16.66667% - 16px)}}.wp-block-rss__item-author,.wp-block-rss__item-publish-date{display:block;color:#6c7781;font-size:13px}.wp-block-search{display:flex;flex-wrap:wrap}.wp-block-search .wp-block-search__label{width:100%}.wp-block-search .wp-block-search__input{flex-grow:1;max-width:360px}.wp-block-search .wp-block-search__button{margin-left:10px}.wp-block-separator.is-style-wide{border-bottom-width:1px}.wp-block-separator.is-style-dots{background:none!important;border:none;text-align:center;max-width:none;line-height:1;height:auto}.wp-block-separator.is-style-dots:before{content:"\00b7 \00b7 \00b7";color:currentColor;font-size:20px;letter-spacing:2em;padding-left:2em;font-family:serif}.wp-block-social-links{display:flex;justify-content:flex-start;padding-left:0;padding-right:0;margin-left:0}.wp-block-social-links .wp-social-link a,.wp-block-social-links .wp-social-link a:hover{text-decoration:none;border-bottom:0;box-shadow:none}.wp-social-link{display:block;width:36px;height:36px;border-radius:36px;margin-right:8px;transition:transform .1s ease}@media (prefers-reduced-motion:reduce){.wp-social-link{transition-duration:0s}}.wp-social-link a{padding:6px;display:block;line-height:0;transition:transform .1s ease}.wp-social-link a,.wp-social-link a:active,.wp-social-link a:hover,.wp-social-link a:visited,.wp-social-link svg{color:currentColor;fill:currentColor}.wp-social-link:hover{transform:scale(1.1)}.wp-block-social-links.aligncenter{justify-content:center;display:flex}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link{background-color:#f0f0f0;color:#444}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-amazon{background-color:#f90;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-bandcamp{background-color:#1ea0c3;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-behance{background-color:#0757fe;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-codepen{background-color:#1e1f26;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-deviantart{background-color:#02e49b;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dribbble{background-color:#e94c89;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dropbox{background-color:#4280ff;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-etsy{background-color:#f45800;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-facebook{background-color:#1778f2;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-fivehundredpx{background-color:#000;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-flickr{background-color:#0461dd;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-foursquare{background-color:#e65678;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-github{background-color:#24292d;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-goodreads{background-color:#eceadd;color:#382110}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-google{background-color:#ea4434;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-instagram{background-color:#f00075;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-lastfm{background-color:#e21b24;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-linkedin{background-color:#0d66c2;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-mastodon{background-color:#3288d4;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-medium{background-color:#02ab6c;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-meetup{background-color:#f6405f;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pinterest{background-color:#e60122;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pocket{background-color:#ef4155;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-reddit{background-color:#fe4500;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-skype{background-color:#0478d7;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-snapchat{background-color:#fefc00;color:#fff;stroke:#000}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-soundcloud{background-color:#ff5600;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-spotify{background-color:#1bd760;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tumblr{background-color:#011835;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitch{background-color:#6440a4;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitter{background-color:#1da1f2;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vimeo{background-color:#1eb7ea;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vk{background-color:#4680c2;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-wordpress{background-color:#3499cd;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-yelp{background-color:#d32422;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-youtube{background-color:red;color:#fff}.wp-block-social-links.is-style-logos-only .wp-social-link{background:none;padding:4px}.wp-block-social-links.is-style-logos-only .wp-social-link svg{width:28px;height:28px}.wp-block-social-links.is-style-logos-only .wp-social-link-amazon{color:#f90}.wp-block-social-links.is-style-logos-only .wp-social-link-bandcamp{color:#1ea0c3}.wp-block-social-links.is-style-logos-only .wp-social-link-behance{color:#0757fe}.wp-block-social-links.is-style-logos-only .wp-social-link-codepen{color:#1e1f26}.wp-block-social-links.is-style-logos-only .wp-social-link-deviantart{color:#02e49b}.wp-block-social-links.is-style-logos-only .wp-social-link-dribbble{color:#e94c89}.wp-block-social-links.is-style-logos-only .wp-social-link-dropbox{color:#4280ff}.wp-block-social-links.is-style-logos-only .wp-social-link-etsy{color:#f45800}.wp-block-social-links.is-style-logos-only .wp-social-link-facebook{color:#1778f2}.wp-block-social-links.is-style-logos-only .wp-social-link-fivehundredpx{color:#000}.wp-block-social-links.is-style-logos-only .wp-social-link-flickr{color:#0461dd}.wp-block-social-links.is-style-logos-only .wp-social-link-foursquare{color:#e65678}.wp-block-social-links.is-style-logos-only .wp-social-link-github{color:#24292d}.wp-block-social-links.is-style-logos-only .wp-social-link-goodreads{color:#382110}.wp-block-social-links.is-style-logos-only .wp-social-link-google{color:#ea4434}.wp-block-social-links.is-style-logos-only .wp-social-link-instagram{color:#f00075}.wp-block-social-links.is-style-logos-only .wp-social-link-lastfm{color:#e21b24}.wp-block-social-links.is-style-logos-only .wp-social-link-linkedin{color:#0d66c2}.wp-block-social-links.is-style-logos-only .wp-social-link-mastodon{color:#3288d4}.wp-block-social-links.is-style-logos-only .wp-social-link-medium{color:#02ab6c}.wp-block-social-links.is-style-logos-only .wp-social-link-meetup{color:#f6405f}.wp-block-social-links.is-style-logos-only .wp-social-link-pinterest{color:#e60122}.wp-block-social-links.is-style-logos-only .wp-social-link-pocket{color:#ef4155}.wp-block-social-links.is-style-logos-only .wp-social-link-reddit{color:#fe4500}.wp-block-social-links.is-style-logos-only .wp-social-link-skype{color:#0478d7}.wp-block-social-links.is-style-logos-only .wp-social-link-snapchat{color:#fff;stroke:#000}.wp-block-social-links.is-style-logos-only .wp-social-link-soundcloud{color:#ff5600}.wp-block-social-links.is-style-logos-only .wp-social-link-spotify{color:#1bd760}.wp-block-social-links.is-style-logos-only .wp-social-link-tumblr{color:#011835}.wp-block-social-links.is-style-logos-only .wp-social-link-twitch{color:#6440a4}.wp-block-social-links.is-style-logos-only .wp-social-link-twitter{color:#1da1f2}.wp-block-social-links.is-style-logos-only .wp-social-link-vimeo{color:#1eb7ea}.wp-block-social-links.is-style-logos-only .wp-social-link-vk{color:#4680c2}.wp-block-social-links.is-style-logos-only .wp-social-link-wordpress{color:#3499cd}.wp-block-social-links.is-style-logos-only .wp-social-link-yelp{background-color:#d32422;color:#fff}.wp-block-social-links.is-style-logos-only .wp-social-link-youtube{color:red}.wp-block-social-links.is-style-pill-shape .wp-social-link{width:auto}.wp-block-social-links.is-style-pill-shape .wp-social-link a{padding-left:16px;padding-right:16px}.wp-block-spacer{clear:both}p.wp-block-subhead{font-size:1.1em;font-style:italic;opacity:.75}.wp-block-table{overflow-x:auto}.wp-block-table table{width:100%}.wp-block-table .has-fixed-layout{table-layout:fixed;width:100%}.wp-block-table .has-fixed-layout td,.wp-block-table .has-fixed-layout th{word-break:break-word}.wp-block-table.aligncenter,.wp-block-table.alignleft,.wp-block-table.alignright{display:table;width:auto}.wp-block-table.aligncenter td,.wp-block-table.aligncenter th,.wp-block-table.alignleft td,.wp-block-table.alignleft th,.wp-block-table.alignright td,.wp-block-table.alignright th{word-break:break-word}.wp-block-table .has-subtle-light-gray-background-color{background-color:#f3f4f5}.wp-block-table .has-subtle-pale-green-background-color{background-color:#e9fbe5}.wp-block-table .has-subtle-pale-blue-background-color{background-color:#e7f5fe}.wp-block-table .has-subtle-pale-pink-background-color{background-color:#fcf0ef}.wp-block-table.is-style-stripes{border-spacing:0;border-collapse:inherit;background-color:transparent;border-bottom:1px solid #f0f0f0}.wp-block-table.is-style-stripes tbody tr:nth-child(odd){background-color:#f0f0f0}.wp-block-table.is-style-stripes.has-subtle-light-gray-background-color tbody tr:nth-child(odd){background-color:#f3f4f5}.wp-block-table.is-style-stripes.has-subtle-pale-green-background-color tbody tr:nth-child(odd){background-color:#e9fbe5}.wp-block-table.is-style-stripes.has-subtle-pale-blue-background-color tbody tr:nth-child(odd){background-color:#e7f5fe}.wp-block-table.is-style-stripes.has-subtle-pale-pink-background-color tbody tr:nth-child(odd){background-color:#fcf0ef}.wp-block-table.is-style-stripes td,.wp-block-table.is-style-stripes th{border-color:transparent}.wp-block-text-columns,.wp-block-text-columns.aligncenter{display:flex}.wp-block-text-columns .wp-block-column{margin:0 16px;padding:0}.wp-block-text-columns .wp-block-column:first-child{margin-left:0}.wp-block-text-columns .wp-block-column:last-child{margin-right:0}.wp-block-text-columns.columns-2 .wp-block-column{width:50%}.wp-block-text-columns.columns-3 .wp-block-column{width:33.33333%}.wp-block-text-columns.columns-4 .wp-block-column{width:25%}.wp-block-video{margin-left:0;margin-right:0}.wp-block-video video{max-width:100%}@supports ((position:-webkit-sticky) or (position:sticky)){.wp-block-video [poster]{object-fit:cover}}.wp-block-video.aligncenter{text-align:center}.wp-block-video figcaption{margin-top:.5em;margin-bottom:1em}:root .editor-styles-wrapper .has-pale-pink-background-color,:root .has-pale-pink-background-color{background-color:#f78da7}:root .editor-styles-wrapper .has-vivid-red-background-color,:root .has-vivid-red-background-color{background-color:#cf2e2e}:root .editor-styles-wrapper .has-luminous-vivid-orange-background-color,:root .has-luminous-vivid-orange-background-color{background-color:#ff6900}:root .editor-styles-wrapper .has-luminous-vivid-amber-background-color,:root .has-luminous-vivid-amber-background-color{background-color:#fcb900}:root .editor-styles-wrapper .has-light-green-cyan-background-color,:root .has-light-green-cyan-background-color{background-color:#7bdcb5}:root .editor-styles-wrapper .has-vivid-green-cyan-background-color,:root .has-vivid-green-cyan-background-color{background-color:#00d084}:root .editor-styles-wrapper .has-pale-cyan-blue-background-color,:root .has-pale-cyan-blue-background-color{background-color:#8ed1fc}:root .editor-styles-wrapper .has-vivid-cyan-blue-background-color,:root .has-vivid-cyan-blue-background-color{background-color:#0693e3}:root .editor-styles-wrapper .has-vivid-purple-background-color,:root .has-vivid-purple-background-color{background-color:#9b51e0}:root .editor-styles-wrapper .has-white-background-color,:root .has-white-background-color{background-color:#fff}:root .editor-styles-wrapper .has-very-light-gray-background-color,:root .has-very-light-gray-background-color{background-color:#eee}:root .editor-styles-wrapper .has-cyan-bluish-gray-background-color,:root .has-cyan-bluish-gray-background-color{background-color:#abb8c3}:root .editor-styles-wrapper .has-very-dark-gray-background-color,:root .has-very-dark-gray-background-color{background-color:#313131}:root .editor-styles-wrapper .has-black-background-color,:root .has-black-background-color{background-color:#000}:root .editor-styles-wrapper .has-pale-pink-color,:root .has-pale-pink-color{color:#f78da7}:root .editor-styles-wrapper .has-vivid-red-color,:root .has-vivid-red-color{color:#cf2e2e}:root .editor-styles-wrapper .has-luminous-vivid-orange-color,:root .has-luminous-vivid-orange-color{color:#ff6900}:root .editor-styles-wrapper .has-luminous-vivid-amber-color,:root .has-luminous-vivid-amber-color{color:#fcb900}:root .editor-styles-wrapper .has-light-green-cyan-color,:root .has-light-green-cyan-color{color:#7bdcb5}:root .editor-styles-wrapper .has-vivid-green-cyan-color,:root .has-vivid-green-cyan-color{color:#00d084}:root .editor-styles-wrapper .has-pale-cyan-blue-color,:root .has-pale-cyan-blue-color{color:#8ed1fc}:root .editor-styles-wrapper .has-vivid-cyan-blue-color,:root .has-vivid-cyan-blue-color{color:#0693e3}:root .editor-styles-wrapper .has-vivid-purple-color,:root .has-vivid-purple-color{color:#9b51e0}:root .editor-styles-wrapper .has-white-color,:root .has-white-color{color:#fff}:root .editor-styles-wrapper .has-very-light-gray-color,:root .has-very-light-gray-color{color:#eee}:root .editor-styles-wrapper .has-cyan-bluish-gray-color,:root .has-cyan-bluish-gray-color{color:#abb8c3}:root .editor-styles-wrapper .has-very-dark-gray-color,:root .has-very-dark-gray-color{color:#313131}:root .editor-styles-wrapper .has-black-color,:root .has-black-color{color:#000}:root .editor-styles-wrapper .has-vivid-cyan-blue-to-vivid-purple-gradient-background,:root .has-vivid-cyan-blue-to-vivid-purple-gradient-background{background:linear-gradient(135deg,#0693e3,#9b51e0)}:root .editor-styles-wrapper .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background,:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .editor-styles-wrapper .has-light-green-cyan-to-vivid-green-cyan-gradient-background,:root .has-light-green-cyan-to-vivid-green-cyan-gradient-background{background:linear-gradient(135deg,#7adcb4,#00d082)}:root .editor-styles-wrapper .has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background,:root .has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background:linear-gradient(135deg,#fcb900,#ff6900)}:root .editor-styles-wrapper .has-luminous-vivid-orange-to-vivid-red-gradient-background,:root .has-luminous-vivid-orange-to-vivid-red-gradient-background{background:linear-gradient(135deg,#ff6900,#cf2e2e)}:root .editor-styles-wrapper .has-very-light-gray-to-cyan-bluish-gray-gradient-background,:root .has-very-light-gray-to-cyan-bluish-gray-gradient-background{background:linear-gradient(135deg,#eee,#a9b8c3)}:root .editor-styles-wrapper .has-cool-to-warm-spectrum-gradient-background,:root .has-cool-to-warm-spectrum-gradient-background{background:linear-gradient(135deg,#4aeadc,#9778d1 20%,#cf2aba 40%,#ee2c82 60%,#fb6962 80%,#fef84c)}:root .editor-styles-wrapper .has-blush-light-purple-gradient-background,:root .has-blush-light-purple-gradient-background{background:linear-gradient(135deg,#ffceec,#9896f0)}:root .editor-styles-wrapper .has-blush-bordeaux-gradient-background,:root .has-blush-bordeaux-gradient-background{background:linear-gradient(135deg,#fecda5,#fe2d2d 50%,#6b003e)}:root .editor-styles-wrapper .has-purple-crush-gradient-background,:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .editor-styles-wrapper .has-luminous-dusk-gradient-background,:root .has-luminous-dusk-gradient-background{background:linear-gradient(135deg,#ffcb70,#c751c0 50%,#4158d0)}:root .editor-styles-wrapper .has-hazy-dawn-gradient-background,:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .editor-styles-wrapper .has-pale-ocean-gradient-background,:root .has-pale-ocean-gradient-background{background:linear-gradient(135deg,#fff5cb,#b6e3d4 50%,#33a7b5)}:root .editor-styles-wrapper .has-electric-grass-gradient-background,:root .has-electric-grass-gradient-background{background:linear-gradient(135deg,#caf880,#71ce7e)}:root .editor-styles-wrapper .has-subdued-olive-gradient-background,:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .editor-styles-wrapper .has-atomic-cream-gradient-background,:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .editor-styles-wrapper .has-nightshade-gradient-background,:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .editor-styles-wrapper .has-midnight-gradient-background,:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root .editor-styles-wrapper .has-link-color a,:root .has-link-color a{color:#00e;color:var(--wp--style--color--link,#00e)}.editor-styles-wrapper .has-small-font-size,.has-small-font-size{font-size:13px}.editor-styles-wrapper .has-normal-font-size,.editor-styles-wrapper .has-regular-font-size,.has-normal-font-size,.has-regular-font-size{font-size:16px}.editor-styles-wrapper .has-medium-font-size,.has-medium-font-size{font-size:20px}.editor-styles-wrapper .has-large-font-size,.has-large-font-size{font-size:36px}.editor-styles-wrapper .has-huge-font-size,.editor-styles-wrapper .has-larger-font-size,.has-huge-font-size,.has-larger-font-size{font-size:42px}.has-text-align-center{text-align:center}.has-text-align-left{text-align:left}.has-text-align-right{text-align:right}#end-resizable-editor-section{display:none}.aligncenter{clear:both} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/78ad953c44dbdcd56fe689bdde38a82f9fa0dc37.00000064.xml b/www/.content.EZtzwPjb/html/78ad953c44dbdcd56fe689bdde38a82f9fa0dc37.00000064.xml new file mode 100644 index 0000000..a8a66d3 --- /dev/null +++ b/www/.content.EZtzwPjb/html/78ad953c44dbdcd56fe689bdde38a82f9fa0dc37.00000064.xml @@ -0,0 +1,17 @@ + + + Commentaires sur : World Community Grid, quoi ? + + http://blog.hugopoi.net/2011/03/31/world-community-grid-quoi/ + Internet, Hardware et Bidouille + Tue, 29 Jul 2014 07:21:09 +0000 + hourly + 1 + http://wordpress.org/?v=3.9.2 + + diff --git a/www/.content.EZtzwPjb/html/78b4d99c5f776faea7be96e454143aeeeded0a6e.00000405.html b/www/.content.EZtzwPjb/html/78b4d99c5f776faea7be96e454143aeeeded0a6e.00000405.html new file mode 100644 index 0000000..c26f474 --- /dev/null +++ b/www/.content.EZtzwPjb/html/78b4d99c5f776faea7be96e454143aeeeded0a6e.00000405.html @@ -0,0 +1,382 @@ + + + + + + + extension – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                      +
                      +
                      +
                      + +
                      +
                      +
                      +
                      +
                      +

                      Plugin WordPress

                      Cela va faire plus d’un mois que j’ai ouvert mon blog, j’ai donc pu prendre en main le CMS WordPress. Alors je vais faire un petit retour sur les plugins que j’ai trouvés et plus particulièrement ceux que j’utilise.

                      +

                      Dans la catégorie Décoration j’ai adopté :

                      +

                      TweetMeme Retweet Button

                      +

                      Ajoute un joli bouton TweetMeme pour RT mes articles.

                      +

                      TwitterWidget

                      +

                      Ajoute un Widget qui permet d’afficher ma Timeline Twitter sur la sidebar du blog.

                      +

                      Contact Form 7

                      +

                      Permet de créer des formulaires de contact, c’est simple et sobre. Je l’ai utilisé pour ma page contact.

                      +

                      Dans la catégorie Administration et Maintenance :

                      +

                      WP Maintenance Mode

                      +

                      Cette extension permet de passer le blog en mode maintenance, avec la possibilité de personnaliser la page affichée et elle dispose d’un compte à rebours.

                      +

                      (suite…)

                      +
                      Par HugoPoi, il y a
                      +
                      + +
                      +
                      +
                      +
                      + +
                      +
                      + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/78ccb1decb9b5220e8102af4f2540833e6996abe.00000587.js b/www/.content.EZtzwPjb/html/78ccb1decb9b5220e8102af4f2540833e6996abe.00000587.js new file mode 100644 index 0000000..3349cf3 --- /dev/null +++ b/www/.content.EZtzwPjb/html/78ccb1decb9b5220e8102af4f2540833e6996abe.00000587.js @@ -0,0 +1,298 @@ +(function($) { + + $(function() { + try { + if (typeof _wpcf7 == 'undefined' || _wpcf7 === null) + _wpcf7 = {}; + + _wpcf7 = $.extend({ cached: 0 }, _wpcf7); + + _wpcf7.supportHtml5 = $.wpcf7SupportHtml5(); + + $('div.wpcf7 > form').ajaxForm({ + beforeSubmit: function(formData, jqForm, options) { + jqForm.wpcf7ClearResponseOutput(); + jqForm.find('img.ajax-loader').css({ visibility: 'visible' }); + return true; + }, + beforeSerialize: function(jqForm, options) { + jqForm.find('[placeholder].placeheld').each(function(i, n) { + $(n).val(''); + }); + return true; + }, + data: { '_wpcf7_is_ajax_call': 1 }, + dataType: 'json', + success: function(data) { + if (! $.isPlainObject(data) || $.isEmptyObject(data)) + return; + + var ro = $(data.into).find('div.wpcf7-response-output'); + $(data.into).wpcf7ClearResponseOutput(); + + $(data.into).find('.wpcf7-form-control').removeClass('wpcf7-not-valid'); + $(data.into).find('form.wpcf7-form').removeClass('invalid spam sent failed'); + + if (data.captcha) + $(data.into).wpcf7RefillCaptcha(data.captcha); + + if (data.quiz) + $(data.into).wpcf7RefillQuiz(data.quiz); + + if (data.invalids) { + $.each(data.invalids, function(i, n) { + $(data.into).find(n.into).wpcf7NotValidTip(n.message); + $(data.into).find(n.into).find('.wpcf7-form-control').addClass('wpcf7-not-valid'); + }); + + ro.addClass('wpcf7-validation-errors'); + $(data.into).find('form.wpcf7-form').addClass('invalid'); + + $(data.into).trigger('invalid.wpcf7'); + + } else if (1 == data.spam) { + ro.addClass('wpcf7-spam-blocked'); + $(data.into).find('form.wpcf7-form').addClass('spam'); + + $(data.into).trigger('spam.wpcf7'); + + } else if (1 == data.mailSent) { + ro.addClass('wpcf7-mail-sent-ok'); + $(data.into).find('form.wpcf7-form').addClass('sent'); + + if (data.onSentOk) + $.each(data.onSentOk, function(i, n) { eval(n) }); + + $(data.into).trigger('mailsent.wpcf7'); + + } else { + ro.addClass('wpcf7-mail-sent-ng'); + $(data.into).find('form.wpcf7-form').addClass('failed'); + + $(data.into).trigger('mailfailed.wpcf7'); + } + + if (data.onSubmit) + $.each(data.onSubmit, function(i, n) { eval(n) }); + + $(data.into).trigger('submit.wpcf7'); + + if (1 == data.mailSent) + $(data.into).find('form').resetForm().clearForm(); + + $(data.into).find('[placeholder].placeheld').each(function(i, n) { + $(n).val($(n).attr('placeholder')); + }); + + $(data.into).wpcf7FillResponseOutput(data.message); + }, + error: function(xhr, status, error, $form) { + var e = $('
                      ').text(error.message); + $form.after(e); + } + }); + + $('div.wpcf7 > form').wpcf7InitForm(); + + } catch (e) { + } + }); + + $.fn.wpcf7InitForm = function() { + return this.each(function(i, n) { + var $f = $(n); + + if (_wpcf7.cached) + $f.wpcf7OnloadRefill(); + + $f.wpcf7ToggleSubmit(); + + $f.find('.wpcf7-submit').wpcf7AjaxLoader(); + + $f.find('.wpcf7-acceptance').click(function() { + $f.wpcf7ToggleSubmit(); + }); + + $f.find('.wpcf7-exclusive-checkbox').wpcf7ExclusiveCheckbox(); + + $f.find('[placeholder]').wpcf7Placeholder(); + + if (_wpcf7.jqueryUi && ! _wpcf7.supportHtml5.date) { + $f.find('input.wpcf7-date[type="date"]').each(function() { + $(this).datepicker({ + dateFormat: 'yy-mm-dd', + minDate: new Date($(this).attr('min')), + maxDate: new Date($(this).attr('max')) + }); + }); + } + + if (_wpcf7.jqueryUi && ! _wpcf7.supportHtml5.number) { + $f.find('input.wpcf7-number[type="number"]').each(function() { + $(this).spinner({ + min: $(this).attr('min'), + max: $(this).attr('max'), + step: $(this).attr('step') + }); + }); + } + }); + }; + + $.fn.wpcf7ExclusiveCheckbox = function() { + return this.find('input:checkbox').click(function() { + $(this).closest('.wpcf7-checkbox').find('input:checkbox').not(this).removeAttr('checked'); + }); + }; + + $.fn.wpcf7Placeholder = function() { + if (_wpcf7.supportHtml5.placeholder) + return this; + + return this.each(function() { + $(this).val($(this).attr('placeholder')); + $(this).addClass('placeheld'); + + $(this).focus(function() { + if ($(this).hasClass('placeheld')) + $(this).val('').removeClass('placeheld'); + }); + + $(this).blur(function() { + if ('' == $(this).val()) { + $(this).val($(this).attr('placeholder')); + $(this).addClass('placeheld'); + } + }); + }); + }; + + $.fn.wpcf7AjaxLoader = function() { + return this.each(function() { + var loader = $('') + .attr({ src: _wpcf7.loaderUrl, alt: _wpcf7.sending }) + .css('visibility', 'hidden'); + + $(this).after(loader); + }); + }; + + $.fn.wpcf7ToggleSubmit = function() { + return this.each(function() { + var form = $(this); + if (this.tagName.toLowerCase() != 'form') + form = $(this).find('form').first(); + + if (form.hasClass('wpcf7-acceptance-as-validation')) + return; + + var submit = form.find('input:submit'); + if (! submit.length) return; + + var acceptances = form.find('input:checkbox.wpcf7-acceptance'); + if (! acceptances.length) return; + + submit.removeAttr('disabled'); + acceptances.each(function(i, n) { + n = $(n); + if (n.hasClass('wpcf7-invert') && n.is(':checked') + || ! n.hasClass('wpcf7-invert') && ! n.is(':checked')) + submit.attr('disabled', 'disabled'); + }); + }); + }; + + $.fn.wpcf7NotValidTip = function(message) { + return this.each(function() { + var into = $(this); + into.append('' + message + ''); + $('span.wpcf7-not-valid-tip').mouseover(function() { + $(this).fadeOut('fast'); + }); + into.find(':input').mouseover(function() { + into.find('.wpcf7-not-valid-tip').not(':hidden').fadeOut('fast'); + }); + into.find(':input').focus(function() { + into.find('.wpcf7-not-valid-tip').not(':hidden').fadeOut('fast'); + }); + }); + }; + + $.fn.wpcf7OnloadRefill = function() { + return this.each(function() { + var url = $(this).attr('action'); + if (0 < url.indexOf('#')) + url = url.substr(0, url.indexOf('#')); + + var id = $(this).find('input[name="_wpcf7"]').val(); + var unitTag = $(this).find('input[name="_wpcf7_unit_tag"]').val(); + + $.getJSON(url, + { _wpcf7_is_ajax_call: 1, _wpcf7: id, _wpcf7_request_ver: $.now() }, + function(data) { + if (data && data.captcha) + $('#' + unitTag).wpcf7RefillCaptcha(data.captcha); + + if (data && data.quiz) + $('#' + unitTag).wpcf7RefillQuiz(data.quiz); + } + ); + }); + }; + + $.fn.wpcf7RefillCaptcha = function(captcha) { + return this.each(function() { + var form = $(this); + + $.each(captcha, function(i, n) { + form.find(':input[name="' + i + '"]').clearFields(); + form.find('img.wpcf7-captcha-' + i).attr('src', n); + var match = /([0-9]+)\.(png|gif|jpeg)$/.exec(n); + form.find('input:hidden[name="_wpcf7_captcha_challenge_' + i + '"]').attr('value', match[1]); + }); + }); + }; + + $.fn.wpcf7RefillQuiz = function(quiz) { + return this.each(function() { + var form = $(this); + + $.each(quiz, function(i, n) { + form.find(':input[name="' + i + '"]').clearFields(); + form.find(':input[name="' + i + '"]').siblings('span.wpcf7-quiz-label').text(n[0]); + form.find('input:hidden[name="_wpcf7_quiz_answer_' + i + '"]').attr('value', n[1]); + }); + }); + }; + + $.fn.wpcf7ClearResponseOutput = function() { + return this.each(function() { + $(this).find('div.wpcf7-response-output').hide().empty().removeClass('wpcf7-mail-sent-ok wpcf7-mail-sent-ng wpcf7-validation-errors wpcf7-spam-blocked'); + $(this).find('span.wpcf7-not-valid-tip').remove(); + $(this).find('img.ajax-loader').css({ visibility: 'hidden' }); + }); + }; + + $.fn.wpcf7FillResponseOutput = function(message) { + return this.each(function() { + $(this).find('div.wpcf7-response-output').append(message).slideDown('fast'); + }); + }; + + $.wpcf7SupportHtml5 = function() { + var features = {}; + var input = document.createElement('input'); + + features.placeholder = 'placeholder' in input; + + var inputTypes = ['email', 'url', 'tel', 'number', 'range', 'date']; + + $.each(inputTypes, function(index, value) { + input.setAttribute('type', value); + features[value] = input.type !== 'text'; + }); + + return features; + }; + +})(jQuery); \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/790933c2929de9d6d46916872766d3758272746b.00000783.js b/www/.content.EZtzwPjb/html/790933c2929de9d6d46916872766d3758272746b.00000783.js new file mode 100644 index 0000000..af125db --- /dev/null +++ b/www/.content.EZtzwPjb/html/790933c2929de9d6d46916872766d3758272746b.00000783.js @@ -0,0 +1 @@ +jQuery(document).ready(function(r){function n(t){var e=r(t);e.prop("disabled")||e.closest(".form-group").addClass("is-focused")}function e(t){var o=!1;(t.is(r.material.options.checkboxElements)||t.is(r.material.options.radioElements))&&(o=!0),t.closest("label").hover(function(){var t,e,a=r(this).find("input"),i=a.prop("disabled");o&&(t=r(this),e=i,(t.hasClass("checkbox-inline")||t.hasClass("radio-inline")?t:t.closest(".checkbox").length?t.closest(".checkbox"):t.closest(".radio")).toggleClass("disabled",e)),i||n(a)},function(){a(r(this).find("input"))})}function a(t){r(t).closest(".form-group").removeClass("is-focused")}r.expr[":"].notmdproc=function(t){return!r(t).data("mdproc")},r.material={options:{validate:!0,input:!0,ripples:!0,checkbox:!0,togglebutton:!0,radio:!0,arrive:!0,autofill:!1,withRipples:[".btn:not(.btn-link)",".card-image",".navbar a:not(.withoutripple)",".dropdown-menu a",".nav-tabs a:not(.withoutripple)",".withripple",".pagination li:not(.active):not(.disabled) a:not(.withoutripple)"].join(","),inputElements:"input.form-control, textarea.form-control, select.form-control",checkboxElements:".checkbox > label > input[type=checkbox], label.checkbox-inline > input[type=checkbox]",togglebuttonElements:".togglebutton > label > input[type=checkbox]",radioElements:".radio > label > input[type=radio], label.radio-inline > input[type=radio]"},checkbox:function(t){e(r(t||this.options.checkboxElements).filter(":notmdproc").data("mdproc",!0).after(''))},togglebutton:function(t){e(r(t||this.options.togglebuttonElements).filter(":notmdproc").data("mdproc",!0).after(''))},radio:function(t){e(r(t||this.options.radioElements).filter(":notmdproc").data("mdproc",!0).after(''))},input:function(t){r(t||this.options.inputElements).filter(":notmdproc").data("mdproc",!0).each(function(){var a=r(this),i=a.closest(".form-group");if(0!==i.length||"hidden"===a.attr("type")||a.attr("hidden")||a.parents(".pirate_forms").length||(a.wrap('
                      '),i=a.closest(".form-group")),0===i.length&&"hidden"!==a.attr("type")&&!a.attr("hidden")&&a.parents(".pirate_forms").length){var t=a.prev();"checkbox"===a.attr("type")&&(t=a.next()),a.add(t).wrapAll('
                      '),i=a.closest(".form-group")}a.attr("data-hint")&&(a.after('

                      '+a.attr("data-hint")+"

                      "),a.removeAttr("data-hint"));if(r.each({"input-lg":"form-group-lg","input-sm":"form-group-sm"},function(t,e){a.hasClass(t)&&(a.removeClass(t),i.addClass(e))}),a.hasClass("floating-label")){var e=a.attr("placeholder");a.attr("placeholder",null).removeClass("floating-label");var o=a.attr("id"),n="";o&&(n='for="'+o+'"'),i.addClass("label-floating"),a.after("")}null!==a.val()&&"undefined"!==a.val()&&""!==a.val()||i.addClass("is-empty"),0 '+e+" ").insertBefore(t)}},l.hestia={init:function(){this.navSearch(),this.getPortfolioModalData(),this.fixHeaderPadding(),this.headerSpacingFrontpage(),this.initCarousel(),this.initCarouselSwipe(),this.scrollToTop(),this.detectIos(),this.parallaxHeader(),this.addViewCart(),this.setSearchSizeInput(),this.setControlLabel(),this.styleDefaultSubscribeWidget(),this.fixElementorTemplates(),this.handleGutenbergAlignment()},fixElementorTemplates:function(){if(l(".elementor").length<=0)return!1;var t=l(".navbar").outerHeight();return l(".elementor-template-full-width header").css("margin-bottom",t),l(".page-template-template-fullwidth .main.classic-blog").css("margin-top",t),!1},navSearch:function(){l(".hestia-toggle-search").on("click",function(){l(".navbar").toggleClass("nav-searching");var t=l(".nav-searching");t.find(".hestia-nav-search").addClass("is-focused"),t.find(".hestia-nav-search").find(".search-field").focus(),l(this).find("i").fadeOut(200,function(){l(this).toggleClass("fa-search"),l(this).toggleClass("fa-times")}).fadeIn(200)})},getPortfolioModalData:function(){l("#portfolio").find('a[data-toggle="modal"]').on("click",function(t){t.preventDefault();var e=l(this).data("pid");l.ajax({url:requestpost.ajaxurl,type:"post",data:{action:"hestia_get_portfolio_item_data",pid:e},success:function(t){var e=l(".hestia-portfolio-modal");e.find(".modal-content").html(t),e.on("hidden.bs.modal",function(){l(this).find(".modal-content").html('
                      ')})}})})},fixHeaderPadding:function(){var t=l(".navbar-fixed-top").outerHeight(),e=window.matchMedia("(max-width: 600px)");if(l("#wpadminbar").length&&e.matches?(l(".wrapper.classic-blog").find(".main").css("margin-top",t-46),l(".carousel .item .container").css("padding-top",t+50-46),l(".home.page.page-template-default .navbar").hasClass("no-slider")&&l(".home.page.page-template-default .main").css("margin-top",t-46)):(l(".header-layout-classic-blog").find(".main").css("margin-top",t),l(".carousel .item .container").css("padding-top",t+50),l(".home.page.page-template-default .navbar").hasClass("no-slider")&&l(".home.page.page-template-default .main").css("margin-top",t)),768 div[id^=product].product").css("margin-top",-o)}else l(".page-header.header-small .container , .woocommerce.single-product .blog-post .col-md-12 > div[id^=product].product").removeAttr("style");l(".no-content").length&&l(".page-header.header-small").css("min-height",t+230)},headerSpacingFrontpage:function(){if((!this.inIframe()||!this.isMobileUA())&&0')})},setSearchSizeInput:function(){0'),t.find("p.sib-NAME-area").before(''),t.find(".form-group").each(function(){l(this).addClass("is-empty")})},handleGutenbergAlignment:function(){var t=l("body");if(t.hasClass("page-template-template-pagebuilder-full-width")||t.hasClass("page-template-template-pagebuilder-blank")||t.hasClass("page-template-template-page-sidebar"))return!1;if(0a?e&&(e=!1,t.removeClass("navbar-transparent"),t.addClass("navbar-not-transparent")):e||(e=!0,t.addClass("navbar-transparent"),t.removeClass("navbar-not-transparent")))},17))}},handleResponsiveDropdowns:function(){if(768 a .caret-wrap").on("click touchend",function(t){var e=l(this);t.preventDefault(),t.stopPropagation(),l(e).toggleClass("caret-open"),l(e).parent().siblings().toggleClass("open")})},smoothScroll:function(){l('.navbar a[href*="#"], a.btn[href*="#"]').click(function(){if("#"===l(this).attr("href"))return!1;if(location.pathname.replace(/^\//,"")===this.pathname.replace(/^\//,"")&&location.hostname===this.hostname){var t=l(this.hash);if((t=t.length?t:l("[name="+this.hash.slice(1)+"]")).length)return l("html,body").animate({scrollTop:t.offset().top-l.utilitiesFunctions.verifyNavHeight()},1200),l(".navbar .navbar-collapse").hasClass("in")&&l(".navbar .navbar-collapse.in").removeClass("in"),l("body").hasClass("menu-open")&&(l("body").removeClass("menu-open"),l(".navbar-collapse").css("height","0"),l(".navbar-toggle").attr("aria-expanded","false")),!1}})},activeParentLink:function(){l(".navbar .dropdown > a").click(function(){return"#"===l(this).attr("href")||(location.href=this.href),!1})},highlightMenu:function(){l(window).on("scroll",function(){if(l("body").hasClass("home")&&751<=l(window).width()){var n=l(window).scrollTop(),r=l(".navbar").outerHeight(),s="no";l("#carousel-hestia-generic, section").each(function(){var t="#"+l(this).attr("id"),e=l(this).offset().top,a=l(this).outerHeight(),i=e-r,o=e+a-r;if(n+l.utilitiesFunctions.verifyNavHeight()>=i&&n+l.utilitiesFunctions.verifyNavHeight()<=o)return s="yes",l("nav .on-section").removeClass("on-section"),l('nav a[href$="'+t+'"]').parent("li").addClass("on-section"),!1;"no"===s&&l("nav .on-section").removeClass("on-section")})}})},setBodyOverflow:function(){var t=l("#main-navigation");t.on("show.bs.collapse",function(){l("body").addClass("menu-open")}),t.on("hidden.bs.collapse",function(){l("body").removeClass("menu-open")})},repositionDropdowns:function(){var n=window.innerWidth;if(n<=768)return!1;var t=l(".dropdown-menu");return 0===t.length||l.each(t,function(t,e){var a=l(e),i=a.offset().left;/webkit.*mobile/i.test(navigator.userAgent)&&(i-=window.scrollX);var o=a.outerWidth();n<=i+o&&l(e).css({right:"100%",left:"auto"})}),!1}};var e=0;l.hestiaNavBarScroll={checkNavbarScrollPoint:function(){if(0===l(".navbar-header").length)return!1;if(768<=l.utilitiesFunctions.getWidth()){if(void 0!==l(".navbar-header").offset()){var t=l(".navbar-header").offset().top;/webkit.*mobile/i.test(navigator.userAgent)&&(t-=window.scrollY),e=t+l(".navbar-header").height()}0===l(".hestia_left.header-with-topbar").length&&0===l(".full-screen-menu.header-with-topbar").length||(e=40)}else e=0!==l(".header-with-topbar").length?40:0},addScrollClass:function(){l(window).on("scroll",function(){l(document).scrollTop()>=e?l(".navbar").addClass("navbar-scroll-point"):l(".navbar").removeClass("navbar-scroll-point")})}}}(jQuery),jQuery(document).ready(function(){jQuery.material.init(),jQuery.hestia.init(),jQuery.navigation.init(),jQuery.hestiaFeatures.initAnimations(),jQuery.hestiaFeatures.initTooltips(),jQuery.hestiaNavBarScroll.checkNavbarScrollPoint(),jQuery.hestiaNavBarScroll.addScrollClass()}),jQuery(window).load(function(){jQuery.hestiaFeatures.initMasonry(),jQuery.hestia.sidebarToggle()}),jQuery(window).resize(function(){jQuery.hestiaFeatures.initMasonry(),jQuery.hestia.fixHeaderPadding(),jQuery.hestia.headerSpacingFrontpage(),jQuery.hestia.handleGutenbergAlignment(),jQuery.hestiaNavBarScroll.checkNavbarScrollPoint(),jQuery.navigation.repositionDropdowns()}); \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/79189ce657d0121fbffe8a22e4a12089ccaa24fe.00001256.js b/www/.content.EZtzwPjb/html/79189ce657d0121fbffe8a22e4a12089ccaa24fe.00001256.js new file mode 100644 index 0000000..4eadf70 --- /dev/null +++ b/www/.content.EZtzwPjb/html/79189ce657d0121fbffe8a22e4a12089ccaa24fe.00001256.js @@ -0,0 +1,5 @@ +/*! This file is auto-generated */ +// Source: wp-includes/js/twemoji.min.js +var twemoji=function(){"use strict";var f={base:"https://twemoji.maxcdn.com/v/13.0.1/",ext:".png",size:"72x72",className:"emoji",convert:{fromCodePoint:function(d){d="string"==typeof d?parseInt(d,16):d;if(d<65536)return a(d);return a(55296+((d-=65536)>>10),56320+(1023&d))},toCodePoint:i},onerror:function(){this.parentNode&&this.parentNode.replaceChild(g(this.alt,!1),this)},parse:function(d,u){u&&"function"!=typeof u||(u={callback:u});return("string"==typeof d?function(d,b){return o(d,function(d){var u,f,c=d,e=x(d),a=b.callback(e,b);if(e&&a){for(f in c="")}return c})}:function(d,u){var f,c,e,a,b,t,n,r,o,i,s,l=function d(u,f){var c,e,a=u.childNodes,b=a.length;for(;b--;)c=a[b],3===(e=c.nodeType)?f.push(c):1!==e||"ownerSVGElement"in c||h.test(c.nodeName.toLowerCase())||d(c,f);return f}(d,[]),p=l.length;for(;p--;){for(e=!1,a=document.createDocumentFragment(),b=l[p],t=b.nodeValue,n=0;i=m.exec(t);){if((s=i.index)!==n&&a.appendChild(g(t.slice(n,s),!0)),o=i[0],i=x(o),n=s+o.length,s=u.callback(i,u),i&&s){for(c in(r=new Image).onerror=u.onerror,r.setAttribute("draggable","false"),f=u.attributes(o,i))f.hasOwnProperty(c)&&0!==c.indexOf("on")&&!r.hasAttribute(c)&&r.setAttribute(c,f[c]);r.className=u.className,r.alt=o,r.src=s,e=!0,a.appendChild(r)}r||a.appendChild(g(o,!1)),r=null}e&&(n":">","'":"'",'"':"""},m=/(?:\ud83d\udc68\ud83c\udffb\u200d\ud83e\udd1d\u200d\ud83d\udc68\ud83c[\udffc-\udfff]|\ud83d\udc68\ud83c\udffc\u200d\ud83e\udd1d\u200d\ud83d\udc68\ud83c[\udffb\udffd-\udfff]|\ud83d\udc68\ud83c\udffd\u200d\ud83e\udd1d\u200d\ud83d\udc68\ud83c[\udffb\udffc\udffe\udfff]|\ud83d\udc68\ud83c\udffe\u200d\ud83e\udd1d\u200d\ud83d\udc68\ud83c[\udffb-\udffd\udfff]|\ud83d\udc68\ud83c\udfff\u200d\ud83e\udd1d\u200d\ud83d\udc68\ud83c[\udffb-\udffe]|\ud83d\udc69\ud83c\udffb\u200d\ud83e\udd1d\u200d\ud83d\udc68\ud83c[\udffc-\udfff]|\ud83d\udc69\ud83c\udffb\u200d\ud83e\udd1d\u200d\ud83d\udc69\ud83c[\udffc-\udfff]|\ud83d\udc69\ud83c\udffc\u200d\ud83e\udd1d\u200d\ud83d\udc68\ud83c[\udffb\udffd-\udfff]|\ud83d\udc69\ud83c\udffc\u200d\ud83e\udd1d\u200d\ud83d\udc69\ud83c[\udffb\udffd-\udfff]|\ud83d\udc69\ud83c\udffd\u200d\ud83e\udd1d\u200d\ud83d\udc68\ud83c[\udffb\udffc\udffe\udfff]|\ud83d\udc69\ud83c\udffd\u200d\ud83e\udd1d\u200d\ud83d\udc69\ud83c[\udffb\udffc\udffe\udfff]|\ud83d\udc69\ud83c\udffe\u200d\ud83e\udd1d\u200d\ud83d\udc68\ud83c[\udffb-\udffd\udfff]|\ud83d\udc69\ud83c\udffe\u200d\ud83e\udd1d\u200d\ud83d\udc69\ud83c[\udffb-\udffd\udfff]|\ud83d\udc69\ud83c\udfff\u200d\ud83e\udd1d\u200d\ud83d\udc68\ud83c[\udffb-\udffe]|\ud83d\udc69\ud83c\udfff\u200d\ud83e\udd1d\u200d\ud83d\udc69\ud83c[\udffb-\udffe]|\ud83e\uddd1\ud83c\udffb\u200d\ud83e\udd1d\u200d\ud83e\uddd1\ud83c[\udffb-\udfff]|\ud83e\uddd1\ud83c\udffc\u200d\ud83e\udd1d\u200d\ud83e\uddd1\ud83c[\udffb-\udfff]|\ud83e\uddd1\ud83c\udffd\u200d\ud83e\udd1d\u200d\ud83e\uddd1\ud83c[\udffb-\udfff]|\ud83e\uddd1\ud83c\udffe\u200d\ud83e\udd1d\u200d\ud83e\uddd1\ud83c[\udffb-\udfff]|\ud83e\uddd1\ud83c\udfff\u200d\ud83e\udd1d\u200d\ud83e\uddd1\ud83c[\udffb-\udfff]|\ud83e\uddd1\u200d\ud83e\udd1d\u200d\ud83e\uddd1|\ud83d\udc6b\ud83c[\udffb-\udfff]|\ud83d\udc6c\ud83c[\udffb-\udfff]|\ud83d\udc6d\ud83c[\udffb-\udfff]|\ud83d[\udc6b-\udc6d])|(?:\ud83d[\udc68\udc69]|\ud83e\uddd1)(?:\ud83c[\udffb-\udfff])?\u200d(?:\u2695\ufe0f|\u2696\ufe0f|\u2708\ufe0f|\ud83c[\udf3e\udf73\udf7c\udf84\udf93\udfa4\udfa8\udfeb\udfed]|\ud83d[\udcbb\udcbc\udd27\udd2c\ude80\ude92]|\ud83e[\uddaf-\uddb3\uddbc\uddbd])|(?:\ud83c[\udfcb\udfcc]|\ud83d[\udd74\udd75]|\u26f9)((?:\ud83c[\udffb-\udfff]|\ufe0f)\u200d[\u2640\u2642]\ufe0f)|(?:\ud83c[\udfc3\udfc4\udfca]|\ud83d[\udc6e\udc70\udc71\udc73\udc77\udc81\udc82\udc86\udc87\ude45-\ude47\ude4b\ude4d\ude4e\udea3\udeb4-\udeb6]|\ud83e[\udd26\udd35\udd37-\udd39\udd3d\udd3e\uddb8\uddb9\uddcd-\uddcf\uddd6-\udddd])(?:\ud83c[\udffb-\udfff])?\u200d[\u2640\u2642]\ufe0f|(?:\ud83d\udc68\u200d\u2764\ufe0f\u200d\ud83d\udc8b\u200d\ud83d\udc68|\ud83d\udc68\u200d\ud83d\udc68\u200d\ud83d\udc66\u200d\ud83d\udc66|\ud83d\udc68\u200d\ud83d\udc68\u200d\ud83d\udc67\u200d\ud83d[\udc66\udc67]|\ud83d\udc68\u200d\ud83d\udc69\u200d\ud83d\udc66\u200d\ud83d\udc66|\ud83d\udc68\u200d\ud83d\udc69\u200d\ud83d\udc67\u200d\ud83d[\udc66\udc67]|\ud83d\udc69\u200d\u2764\ufe0f\u200d\ud83d\udc8b\u200d\ud83d[\udc68\udc69]|\ud83d\udc69\u200d\ud83d\udc69\u200d\ud83d\udc66\u200d\ud83d\udc66|\ud83d\udc69\u200d\ud83d\udc69\u200d\ud83d\udc67\u200d\ud83d[\udc66\udc67]|\ud83d\udc68\u200d\u2764\ufe0f\u200d\ud83d\udc68|\ud83d\udc68\u200d\ud83d\udc66\u200d\ud83d\udc66|\ud83d\udc68\u200d\ud83d\udc67\u200d\ud83d[\udc66\udc67]|\ud83d\udc68\u200d\ud83d\udc68\u200d\ud83d[\udc66\udc67]|\ud83d\udc68\u200d\ud83d\udc69\u200d\ud83d[\udc66\udc67]|\ud83d\udc69\u200d\u2764\ufe0f\u200d\ud83d[\udc68\udc69]|\ud83d\udc69\u200d\ud83d\udc66\u200d\ud83d\udc66|\ud83d\udc69\u200d\ud83d\udc67\u200d\ud83d[\udc66\udc67]|\ud83d\udc69\u200d\ud83d\udc69\u200d\ud83d[\udc66\udc67]|\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f|\ud83c\udff3\ufe0f\u200d\ud83c\udf08|\ud83c\udff4\u200d\u2620\ufe0f|\ud83d\udc15\u200d\ud83e\uddba|\ud83d\udc3b\u200d\u2744\ufe0f|\ud83d\udc41\u200d\ud83d\udde8|\ud83d\udc68\u200d\ud83d[\udc66\udc67]|\ud83d\udc69\u200d\ud83d[\udc66\udc67]|\ud83d\udc6f\u200d\u2640\ufe0f|\ud83d\udc6f\u200d\u2642\ufe0f|\ud83e\udd3c\u200d\u2640\ufe0f|\ud83e\udd3c\u200d\u2642\ufe0f|\ud83e\uddde\u200d\u2640\ufe0f|\ud83e\uddde\u200d\u2642\ufe0f|\ud83e\udddf\u200d\u2640\ufe0f|\ud83e\udddf\u200d\u2642\ufe0f|\ud83d\udc08\u200d\u2b1b)|[#*0-9]\ufe0f?\u20e3|(?:[\xa9\xae\u2122\u265f]\ufe0f)|(?:\ud83c[\udc04\udd70\udd71\udd7e\udd7f\ude02\ude1a\ude2f\ude37\udf21\udf24-\udf2c\udf36\udf7d\udf96\udf97\udf99-\udf9b\udf9e\udf9f\udfcd\udfce\udfd4-\udfdf\udff3\udff5\udff7]|\ud83d[\udc3f\udc41\udcfd\udd49\udd4a\udd6f\udd70\udd73\udd76-\udd79\udd87\udd8a-\udd8d\udda5\udda8\uddb1\uddb2\uddbc\uddc2-\uddc4\uddd1-\uddd3\udddc-\uddde\udde1\udde3\udde8\uddef\uddf3\uddfa\udecb\udecd-\udecf\udee0-\udee5\udee9\udef0\udef3]|[\u203c\u2049\u2139\u2194-\u2199\u21a9\u21aa\u231a\u231b\u2328\u23cf\u23ed-\u23ef\u23f1\u23f2\u23f8-\u23fa\u24c2\u25aa\u25ab\u25b6\u25c0\u25fb-\u25fe\u2600-\u2604\u260e\u2611\u2614\u2615\u2618\u2620\u2622\u2623\u2626\u262a\u262e\u262f\u2638-\u263a\u2640\u2642\u2648-\u2653\u2660\u2663\u2665\u2666\u2668\u267b\u267f\u2692-\u2697\u2699\u269b\u269c\u26a0\u26a1\u26a7\u26aa\u26ab\u26b0\u26b1\u26bd\u26be\u26c4\u26c5\u26c8\u26cf\u26d1\u26d3\u26d4\u26e9\u26ea\u26f0-\u26f5\u26f8\u26fa\u26fd\u2702\u2708\u2709\u270f\u2712\u2714\u2716\u271d\u2721\u2733\u2734\u2744\u2747\u2757\u2763\u2764\u27a1\u2934\u2935\u2b05-\u2b07\u2b1b\u2b1c\u2b50\u2b55\u3030\u303d\u3297\u3299])(?:\ufe0f|(?!\ufe0e))|(?:(?:\ud83c[\udfcb\udfcc]|\ud83d[\udd74\udd75\udd90]|[\u261d\u26f7\u26f9\u270c\u270d])(?:\ufe0f|(?!\ufe0e))|(?:\ud83c[\udf85\udfc2-\udfc4\udfc7\udfca]|\ud83d[\udc42\udc43\udc46-\udc50\udc66-\udc69\udc6e\udc70-\udc78\udc7c\udc81-\udc83\udc85-\udc87\udcaa\udd7a\udd95\udd96\ude45-\ude47\ude4b-\ude4f\udea3\udeb4-\udeb6\udec0\udecc]|\ud83e[\udd0c\udd0f\udd18-\udd1c\udd1e\udd1f\udd26\udd30-\udd39\udd3d\udd3e\udd77\uddb5\uddb6\uddb8\uddb9\uddbb\uddcd-\uddcf\uddd1-\udddd]|[\u270a\u270b]))(?:\ud83c[\udffb-\udfff])?|(?:\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f|\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc73\udb40\udc63\udb40\udc74\udb40\udc7f|\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc77\udb40\udc6c\udb40\udc73\udb40\udc7f|\ud83c\udde6\ud83c[\udde8-\uddec\uddee\uddf1\uddf2\uddf4\uddf6-\uddfa\uddfc\uddfd\uddff]|\ud83c\udde7\ud83c[\udde6\udde7\udde9-\uddef\uddf1-\uddf4\uddf6-\uddf9\uddfb\uddfc\uddfe\uddff]|\ud83c\udde8\ud83c[\udde6\udde8\udde9\uddeb-\uddee\uddf0-\uddf5\uddf7\uddfa-\uddff]|\ud83c\udde9\ud83c[\uddea\uddec\uddef\uddf0\uddf2\uddf4\uddff]|\ud83c\uddea\ud83c[\udde6\udde8\uddea\uddec\udded\uddf7-\uddfa]|\ud83c\uddeb\ud83c[\uddee-\uddf0\uddf2\uddf4\uddf7]|\ud83c\uddec\ud83c[\udde6\udde7\udde9-\uddee\uddf1-\uddf3\uddf5-\uddfa\uddfc\uddfe]|\ud83c\udded\ud83c[\uddf0\uddf2\uddf3\uddf7\uddf9\uddfa]|\ud83c\uddee\ud83c[\udde8-\uddea\uddf1-\uddf4\uddf6-\uddf9]|\ud83c\uddef\ud83c[\uddea\uddf2\uddf4\uddf5]|\ud83c\uddf0\ud83c[\uddea\uddec-\uddee\uddf2\uddf3\uddf5\uddf7\uddfc\uddfe\uddff]|\ud83c\uddf1\ud83c[\udde6-\udde8\uddee\uddf0\uddf7-\uddfb\uddfe]|\ud83c\uddf2\ud83c[\udde6\udde8-\udded\uddf0-\uddff]|\ud83c\uddf3\ud83c[\udde6\udde8\uddea-\uddec\uddee\uddf1\uddf4\uddf5\uddf7\uddfa\uddff]|\ud83c\uddf4\ud83c\uddf2|\ud83c\uddf5\ud83c[\udde6\uddea-\udded\uddf0-\uddf3\uddf7-\uddf9\uddfc\uddfe]|\ud83c\uddf6\ud83c\udde6|\ud83c\uddf7\ud83c[\uddea\uddf4\uddf8\uddfa\uddfc]|\ud83c\uddf8\ud83c[\udde6-\uddea\uddec-\uddf4\uddf7-\uddf9\uddfb\uddfd-\uddff]|\ud83c\uddf9\ud83c[\udde6\udde8\udde9\uddeb-\udded\uddef-\uddf4\uddf7\uddf9\uddfb\uddfc\uddff]|\ud83c\uddfa\ud83c[\udde6\uddec\uddf2\uddf3\uddf8\uddfe\uddff]|\ud83c\uddfb\ud83c[\udde6\udde8\uddea\uddec\uddee\uddf3\uddfa]|\ud83c\uddfc\ud83c[\uddeb\uddf8]|\ud83c\uddfd\ud83c\uddf0|\ud83c\uddfe\ud83c[\uddea\uddf9]|\ud83c\uddff\ud83c[\udde6\uddf2\uddfc]|\ud83c[\udccf\udd8e\udd91-\udd9a\udde6-\uddff\ude01\ude32-\ude36\ude38-\ude3a\ude50\ude51\udf00-\udf20\udf2d-\udf35\udf37-\udf7c\udf7e-\udf84\udf86-\udf93\udfa0-\udfc1\udfc5\udfc6\udfc8\udfc9\udfcf-\udfd3\udfe0-\udff0\udff4\udff8-\udfff]|\ud83d[\udc00-\udc3e\udc40\udc44\udc45\udc51-\udc65\udc6a\udc6f\udc79-\udc7b\udc7d-\udc80\udc84\udc88-\udca9\udcab-\udcfc\udcff-\udd3d\udd4b-\udd4e\udd50-\udd67\udda4\uddfb-\ude44\ude48-\ude4a\ude80-\udea2\udea4-\udeb3\udeb7-\udebf\udec1-\udec5\uded0-\uded2\uded5-\uded7\udeeb\udeec\udef4-\udefc\udfe0-\udfeb]|\ud83e[\udd0d\udd0e\udd10-\udd17\udd1d\udd20-\udd25\udd27-\udd2f\udd3a\udd3c\udd3f-\udd45\udd47-\udd76\udd78\udd7a-\uddb4\uddb7\uddba\uddbc-\uddcb\uddd0\uddde-\uddff\ude70-\ude74\ude78-\ude7a\ude80-\ude86\ude90-\udea8\udeb0-\udeb6\udec0-\udec2\uded0-\uded6]|[\u23e9-\u23ec\u23f0\u23f3\u267e\u26ce\u2705\u2728\u274c\u274e\u2753-\u2755\u2795-\u2797\u27b0\u27bf\ue50a])|\ufe0f/g,c=/\uFE0F/g,e=String.fromCharCode(8205),t=/[&<>'"]/g,h=/^(?:iframe|noframes|noscript|script|select|style|textarea)$/,a=String.fromCharCode;return f;function g(d,u){return document.createTextNode(u?d.replace(c,""):d)}function b(d,u){return"".concat(u.base,u.size,"/",d,u.ext)}function x(d){return i(d.indexOf(e)<0?d.replace(c,""):d)}function n(d){return u[d]}function r(){return null}function o(d,u){return String(d).replace(m,u)}function i(d,u){for(var f=[],c=0,e=0,a=0;a + + + + + + SVF15N1C5E – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                      +
                      +
                      +
                      + +
                      +
                      +
                      +
                      +
                      +

                      Test et démontage d’un Sony Multi Flip 15 SVF15N1C5E

                      Longtemps que je n’avais pas posté ici, mais la je suis en vacances donc j’ai le temps. Voici donc mes retours sur ce pc portable Sony un peu atypique. J’ai choisit cette machine sur plusieurs critères qui m’avait convaincu pour les usages de ma chérie (c’est sa machine), elle fait du dessin vectoriel et de la retouche d’images principalement.
                      + (suite…)

                      +
                      Par HugoPoi, il y a
                      +
                      + +
                      +
                      +
                      +
                      + +
                      +
                      + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/79966eee85a49b7db3179f818291141801d0c235.00000658.css b/www/.content.EZtzwPjb/html/79966eee85a49b7db3179f818291141801d0c235.00000658.css new file mode 100644 index 0000000..8043bbf --- /dev/null +++ b/www/.content.EZtzwPjb/html/79966eee85a49b7db3179f818291141801d0c235.00000658.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;background:#fff;border:1px +solid #f00;font-size:10pt;width:280px;padding:2px}span.wpcf7-not-valid-tip-no-ajax{color:#f00;font-size:10pt;display:block}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/79a198895ea5efc1756ad58321b381abe12409ad.00001200.css b/www/.content.EZtzwPjb/html/79a198895ea5efc1756ad58321b381abe12409ad.00001200.css new file mode 100644 index 0000000..e852a69 --- /dev/null +++ b/www/.content.EZtzwPjb/html/79a198895ea5efc1756ad58321b381abe12409ad.00001200.css @@ -0,0 +1,11 @@ +@charset "UTF-8";#start-resizable-editor-section{display:none}.wp-block-audio figcaption{margin-top:.5em;margin-bottom:1em}.wp-block-audio audio{width:100%;min-width:300px}.wp-block-button__link{color:#fff;background-color:#32373c;border:none;border-radius:1.55em;box-shadow:none;cursor:pointer;display:inline-block;font-size:1.125em;padding:.667em 1.333em;text-align:center;text-decoration:none;overflow-wrap:break-word}.wp-block-button__link:active,.wp-block-button__link:focus,.wp-block-button__link:hover,.wp-block-button__link:visited{color:#fff}.wp-block-button__link.aligncenter{text-align:center}.wp-block-button__link.alignright{text-align:right}.wp-block-buttons>.wp-block-button.has-custom-width{max-width:none}.wp-block-buttons>.wp-block-button.has-custom-width .wp-block-button__link{width:100%}.wp-block-buttons>.wp-block-button.wp-block-button__width-25{width:calc(25% - .5em)}.wp-block-buttons>.wp-block-button.wp-block-button__width-50{width:calc(50% - .5em)}.wp-block-buttons>.wp-block-button.wp-block-button__width-75{width:calc(75% - .5em)}.wp-block-buttons>.wp-block-button.wp-block-button__width-100{margin-right:0;width:100%}.wp-block-button.is-style-squared,.wp-block-button__link.wp-block-button.is-style-squared{border-radius:0}.wp-block-button.no-border-radius,.wp-block-button__link.no-border-radius{border-radius:0!important}.is-style-outline>.wp-block-button__link,.wp-block-button__link.is-style-outline{border:2px solid}.is-style-outline>.wp-block-button__link:not(.has-text-color),.wp-block-button__link.is-style-outline:not(.has-text-color){color:#32373c}.is-style-outline>.wp-block-button__link:not(.has-background),.wp-block-button__link.is-style-outline:not(.has-background){background-color:transparent}.wp-block-buttons{display:flex;flex-direction:row;flex-wrap:wrap}.wp-block-buttons.is-vertical{flex-direction:column}.wp-block-buttons.is-vertical>.wp-block-button{margin-right:0}.wp-block-buttons.is-vertical>.wp-block-button:last-child{margin-bottom:0}.wp-block-buttons>.wp-block-button{display:inline-block;margin-left:0;margin-right:.5em;margin-bottom:.5em}.wp-block-buttons>.wp-block-button:last-child{margin-right:0}.wp-block-buttons.is-content-justification-left{justify-content:flex-start}.wp-block-buttons.is-content-justification-left.is-vertical{align-items:flex-start}.wp-block-buttons.is-content-justification-center{justify-content:center}.wp-block-buttons.is-content-justification-center.is-vertical{align-items:center}.wp-block-buttons.is-content-justification-right{justify-content:flex-end}.wp-block-buttons.is-content-justification-right>.wp-block-button{margin-left:.5em;margin-right:0}.wp-block-buttons.is-content-justification-right>.wp-block-button:first-child{margin-left:0}.wp-block-buttons.is-content-justification-right.is-vertical{align-items:flex-end}.wp-block-buttons.is-content-justification-space-between{justify-content:space-between}.wp-block-buttons.aligncenter{text-align:center}.wp-block-buttons.alignleft .wp-block-button{margin-left:0;margin-right:.5em}.wp-block-buttons.alignleft .wp-block-button:last-child{margin-right:0}.wp-block-buttons.alignright .wp-block-button{margin-right:0;margin-left:.5em}.wp-block-buttons.alignright .wp-block-button:first-child{margin-left:0}.wp-block-buttons:not(.is-content-justification-space-between,.is-content-justification-right,.is-content-justification-left,.is-content-justification-center) .wp-block-button.aligncenter{margin-left:auto;margin-right:auto;margin-bottom:.5em;width:100%}.wp-block-calendar{text-align:center}.wp-block-calendar tbody td,.wp-block-calendar th{padding:.25em;border:1px solid #ddd}.wp-block-calendar tfoot td{border:none}.wp-block-calendar table{width:100%;border-collapse:collapse}.wp-block-calendar table th{font-weight:400;background:#ddd}.wp-block-calendar a{text-decoration:underline}.wp-block-calendar table caption,.wp-block-calendar table tbody{color:#40464d}.wp-block-categories.alignleft{margin-right:2em}.wp-block-categories.alignright{margin-left:2em}.wp-block-code code{display:block;white-space:pre-wrap;overflow-wrap:break-word}.wp-block-columns{display:flex;margin-bottom:1.75em;flex-wrap:wrap}@media (min-width:782px){.wp-block-columns{flex-wrap:nowrap}}.wp-block-columns.has-background{padding:1.25em 2.375em}.wp-block-columns.are-vertically-aligned-top{align-items:flex-start}.wp-block-columns.are-vertically-aligned-center{align-items:center}.wp-block-columns.are-vertically-aligned-bottom{align-items:flex-end}.wp-block-column{flex-grow:1;min-width:0;word-break:break-word;overflow-wrap:break-word}@media (max-width:599px){.wp-block-column{flex-basis:100%!important}}@media (min-width:600px) and (max-width:781px){.wp-block-column:not(:only-child){flex-basis:calc(50% - 1em)!important;flex-grow:0}.wp-block-column:nth-child(2n){margin-left:2em}}@media (min-width:782px){.wp-block-column{flex-basis:0;flex-grow:1}.wp-block-column[style*=flex-basis]{flex-grow:0}.wp-block-column:not(:first-child){margin-left:2em}}.wp-block-column.is-vertically-aligned-top{align-self:flex-start}.wp-block-column.is-vertically-aligned-center{-ms-grid-row-align:center;align-self:center}.wp-block-column.is-vertically-aligned-bottom{align-self:flex-end}.wp-block-column.is-vertically-aligned-bottom,.wp-block-column.is-vertically-aligned-center,.wp-block-column.is-vertically-aligned-top{width:100%}.wp-block-cover,.wp-block-cover-image{position:relative;background-size:cover;background-position:50%;min-height:430px;width:100%;display:flex;justify-content:center;align-items:center;padding:1em;box-sizing:border-box}.wp-block-cover-image.has-parallax,.wp-block-cover.has-parallax{background-attachment:fixed}@supports (-webkit-overflow-scrolling:touch){.wp-block-cover-image.has-parallax,.wp-block-cover.has-parallax{background-attachment:scroll}}@media (prefers-reduced-motion:reduce){.wp-block-cover-image.has-parallax,.wp-block-cover.has-parallax{background-attachment:scroll}}.wp-block-cover-image.is-repeated,.wp-block-cover.is-repeated{background-repeat:repeat;background-size:auto}.wp-block-cover-image.has-background-dim:not([class*=-background-color]),.wp-block-cover.has-background-dim:not([class*=-background-color]){background-color:#000}.wp-block-cover-image.has-background-dim:before,.wp-block-cover.has-background-dim:before{content:"";background-color:inherit}.wp-block-cover-image.has-background-dim:not(.has-background-gradient):before,.wp-block-cover-image .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim:not(.has-background-gradient):before,.wp-block-cover .wp-block-cover__gradient-background{position:absolute;top:0;left:0;bottom:0;right:0;z-index:1;opacity:.5}.wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-10:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-10:not(.has-background-gradient):before{opacity:.1}.wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-20:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-20:not(.has-background-gradient):before{opacity:.2}.wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-30:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-30:not(.has-background-gradient):before{opacity:.3}.wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-40:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-40:not(.has-background-gradient):before{opacity:.4}.wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-50:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-50:not(.has-background-gradient):before{opacity:.5}.wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-60:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-60:not(.has-background-gradient):before{opacity:.6}.wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-70:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-70:not(.has-background-gradient):before{opacity:.7}.wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-80:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-80:not(.has-background-gradient):before{opacity:.8}.wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-90:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-90:not(.has-background-gradient):before{opacity:.9}.wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-100:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-100:not(.has-background-gradient):before{opacity:1}.wp-block-cover-image.alignleft,.wp-block-cover-image.alignright,.wp-block-cover.alignleft,.wp-block-cover.alignright{max-width:420px;width:100%}.wp-block-cover-image:after,.wp-block-cover:after{display:block;content:"";font-size:0;min-height:inherit}@supports ((position:-webkit-sticky) or (position:sticky)){.wp-block-cover-image:after,.wp-block-cover:after{content:none}}.wp-block-cover-image.aligncenter,.wp-block-cover-image.alignleft,.wp-block-cover-image.alignright,.wp-block-cover.aligncenter,.wp-block-cover.alignleft,.wp-block-cover.alignright{display:flex}.wp-block-cover-image .wp-block-cover__inner-container,.wp-block-cover .wp-block-cover__inner-container{width:100%;z-index:1;color:#fff}.wp-block-cover-image .wp-block-subhead:not(.has-text-color),.wp-block-cover-image h1:not(.has-text-color),.wp-block-cover-image h2:not(.has-text-color),.wp-block-cover-image h3:not(.has-text-color),.wp-block-cover-image h4:not(.has-text-color),.wp-block-cover-image h5:not(.has-text-color),.wp-block-cover-image h6:not(.has-text-color),.wp-block-cover-image p:not(.has-text-color),.wp-block-cover .wp-block-subhead:not(.has-text-color),.wp-block-cover h1:not(.has-text-color),.wp-block-cover h2:not(.has-text-color),.wp-block-cover h3:not(.has-text-color),.wp-block-cover h4:not(.has-text-color),.wp-block-cover h5:not(.has-text-color),.wp-block-cover h6:not(.has-text-color),.wp-block-cover p:not(.has-text-color){color:inherit}.wp-block-cover-image.is-position-top-left,.wp-block-cover.is-position-top-left{align-items:flex-start;justify-content:flex-start}.wp-block-cover-image.is-position-top-center,.wp-block-cover.is-position-top-center{align-items:flex-start;justify-content:center}.wp-block-cover-image.is-position-top-right,.wp-block-cover.is-position-top-right{align-items:flex-start;justify-content:flex-end}.wp-block-cover-image.is-position-center-left,.wp-block-cover.is-position-center-left{align-items:center;justify-content:flex-start}.wp-block-cover-image.is-position-center-center,.wp-block-cover.is-position-center-center{align-items:center;justify-content:center}.wp-block-cover-image.is-position-center-right,.wp-block-cover.is-position-center-right{align-items:center;justify-content:flex-end}.wp-block-cover-image.is-position-bottom-left,.wp-block-cover.is-position-bottom-left{align-items:flex-end;justify-content:flex-start}.wp-block-cover-image.is-position-bottom-center,.wp-block-cover.is-position-bottom-center{align-items:flex-end;justify-content:center}.wp-block-cover-image.is-position-bottom-right,.wp-block-cover.is-position-bottom-right{align-items:flex-end;justify-content:flex-end}.wp-block-cover-image.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container,.wp-block-cover.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container{margin:0;width:auto}.wp-block-cover-image img.wp-block-cover__image-background,.wp-block-cover-image video.wp-block-cover__video-background,.wp-block-cover img.wp-block-cover__image-background,.wp-block-cover video.wp-block-cover__video-background{position:absolute;top:0;left:0;right:0;bottom:0;margin:0;padding:0;width:100%;height:100%;max-width:none;max-height:none;-o-object-fit:cover;object-fit:cover;outline:none;border:none;box-shadow:none}.wp-block-cover__image-background,.wp-block-cover__video-background{z-index:0}.wp-block-cover-image-text,.wp-block-cover-image-text a,.wp-block-cover-image-text a:active,.wp-block-cover-image-text a:focus,.wp-block-cover-image-text a:hover,.wp-block-cover-text,.wp-block-cover-text a,.wp-block-cover-text a:active,.wp-block-cover-text a:focus,.wp-block-cover-text a:hover,section.wp-block-cover-image h2,section.wp-block-cover-image h2 a,section.wp-block-cover-image h2 a:active,section.wp-block-cover-image h2 a:focus,section.wp-block-cover-image h2 a:hover{color:#fff}.wp-block-cover-image .wp-block-cover.has-left-content{justify-content:flex-start}.wp-block-cover-image .wp-block-cover.has-right-content{justify-content:flex-end}.wp-block-cover-image.has-left-content .wp-block-cover-image-text,.wp-block-cover.has-left-content .wp-block-cover-text,section.wp-block-cover-image.has-left-content>h2{margin-left:0;text-align:left}.wp-block-cover-image.has-right-content .wp-block-cover-image-text,.wp-block-cover.has-right-content .wp-block-cover-text,section.wp-block-cover-image.has-right-content>h2{margin-right:0;text-align:right}.wp-block-cover-image .wp-block-cover-image-text,.wp-block-cover .wp-block-cover-text,section.wp-block-cover-image>h2{font-size:2em;line-height:1.25;z-index:1;margin-bottom:0;max-width:840px;padding:.44em;text-align:center}.wp-block-embed.alignleft,.wp-block-embed.alignright,.wp-block[data-align=left]>[data-type="core/embed"],.wp-block[data-align=right]>[data-type="core/embed"]{max-width:360px;width:100%}.wp-block-embed.alignleft .wp-block-embed__wrapper,.wp-block-embed.alignright .wp-block-embed__wrapper,.wp-block[data-align=left]>[data-type="core/embed"] .wp-block-embed__wrapper,.wp-block[data-align=right]>[data-type="core/embed"] .wp-block-embed__wrapper{min-width:280px}.wp-block-cover .wp-block-embed{min-width:320px;min-height:240px}.wp-block-embed{margin-bottom:1em}.wp-block-embed figcaption{margin-top:.5em;margin-bottom:1em}.wp-block-embed iframe{max-width:100%}.wp-block-embed__wrapper{position:relative}.wp-embed-responsive .wp-has-aspect-ratio .wp-block-embed__wrapper:before{content:"";display:block;padding-top:50%}.wp-embed-responsive .wp-has-aspect-ratio iframe{position:absolute;top:0;right:0;bottom:0;left:0;height:100%;width:100%}.wp-embed-responsive .wp-embed-aspect-21-9 .wp-block-embed__wrapper:before{padding-top:42.85%}.wp-embed-responsive .wp-embed-aspect-18-9 .wp-block-embed__wrapper:before{padding-top:50%}.wp-embed-responsive .wp-embed-aspect-16-9 .wp-block-embed__wrapper:before{padding-top:56.25%}.wp-embed-responsive .wp-embed-aspect-4-3 .wp-block-embed__wrapper:before{padding-top:75%}.wp-embed-responsive .wp-embed-aspect-1-1 .wp-block-embed__wrapper:before{padding-top:100%}.wp-embed-responsive .wp-embed-aspect-9-16 .wp-block-embed__wrapper:before{padding-top:177.77%}.wp-embed-responsive .wp-embed-aspect-1-2 .wp-block-embed__wrapper:before{padding-top:200%}.wp-block-file{margin-bottom:1.5em}.wp-block-file.aligncenter{text-align:center}.wp-block-file.alignright{text-align:right}.wp-block-file .wp-block-file__button{background:#32373c;border-radius:2em;color:#fff;font-size:.8em;padding:.5em 1em}.wp-block-file a.wp-block-file__button{text-decoration:none}.wp-block-file a.wp-block-file__button:active,.wp-block-file a.wp-block-file__button:focus,.wp-block-file a.wp-block-file__button:hover,.wp-block-file a.wp-block-file__button:visited{box-shadow:none;color:#fff;opacity:.85;text-decoration:none}.wp-block-file *+.wp-block-file__button{margin-left:.75em}.blocks-gallery-grid,.wp-block-gallery{display:flex;flex-wrap:wrap;list-style-type:none;padding:0;margin:0}.blocks-gallery-grid .blocks-gallery-image,.blocks-gallery-grid .blocks-gallery-item,.wp-block-gallery .blocks-gallery-image,.wp-block-gallery .blocks-gallery-item{margin:0 1em 1em 0;display:flex;flex-grow:1;flex-direction:column;justify-content:center;position:relative;width:calc(50% - 1em)}.blocks-gallery-grid .blocks-gallery-image:nth-of-type(2n),.blocks-gallery-grid .blocks-gallery-item:nth-of-type(2n),.wp-block-gallery .blocks-gallery-image:nth-of-type(2n),.wp-block-gallery .blocks-gallery-item:nth-of-type(2n){margin-right:0}.blocks-gallery-grid .blocks-gallery-image figure,.blocks-gallery-grid .blocks-gallery-item figure,.wp-block-gallery .blocks-gallery-image figure,.wp-block-gallery .blocks-gallery-item figure{margin:0;height:100%}@supports ((position:-webkit-sticky) or (position:sticky)){.blocks-gallery-grid .blocks-gallery-image figure,.blocks-gallery-grid .blocks-gallery-item figure,.wp-block-gallery .blocks-gallery-image figure,.wp-block-gallery .blocks-gallery-item figure{display:flex;align-items:flex-end;justify-content:flex-start}}.blocks-gallery-grid .blocks-gallery-image img,.blocks-gallery-grid .blocks-gallery-item img,.wp-block-gallery .blocks-gallery-image img,.wp-block-gallery .blocks-gallery-item img{display:block;max-width:100%;height:auto;width:100%}@supports ((position:-webkit-sticky) or (position:sticky)){.blocks-gallery-grid .blocks-gallery-image img,.blocks-gallery-grid .blocks-gallery-item img,.wp-block-gallery .blocks-gallery-image img,.wp-block-gallery .blocks-gallery-item img{width:auto}}.blocks-gallery-grid .blocks-gallery-image figcaption,.blocks-gallery-grid .blocks-gallery-item figcaption,.wp-block-gallery .blocks-gallery-image figcaption,.wp-block-gallery .blocks-gallery-item figcaption{position:absolute;bottom:0;width:100%;max-height:100%;overflow:auto;padding:3em .77em .7em;color:#fff;text-align:center;font-size:.8em;background:linear-gradient(0deg,rgba(0,0,0,.7),rgba(0,0,0,.3) 70%,transparent);box-sizing:border-box;margin:0}.blocks-gallery-grid .blocks-gallery-image figcaption img,.blocks-gallery-grid .blocks-gallery-item figcaption img,.wp-block-gallery .blocks-gallery-image figcaption img,.wp-block-gallery .blocks-gallery-item figcaption img{display:inline}.blocks-gallery-grid figcaption,.wp-block-gallery figcaption{flex-grow:1}.blocks-gallery-grid.is-cropped .blocks-gallery-image a,.blocks-gallery-grid.is-cropped .blocks-gallery-image img,.blocks-gallery-grid.is-cropped .blocks-gallery-item a,.blocks-gallery-grid.is-cropped .blocks-gallery-item img,.wp-block-gallery.is-cropped .blocks-gallery-image a,.wp-block-gallery.is-cropped .blocks-gallery-image img,.wp-block-gallery.is-cropped .blocks-gallery-item a,.wp-block-gallery.is-cropped .blocks-gallery-item img{width:100%}@supports ((position:-webkit-sticky) or (position:sticky)){.blocks-gallery-grid.is-cropped .blocks-gallery-image a,.blocks-gallery-grid.is-cropped .blocks-gallery-image img,.blocks-gallery-grid.is-cropped .blocks-gallery-item a,.blocks-gallery-grid.is-cropped .blocks-gallery-item img,.wp-block-gallery.is-cropped .blocks-gallery-image a,.wp-block-gallery.is-cropped .blocks-gallery-image img,.wp-block-gallery.is-cropped .blocks-gallery-item a,.wp-block-gallery.is-cropped .blocks-gallery-item img{height:100%;flex:1;-o-object-fit:cover;object-fit:cover}}.blocks-gallery-grid.columns-1 .blocks-gallery-image,.blocks-gallery-grid.columns-1 .blocks-gallery-item,.wp-block-gallery.columns-1 .blocks-gallery-image,.wp-block-gallery.columns-1 .blocks-gallery-item{width:100%;margin-right:0}@media (min-width:600px){.blocks-gallery-grid.columns-3 .blocks-gallery-image,.blocks-gallery-grid.columns-3 .blocks-gallery-item,.wp-block-gallery.columns-3 .blocks-gallery-image,.wp-block-gallery.columns-3 .blocks-gallery-item{width:calc(33.33333% - .66667em);margin-right:1em}.blocks-gallery-grid.columns-4 .blocks-gallery-image,.blocks-gallery-grid.columns-4 .blocks-gallery-item,.wp-block-gallery.columns-4 .blocks-gallery-image,.wp-block-gallery.columns-4 .blocks-gallery-item{width:calc(25% - .75em);margin-right:1em}.blocks-gallery-grid.columns-5 .blocks-gallery-image,.blocks-gallery-grid.columns-5 .blocks-gallery-item,.wp-block-gallery.columns-5 .blocks-gallery-image,.wp-block-gallery.columns-5 .blocks-gallery-item{width:calc(20% - .8em);margin-right:1em}.blocks-gallery-grid.columns-6 .blocks-gallery-image,.blocks-gallery-grid.columns-6 .blocks-gallery-item,.wp-block-gallery.columns-6 .blocks-gallery-image,.wp-block-gallery.columns-6 .blocks-gallery-item{width:calc(16.66667% - .83333em);margin-right:1em}.blocks-gallery-grid.columns-7 .blocks-gallery-image,.blocks-gallery-grid.columns-7 .blocks-gallery-item,.wp-block-gallery.columns-7 .blocks-gallery-image,.wp-block-gallery.columns-7 .blocks-gallery-item{width:calc(14.28571% - .85714em);margin-right:1em}.blocks-gallery-grid.columns-8 .blocks-gallery-image,.blocks-gallery-grid.columns-8 .blocks-gallery-item,.wp-block-gallery.columns-8 .blocks-gallery-image,.wp-block-gallery.columns-8 .blocks-gallery-item{width:calc(12.5% - .875em);margin-right:1em}.blocks-gallery-grid.columns-1 .blocks-gallery-image:nth-of-type(1n),.blocks-gallery-grid.columns-1 .blocks-gallery-item:nth-of-type(1n),.blocks-gallery-grid.columns-2 .blocks-gallery-image:nth-of-type(2n),.blocks-gallery-grid.columns-2 .blocks-gallery-item:nth-of-type(2n),.blocks-gallery-grid.columns-3 .blocks-gallery-image:nth-of-type(3n),.blocks-gallery-grid.columns-3 .blocks-gallery-item:nth-of-type(3n),.blocks-gallery-grid.columns-4 .blocks-gallery-image:nth-of-type(4n),.blocks-gallery-grid.columns-4 .blocks-gallery-item:nth-of-type(4n),.blocks-gallery-grid.columns-5 .blocks-gallery-image:nth-of-type(5n),.blocks-gallery-grid.columns-5 .blocks-gallery-item:nth-of-type(5n),.blocks-gallery-grid.columns-6 .blocks-gallery-image:nth-of-type(6n),.blocks-gallery-grid.columns-6 .blocks-gallery-item:nth-of-type(6n),.blocks-gallery-grid.columns-7 .blocks-gallery-image:nth-of-type(7n),.blocks-gallery-grid.columns-7 .blocks-gallery-item:nth-of-type(7n),.blocks-gallery-grid.columns-8 .blocks-gallery-image:nth-of-type(8n),.blocks-gallery-grid.columns-8 .blocks-gallery-item:nth-of-type(8n),.wp-block-gallery.columns-1 .blocks-gallery-image:nth-of-type(1n),.wp-block-gallery.columns-1 .blocks-gallery-item:nth-of-type(1n),.wp-block-gallery.columns-2 .blocks-gallery-image:nth-of-type(2n),.wp-block-gallery.columns-2 .blocks-gallery-item:nth-of-type(2n),.wp-block-gallery.columns-3 .blocks-gallery-image:nth-of-type(3n),.wp-block-gallery.columns-3 .blocks-gallery-item:nth-of-type(3n),.wp-block-gallery.columns-4 .blocks-gallery-image:nth-of-type(4n),.wp-block-gallery.columns-4 .blocks-gallery-item:nth-of-type(4n),.wp-block-gallery.columns-5 .blocks-gallery-image:nth-of-type(5n),.wp-block-gallery.columns-5 .blocks-gallery-item:nth-of-type(5n),.wp-block-gallery.columns-6 .blocks-gallery-image:nth-of-type(6n),.wp-block-gallery.columns-6 .blocks-gallery-item:nth-of-type(6n),.wp-block-gallery.columns-7 .blocks-gallery-image:nth-of-type(7n),.wp-block-gallery.columns-7 .blocks-gallery-item:nth-of-type(7n),.wp-block-gallery.columns-8 .blocks-gallery-image:nth-of-type(8n),.wp-block-gallery.columns-8 .blocks-gallery-item:nth-of-type(8n){margin-right:0}}.blocks-gallery-grid .blocks-gallery-image:last-child,.blocks-gallery-grid .blocks-gallery-item:last-child,.wp-block-gallery .blocks-gallery-image:last-child,.wp-block-gallery .blocks-gallery-item:last-child{margin-right:0}.blocks-gallery-grid.alignleft,.blocks-gallery-grid.alignright,.wp-block-gallery.alignleft,.wp-block-gallery.alignright{max-width:420px;width:100%}.blocks-gallery-grid.aligncenter .blocks-gallery-item figure,.wp-block-gallery.aligncenter .blocks-gallery-item figure{justify-content:center}.wp-block-group{box-sizing:border-box}h1.has-background,h2.has-background,h3.has-background,h4.has-background,h5.has-background,h6.has-background{padding:1.25em 2.375em}.wp-block-image{margin-bottom:1em}.wp-block-image img{max-width:100%}.wp-block-image:not(.is-style-rounded) img{border-radius:inherit}.wp-block-image.aligncenter{text-align:center}.wp-block-image.alignfull img,.wp-block-image.alignwide img{width:100%}.wp-block-image .aligncenter,.wp-block-image .alignleft,.wp-block-image .alignright{display:table}.wp-block-image .aligncenter>figcaption,.wp-block-image .alignleft>figcaption,.wp-block-image .alignright>figcaption{display:table-caption;caption-side:bottom}.wp-block-image .alignleft{float:left;margin:.5em 1em .5em 0}.wp-block-image .alignright{float:right;margin:.5em 0 .5em 1em}.wp-block-image .aligncenter{margin-left:auto;margin-right:auto}.wp-block-image figcaption{margin-top:.5em;margin-bottom:1em}.wp-block-image.is-style-circle-mask img,.wp-block-image.is-style-rounded img{border-radius:9999px}@supports ((-webkit-mask-image:none) or (mask-image:none)) or (-webkit-mask-image:none){.wp-block-image.is-style-circle-mask img{-webkit-mask-image:url('data:image/svg+xml;utf8,');mask-image:url('data:image/svg+xml;utf8,');mask-mode:alpha;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-position:center;mask-position:center;border-radius:0}}.wp-block-latest-comments__comment{line-height:1.1;list-style:none;margin-bottom:1em}.has-avatars .wp-block-latest-comments__comment{min-height:2.25em;list-style:none}.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt,.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta{margin-left:3.25em}.has-dates .wp-block-latest-comments__comment,.has-excerpts .wp-block-latest-comments__comment{line-height:1.5}.wp-block-latest-comments__comment-excerpt p{font-size:.875em;line-height:1.8;margin:.36em 0 1.4em}.wp-block-latest-comments__comment-date{display:block;font-size:.75em}.wp-block-latest-comments .avatar,.wp-block-latest-comments__comment-avatar{border-radius:1.5em;display:block;float:left;height:2.5em;margin-right:.75em;width:2.5em}.wp-block-latest-posts.alignleft{margin-right:2em}.wp-block-latest-posts.alignright{margin-left:2em}.wp-block-latest-posts.wp-block-latest-posts__list{list-style:none}.wp-block-latest-posts.wp-block-latest-posts__list li{clear:both}.wp-block-latest-posts.is-grid{display:flex;flex-wrap:wrap;padding:0}.wp-block-latest-posts.is-grid li{margin:0 1.25em 1.25em 0;width:100%}@media (min-width:600px){.wp-block-latest-posts.columns-2 li{width:calc(50% - .625em)}.wp-block-latest-posts.columns-2 li:nth-child(2n){margin-right:0}.wp-block-latest-posts.columns-3 li{width:calc(33.33333% - .83333em)}.wp-block-latest-posts.columns-3 li:nth-child(3n){margin-right:0}.wp-block-latest-posts.columns-4 li{width:calc(25% - .9375em)}.wp-block-latest-posts.columns-4 li:nth-child(4n){margin-right:0}.wp-block-latest-posts.columns-5 li{width:calc(20% - 1em)}.wp-block-latest-posts.columns-5 li:nth-child(5n){margin-right:0}.wp-block-latest-posts.columns-6 li{width:calc(16.66667% - 1.04167em)}.wp-block-latest-posts.columns-6 li:nth-child(6n){margin-right:0}}.wp-block-latest-posts__post-author,.wp-block-latest-posts__post-date{display:block;color:#555;font-size:.8125em}.wp-block-latest-posts__post-excerpt{margin-top:.5em;margin-bottom:1em}.wp-block-latest-posts__featured-image a{display:inline-block}.wp-block-latest-posts__featured-image img{height:auto;width:auto}.wp-block-latest-posts__featured-image.alignleft{margin-right:1em}.wp-block-latest-posts__featured-image.alignright{margin-left:1em}.wp-block-latest-posts__featured-image.aligncenter{margin-bottom:1em;text-align:center}.block-editor-image-alignment-control__row .components-base-control__field{display:flex;justify-content:space-between;align-items:center}.block-editor-image-alignment-control__row .components-base-control__field .components-base-control__label{margin-bottom:0}ol.has-background,ul.has-background{padding:1.25em 2.375em}.wp-block-media-text{ + /*!rtl:begin:ignore*/direction:ltr; + /*!rtl:end:ignore*/display:-ms-grid;display:grid;-ms-grid-columns:50% 1fr;grid-template-columns:50% 1fr;-ms-grid-rows:auto;grid-template-rows:auto}.wp-block-media-text.has-media-on-the-right{-ms-grid-columns:1fr 50%;grid-template-columns:1fr 50%}.wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__content,.wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__media{-ms-grid-row-align:start;align-self:start}.wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__content,.wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__media,.wp-block-media-text .wp-block-media-text__content,.wp-block-media-text .wp-block-media-text__media{-ms-grid-row-align:center;align-self:center}.wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__content,.wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__media{-ms-grid-row-align:end;align-self:end}.wp-block-media-text .wp-block-media-text__media{ + /*!rtl:begin:ignore*/-ms-grid-column:1;grid-column:1;-ms-grid-row:1;grid-row:1; + /*!rtl:end:ignore*/margin:0}.wp-block-media-text .wp-block-media-text__content{direction:ltr; + /*!rtl:begin:ignore*/-ms-grid-column:2;grid-column:2;-ms-grid-row:1;grid-row:1; + /*!rtl:end:ignore*/padding:0 8%;word-break:break-word}.wp-block-media-text.has-media-on-the-right .wp-block-media-text__media{ + /*!rtl:begin:ignore*/-ms-grid-column:2;grid-column:2;-ms-grid-row:1;grid-row:1 + /*!rtl:end:ignore*/}.wp-block-media-text.has-media-on-the-right .wp-block-media-text__content{ + /*!rtl:begin:ignore*/-ms-grid-column:1;grid-column:1;-ms-grid-row:1;grid-row:1 + /*!rtl:end:ignore*/}.wp-block-media-text__media img,.wp-block-media-text__media video{max-width:unset;width:100%;vertical-align:middle}.wp-block-media-text.is-image-fill .wp-block-media-text__media{height:100%;min-height:250px;background-size:cover}.wp-block-media-text.is-image-fill .wp-block-media-text__media>a{display:block;height:100%}.wp-block-media-text.is-image-fill .wp-block-media-text__media img{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}@media (max-width:600px){.wp-block-media-text.is-stacked-on-mobile{-ms-grid-columns:100%!important;grid-template-columns:100%!important}.wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__media{-ms-grid-column:1;grid-column:1;-ms-grid-row:1;grid-row:1}.wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content{-ms-grid-column:1;grid-column:1;-ms-grid-row:2;grid-row:2}}.wp-block-navigation:not(.has-background) .wp-block-navigation__container .wp-block-navigation__container{color:#1e1e1e;background-color:#fff;min-width:200px}.items-justified-left>ul{justify-content:flex-start}.items-justified-center>ul{justify-content:center}.items-justified-right>ul{justify-content:flex-end}.items-justified-space-between>ul{justify-content:space-between}.wp-block-navigation-link{display:flex;align-items:center;position:relative;margin:0}.wp-block-navigation-link .wp-block-navigation__container:empty{display:none}.wp-block-navigation__container{list-style:none;margin:0;padding-left:0;display:flex;flex-wrap:wrap}.is-vertical .wp-block-navigation__container{display:block}.has-child>.wp-block-navigation-link__content{padding-right:.5em}.has-child .wp-block-navigation__container{border:1px solid rgba(0,0,0,.15);background-color:inherit;color:inherit;position:absolute;left:0;top:100%;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;z-index:2;opacity:0;transition:opacity .1s linear;visibility:hidden}.has-child .wp-block-navigation__container>.wp-block-navigation-link>.wp-block-navigation-link__content{flex-grow:1}.has-child .wp-block-navigation__container>.wp-block-navigation-link>.wp-block-navigation-link__submenu-icon{padding-right:.5em}@media (min-width:782px){.has-child .wp-block-navigation__container{left:1.5em}.has-child .wp-block-navigation__container .wp-block-navigation__container{left:100%;top:-1px}.has-child .wp-block-navigation__container .wp-block-navigation__container:before{content:"";position:absolute;right:100%;height:100%;display:block;width:.5em;background:transparent}.has-child .wp-block-navigation__container .wp-block-navigation-link__submenu-icon svg{transform:rotate(0)}}.has-child:hover{cursor:pointer}.has-child:hover>.wp-block-navigation__container{visibility:visible;opacity:1;display:flex;flex-direction:column}.has-child:focus-within{cursor:pointer}.has-child:focus-within>.wp-block-navigation__container{visibility:visible;opacity:1;display:flex;flex-direction:column}.wp-block-navigation[style*=text-decoration] .wp-block-navigation-link,.wp-block-navigation[style*=text-decoration] .wp-block-navigation-link__content,.wp-block-navigation[style*=text-decoration] .wp-block-navigation-link__content:active,.wp-block-navigation[style*=text-decoration] .wp-block-navigation-link__content:focus,.wp-block-navigation[style*=text-decoration] .wp-block-navigation__container{text-decoration:inherit}.wp-block-navigation:not([style*=text-decoration]) .wp-block-navigation-link__content,.wp-block-navigation:not([style*=text-decoration]) .wp-block-navigation-link__content:active,.wp-block-navigation:not([style*=text-decoration]) .wp-block-navigation-link__content:focus{text-decoration:none}.wp-block-navigation-link__content{color:inherit;padding:.5em 1em}.wp-block-navigation-link__content+.wp-block-navigation-link__content{padding-top:0}.has-text-color .wp-block-navigation-link__content{color:inherit}.wp-block-navigation-link__label{word-break:normal;overflow-wrap:break-word}.wp-block-navigation-link__submenu-icon{height:inherit;padding:.375em 1em .375em 0}.wp-block-navigation-link__submenu-icon svg{fill:currentColor}@media (min-width:782px){.wp-block-navigation-link__submenu-icon svg{transform:rotate(90deg)}}.is-small-text{font-size:.875em}.is-regular-text{font-size:1em}.is-large-text{font-size:2.25em}.is-larger-text{font-size:3em}.has-drop-cap:not(:focus):first-letter{float:left;font-size:8.4em;line-height:.68;font-weight:100;margin:.05em .1em 0 0;text-transform:uppercase;font-style:normal}p.has-background{padding:1.25em 2.375em}p.has-text-color a{color:inherit}.wp-block-post-author{display:flex;flex-wrap:wrap}.wp-block-post-author__byline{width:100%;margin-top:0;margin-bottom:0;font-size:.5em}.wp-block-post-author__avatar{margin-right:1em}.wp-block-post-author__bio{margin-bottom:.7em;font-size:.7em}.wp-block-post-author__content{flex-grow:1;flex-basis:0}.wp-block-post-author__name{font-weight:700;margin:0}.wp-block-post-comments-form input[type=submit]{color:#fff;background-color:#32373c;border:none;border-radius:1.55em;box-shadow:none;cursor:pointer;display:inline-block;font-size:1.125em;padding:.667em 1.333em;text-align:center;text-decoration:none;overflow-wrap:break-word}.wp-block-post-comments-form input[type=submit]:active,.wp-block-post-comments-form input[type=submit]:focus,.wp-block-post-comments-form input[type=submit]:hover,.wp-block-post-comments-form input[type=submit]:visited{color:#fff}.wp-block-preformatted{white-space:pre-wrap}.wp-block-pullquote{padding:3em 0;margin-left:0;margin-right:0;text-align:center}.wp-block-pullquote.alignleft,.wp-block-pullquote.alignright{max-width:420px}.wp-block-pullquote.alignleft p,.wp-block-pullquote.alignright p{font-size:1.25em}.wp-block-pullquote p{font-size:1.75em;line-height:1.6}.wp-block-pullquote cite,.wp-block-pullquote footer{position:relative}.wp-block-pullquote .has-text-color a{color:inherit}.wp-block-pullquote:not(.is-style-solid-color){background:none}.wp-block-pullquote.is-style-solid-color{border:none}.wp-block-pullquote.is-style-solid-color blockquote{margin-left:auto;margin-right:auto;text-align:left;max-width:60%}.wp-block-pullquote.is-style-solid-color blockquote p{margin-top:0;margin-bottom:0;font-size:2em}.wp-block-pullquote.is-style-solid-color blockquote cite{text-transform:none;font-style:normal}.wp-block-pullquote cite{color:inherit}.wp-block-query-loop{max-width:100%;list-style:none;padding:0}.wp-block-query-loop li{clear:both}.wp-block-query-loop.is-flex-container{flex-direction:row;display:flex;flex-wrap:wrap}.wp-block-query-loop.is-flex-container li{margin:0 0 1.25em;width:100%}@media (min-width:600px){.wp-block-query-loop.is-flex-container li{margin-right:1.25em}.wp-block-query-loop.is-flex-container.is-flex-container.columns-2>li{width:calc(50% - .625em)}.wp-block-query-loop.is-flex-container.is-flex-container.columns-2>li:nth-child(2n){margin-right:0}.wp-block-query-loop.is-flex-container.is-flex-container.columns-3>li{width:calc(33.33333% - .83333em)}.wp-block-query-loop.is-flex-container.is-flex-container.columns-3>li:nth-child(3n){margin-right:0}.wp-block-query-loop.is-flex-container.is-flex-container.columns-4>li{width:calc(25% - .9375em)}.wp-block-query-loop.is-flex-container.is-flex-container.columns-4>li:nth-child(4n){margin-right:0}.wp-block-query-loop.is-flex-container.is-flex-container.columns-5>li{width:calc(20% - 1em)}.wp-block-query-loop.is-flex-container.is-flex-container.columns-5>li:nth-child(5n){margin-right:0}.wp-block-query-loop.is-flex-container.is-flex-container.columns-6>li{width:calc(16.66667% - 1.04167em)}.wp-block-query-loop.is-flex-container.is-flex-container.columns-6>li:nth-child(6n){margin-right:0}}.wp-block-query-pagination{display:flex;flex-direction:row;flex-wrap:wrap}.wp-block-query-pagination>.wp-block-query-pagination-next,.wp-block-query-pagination>.wp-block-query-pagination-numbers,.wp-block-query-pagination>.wp-block-query-pagination-previous{display:inline-block;margin-right:.5em;margin-bottom:.5em}.wp-block-query-pagination>.wp-block-query-pagination-next:last-child,.wp-block-query-pagination>.wp-block-query-pagination-numbers:last-child,.wp-block-query-pagination>.wp-block-query-pagination-previous:last-child{margin-right:0}.wp-block-quote.is-large,.wp-block-quote.is-style-large{margin-bottom:1em;padding:0 1em}.wp-block-quote.is-large p,.wp-block-quote.is-style-large p{font-size:1.5em;font-style:italic;line-height:1.6}.wp-block-quote.is-large cite,.wp-block-quote.is-large footer,.wp-block-quote.is-style-large cite,.wp-block-quote.is-style-large footer{font-size:1.125em;text-align:right}.wp-block-rss.wp-block-rss{box-sizing:border-box}.wp-block-rss.alignleft{margin-right:2em}.wp-block-rss.alignright{margin-left:2em}.wp-block-rss.is-grid{display:flex;flex-wrap:wrap;padding:0;list-style:none}.wp-block-rss.is-grid li{margin:0 1em 1em 0;width:100%}@media (min-width:600px){.wp-block-rss.columns-2 li{width:calc(50% - 1em)}.wp-block-rss.columns-3 li{width:calc(33.33333% - 1em)}.wp-block-rss.columns-4 li{width:calc(25% - 1em)}.wp-block-rss.columns-5 li{width:calc(20% - 1em)}.wp-block-rss.columns-6 li{width:calc(16.66667% - 1em)}}.wp-block-rss__item-author,.wp-block-rss__item-publish-date{display:block;color:#555;font-size:.8125em}.wp-block-search .wp-block-search__button{background:#f7f7f7;border:1px solid #ccc;padding:.375em .625em;color:#32373c;margin-left:.625em;word-break:normal}.wp-block-search .wp-block-search__button.has-icon{line-height:0}.wp-block-search .wp-block-search__button svg{min-width:1.5em;min-height:1.5em}.wp-block-search .wp-block-search__inside-wrapper{display:flex;flex:auto;flex-wrap:nowrap;max-width:100%}.wp-block-search .wp-block-search__label{width:100%}.wp-block-search .wp-block-search__input{flex-grow:1;min-width:3em;border:1px solid #949494}.wp-block-search.wp-block-search__button-only .wp-block-search__button{margin-left:0}.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper{padding:4px;border:1px solid #949494}.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input{border-radius:0;border:none;padding:0 0 0 .25em}.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:focus{outline:none}.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button{padding:.125em .5em}.wp-block-separator.is-style-wide{border-bottom-width:1px}.wp-block-separator.is-style-dots{background:none!important;border:none;text-align:center;max-width:none;line-height:1;height:auto}.wp-block-separator.is-style-dots:before{content:"···";color:currentColor;font-size:1.5em;letter-spacing:2em;padding-left:2em;font-family:serif}.wp-block-custom-logo{line-height:0}.wp-block-custom-logo .aligncenter{display:table}.wp-block-custom-logo.is-style-rounded img{border-radius:9999px}.wp-block-social-links{display:flex;flex-wrap:wrap;justify-content:flex-start;padding-left:0;padding-right:0;text-indent:0;margin-left:0}.wp-block-social-links .wp-social-link a,.wp-block-social-links .wp-social-link a:hover{text-decoration:none;border-bottom:0;box-shadow:none}.wp-block-social-links .wp-social-link.wp-social-link.wp-social-link{margin:4px 8px 4px 0}.wp-block-social-links .wp-social-link a{padding:.25em}.wp-block-social-links .wp-social-link svg{width:1em;height:1em}.wp-block-social-links.has-small-icon-size{font-size:16px}.wp-block-social-links,.wp-block-social-links.has-normal-icon-size{font-size:24px}.wp-block-social-links.has-large-icon-size{font-size:36px}.wp-block-social-links.has-huge-icon-size{font-size:48px}.wp-block-social-links.aligncenter{justify-content:center;display:flex}.wp-block-social-links.alignright{justify-content:flex-end}.wp-social-link{display:block;border-radius:9999px;transition:transform .1s ease;height:auto}@media (prefers-reduced-motion:reduce){.wp-social-link{transition-duration:0s}}.wp-social-link a{display:block;line-height:0;transition:transform .1s ease}.wp-social-link a,.wp-social-link a:active,.wp-social-link a:hover,.wp-social-link a:visited,.wp-social-link svg{color:currentColor;fill:currentColor}.wp-social-link:hover{transform:scale(1.1)}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link{background-color:#f0f0f0;color:#444}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-amazon{background-color:#f90;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-bandcamp{background-color:#1ea0c3;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-behance{background-color:#0757fe;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-codepen{background-color:#1e1f26;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-deviantart{background-color:#02e49b;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dribbble{background-color:#e94c89;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dropbox{background-color:#4280ff;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-etsy{background-color:#f45800;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-facebook{background-color:#1778f2;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-fivehundredpx{background-color:#000;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-flickr{background-color:#0461dd;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-foursquare{background-color:#e65678;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-github{background-color:#24292d;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-goodreads{background-color:#eceadd;color:#382110}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-google{background-color:#ea4434;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-instagram{background-color:#f00075;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-lastfm{background-color:#e21b24;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-linkedin{background-color:#0d66c2;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-mastodon{background-color:#3288d4;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-medium{background-color:#02ab6c;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-meetup{background-color:#f6405f;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-patreon{background-color:#ff424d;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pinterest{background-color:#e60122;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pocket{background-color:#ef4155;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-reddit{background-color:#fe4500;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-skype{background-color:#0478d7;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-snapchat{background-color:#fefc00;color:#fff;stroke:#000}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-soundcloud{background-color:#ff5600;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-spotify{background-color:#1bd760;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-telegram{background-color:#2aabee;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tiktok{background-color:#000;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tumblr{background-color:#011835;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitch{background-color:#6440a4;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitter{background-color:#1da1f2;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vimeo{background-color:#1eb7ea;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vk{background-color:#4680c2;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-wordpress{background-color:#3499cd;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-yelp{background-color:#d32422;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-youtube{background-color:red;color:#fff}.wp-block-social-links.is-style-logos-only .wp-social-link{background:none;padding:4px}.wp-block-social-links.is-style-logos-only .wp-social-link-amazon{color:#f90}.wp-block-social-links.is-style-logos-only .wp-social-link-bandcamp{color:#1ea0c3}.wp-block-social-links.is-style-logos-only .wp-social-link-behance{color:#0757fe}.wp-block-social-links.is-style-logos-only .wp-social-link-codepen{color:#1e1f26}.wp-block-social-links.is-style-logos-only .wp-social-link-deviantart{color:#02e49b}.wp-block-social-links.is-style-logos-only .wp-social-link-dribbble{color:#e94c89}.wp-block-social-links.is-style-logos-only .wp-social-link-dropbox{color:#4280ff}.wp-block-social-links.is-style-logos-only .wp-social-link-etsy{color:#f45800}.wp-block-social-links.is-style-logos-only .wp-social-link-facebook{color:#1778f2}.wp-block-social-links.is-style-logos-only .wp-social-link-fivehundredpx{color:#000}.wp-block-social-links.is-style-logos-only .wp-social-link-flickr{color:#0461dd}.wp-block-social-links.is-style-logos-only .wp-social-link-foursquare{color:#e65678}.wp-block-social-links.is-style-logos-only .wp-social-link-github{color:#24292d}.wp-block-social-links.is-style-logos-only .wp-social-link-goodreads{color:#382110}.wp-block-social-links.is-style-logos-only .wp-social-link-google{color:#ea4434}.wp-block-social-links.is-style-logos-only .wp-social-link-instagram{color:#f00075}.wp-block-social-links.is-style-logos-only .wp-social-link-lastfm{color:#e21b24}.wp-block-social-links.is-style-logos-only .wp-social-link-linkedin{color:#0d66c2}.wp-block-social-links.is-style-logos-only .wp-social-link-mastodon{color:#3288d4}.wp-block-social-links.is-style-logos-only .wp-social-link-medium{color:#02ab6c}.wp-block-social-links.is-style-logos-only .wp-social-link-meetup{color:#f6405f}.wp-block-social-links.is-style-logos-only .wp-social-link-patreon{color:#ff424d}.wp-block-social-links.is-style-logos-only .wp-social-link-pinterest{color:#e60122}.wp-block-social-links.is-style-logos-only .wp-social-link-pocket{color:#ef4155}.wp-block-social-links.is-style-logos-only .wp-social-link-reddit{color:#fe4500}.wp-block-social-links.is-style-logos-only .wp-social-link-skype{color:#0478d7}.wp-block-social-links.is-style-logos-only .wp-social-link-snapchat{color:#fff;stroke:#000}.wp-block-social-links.is-style-logos-only .wp-social-link-soundcloud{color:#ff5600}.wp-block-social-links.is-style-logos-only .wp-social-link-spotify{color:#1bd760}.wp-block-social-links.is-style-logos-only .wp-social-link-telegram{color:#2aabee}.wp-block-social-links.is-style-logos-only .wp-social-link-tiktok{color:#000}.wp-block-social-links.is-style-logos-only .wp-social-link-tumblr{color:#011835}.wp-block-social-links.is-style-logos-only .wp-social-link-twitch{color:#6440a4}.wp-block-social-links.is-style-logos-only .wp-social-link-twitter{color:#1da1f2}.wp-block-social-links.is-style-logos-only .wp-social-link-vimeo{color:#1eb7ea}.wp-block-social-links.is-style-logos-only .wp-social-link-vk{color:#4680c2}.wp-block-social-links.is-style-logos-only .wp-social-link-wordpress{color:#3499cd}.wp-block-social-links.is-style-logos-only .wp-social-link-yelp{background-color:#d32422;color:#fff}.wp-block-social-links.is-style-logos-only .wp-social-link-youtube{color:red}.wp-block-social-links.is-style-pill-shape .wp-social-link{width:auto}.wp-block-social-links.is-style-pill-shape .wp-social-link a{padding-left:.66667em;padding-right:.66667em}.wp-block-spacer{clear:both}p.wp-block-subhead{font-size:1.1em;font-style:italic;opacity:.75}.wp-block-tag-cloud.aligncenter{text-align:center}.wp-block-tag-cloud.alignfull{padding-left:1em;padding-right:1em}.wp-block-table{overflow-x:auto}.wp-block-table table{width:100%}.wp-block-table .has-fixed-layout{table-layout:fixed;width:100%}.wp-block-table .has-fixed-layout td,.wp-block-table .has-fixed-layout th{word-break:break-word}.wp-block-table.aligncenter,.wp-block-table.alignleft,.wp-block-table.alignright{display:table;width:auto}.wp-block-table.aligncenter td,.wp-block-table.aligncenter th,.wp-block-table.alignleft td,.wp-block-table.alignleft th,.wp-block-table.alignright td,.wp-block-table.alignright th{word-break:break-word}.wp-block-table .has-subtle-light-gray-background-color{background-color:#f3f4f5}.wp-block-table .has-subtle-pale-green-background-color{background-color:#e9fbe5}.wp-block-table .has-subtle-pale-blue-background-color{background-color:#e7f5fe}.wp-block-table .has-subtle-pale-pink-background-color{background-color:#fcf0ef}.wp-block-table.is-style-stripes{border-spacing:0;border-collapse:inherit;background-color:transparent;border-bottom:1px solid #f0f0f0}.wp-block-table.is-style-stripes tbody tr:nth-child(odd){background-color:#f0f0f0}.wp-block-table.is-style-stripes.has-subtle-light-gray-background-color tbody tr:nth-child(odd){background-color:#f3f4f5}.wp-block-table.is-style-stripes.has-subtle-pale-green-background-color tbody tr:nth-child(odd){background-color:#e9fbe5}.wp-block-table.is-style-stripes.has-subtle-pale-blue-background-color tbody tr:nth-child(odd){background-color:#e7f5fe}.wp-block-table.is-style-stripes.has-subtle-pale-pink-background-color tbody tr:nth-child(odd){background-color:#fcf0ef}.wp-block-table.is-style-stripes td,.wp-block-table.is-style-stripes th{border-color:transparent}.wp-block-text-columns,.wp-block-text-columns.aligncenter{display:flex}.wp-block-text-columns .wp-block-column{margin:0 1em;padding:0}.wp-block-text-columns .wp-block-column:first-child{margin-left:0}.wp-block-text-columns .wp-block-column:last-child{margin-right:0}.wp-block-text-columns.columns-2 .wp-block-column{width:50%}.wp-block-text-columns.columns-3 .wp-block-column{width:33.33333%}.wp-block-text-columns.columns-4 .wp-block-column{width:25%}pre.wp-block-verse{font-family:inherit;overflow:auto;white-space:pre-wrap}.wp-block-video{margin-left:0;margin-right:0}.wp-block-video video{width:100%}@supports ((position:-webkit-sticky) or (position:sticky)){.wp-block-video [poster]{-o-object-fit:cover;object-fit:cover}}.wp-block-video.aligncenter{text-align:center}.wp-block-video figcaption{margin-top:.5em;margin-bottom:1em}.wp-block-post-featured-image a{display:inline-block}.wp-block-post-featured-image img{max-width:100%;height:auto}:root .has-pale-pink-background-color{background-color:#f78da7}:root .has-vivid-red-background-color{background-color:#cf2e2e}:root .has-luminous-vivid-orange-background-color{background-color:#ff6900}:root .has-luminous-vivid-amber-background-color{background-color:#fcb900}:root .has-light-green-cyan-background-color{background-color:#7bdcb5}:root .has-vivid-green-cyan-background-color{background-color:#00d084}:root .has-pale-cyan-blue-background-color{background-color:#8ed1fc}:root .has-vivid-cyan-blue-background-color{background-color:#0693e3}:root .has-vivid-purple-background-color{background-color:#9b51e0}:root .has-white-background-color{background-color:#fff}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-cyan-bluish-gray-background-color{background-color:#abb8c3}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-black-background-color{background-color:#000}:root .has-pale-pink-color{color:#f78da7}:root .has-vivid-red-color{color:#cf2e2e}:root .has-luminous-vivid-orange-color{color:#ff6900}:root .has-luminous-vivid-amber-color{color:#fcb900}:root .has-light-green-cyan-color{color:#7bdcb5}:root .has-vivid-green-cyan-color{color:#00d084}:root .has-pale-cyan-blue-color{color:#8ed1fc}:root .has-vivid-cyan-blue-color{color:#0693e3}:root .has-vivid-purple-color{color:#9b51e0}:root .has-white-color{color:#fff}:root .has-very-light-gray-color{color:#eee}:root .has-cyan-bluish-gray-color{color:#abb8c3}:root .has-very-dark-gray-color{color:#313131}:root .has-black-color{color:#000}:root .has-vivid-cyan-blue-to-vivid-purple-gradient-background{background:linear-gradient(135deg,#0693e3,#9b51e0)}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-light-green-cyan-to-vivid-green-cyan-gradient-background{background:linear-gradient(135deg,#7adcb4,#00d082)}:root .has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background:linear-gradient(135deg,#fcb900,#ff6900)}:root .has-luminous-vivid-orange-to-vivid-red-gradient-background{background:linear-gradient(135deg,#ff6900,#cf2e2e)}:root .has-very-light-gray-to-cyan-bluish-gray-gradient-background{background:linear-gradient(135deg,#eee,#a9b8c3)}:root .has-cool-to-warm-spectrum-gradient-background{background:linear-gradient(135deg,#4aeadc,#9778d1 20%,#cf2aba 40%,#ee2c82 60%,#fb6962 80%,#fef84c)}:root .has-blush-light-purple-gradient-background{background:linear-gradient(135deg,#ffceec,#9896f0)}:root .has-blush-bordeaux-gradient-background{background:linear-gradient(135deg,#fecda5,#fe2d2d 50%,#6b003e)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-luminous-dusk-gradient-background{background:linear-gradient(135deg,#ffcb70,#c751c0 50%,#4158d0)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-pale-ocean-gradient-background{background:linear-gradient(135deg,#fff5cb,#b6e3d4 50%,#33a7b5)}:root .has-electric-grass-gradient-background{background:linear-gradient(135deg,#caf880,#71ce7e)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root .has-link-color a{color:#00e;color:var(--wp--style--color--link,#00e)}.has-small-font-size{font-size:.8125em}.has-normal-font-size,.has-regular-font-size{font-size:1em}.has-medium-font-size{font-size:1.25em}.has-large-font-size{font-size:2.25em}.has-huge-font-size,.has-larger-font-size{font-size:2.625em}.has-text-align-center{text-align:center}.has-text-align-left{text-align:left}.has-text-align-right{text-align:right}#end-resizable-editor-section{display:none}.aligncenter{clear:both} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/79fc7075c30a4a660c588d3429ef41ff7156ded8.00000594.js b/www/.content.EZtzwPjb/html/79fc7075c30a4a660c588d3429ef41ff7156ded8.00000594.js new file mode 100644 index 0000000..e7e7e48 --- /dev/null +++ b/www/.content.EZtzwPjb/html/79fc7075c30a4a660c588d3429ef41ff7156ded8.00000594.js @@ -0,0 +1,413 @@ +(function($) { + + if (typeof _wpcf7 == 'undefined' || _wpcf7 === null) + _wpcf7 = {}; + + _wpcf7 = $.extend({ cached: 0 }, _wpcf7); + + $(function() { + _wpcf7.supportHtml5 = $.wpcf7SupportHtml5(); + $('div.wpcf7 > form').wpcf7InitForm(); + }); + + $.fn.wpcf7InitForm = function() { + this.ajaxForm({ + beforeSubmit: function(arr, $form, options) { + $form.wpcf7ClearResponseOutput(); + $form.find('[aria-invalid]').attr('aria-invalid', 'false'); + $form.find('img.ajax-loader').css({ visibility: 'visible' }); + return true; + }, + beforeSerialize: function($form, options) { + $form.find('[placeholder].placeheld').each(function(i, n) { + $(n).val(''); + }); + return true; + }, + data: { '_wpcf7_is_ajax_call': 1 }, + dataType: 'json', + success: $.wpcf7AjaxSuccess, + error: function(xhr, status, error, $form) { + var e = $('
                      ').text(error.message); + $form.after(e); + } + }); + + if (_wpcf7.cached) + this.wpcf7OnloadRefill(); + + this.wpcf7ToggleSubmit(); + + this.find('.wpcf7-submit').wpcf7AjaxLoader(); + + this.find('.wpcf7-acceptance').click(function() { + $(this).closest('form').wpcf7ToggleSubmit(); + }); + + this.find('.wpcf7-exclusive-checkbox').wpcf7ExclusiveCheckbox(); + + this.find('.wpcf7-list-item.has-free-text').wpcf7ToggleCheckboxFreetext(); + + this.find('[placeholder]').wpcf7Placeholder(); + + if (_wpcf7.jqueryUi && ! _wpcf7.supportHtml5.date) { + this.find('input.wpcf7-date[type="date"]').each(function() { + $(this).datepicker({ + dateFormat: 'yy-mm-dd', + minDate: new Date($(this).attr('min')), + maxDate: new Date($(this).attr('max')) + }); + }); + } + + if (_wpcf7.jqueryUi && ! _wpcf7.supportHtml5.number) { + this.find('input.wpcf7-number[type="number"]').each(function() { + $(this).spinner({ + min: $(this).attr('min'), + max: $(this).attr('max'), + step: $(this).attr('step') + }); + }); + } + + this.find('.wpcf7-character-count').wpcf7CharacterCount(); + + this.find('.wpcf7-validates-as-url').change(function() { + $(this).wpcf7NormalizeUrl(); + }); + }; + + $.wpcf7AjaxSuccess = function(data, status, xhr, $form) { + if (! $.isPlainObject(data) || $.isEmptyObject(data)) + return; + + var $responseOutput = $form.find('div.wpcf7-response-output'); + + $form.wpcf7ClearResponseOutput(); + + $form.find('.wpcf7-form-control').removeClass('wpcf7-not-valid'); + $form.removeClass('invalid spam sent failed'); + + if (data.captcha) + $form.wpcf7RefillCaptcha(data.captcha); + + if (data.quiz) + $form.wpcf7RefillQuiz(data.quiz); + + if (data.invalids) { + $.each(data.invalids, function(i, n) { + $form.find(n.into).wpcf7NotValidTip(n.message); + $form.find(n.into).find('.wpcf7-form-control').addClass('wpcf7-not-valid'); + $form.find(n.into).find('[aria-invalid]').attr('aria-invalid', 'true'); + }); + + $responseOutput.addClass('wpcf7-validation-errors'); + $form.addClass('invalid'); + + $(data.into).trigger('invalid.wpcf7'); + + } else if (1 == data.spam) { + $responseOutput.addClass('wpcf7-spam-blocked'); + $form.addClass('spam'); + + $(data.into).trigger('spam.wpcf7'); + + } else if (1 == data.mailSent) { + $responseOutput.addClass('wpcf7-mail-sent-ok'); + $form.addClass('sent'); + + if (data.onSentOk) + $.each(data.onSentOk, function(i, n) { eval(n) }); + + $(data.into).trigger('mailsent.wpcf7'); + + } else { + $responseOutput.addClass('wpcf7-mail-sent-ng'); + $form.addClass('failed'); + + $(data.into).trigger('mailfailed.wpcf7'); + } + + if (data.onSubmit) + $.each(data.onSubmit, function(i, n) { eval(n) }); + + $(data.into).trigger('submit.wpcf7'); + + if (1 == data.mailSent) + $form.resetForm(); + + $form.find('[placeholder].placeheld').each(function(i, n) { + $(n).val($(n).attr('placeholder')); + }); + + $responseOutput.append(data.message).slideDown('fast'); + $responseOutput.attr('role', 'alert'); + + $.wpcf7UpdateScreenReaderResponse($form, data); + }; + + $.fn.wpcf7ExclusiveCheckbox = function() { + return this.find('input:checkbox').click(function() { + $(this).closest('.wpcf7-checkbox').find('input:checkbox').not(this).removeAttr('checked'); + }); + }; + + $.fn.wpcf7Placeholder = function() { + if (_wpcf7.supportHtml5.placeholder) + return this; + + return this.each(function() { + $(this).val($(this).attr('placeholder')); + $(this).addClass('placeheld'); + + $(this).focus(function() { + if ($(this).hasClass('placeheld')) + $(this).val('').removeClass('placeheld'); + }); + + $(this).blur(function() { + if ('' == $(this).val()) { + $(this).val($(this).attr('placeholder')); + $(this).addClass('placeheld'); + } + }); + }); + }; + + $.fn.wpcf7AjaxLoader = function() { + return this.each(function() { + var loader = $('') + .attr({ src: _wpcf7.loaderUrl, alt: _wpcf7.sending }) + .css('visibility', 'hidden'); + + $(this).after(loader); + }); + }; + + $.fn.wpcf7ToggleSubmit = function() { + return this.each(function() { + var form = $(this); + if (this.tagName.toLowerCase() != 'form') + form = $(this).find('form').first(); + + if (form.hasClass('wpcf7-acceptance-as-validation')) + return; + + var submit = form.find('input:submit'); + if (! submit.length) return; + + var acceptances = form.find('input:checkbox.wpcf7-acceptance'); + if (! acceptances.length) return; + + submit.removeAttr('disabled'); + acceptances.each(function(i, n) { + n = $(n); + if (n.hasClass('wpcf7-invert') && n.is(':checked') + || ! n.hasClass('wpcf7-invert') && ! n.is(':checked')) + submit.attr('disabled', 'disabled'); + }); + }); + }; + + $.fn.wpcf7ToggleCheckboxFreetext = function() { + return this.each(function() { + var $wrap = $(this).closest('.wpcf7-form-control'); + + if ($(this).find(':checkbox, :radio').is(':checked')) { + $(this).find(':input.wpcf7-free-text').prop('disabled', false); + } else { + $(this).find(':input.wpcf7-free-text').prop('disabled', true); + } + + $wrap.find(':checkbox, :radio').change(function() { + var $cb = $('.has-free-text', $wrap).find(':checkbox, :radio'); + var $freetext = $(':input.wpcf7-free-text', $wrap); + + if ($cb.is(':checked')) { + $freetext.prop('disabled', false).focus(); + } else { + $freetext.prop('disabled', true); + } + }); + }); + }; + + $.fn.wpcf7CharacterCount = function() { + return this.each(function() { + var $count = $(this); + var name = $count.attr('data-target-name'); + var down = $count.hasClass('down'); + var starting = parseInt($count.attr('data-starting-value'), 10); + var maximum = parseInt($count.attr('data-maximum-value'), 10); + var minimum = parseInt($count.attr('data-minimum-value'), 10); + + var updateCount = function($target) { + var length = $target.val().length; + var count = down ? starting - length : length; + $count.attr('data-current-value', count); + $count.text(count); + + if (maximum && maximum < length) { + $count.addClass('too-long'); + } else { + $count.removeClass('too-long'); + } + + if (minimum && length < minimum) { + $count.addClass('too-short'); + } else { + $count.removeClass('too-short'); + } + }; + + $count.closest('form').find(':input[name="' + name + '"]').each(function() { + updateCount($(this)); + + $(this).keyup(function() { + updateCount($(this)); + }); + }); + }); + }; + + $.fn.wpcf7NormalizeUrl = function() { + return this.each(function() { + var val = $.trim($(this).val()); + + if (! val.match(/^[a-z][a-z0-9.+-]*:/i)) { // check the scheme part + val = val.replace(/^\/+/, ''); + val = 'http://' + val; + } + + $(this).val(val); + }); + }; + + $.fn.wpcf7NotValidTip = function(message) { + return this.each(function() { + var $into = $(this); + + $into.find('span.wpcf7-not-valid-tip').remove(); + $into.append('' + message + ''); + + if ($into.is('.use-floating-validation-tip *')) { + $('.wpcf7-not-valid-tip', $into).mouseover(function() { + $(this).wpcf7FadeOut(); + }); + + $(':input', $into).focus(function() { + $('.wpcf7-not-valid-tip', $into).not(':hidden').wpcf7FadeOut(); + }); + } + }); + }; + + $.fn.wpcf7FadeOut = function() { + return this.each(function() { + $(this).animate({ + opacity: 0 + }, 'fast', function() { + $(this).css({'z-index': -100}); + }); + }); + }; + + $.fn.wpcf7OnloadRefill = function() { + return this.each(function() { + var url = $(this).attr('action'); + if (0 < url.indexOf('#')) + url = url.substr(0, url.indexOf('#')); + + var id = $(this).find('input[name="_wpcf7"]').val(); + var unitTag = $(this).find('input[name="_wpcf7_unit_tag"]').val(); + + $.getJSON(url, + { _wpcf7_is_ajax_call: 1, _wpcf7: id, _wpcf7_request_ver: $.now() }, + function(data) { + if (data && data.captcha) + $('#' + unitTag).wpcf7RefillCaptcha(data.captcha); + + if (data && data.quiz) + $('#' + unitTag).wpcf7RefillQuiz(data.quiz); + } + ); + }); + }; + + $.fn.wpcf7RefillCaptcha = function(captcha) { + return this.each(function() { + var form = $(this); + + $.each(captcha, function(i, n) { + form.find(':input[name="' + i + '"]').clearFields(); + form.find('img.wpcf7-captcha-' + i).attr('src', n); + var match = /([0-9]+)\.(png|gif|jpeg)$/.exec(n); + form.find('input:hidden[name="_wpcf7_captcha_challenge_' + i + '"]').attr('value', match[1]); + }); + }); + }; + + $.fn.wpcf7RefillQuiz = function(quiz) { + return this.each(function() { + var form = $(this); + + $.each(quiz, function(i, n) { + form.find(':input[name="' + i + '"]').clearFields(); + form.find(':input[name="' + i + '"]').siblings('span.wpcf7-quiz-label').text(n[0]); + form.find('input:hidden[name="_wpcf7_quiz_answer_' + i + '"]').attr('value', n[1]); + }); + }); + }; + + $.fn.wpcf7ClearResponseOutput = function() { + return this.each(function() { + $(this).find('div.wpcf7-response-output').hide().empty().removeClass('wpcf7-mail-sent-ok wpcf7-mail-sent-ng wpcf7-validation-errors wpcf7-spam-blocked').removeAttr('role'); + $(this).find('span.wpcf7-not-valid-tip').remove(); + $(this).find('img.ajax-loader').css({ visibility: 'hidden' }); + }); + }; + + $.wpcf7UpdateScreenReaderResponse = function($form, data) { + $('.wpcf7 .screen-reader-response').html('').attr('role', ''); + + if (data.message) { + var $response = $form.siblings('.screen-reader-response').first(); + $response.append(data.message); + + if (data.invalids) { + var $invalids = $('
                        '); + + $.each(data.invalids, function(i, n) { + if (n.idref) { + var $li = $('
                      • ').append($('').attr('href', '#' + n.idref).append(n.message)); + } else { + var $li = $('
                      • ').append(n.message); + } + + $invalids.append($li); + }); + + $response.append($invalids); + } + + $response.attr('role', 'alert').focus(); + } + }; + + $.wpcf7SupportHtml5 = function() { + var features = {}; + var input = document.createElement('input'); + + features.placeholder = 'placeholder' in input; + + var inputTypes = ['email', 'url', 'tel', 'number', 'range', 'date']; + + $.each(inputTypes, function(index, value) { + input.setAttribute('type', value); + features[value] = input.type !== 'text'; + }); + + return features; + }; + +})(jQuery); \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/7a406ecbc5b1520bba34a081074b84b33d93103a.00000763.svg b/www/.content.EZtzwPjb/html/7a406ecbc5b1520bba34a081074b84b33d93103a.00000763.svg new file mode 100644 index 0000000..47bb690 --- /dev/null +++ b/www/.content.EZtzwPjb/html/7a406ecbc5b1520bba34a081074b84b33d93103a.00000763.svg @@ -0,0 +1,3451 @@ + + + + + +Created by FontForge 20190112 at Mon Jul 29 09:54:22 2019 + By Robert Madole +Copyright (c) Font Awesome + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/7a60b9bac7d107f5826a4c72c8429e5554f8ca4a.00000533.html b/www/.content.EZtzwPjb/html/7a60b9bac7d107f5826a4c72c8429e5554f8ca4a.00000533.html new file mode 100644 index 0000000..fa4e72b --- /dev/null +++ b/www/.content.EZtzwPjb/html/7a60b9bac7d107f5826a4c72c8429e5554f8ca4a.00000533.html @@ -0,0 +1,364 @@ + + + + + + + tmg – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +

                        Download-Day

                        Bon voilà, je vais officialiser ma participation au D-Day organisé par LinuxManua, en date du 1er novembre 2010. Le but de l’opération étant de télécharger 20 Go et cela uniquement sur les réseaux Peer to Peer de préférence pas anonyme : Edonkey2000, Gnutella, Bitorrent, etc. Alors comme je suis joueur, je Lire la suite…

                        +
                        +
                        + +
                        +
                        +
                        +
                        + +
                        +
                        + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/7a694fdb3f3c6e44f432949d48c28ef5dc28f15f.00000790.js b/www/.content.EZtzwPjb/html/7a694fdb3f3c6e44f432949d48c28ef5dc28f15f.00000790.js new file mode 100644 index 0000000..8d9e129 --- /dev/null +++ b/www/.content.EZtzwPjb/html/7a694fdb3f3c6e44f432949d48c28ef5dc28f15f.00000790.js @@ -0,0 +1,49 @@ +/* Apply matchHeight to match team grid */ +/* global jQuery */ +/* global wp */ +function hestiaMatchHeight() { + 'use strict'; + + + var in_customizer = false; + + // check for wp.customize return boolean + if ( typeof wp !== 'undefined' ) { + in_customizer = typeof wp.customize !== 'undefined'; + } + + // if you're in the customizer do this + if ( in_customizer ) { + return; + } + + var byRow = jQuery('body').hasClass('home'); + + if (typeof jQuery('#features') !== 'undefined') { + jQuery('.hestia-features .row .col-md-4, .features .row .col-md-4').matchHeight(byRow); + } + + if (typeof jQuery('#products') !== 'undefined') { + jQuery('.products .row .col-md-3, .products .row .col-sm-6').matchHeight(byRow); + } + + if (typeof jQuery('#portfolio') !== 'undefined') { + jQuery('.hestia-work .row .col-md-4, .work .row .col-md-4, .hestia-work .row .col-md-6, .work .row .col-md-6').matchHeight(byRow); + } + + if (typeof jQuery('#team') !== 'undefined') { + jQuery('.hestia-team .row .col-md-6, .team .row .col-md-6').matchHeight(byRow); + } + + if (typeof jQuery('#testimonials') !== 'undefined') { + jQuery('.hestia-testimonials .row .col-md-4, .testimonials .row .col-md-4').matchHeight(byRow); + } + + if (typeof jQuery('#pricing') !== 'undefined') { + jQuery('.pricing .row .col-md-7 .col-md-6').matchHeight(byRow); + } + + if (typeof jQuery('#blog') !== 'undefined') { + jQuery('.hestia-blogs .row .col-md-4, .blogs .row .col-md-4').matchHeight(byRow); + } +} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/7b268016ccacaffdcc99f1875ccaa6deda4e93a9.00000673.css b/www/.content.EZtzwPjb/html/7b268016ccacaffdcc99f1875ccaa6deda4e93a9.00000673.css new file mode 100644 index 0000000..20df2bb --- /dev/null +++ b/www/.content.EZtzwPjb/html/7b268016ccacaffdcc99f1875ccaa6deda4e93a9.00000673.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7 .screen-reader-response{position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);height:1px;width:1px;margin:0;padding:0;border:0}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{color:#f00;font-size:1em;display:block}.use-floating-validation-tip span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;border:1px +solid #f00;background:#fff;padding: .2em .8em}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/7b28bce28a72d13fa953f1ffad5edf84c8d2da24.00000493.xml b/www/.content.EZtzwPjb/html/7b28bce28a72d13fa953f1ffad5edf84c8d2da24.00000493.xml new file mode 100644 index 0000000..37f4589 --- /dev/null +++ b/www/.content.EZtzwPjb/html/7b28bce28a72d13fa953f1ffad5edf84c8d2da24.00000493.xml @@ -0,0 +1,41 @@ + + + + HugoPoi » redimensionner + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Sat, 14 Sep 2013 23:01:40 +0000 + fr-FR + hourly + 1 + http://wordpress.org/?v=3.6 + + Redimensionner une partition NTFS + http://blog.hugopoi.net/2012/12/23/redimensionner-une-partition-ntfs/ + http://blog.hugopoi.net/2012/12/23/redimensionner-une-partition-ntfs/#comments + Sun, 23 Dec 2012 17:56:48 +0000 + HugoPoi + + + + + + + + + + http://blog.hugopoi.net/?p=685 + Lire la suite »

                        ]]>
                        + http://blog.hugopoi.net/2012/12/23/redimensionner-une-partition-ntfs/feed/ + 0 +
                        +
                        +
                        diff --git a/www/.content.EZtzwPjb/html/7b31b14679057142c8d9daf20b0c4324b35da0d0.00001320.html b/www/.content.EZtzwPjb/html/7b31b14679057142c8d9daf20b0c4324b35da0d0.00001320.html new file mode 100644 index 0000000..3f90886 --- /dev/null +++ b/www/.content.EZtzwPjb/html/7b31b14679057142c8d9daf20b0c4324b35da0d0.00001320.html @@ -0,0 +1 @@ +XML-RPC server accepts POST requests only. \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/7b53d50544da7811b85208956c744ff2b75f9655.00000021.xml b/www/.content.EZtzwPjb/html/7b53d50544da7811b85208956c744ff2b75f9655.00000021.xml new file mode 100644 index 0000000..ccecec0 --- /dev/null +++ b/www/.content.EZtzwPjb/html/7b53d50544da7811b85208956c744ff2b75f9655.00000021.xml @@ -0,0 +1,59 @@ + + + Commentaires sur : Stop au terme pirate + + http://blog.hugopoi.net/2010/11/25/stop-au-terme-pirate/ + Internet, Hardware et Bidouille + Mon, 22 Aug 2016 14:09:10 +0000 + hourly + 1 + https://wordpress.org/?v=4.6.1 + + Par : saad + http://blog.hugopoi.net/2010/11/25/stop-au-terme-pirate/#comment-56 + + Mon, 25 Apr 2011 19:26:06 +0000 + http://blog.hugopoi.net/?p=159#comment-56 + + cool

                        +]]>
                        +
                        + + Par : Tweets that mention Stop au terme pirate | HugoPoi -- Topsy.com + http://blog.hugopoi.net/2010/11/25/stop-au-terme-pirate/#comment-17 + + Sun, 28 Nov 2010 02:08:10 +0000 + http://blog.hugopoi.net/?p=159#comment-17 + + […] This post was mentioned on Twitter by HugoPoi, HugoPoi. HugoPoi said: Stop au terme pirate http://bit.ly/flDnyU @Pascal_Negre […]

                        +]]>
                        +
                        + + Par : HugoPoi + http://blog.hugopoi.net/2010/11/25/stop-au-terme-pirate/#comment-15 + + Fri, 26 Nov 2010 09:20:52 +0000 + http://blog.hugopoi.net/?p=159#comment-15 + + J’ai twitter l’article à Monsieur Pascal Nègre mais je pense que même si il m’a lu, il n’a pas le temps de répondre à toutes les critiques qu’on lui fait entre Numerama, Bluetouff, Glazman …
                        +Quand tu dis que si on télécharge quelque chose, on ne l’achètera pas, c’est faux parce que quand un truc me plait vraiment je vais l’acheter.

                        +]]>
                        +
                        + + Par : Xavier + http://blog.hugopoi.net/2010/11/25/stop-au-terme-pirate/#comment-14 + + Thu, 25 Nov 2010 23:05:54 +0000 + http://blog.hugopoi.net/?p=159#comment-14 + + Ouah sa va tu t’est lâché . Lol . Il doit bien avoir un Twitter ou un Facebook pour lui transmettre l’info LOL. Néanmoins je pense qu ce qu’on télécharge est quelque chose que l’on achètera pas donc il y à perte d’argent quand même .mais avec la pub faite grâce au téléchargement ils ne perdent rien .fin voila jdit sa jdit rien moi ;)

                        +]]>
                        +
                        +
                        +
                        diff --git a/www/.content.EZtzwPjb/html/7bb17530393550f01cb7183e614135d6534ecc13.00001251.js b/www/.content.EZtzwPjb/html/7bb17530393550f01cb7183e614135d6534ecc13.00001251.js new file mode 100644 index 0000000..16e4c13 --- /dev/null +++ b/www/.content.EZtzwPjb/html/7bb17530393550f01cb7183e614135d6534ecc13.00001251.js @@ -0,0 +1,2 @@ +/*! This file is auto-generated */ +!function(c,d){"use strict";var e=!1,n=!1;if(d.querySelector)if(c.addEventListener)e=!0;if(c.wp=c.wp||{},!c.wp.receiveEmbedMessage)if(c.wp.receiveEmbedMessage=function(e){var t=e.data;if(t)if(t.secret||t.message||t.value)if(!/[^a-zA-Z0-9]/.test(t.secret)){for(var r,a,i,s=d.querySelectorAll('iframe[data-secret="'+t.secret+'"]'),n=d.querySelectorAll('blockquote[data-secret="'+t.secret+'"]'),o=0;o");t!==e&&T(e)!==T(t)&&u("HTML tags must be properly nested and closed: "+e)}var O=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>\x20\t\r\n\f]*)[^>]*)\/>/gi,q=s.htmlPrefilter;s.UNSAFE_restoreLegacyHtmlPrefilter=function(){s.htmlPrefilter=function(e){return P(e),e.replace(O,"<$1>")}},s.htmlPrefilter=function(e){return P(e),q(e)};var D,_=s.fn.offset;s.fn.offset=function(){var e=this[0];return!e||e.nodeType&&e.getBoundingClientRect?_.apply(this,arguments):(u("jQuery.fn.offset() requires a valid DOM element"),arguments.length?this:void 0)},s.ajax&&(D=s.param,s.param=function(e,t){var r=s.ajaxSettings&&s.ajaxSettings.traditional;return void 0===t&&r&&(u("jQuery.param() no longer uses jQuery.ajaxSettings.traditional"),t=r),D.call(this,e,t)});var E,F,J=s.fn.andSelf||s.fn.addBack;return s.fn.andSelf=function(){return u("jQuery.fn.andSelf() is deprecated and removed, use jQuery.fn.addBack()"),J.apply(this,arguments)},s.Deferred&&(E=s.Deferred,F=[["resolve","done",s.Callbacks("once memory"),s.Callbacks("once memory"),"resolved"],["reject","fail",s.Callbacks("once memory"),s.Callbacks("once memory"),"rejected"],["notify","progress",s.Callbacks("memory"),s.Callbacks("memory")]],s.Deferred=function(e){var i=E(),a=i.promise();return i.pipe=a.pipe=function(){var o=arguments;return u("deferred.pipe() is deprecated"),s.Deferred(function(n){s.each(F,function(e,t){var r="function"==typeof o[e]&&o[e];i[t[1]](function(){var e=r&&r.apply(this,arguments);e&&"function"==typeof e.promise?e.promise().done(n.resolve).fail(n.reject).progress(n.notify):n[t[0]+"With"](this===a?n.promise():this,r?[e]:arguments)})}),o=null}).promise()},e&&e.call(i,i),i},s.Deferred.exceptionHook=E.exceptionHook),s}); diff --git a/www/.content.EZtzwPjb/html/7bda37da7c6bc5156703266eab31429304c35d96.00000281.xml b/www/.content.EZtzwPjb/html/7bda37da7c6bc5156703266eab31429304c35d96.00000281.xml new file mode 100644 index 0000000..f27390c --- /dev/null +++ b/www/.content.EZtzwPjb/html/7bda37da7c6bc5156703266eab31429304c35d96.00000281.xml @@ -0,0 +1,49 @@ + + + Développement – HugoPoi + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Sat, 11 Feb 2017 17:37:20 +0000 + fr-FR + hourly + 1 + https://wordpress.org/?v=4.7.2 + + Sapin de noël + http://blog.hugopoi.net/2010/12/24/sapin-de-noel/ + http://blog.hugopoi.net/2010/12/24/sapin-de-noel/#respond + Fri, 24 Dec 2010 18:21:12 +0000 + + + + + + http://blog.hugopoi.net/?p=213 + Lire la suite »

                        ]]>
                        + http://blog.hugopoi.net/2010/12/24/sapin-de-noel/feed/ + 0 +
                        + + GET to POST + http://blog.hugopoi.net/2010/12/07/get-to-post/ + http://blog.hugopoi.net/2010/12/07/get-to-post/#comments + Mon, 06 Dec 2010 23:16:07 +0000 + + + + + http://blog.hugopoi.net/?p=197 + Lire la suite »

                        ]]>
                        + http://blog.hugopoi.net/2010/12/07/get-to-post/feed/ + 9 +
                        +
                        +
                        diff --git a/www/.content.EZtzwPjb/html/7c3751bd95f00c3a185b6a911c191764bbfd2757.00000243.html b/www/.content.EZtzwPjb/html/7c3751bd95f00c3a185b6a911c191764bbfd2757.00000243.html new file mode 100644 index 0000000..a1a478d --- /dev/null +++ b/www/.content.EZtzwPjb/html/7c3751bd95f00c3a185b6a911c191764bbfd2757.00000243.html @@ -0,0 +1,674 @@ + + + + + + + + Le cloud maison – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        +
                        +

                        Voilà un petit moment que je me devais de faire cet article pour vous en dire un peu plus sur comment je gère mes données numériques au quotidien.

                        +

                        Et après plusieurs essais et échecs, je peux enfin dire que j’ai trouvé des outils simples et maintenus pour cette quête. Même si ce n’est pas encore parfait ni à la porté de tous.

                        +

                        Ma philosophie

                        +

                        C’est celle de Framasoft Dégooglelisons l’Internet ! Dans un monde ou si c’est gratuit, c’est vous le produit. Je me devais d’éviter d’aller à la simplicité et utiliser les Gmail, Dropbox, Spotify, iCloud et autres merdes du genre. On peut se dire que c’est cool, c’est simple mais vous ne contrôlez plus rien, et au final les GAFAM se serviront de vos données pour vous faire devenir des moutons consommateurs au service des actionnaires. Et j’entends déjà dire que « oui mais moi je sais mais je m’en fout » !

                        +

                        Le matos

                        +

                        Oui c’est chiant mais pour faire du hors cloud, il faut le construire chez soi ou chez le voisin le nuage. L’avantage de le faire chez soi c’est qu’on dépend de personne et aussi plus c’est proche plus on a de débit donc la donnée locale devient la donnée accessible rapidement.

                        +

                        J’ai viré ma box

                        +

                        Pour ne plus dépendre de mon opérateur en terme de matos, j’ai remplacé le routeur (une NeufBox v6) par Netgear R8000 flashé sous DD-WRT mod Kong. Avantages :

                        +
                        • Meilleur wifi 30Mo/s sur la bande AC 5Ghz
                        • Peu de changement de configuration si changement d’opérateur
                        • Beaucoup paramétrage avancés possible
                        • Si votre opérateur est en carafe, votre routeur marche toujours.
                        +

                        Par ici pour voir comment se passer de la neufbox v6 de SFR.

                        +

                        Le NAS

                        +

                        Là vous avez plein de solution pour stocker des données. Mais pour avoir un truc flexible surtout si vous avez de gros besoin, il faut faire du sur mesure. Vous pouvez faire avec du Synology ou concurrents mais c’est plutôt cher et en plus ils se font du blé sur des logiciels libres dont ils ne reversent jamais le code, bref des enculés hors la loi.

                        +

                        Donc il vous faut un PC x86 de préférence, moi je suis parti sur une configuration maison avec dans l’idée de faire un truc très compacte.

                        +
                        • Intel Pentium G4400
                        • 24 Go de RAM ( je vous explique après )
                        • 4 x Disque de 3 To
                        • 1 Disque de merde pour l’OS de base
                        • Boîtier compacte In Win IW-MS04 ( Vous pouvez jeter un œil sur le SilverStone CS01-HS )
                        +

                        Et tous ça tient dans mon meuble de salon.

                        +
                        NAS dans le meuble TV
                        +

                        Donc si on fait les compte ça fait :

                        +
                        • 200€ de routeur
                        • Grosso modo 900€ de NAS
                        +

                        Ouai ça fait un budget après faut mettre en parallèle avec le coût du service rendu, pour avoir l’équivalent chez Dropbox c’est l’offre pro à 18€ par mois sauf qu’il faut prendre minimum 3 licences. Cela donne en annuel avec les remises si vous payez comptant 540€. Chez Google on est à 100€ par mois pour 10To soit 1200€ l’année. Après il y a en plus moyen de faire du recyclage de vieux composants ou acheter des trucs d’occasion ce que j’ai fait en partie. Pour ce qui est des solutions clé en main comme les Synology, on est au double du prix pour la même configuration.

                        +

                        Les logiciels

                        +

                        Dans l’idée d’avoir un truc souple et plutôt performant la première étape est de savoir comment vous allez exploiter vos disques-durs :

                        +
                        • Es que l’on va faire du RAID 1/5/6/10 ?
                        • Si du RAID logiciel ou matériel ?
                        • Quel système d’exploitation ?
                        +

                        J’ai utilisé pendant longtemps des NAS maison sous Debian avec du raid 5 logiciel, les performances sont correctes (>100Mo/s en écriture) mais il y a pas mal d’inconvénients à cette solution. Comme devoir souvent recourir à la ligne de commande pour installer ou configurer des logiciels, pas de gestion simplifier se rapprochant d’une solution Synology. Au niveau du stockage vous ne pouvez pas augmenter facilement la taille ou le nombre de disque sans devoir recourir à des opérations complexe. Et une simple monté de version de l’OS se transforme rapidement en cauchemar.

                        +

                        Donc pour la base de mon NAS je me suis dit que j’allais devoir choisir une solution d’OS plus proche de l’objectif que juste une simple distribution Linux ou il faut tout configurer de 0. Inventaire du possible :

                        +

                        FreeNAS

                        +

                        Basé sur FreeBSD, solution pour NAS avec interface web avec gestion du stockage via ZFS.

                        +

                        OpenMediaVault

                        +

                        Basé sur Debian, solution pour NAS avec interface web avec gestion du RAID logiciel via mdadm.

                        +

                        Syncloud

                        +

                        Basé sur Raspian/Debian, distribution minimaliste pour Raspberry Pi et autres joyeusetés.

                        +

                        Yunohost

                        +

                        Petit nouveau dans le game, basé sur Debian, solution pour NAS avec interface web sans solution de gestion du stockage.

                        +

                        Proxmox

                        +

                        Basé sur Debian distribution commercial, environnement complet de stockage et de virtualisation avec interface web.

                        +

                        UnRaid
                        Distribution Linux commercial proposant un solution de RAID propriétaire. Interface Web et virtualisation.

                        +

                        En faisant cet article je suis tombé sur snapraid qui fournit un comparatif des différentes solutions de RAID logiciel au niveau du système de fichier.

                        +

                        J’ai opté pour FreeNAS comme OS de base. Pour les raisons suivantes :

                        +
                        • Support natif de ZFS qui permet de faire du RAIDZ2 avec tolérance de panne de 2 disques, et gère les checksum sur fichier ainsi qu’une correction d’erreur. Gestion des snapshot comme LVM et permet de faire du stockage block pour d’autre système de fichier.
                        • Gère le chiffrement sur disque en natif.
                        • Robustesse et maintenue pour du commercial.
                        • Possibilité de faire de la virtualisation ainsi qu’un système de JAIL.
                        • L’interface WEB qui marche et est complète.
                        • Mise à jour hyper simple via l’interface Web
                        • Backup de la configuration via un simple fichier
                        +

                        FreeNAS

                        +

                        Déjà la mauvaise nouvelle c’est que pour avoir de bonne performance de stockage avec ZFS c’est qu’il vous faut de la RAM beaucoup de RAM car elle utilisé pour faire du cache et gérer les opérations interne de ZFS. J’en ai un peu plus que nécessaire car je prévois de faire de la virtualisation et ajouter d’autres fonctions sur mon NAS. Pour l’installation je vous recommande d’utiliser un device de merde pour le système car j’ai utilisé un SSD mais cela ne sert à rien, votre SSD sera beaucoup plus utile pour faire du cache pour ZFS. Vous pouvez utiliser une clé USB ou une carte SD.

                        +

                        NDLR: je vous laisse lire la doc de FreeNAS pour savoir comment installer le merdier. #RTFM

                        +

                        Ci-dessous un petit benchmark des performances disques sur du RAIDZ2 avec 4 disques de 3To, environ 400Mo/s de moyenne en écriture très correcte sans cache.

                        +
                        % fio --name TEST --eta-newline=5s --filename=fio-tempfile.dat --rw=write --size=500m --io_size=10g --blocksize=64k --fsync=10000 --iodepth=32 --direct=1 --numjobs=1 --runtime=60 --group_reporting
                        + TEST: (g=0): rw=write, bs=(R) 64.0KiB-64.0KiB, (W) 64.0KiB-64.0KiB, (T) 64.0KiB-64.0KiB, ioengine=psync, iodepth=32
                        + fio-3.0
                        + Starting 1 process
                        + Jobs: 1 (f=1): [W(1)][31.8%][r=0KiB/s,w=626MiB/s][r=0,w=10.0k IOPS][eta 00m:15s]
                        + Jobs: 1 (f=1): [W(1)][58.3%][r=0KiB/s,w=0KiB/s][r=0,w=0 IOPS][eta 00m:10s]
                        + Jobs: 1 (f=1): [W(1)][83.3%][r=0KiB/s,w=625MiB/s][r=0,w=10.0k IOPS][eta 00m:04s]
                        + Jobs: 1 (f=1): [W(1)][100.0%][r=0KiB/s,w=0KiB/s][r=0,w=0 IOPS][eta 00m:00s]
                        + TEST: (groupid=0, jobs=1): err= 0: pid=20290: Sun Mar 17 17:01:13 2019
                        +   write: IOPS=6702, BW=419MiB/s (439MB/s)(10.0GiB/24445msec)
                        +     clat (usec): min=5, max=17384, avg=10.20, stdev=96.40
                        +      lat (usec): min=6, max=17440, avg=10.76, stdev=105.67
                        +     clat percentiles (usec):
                        +      |  1.00th=[    8],  5.00th=[    8], 10.00th=[    8], 20.00th=[    9],
                        +      | 30.00th=[    9], 40.00th=[    9], 50.00th=[    9], 60.00th=[   10],
                        +      | 70.00th=[   10], 80.00th=[   10], 90.00th=[   11], 95.00th=[   11],
                        +      | 99.00th=[   21], 99.50th=[   30], 99.90th=[   75], 99.95th=[  165],
                        +      | 99.99th=[ 2999]
                        +    bw (  MiB/s): min=  105, max= 1250, per=100.00%, avg=1104.55, stdev=362.70, samples=18
                        +    iops        : min= 1688, max=20000, avg=17672.50, stdev=5803.29, samples=18
                        +   lat (usec)   : 10=90.15%, 20=8.83%, 50=0.87%, 100=0.07%, 250=0.04%
                        +   lat (usec)   : 500=0.01%, 750=0.01%, 1000=0.01%
                        +   lat (msec)   : 2=0.01%, 4=0.01%, 10=0.01%, 20=0.01%
                        +   cpu          : usr=0.68%, sys=7.26%, ctx=3362, majf=0, minf=1
                        +   IO depths    : 1=100.0%, 2=0.0%, 4=0.0%, 8=0.0%, 16=0.0%, 32=0.0%, >=64=0.0%
                        +      submit    : 0=0.0%, 4=100.0%, 8=0.0%, 16=0.0%, 32=0.0%, 64=0.0%, >=64=0.0%
                        +      complete  : 0=0.0%, 4=100.0%, 8=0.0%, 16=0.0%, 32=0.0%, 64=0.0%, >=64=0.0%
                        +      issued rwt: total=0,163840,0, short=0,0,0, dropped=0,0,0
                        +      latency   : target=0, window=0, percentile=100.00%, depth=32
                        +Run status group 0 (all jobs):
                        + WRITE: bw=419MiB/s (439MB/s), 419MiB/s-419MiB/s (439MB/s-439MB/s), io=10.0GiB (10.7GB), run=24445-24445msec
                        +
                        Capture FreeNAS écran des disques
                        +

                        Donc à partir de cette étape vous avez du stockage utilisable en 3 cliques vous pouvez l’utiliser en réseau.

                        +
                        • Partage NFS
                        • Partage SMB pour Windaube
                        • Partage MacOS avec AFP
                        • Et bien-sur aussi via SFTP
                        • Et aussi iSCSI
                        +

                        Vous allez me dire ouai c’est cool mais comment je fais pour utiliser mes données en dehors de chez moi comme dans le nuage. Vous pouvez mettre en place un VPN mais ça solutionne pas vraiment le problème de la mobilité

                        +

                        Les JAILs et la virtu

                        +

                        FreeNAS fournit des plugins basés sur les JAIL ancestre des containers Docker. Le truc assez cool vous pouvez installer Nextcloud, Owncloud et une dizaines d’autres donc si vos besoins sont limités et que vous voulez pas vous faire chier les plugins FreeNAS c’est la vie.

                        +
                        FreeNAS liste des plugins
                        +

                        Moi j’avais besoin de plus de souplesse et surtout de plus d’outils que ceux disponibles, et certains outils que je voulais avoir que j’utilisais déjà auparavant. C’est pour ça que mon usage des plugins est limité. J’utilise uniquement les plugins Transmission, SickRage et CouchPotato. Si vous voulez vous amusez le tuto ici est très bien fait pour configurer les différents plugins. J’utilise aussi une jail pour faire tourner Unbound comme résolveur DNS pour mon réseau local très pratique.

                        +

                        Yunohost

                        +

                        Comme FreeNAS ne fait pas tout, il me fallait une solution pour exploiter pleinement mon NAS et lui ajouter des features digne d’un cloud maison. Et Yunohost est vraiment super cool pour ça !

                        +
                        Page d’accueil utilisateur de Yunohost
                        +

                        Yunohost c’est faire plein de trucs !

                        +
                        • Les courriels en natif oui oui ! Multi-domaines multi-utilisateurs avec une interface web du bonheur !
                        • Baikal pour gérer la synchronisation Agenda / Contact sur tout mes devices en CardDav/CalDav
                        • Roundcube pour l’accès webmail
                        • Ampache pour gérer ma bibliothèque musical
                        • Wallabag pour gérer mes liens favoris à lire plus tard
                        • Tiny Tiny RSS pour gérer mes flux RSS
                        • Gitea pour gérer mes dépôts git
                        • Lufi pour uploader simplement des fichiers de manière temporaire et sécurisé
                        • Seafile pour faire comme Dropbox, ce soft est TRÈS PERFORMANT surtout quand vous devez synchroniser de gros volume de fichier aussi bien en taille que en nombre !
                        • Piwigo pour partager des albums photos pour la famille
                        • Riot pour tchater !
                        • Mastodon ( Je déconseille fortement car bouffe à mort de RAM ) pour remplacer Twitter
                        +

                        Pour installer Yunohost il vous faut une VM dans Freenas et vous installez Debian dedans, une fois Debian installé vous pouvez suivre la procédure pour installer Yunohost.

                        +

                        Je vous recommande de faire comme ça pour le partitionnement de votre VM Debian. Vous créez 2 disques virtuels un pour / et swap. Et le deuxième pour toutes les données donc /home /var.

                        +
                        FreeNAS volume pour yunohost
                        +

                        Pour le deuxième disque vous allez faire un truc un peu particulier, vous allez l’utiliser comme LVM mais sans table de partition si qui permettra de faire grossir le volume à chaud sans éditer la table de partition comme il y en aura pas ! Je suis pas sur que se soit supporté par Bhyve de FreeBSD donc faudra à minima que votre VM reboot une fois après le changement de taille.

                        +
                        Partitionnement VM Debian
                        +

                        Donc on a vda partitionné normalement avec une partition de boot EFI et le système dans un LVM mais pas indispensable. Le deuxième disque vdb n’a pas de table des partitions et a directement un LVM avec /var et /home Yunohost utilise principalement ces points de montages pour stocker les donnée des applications installées. Cette solution n’est pas parfaite car vous n’avez pas de moyen simple pour accéder au fichier de la machine Yunohost depuis FreeNas. Par contre l’inverse est possible rendre disponible vos fichiers et partages FreeNas dans Yunohost en utilisant un point de montage NFS. Ci-dessous mon fichier /etc/fstab.

                        +
                        # /etc/fstab: static file system information.
                        +#
                        +# Use 'blkid' to print the universally unique identifier for a
                        +# device; this may be used with UUID= as a more robust way to name devices
                        +# that works even if disks are added and removed. See fstab(5).
                        +#
                        +# <file system> <mount point>   <type>  <options>       <dump>  <pass>
                        +/dev/mapper/osvg-root /               ext4    errors=remount-ro 0       1
                        +# /boot/efi was on /dev/vda1 during installation
                        +UUID=4CFA-31EB  /boot/efi       vfat    umask=0077      0       1
                        +/dev/mapper/datasvg-home /home           ext4    defaults        0       2
                        +/dev/mapper/datasvg-var /var            xfs     defaults        0       0
                        +/dev/mapper/osvg-swap none            swap    sw              0       0
                        +192.168.1.35:/mnt/Mainraidz2/medias	/home/yunohost.multimedia/share	nfs	auto,x-systemd.automount,x-systemd.device-timeout=10,timeo=14,x-systemd.idle-timeout=1min	0	0
                        +

                        Pour revenir aux avantages de cette solution en machine virtuelle, cela permet une grande facilite de maintenance grâce a la possibilité de snapshot de la VM quand on le souhaite. Promis je vous fais un script de déploiement de Yunohost pour FreeNas, je ne sais si c’est possible que j’en fasse un plugin car Yunohost s’appuie beaucoup sur Debian, et on ne pas faire de plugin de VM dans FreeNas pour l’instant. J’ai aussi commencé à investiguer une autre solution plus élégante qui serait d’utiliser le sous-système d’émulation linux dans une Jail BSD pour monter Debian+Yunohost sauf que cette méthode ne permet que d’installer Wheezy comme version de Debian donc pas possible. La solution la plus probable serait d’utiliser Docker pour FreeBSD c’est encore en expérimental.

                        +

                        Schéma du merdier

                        +
                        Schéma de mon réseau à la maison
                        +

                        Améliorations et travaux en cours

                        +

                        Tout se merdier je le fais sur mon temps libre et tout est loin d’être parfait donc voici la liste des travaux à faire ou en cours :

                        +
                        • Secondary SMTP entry point has fail safe
                        • External offsite backup via ZFS Sync or S3 protocol
                        • Monitoring stuff (Premetheus, Grafana, snmp)
                        • Upgrade Router firmware
                        • Torrent stuff available on network trought SMB and other protocol
                        • Add a reverse proxy over transmission web and other freenas apps
                        • Use SSD for ZFS caching
                        • Add 4G fallback connection on the router
                        • Mastodon to Pleroma (save lot of ressource)
                        • Configure HDD hidle for saving some juice
                        • DNS-over-TLS
                        • VPN ? already have ssh … usefull only for UDP
                        • Have a haproxy in front of yunohost and the other stuff for manage ressource easily for sharing port like 443
                        • IPv6 !
                        +

                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +

                        + 4 commentaires

                        +
                        + +
                        +
                        +
                        +
                        +

                        + clement + · 11 juillet 2019 à 22 h 15 min +

                        +

                        Merci pour le retour d’expérience (et l’humour sur le blog!) ^^. Chez moi, c’est Synology avec l’OS d’origine et Yunohost sur RASPI! #fun

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + emilien mougeat + · 27 janvier 2020 à 22 h 42 min +

                        +

                        Salut !
                        +Merci pour ce retour d’experience.
                        +J’ai également passé le pas ! freenas + yunohost en iohyve ( debian9+yunohost). plutot cool.
                        +Par contre j’ai une petite galere que je n’arrive pas à resoudre, et je voulais savoir si tu avais rencontré la meme problematique.
                        +En effet quand j’essaye de monter le NFS entre le yuno et le freenas, impossible.
                        +Ma conf « semble » bonne maiiiiiiis je n’y arrive pas.
                        +Qu niveau de la conf nfs du freenas, quels paramètres as tu ?
                        +++

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + emilien mougeat + · 27 janvier 2020 à 23 h 44 min +

                        +

                        Bon Je viens de comprendre le probleme NFS, les droits configurés sur le volume etaient des droits windaube ….. SERIEUX Oo

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + T'es pas sérieux + · 19 septembre 2020 à 15 h 46 min +

                        +

                        Comment peut-on confondre « sait » et « c’est » ? Ce et se? Mon dieu…

                        + +
                        +
                        + +
                        +
                        +
                        +

                        Répondre à emilien mougeat Annuler la réponse

                        Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                        +
                        +
                        +

                        + +

                        +
                        +
                        +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        + + +
                        + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/7ca58e3f46fae1dba735c00d35a9f1022bf1d0a9.00000561.xml b/www/.content.EZtzwPjb/html/7ca58e3f46fae1dba735c00d35a9f1022bf1d0a9.00000561.xml new file mode 100644 index 0000000..d651c81 --- /dev/null +++ b/www/.content.EZtzwPjb/html/7ca58e3f46fae1dba735c00d35a9f1022bf1d0a9.00000561.xml @@ -0,0 +1,43 @@ + + + youtube – HugoPoi + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Mon, 22 Aug 2016 14:10:26 +0000 + fr-FR + hourly + 1 + https://wordpress.org/?v=4.6.1 + + Et si on faisait sans Twitch et sans Youtube + http://blog.hugopoi.net/2015/10/24/et-si-on-faisait-sans-twitch-et-sans-youtube/ + http://blog.hugopoi.net/2015/10/24/et-si-on-faisait-sans-twitch-et-sans-youtube/#respond + Sat, 24 Oct 2015 13:07:55 +0000 + + + + + + + + + + + + + + http://blog.hugopoi.net/?p=909 + Lire la suite »

                        ]]>
                        + http://blog.hugopoi.net/2015/10/24/et-si-on-faisait-sans-twitch-et-sans-youtube/feed/ + 0 +
                        +
                        +
                        diff --git a/www/.content.EZtzwPjb/html/7cbae44c31fb495a45c97f43c53c16bf5e303d6b.00000256.html b/www/.content.EZtzwPjb/html/7cbae44c31fb495a45c97f43c53c16bf5e303d6b.00000256.html new file mode 100644 index 0000000..2c8f151 --- /dev/null +++ b/www/.content.EZtzwPjb/html/7cbae44c31fb495a45c97f43c53c16bf5e303d6b.00000256.html @@ -0,0 +1,817 @@ + + + + + + + + Install RancherOs on FreeNas 11.3 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        +

                        Install RancherOs on FreeNas 11.3

                        +
                          +
                        • The automated RancherOs installation aka Docker VM has been removed in
                          +11.3
                        • +
                        • RancherOs doesn’t support EFI boot out of the box
                        • +
                        • Thanks to MKinney howto
                        • +
                        • This howto is provided without warranty
                        • +
                        • TODO the proper way of doing it is somewhere here
                        • +
                        • Some stuff about losetup
                        • +
                        +

                        1. Make a EFI bootable RancherOs image

                        + +
                          +
                        1. wget https://releases.rancher.com/os/v1.5.5/rancheros.iso
                        2. +
                        3. wget http://releases.ubuntu.com/18.04/ubuntu-18.04.4-live-server-amd64.iso
                        4. +
                        5. mkdir tmpubuntu tmprancheros tmprancheros_dest
                        6. +
                        7. sudo mount ubuntuserverlive.iso tmpubuntu
                        8. +
                        9. sudo mount rancheros.iso tmprancheros
                        10. +
                        11. fallocate -l 150M rancheros.img
                        12. +
                        13. gdisk rancheros.img o,y,n,enter,enter,ef00,w,Y
                        14. +
                        15. sudo losetup --partscan --show --find rancheros.img
                        16. +
                        17. sudo mkfs.fat /dev/loop2p1
                        18. +
                        19. sudo mount /dev/loop2p1 rancheros_dest
                        20. +
                        21. sudo cp -r tmprancheros/* tmprancheros_dest/
                        22. +
                        23. sudo cp -r tmpubuntu/EFI tmprancheros_dest/
                        24. +
                        25. Replace the content of tmprancheros_dest/boot/grub/grub.cfg with:
                        26. +
                        +
                        set timeout=5
                        +menuentry "Install Rancher" {
                        +    linux   /boot/vmlinuz-4.14.138-rancher rancher.autologin=tty1 rancher.autologin=ttyS0 rancher.autologin=ttyS1 console=tty1 console=ttyS0 console=ttyS1 printk.devkmsg=on panic=10 ---
                        +    initrd  /boot/initrd-v1.5.5
                        +}
                        +
                        +
                          +
                        1. sudo umount tmprancheros_dest
                        2. +
                        3. sudo losetup -d /dev/loop2
                        4. +
                        5. sudo umount tmpubuntu tmprancheros
                        6. +
                        +

                        2. Installation in FreeNas as Vm

                        +
                          +
                        1. Create a VM with EFI boot 2GB RAM choose virtio for all the driver
                          +better performance with linux
                        2. +
                        3. Add a RAW device and select your rancheros.img
                        4. +
                        5. Start the VM
                        6. +
                        7. Go to serial and in the shell cu -l /dev/nmdmXX at this point you should
                          +have a rancher shell
                        8. +
                        9. sudo fdisk /dev/vda then g,n,1,+200M,t,1,n,enter,enter,w you
                          +should something like at the end
                        10. +
                        +
                        Disk /dev/vda: 10 GiB, 10737418240 bytes, 20971520 sectors
                        +Units: sectors of 1 * 512 = 512 bytes
                        +Sector size (logical/physical): 512 bytes / 16384 bytes
                        +I/O size (minimum/optimal): 16384 bytes / 16384 bytes
                        +Disklabel type: gpt
                        +Disk identifier: 2B56EE14-44BF-6443-A197-EF73723B715F
                        +Device      Start      End  Sectors  Size Type
                        +/dev/vda1    2048   411647   409600  200M EFI System
                        +/dev/vda2  411648 20971486 20559839  9.8G Linux filesystem
                        +
                        +
                          +
                        1. Format the boot partition sudo mkdosfs -n RANCHER -F 32 /dev/vda1
                        2. +
                        3. Format the main filesystem sudo mkfs.ext4 -L RANCHER_STATE /dev/vda2
                        4. +
                        5. Create a cloud-config.yml see https://rancher.com/docs/os/v1.x/en/installation/running-rancheros/server/install-to-disk/ for minimum content
                        6. +
                        7. sudo mkdir /dev/sr0 for installer checking about iso mounted before
                          +install
                        8. +
                        9. Install ros with sudo ros install -t gptsyslinux -c cloud-config.yml -d /dev/vda -p /dev/vda2
                        10. +
                        11. mkdir /mnt/efipart && sudo mount /dev/vda1 /mnt/efipart
                        12. +
                        13. mkdir /mnt/installer && sudo mount /dev/vdb1 /mnt/installer
                        14. +
                        15. sudo cp -r /mnt/installer/EFI /mnt/efipart
                        16. +
                        17. Add a grub.cfg in /mnt/efipart/EFI/BOOT/grub.cfg with in it:
                          +You might want to add/remove autologin as you wish below

                          +
                            +
                          • tty0 I think is VNC but I havent tested it
                          • +
                          • ttyS0 is serial (I have autologin enable in serial see below)
                          • +
                          +
                        18. +
                        +
                        set timeout=1
                        +menuentry "Rancher from GPT" {
                        +    search --no-floppy --set=root --label RANCHER_STATE
                        +    linux    /boot/vmlinuz-4.14.138-rancher printk.devkmsg=on rancher.state.dev=LABEL=RANCHER_STATE rancher.state.wait panic=10 console=tty0 console=ttyS0 rancher.autologin=ttyS0
                        +    initrd    /boot/initrd-v1.5.5
                        +}
                        +
                        +
                          +
                        1. sudo umount /mnt/*
                        2. +
                        3. sudo reboot
                        4. +
                        5. You are good to go
                        6. +
                        7. You can remove the RAW device in the VM config in FreeNas
                        8. +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +

                        + 12 commentaires

                        +
                        + +
                        +
                        +
                        +
                        +

                        + Rudi Pittman + · 18 mars 2020 à 17 h 46 min +

                        +

                        Can I or can I not use my existing rancher img that was previously being used by freenas? ie

                        +

                        -rw-r–r– 1 root wheel 21474836480 Mar 18 02:13 rancher.img_docker1

                        +

                        I have around 10 different docker containers defined inside and I really don’t want to have to redo all of them.

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 11 avril 2020 à 16 h 32 min +

                          +

                          If the image is a VM image like a zvol, I think it will work, but I’m not sure, it will only work if the 11.2 behavior is EFI compatible.
                          +You may patch your existing image/snapshot by justing installing the efi bootloader aka grub in it.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Rob RD + · 4 avril 2020 à 19 h 36 min +

                        +

                        Parfait – Merci Beaucoup! :)

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + dario + · 12 avril 2020 à 14 h 07 min +

                        +

                        Thanks for this guide. I am stuck at Step 12:
                        +> sudo mount /dev/vdb1 /mnt/installer
                        +ther is no /dev/vdb1, regardingless if I choose to boot at step 10 or not

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 22 avril 2020 à 23 h 34 min +

                          +

                          Your installer may be on a different disk if you choose SCSI in place of virtio when you add the raw image device in Freenas, you can identified with

                          +

                          cat /proc/partitions

                          +

                          and

                          +

                          mount

                          +

                          it should be /dev/sda1 maybe

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + somebody + · 19 avril 2020 à 13 h 07 min +

                        +

                        Thank you so much for the step by step guide, it was very helpful. With this I can finally transition from my old Docker VM inherited from FreeNAS 11.1.

                        +

                        Going to state the obvious (for some) and mention that when new version gets released and you run

                        +

                        sudo ros os upgrade

                        +

                        to upgrade you’ll also need to update initrd command in your grub.cfg file on EFI partition, otherwise you’re just going to boot into the same version.

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + Rudi Pittman + · 1 juin 2020 à 1 h 58 min +

                          +

                          The problem I have is even though grub is specifying 4.14.138 and initird-v1.5.5 on reboot it tells me those don’t exist. Doing a grub edit and using autocomplete the files it ACTUALLY find are /boot/vmlinuz-4.14.73-rancher and /boot/initrd-v1.4.2. Where the heck are those coming from? When I look on /dev/vda2/boot I see the 4.14.138 and initrd-v1.5.5 as the grub reflects. /mnt/efipart/EFI/BOOT has:

                          +

                          -rwxr-xr-x 1 root root 1334816 May 30 15:13 BOOTx64.EFI
                          +-rwxr-xr-x 1 root root 316 May 30 15:15 grub.cfg
                          +-rwxr-xr-x 1 root root 1146744 May 30 15:13 grubx64.efi

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Max + · 3 mai 2020 à 16 h 40 min +

                        +

                        The image i downloaded does not start. Stuck at step4 in the bhyve shell. Any idea how to proceed from there?

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 10 mai 2020 à 14 h 53 min +

                          +

                          Try to change the device order to a lower or higher number to be sure it try to load the good bootloader.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Rudi Pittman + · 1 juin 2020 à 18 h 28 min +

                        +

                        If you do a « ros os version » on your efi image it’s NOT v1.5.5. It’s v1.4.2 and running the command although it MAY download the files does nothing to actually make the grub.cfg FIND those new files. It’s still looking for vmlinuz-4.14.73 and initrd-v1.4.2.

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + Johnny Z + · 25 juin 2020 à 8 h 49 min +

                          +

                          I found them. The guide doesn’t necessarily state where or when to get the files. You should be able to do this to find and copy the files

                          +

                          cd /mnt/installer/boot/
                          +ls -asl
                          +(here you will find the two files)
                          +cp vmlinuz-4.14.138-rancher ../../efipart/efi/boot/
                          +cp initrd-v1.5.5.5 ../../efipart/efi/boot

                          +

                          Double check my paths here but that should basically get you the files so the kernel can load proper

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Toohai + · 16 septembre 2020 à 8 h 18 min +

                        +

                        Missing step after 12 in part 1?

                        +

                        sudo cp -r tmpubuntu/boot/grub tmprancheros_dest/boot/

                        + +
                        +
                        + +
                        +
                        +
                        +

                        Répondre à Johnny Z Annuler la réponse

                        Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                        +
                        +
                        +

                        + +

                        +
                        +
                        +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        + + +
                        + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/7e1bb00ad24d2529653418ef2d573126a0bf9a06.00000295.html b/www/.content.EZtzwPjb/html/7e1bb00ad24d2529653418ef2d573126a0bf9a06.00000295.html new file mode 100644 index 0000000..b7a7783 --- /dev/null +++ b/www/.content.EZtzwPjb/html/7e1bb00ad24d2529653418ef2d573126a0bf9a06.00000295.html @@ -0,0 +1,374 @@ + + + + + + + #FAIL – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        + +
                        +
                        + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/7e891e79f86bc52475bace114db6aef73804e1ab.00000108.html b/www/.content.EZtzwPjb/html/7e891e79f86bc52475bace114db6aef73804e1ab.00000108.html new file mode 100644 index 0000000..f41d21a --- /dev/null +++ b/www/.content.EZtzwPjb/html/7e891e79f86bc52475bace114db6aef73804e1ab.00000108.html @@ -0,0 +1,1370 @@ + + + + + + + + Réparations Samsung SyncMaster 2232BW – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        +

                        Allô docteur on a un problème,

                        +

                        En ce dimanche calme avant la fin de mes partiels, mon écran Samsung SyncMaster 2232BW commençait à faire des siennes. Celui-ci depuis un mois ou deux clignotait de façon systématique au démarrage, au début pendant seulement quelques secondes, puis au fur et à mesure, de plus en plus jusqu’à devoir attendre 10 minutes pour que je puisse l’utiliser. Après 3 ans et 4 mois de bons et loyaux services, il voulait me quitter. J’ai tenté le support Samsung par email avec peu d’espoir car l’écran a dépassé sa garantie de 4 mois (oui oui les bâtards -> obsolescence programmée). Et donc j’ai eu le droit à un joli mail automatique me disant de contacter un numéro non surtaxé (mais avec combien de temps d’attente ?), ce que je n’ai pas fait car je n’avais pas envie de passer 30min au téléphone pour au final avoir un « On est désolé mais on ne peut rien faire pour vous car la garantie est dépassée, mais on peut envoyer votre écran en SAV pour faire un devis pour seulement 50 boules ». Concernant le support email de Samsung France, je leur donne une note de 0/20 puisque ce n’est pas un support mais une redirection vers le téléphone.

                        +

                        +

                        Symptômes

                        +

                        Clignotements de l’écran et de la LED power systématiques à chaque démarrage de l’écran. Je me suis tout de suite douté d’un problème d’alimentation et après quelques recherches sur google, confirmation du problème sur beaucoup d’écrans et téléviseurs. Dans 99% des cas ce clignotement est dû à des condensateurs défectueux qu’il faut simplement changer :-D

                        +

                        Démontage

                        +

                        Donc après avoir cerné le problème, j’ai ouvert l’écran pour chercher les condos défectueux. J’ai trouvé une petite vidéo pour mon écran :

                        +

                        +

                        Voici quelques photos en plus pour vous aider :

                        +

                        Les outils que j’ai utilisé pour le démontage

                        +

                        Position des clips

                        +

                        Carte d’alimentation dans son emplacement

                        +

                        Et voici les condensateurs qui posent problèmes. Comme vous pouvez le voir sur la photo, ils sont très facilement identifiable car ils sont bombés sur le dessus.

                        +

                        Condensateurs défectueux

                        +

                        Vous devez donc acheter des condensateurs de remplacement, par exemple sur Conrad.

                        +

                        Mes condensateurs suivant étaient endommagés:

                        +
                          +
                        • 1 de 330uF 25V remplacé par un 470uF 25V
                        • +
                        • 3 de 820uF 25V remplacé par des 1000uF 50V
                        • +
                        +

                        Pour la réparation, il vous faut un fer à souder avec une panne pas trop grosse mais d’une grosse puissance car les soudures sont très solides (j’ai galéré avec un fer pro qui monte jusqu’à 400°).

                        +

                        Tout remarche nickel après remontage, plus de clignotement pour seulement quelques euros.

                        +

                        edit du 19 aout 2014 : j’ai trouvé le service manuel de l’écran si besoin samsung_2232bw_chassis_lpe22bs_sm

                        + + +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +

                        + 41 commentaires

                        +
                        + +
                        +
                        +
                        +
                        +

                        + c'est_moi + · 30 janvier 2012 à 18 h 57 min +

                        +

                        Mille mercis et mille félicitations pour cette fiche technique si pédagogue.

                        +

                        J’espère que le partiels se passent plus que parfait !!

                        +

                        J’ai gardé l’url de la page pour réparer mon écran dans un petit mois : j’espère que la page soit toujours là ;-)

                        +

                        Merci encore.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Maxime + · 5 mai 2012 à 12 h 31 min +

                        +

                        Bonjour HugoPoi!

                        +

                        Merci pour toutes vos infos et votre topic, je voulais avoir quelques précisions sur les condos à changer pour samsung 2232bw, je veux passer commande mais j’ai un problème avec les dimensions des condos, si vous pouvez m’informer de ce que je pourrais acheter car il y a trop de références. En vous remerciant A+ Maxime

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 14 juin 2012 à 22 h 56 min +

                          +

                          N’importe quel condensateur polarisé avec des caractéristiques proches devrait marché.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + gaubjezj + · 14 juin 2012 à 22 h 32 min +

                        +

                        Merci pour le tuto qui m’a bien aidé.
                        +J’ai utilisé un fer de 40 W avec une panne fine et
                        +une pompe à dessouder et j’ai retiré les condensateurs sans problème.
                        +Merci encore (3€40 pour le dépannage).

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + DragonTribal + · 2 juillet 2012 à 12 h 02 min +

                        +

                        super merci pour manifique tuto.
                        +Est-il possible de changer les 5 condensateurs 820uF 25V par des 1000uF 50V? car moi mes 5 condensateurs sont presque HS ;-)

                        +

                        Cordialement

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 2 juillet 2012 à 12 h 25 min +

                          +

                          Oui je penses que ça marchera étant donné que c’est des valeurs plus grandes.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + FRED + · 11 juillet 2012 à 19 h 11 min +

                        +

                        Bravo, MERCI.
                        +Je n’ai encore rien fait…mais j’ai le même problème, et tu me donnes la solution.
                        +Super.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + daninpet + · 31 août 2012 à 10 h 10 min +

                        +

                        Merci mille fois!

                        +

                        J’avais ce problème, et j’ai emmener la photo des trucs a remplacer chez le réparateur du coin et voila!! Ça m’a coûté 7 Euros (mais j’habite en Thaïlande)

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + moi + · 15 novembre 2012 à 15 h 25 min +

                        +

                        super mon 2232bw vient de lâcher, les 3 + 1 condos sont gonflés j ai trouvé un 330 en 35v qui traîné sur un écran mort et j’ai commander 5 1000uf 35v sur ebay pour moins de 3 dollars, ca devrait le faire j’espere j’attend d’être livré merci! par contre j’ai qu’un gros pistolet a soudure et un gros fil d’étain, c’est pas évident mais bon ca le fait quand même =)

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + moi + · 7 décembre 2012 à 9 h 33 min +

                          +

                          parfait je vient de recevoir les condos; j ai meuler la panne du fer a souder pour la tailler en mine de crayon et j ai reussi a les souder facilement ils étaient un peu plus gros mais ca passe tout juste, mais attention ne pas prendre des plus gros! l écran fonctionne nickel maintenant.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Croco + · 19 janvier 2013 à 18 h 39 min +

                        +

                        Je souhaiterai savoir si tu as utilisé un fer à souder bien précis étant donné que la carte est une multi couche.
                        +Merci

                        + +
                        +
                        + + +
                        + +
                        +
                        +
                        +
                        +

                        + momo + · 10 juin 2013 à 13 h 15 min +

                        +

                        slut je voudrai savoir ou trouvé les condansateur a changer sur mon ecran qui clignote

                        + +
                        +
                        + + +
                        + +
                        +
                        +
                        +
                        +

                        + lokmane + · 5 juillet 2013 à 16 h 08 min +

                        +

                        merci j’avais un ecran rouge ! et c’etais la tresse qui relie mon ecran votre page m’a aider a l’ouvrir et a le reparer merci bien

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + ML + · 21 août 2013 à 19 h 11 min +

                        +

                        Merci ! Ecran réparé. Halte à l’obsolescence programmée.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + raymond + · 31 octobre 2013 à 13 h 20 min +

                        +

                        ai vu votre vidéo et les explications pour la reparation de mon écran , apparemment le méme probléme l écran passe au noir apres quelque seconde , j ai vu un le condensateur en bas a gauche gonflé , je l ai fait changé (10€) les autre condensateur étant toujour bon d après la personne qui me l a changé , mais j ai toujour le méme probléme cela peut il venir de la carte video a gauche ?

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 20 décembre 2013 à 12 h 27 min +

                          +

                          Si la led bleu du bouton power s’éteint aussi c’est un problème d’alimentation sinon c’est plus compliqué et ça peut provenir de condensateurs sur la partie vidéo. Changé tous les plus gros condensateurs sur la partie alimentation pourrait être un bon début même si ils ne paraissent pas endommagé.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + damien + · 4 novembre 2013 à 0 h 29 min +

                        +

                        bonjour,

                        +

                        j’ai des crasses coincées entres l’écran et le truc juste derrière, est ce qu’on sais les enlever en démontant la dalle ?

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 20 décembre 2013 à 12 h 28 min +

                          +

                          Je ne sais si cette partie de la dalle est démontable, je penses que c’est collé mais vous pouvez essayer.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + mac + · 1 décembre 2013 à 17 h 30 min +

                        +

                        Merci HugoPoi, avec ces excellents conseils et tuto vidéo, mon écran est reparti pour une nouvelle vie.
                        +Pour les composants, si vous êtes sur Paris ou proche. La boutique RAM électroniques est une bonne adresse, 138 bd Diderot 75012 Paris (Place de la Nation).

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Bouddhid + · 16 janvier 2014 à 19 h 21 min +

                        +

                        Merci beaucoup pour ces conseils ! J’étais à 2 doigts de jeter mon écran, le voilà comme neuf pour moins de 5€ ! Vive la bricole !

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Vincent + · 17 mai 2014 à 16 h 45 min +

                        +

                        Alors là merci.

                        +

                        Pour ce post, les photos, la vidéo, tout y est.

                        +

                        J’ai démonté l’écran assez vite, enlevé la carte, regarder quel condensateurs étaient gonflés,(il y en avaient 4), un magasin d’électronique sur lyon et une heure de démontage, soudure, remontage plus tard, voilà, c’est tout beau.
                        +Ca ne clignote plus, ça s’allume comme avant, comme neuf.

                        +

                        Et dire que j’allais jeter cet écran et claquer 350 euros pour un neuf…

                        +

                        Coût de l’opération pour 4 condensateurs, du fil d’étain 7 euros.

                        +

                        Je précise que je n’avais jamais fais de soudure sur composant électronique auparavant.
                        +Comme quoi cette opération de réparation est à la portée de tous.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Julot + · 6 juillet 2014 à 13 h 49 min +

                        +

                        Site vraiment détaillé et très claire. J’ai pu dépanner mon écran avec succès. Merci beaucoup pour ces précieuses explications.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + PaniK31 + · 29 juillet 2014 à 9 h 21 min +

                        +

                        Pas besoin d’une grosse puissance pour le fer, il faut au préalable gratter le vernis sur l’étain afin de pouvoir le faire fondre plus facilement

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + R211_IP-45130B + · 20 août 2014 à 14 h 04 min +

                        +

                        Bonjour à tous,

                        +

                        Une âme charitable peut-elle me communiquer ce qui est gravé sur la résistance CMS R211 de la carte d’alimentation/inverter IP-45130B qui équipe le SAMSUNG 2232BW ? Cette résistance a pris un coup de tournevis et je n’arrive pas à déterminer sa valeur de résistance car son marquage est effacé et comme le composant est abimé la mesure à l’ohmmètre indique l’infinie.

                        +

                        Merci par avance.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + roger + · 24 octobre 2014 à 17 h 21 min +

                        +

                        Ca refonctionne après échange de 4 condensateurs :
                        +-un 330uf25v remplacé à l’identique.
                        +-trois 820uf25v remplacés par 1000uf25v.
                        +Le tout pour quelques €. Le plus dur était le dessoudage, la tresse n’était pas très efficace contrairement à la pompe.
                        +Grand merci à HugoPoi.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Max + · 26 février 2015 à 16 h 28 min +

                        +

                        ENORME MERCI!! J’ai réparé mon écran en 20mn pour 3,50€, il était à 2 doigts de partir à la déchetterie. Ca faisait des mois qu’il clignotait, et l’allumage mettait parfois plus d’une demi heure. J’ai changé 5 condos 820uf25v et 1 330uf25v, par exactement les mêmes en neuf, et là il démarre au quart de tour! Ca fait plaisir! :)

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + rocco michelle + · 7 octobre 2015 à 10 h 16 min +

                          +

                          Bonjour je ne sais si vous verrez mon message mais je tente…je cherche quelqu’un qui accepterait de changer mes condensateurs sur mon samsung, les réparateurs me demandent 70 à 80 euros et encore ils n’ont pss envie de le faire et me disent d’acheter un nouvel écran. j’aurais bien tenter mais je n’ai pas de matériel et j’ai lu que les condo pouvaient être très dangereux s’ils avaient de la charge alors j’ai la trouille de bidouiller pq je n’y connais rien. si vous êtes de lyon acccepteriez vous de changer mes condensateurs pour 45 euros? merci de votre réponse.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + lecakeseb + · 27 juillet 2015 à 15 h 26 min +

                        +

                        Bonjour,

                        +

                        J’ai utilisé la vidéo pour démonter mon écran afin de le nettoyer de 4 bêtes d’orage infiltrés entre le premier écran (noir) et la dalle (blanche) de mon samsung SyncMaster 2232W

                        +

                        Petits conseils afin de modérer ce que j’ai pu voir dans cette vidéo :

                        +

                        0 : aspirez, nettoyez l’extérieur de l’écran avant de l’ouvrir et nettoyez la table qui vous servira d’atelier, pour éviter les poussières qui s’infiltreront forcément plus tard si vous ne le faites pas…
                        +1 : pour ouvrir, utilisez plutôt un couteau à enduire pour la première partie (le cadre). Vous n’abîmerez ainsi pas du tout l’écran. Soyez patients, ne forcez pas ! ça viendra doucement, mais ça viendra. Il m’a fallu à peine 10 minutes, sans détériorer l’écran, sans le griffer… Il est encore nickel !
                        +2 : attention à ne pas déconnecter les fils reliant le cadre à la carte. Inutile pour simplement nettoyer l’écran.
                        +3 : pour séparer les deux éléments de la dalle entre lesquels les bêtes se sont infiltrées, les doigts suffisent, pas besoin d’outils qui viendraient les endommager. La dalle blanche reste à l’horizontale, l’écran noir sera tenu à la verticale.
                        +4 : utiliser un chiffon doux ne peluchant pas pour enlever les bêtes (faites-vous aider de quelqu’un qui les enlèvera pendant que vous tenez l’écran extérieur en position verticale).
                        +5 : repositionnez la colle d’étanchéité qui aurait pu se déplacer, avant de repositionner les deux écrans.
                        +6 : commencer par refermer par le bas de l’écran (sinon les éléments de réglage situés au bas de l’écran – luminosité, contraste,…- ne se replaceront pas correctement).
                        +7 : Une fois l’écran refermé, j’ai appliqué un peu de « barrage aux insectes », avec un chiffon à l’arrière de mon écran en insistant surtout sur les bouches d’aération par lesquelles les maudites bestioles ont du s’infiltrer. En espérant ne pas avoir à ouvrir !

                        +

                        Bon courage à vous !

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Michel Jousserandot + · 20 janvier 2017 à 20 h 41 min +

                        +

                        Merci pour les conseils au démontage.
                        +J’avais un problème un peu différent :l’écran ne s’allumait plus du tout. Avec un copain beaucoup plus malin que moi, on a détecté 2 fusibles dont l’un était fichu. On l’a remplacé par un petit fil de cuivre. Et tout a remarché comme avant.
                        +Il faut surtout faire attention quand on teste la partie haute tension
                        +Michel.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Crec + · 14 juillet 2017 à 10 h 20 min +

                        +

                        Bonjour. Très bons conseils avertis. Merci beaucoup.
                        +Peut-on avoir les mêmes conseils pour un écran BX2250.
                        +Merci par avance.
                        +Crec

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 6 août 2017 à 14 h 03 min +

                          +

                          J’ai pas de BX2250 donc dans le détails non mais si c’est les même symptômes ça doit la même procédure.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Ferronnier + · 10 août 2017 à 17 h 42 min +

                        +

                        Un grand merci !
                        +J’ai changé tous les condensateurs de la partie alimentation de la carte, en déportant certains qui n’avaient pas le même format qu’à l’origine, et ça tourne nickel !

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Nours + · 1 décembre 2017 à 15 h 17 min +

                        +

                        Ca fait des années que j’ai cet article enregistré dans un coin, en nourrissant l’espoir d’avoir un jour le courage de réparer ce foutu écran… Après plus de cinq ans c’est chose faite \o/
                        +Un giga, hypra, immense merci pour ce tutoriel tellement bien expliqué et facile d’accès (je n’avais pas touché à un fer à souder depuis… Oh boy 15 ans déjà).
                        +Après une longue pause, l’écran reprend du service… Jusqu’à la prochaine panne /o/

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Alex + · 11 août 2018 à 13 h 28 min +

                        +

                        Quelqu’un sait qui pourrait me le faire svp j ai le même problème mais aucun matériel

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + David + · 5 février 2019 à 21 h 06 min +

                        +

                        Merci Hugo pour ce tuto qui m’a déjà servi en 2013 et qui va me resservir aujourd’hui car mon 2ème 2232bw commence à avoir les mêmes symptômes.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + yvan + · 23 novembre 2019 à 17 h 14 min +

                        +

                        Bonjour
                        +j’ai tenté de changer le condensateur qui avait l’air naze mais ça n’a pas marché … toujours le bouton bleu allumé, l’écran est reconnu par Windows 10 même si l’écran est éteint
                        +grâce au service manuel de l’écran fourni plus haut, j’ai vérifié les tensions jusque sur la carte de la dalle et elles sont correctes, ainsi que sur la carte elle-même, tout est ok, donc je pense que ce n’est plus un problème de condensateur
                        +pour les fusibles, ils ressemblent plutôt à des composants qu’à de simple fusibles, mais comme j’ai les bonnes tension, je ne pense pas que ça vienne de là
                        +j’ai bien peur que ce soit la dalle qui soit naze ? quelqu’un a t il des idées supplémentaires avant que je le jette avec grand regret (c’est un 2032bw, mais c’est la même chose, même si ma carte électronique est un peu différente car plus récente
                        +merci d’avance pour vos conseils

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + yvan + · 24 novembre 2019 à 17 h 26 min +

                        +

                        finalement j’ai trouvé, c’est un petit fusible vert qui ressemble à une résistance mais tout vert avec écrit 4A LF qui assure l’alimentation de la dalle.
                        +En le shuntant, mon écran a retrouvé l’image.
                        +après enquête il s’agit d’un fusible pico de 4ampères de chez little fuse, pas du tout évident à trouver
                        +Résolu !

                        + +
                        +
                        + +
                        +
                        +

                        + Reflow Dell 1546 | HugoPoi + · 22 août 2016 à 16 h 09 min +

                        +

                        […] « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable de marque Dell un 1546 pour être précis. Encore […]

                        + +
                        +
                        + +
                        +
                        +

                        + Reflow Dell Inspiron 1546 – HugoPoi + · 23 juin 2017 à 23 h 18 min +

                        +

                        […] d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un […]

                        + +
                        +
                        + +
                        +
                        +
                        +

                        Répondre à moi Annuler la réponse

                        Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                        +
                        +
                        +

                        + +

                        +
                        +
                        +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        + + +
                        + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/7ec3f1d7609d3d8597558715a95f59f96c69a92e.00000204.html b/www/.content.EZtzwPjb/html/7ec3f1d7609d3d8597558715a95f59f96c69a92e.00000204.html new file mode 100644 index 0000000..c8d6b11 --- /dev/null +++ b/www/.content.EZtzwPjb/html/7ec3f1d7609d3d8597558715a95f59f96c69a92e.00000204.html @@ -0,0 +1,680 @@ + + + + + + + + Installer Mac OS X Mavericks avec VirtualBox – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        +

                        Capture Installation Mac OS X MavericksComme Apple c’est des blaireaux et que j’avais besoin d’un environnement de développement pour iDaube. J’ai du me résoudre à installer un Mac OS X dans une machine virtuel.

                        +

                        Ce dont vous avez besoin :

                        + +

                        Moi je travail sous Linux Mint mais vous devriez réussir à faire les manipulations sous Windaube.

                        +

                        1) Préparer la clé pour pouvoir booter dans la VM

                        +

                        Au début j’ai essayer de convertir le .dmg en ISO avec un outil de conversion mais cela ne marche pas car l’opération doit endommager le système de boot mis en place par Niresh. Donc la seul solution que j’ai trouvé c’est de faire une clé USB comme indiqué par Niresh avec dd.

                        +

                        Sous Mint/ubuntu/debian :

                        +

                        Une façon simple sous Linux d’identifier votre clé usb c’est avec la commande « mount », cela va lister toutes les partitions monter avec les périphériques correspondants.

                        +
                        hugo@hugo-NB ~ $ mount
                        +/dev/sda2 on /boot type ext3 (rw)
                        +/dev/mapper/lmvg-home on /home type ext4 (rw)
                        +/dev/mapper/lmvg-var on /var type ext4 (rw,errors=remount-ro)
                        +/dev/sda1 on /boot/efi type vfat (rw)
                        +binfmt_misc on /proc/sys/fs/binfmt_misc type binfmt_misc (rw,noexec,nosuid,nodev)
                        +gvfsd-fuse on /run/user/hugo/gvfs type fuse.gvfsd-fuse (rw,nosuid,nodev,user=hugo)
                        +/dev/mapper/lmvg-games on /media/hugo/90d3426d-d8b2-4ba4-a7df-98363b9b40d9 type ext4 (rw,nosuid,nodev,uhelper=udisks2)
                        +/dev/sdb1 on /media/hugo/HugoKey type ext4
                        +

                        Moi ma clé usb c’est /dev/sdb. Donc après la commande pour balancer le dmg sur la clé :

                        +

                        ATTENTION LA COMMANDE DD ci-dessous peut casser votre système si vous le faites sur le mauvais périphérique.

                        +
                        hugo@hugo-NB ~ $ sudo umount /media/hugo/HugoKey
                        +hugo@hugo-NB ~ $ sudo dd if=mavericks.dmg of=/dev/sdb bs=1M
                        +

                        Sous Windaube

                        +

                        Je ne vais pas détailler la procédure mais vous avez 2 solutions, soit vous utilisez la commande dd disponible avec MinGW dans les outils Msys. Ou vous utilisez Win32DiskImager (je vous recommande cette solution qui est la plus simple).

                        +

                        2) Configurer votre VM dans VirtualBox

                        +

                        Voilà les paramètres que j’ai utilisé pour installer:

                        +
                          +
                        • OSType : Mac OSX 10.9 64bits
                        • +
                        • RAM : 2048Mo
                        • +
                        • Activer l’accélération Graphique 3D
                        • +
                        • Mémoire Vidéo : 128Mo
                        • +
                        • Désactiver l’EFI
                        • +
                        • VT activé
                        • +
                        • Pagination Imbriqué activé
                        • +
                        • IO-APIC activé
                        • +
                        • Horloge UTC désactivé
                        • +
                        • Son désactivé (uniquement pendant l’installation)
                        • +
                        • Réseau désactivé (uniquement pendant l’installation)
                        • +
                        • Un disque virtuel de 20 Go
                        • +
                        +

                        3) Booter sur la clé USB dans VirtualBox

                        +

                        Je n’ai pas réussi à booter sur la clé avec l’ajout d’un filtre USB dans la VM, donc la solution que j’ai trouvé sur le net est de créer un fichier lien de disque physique. Pour le créer c’est relativement simple :

                        +
                        hugo@hugo-NB ~ $ vboxmanage internalcommands createrawvmdk -filename usb.vmdk -rawdisk /dev/sdb
                        +

                        Une fois votre fichier vmdk créé vous pouvez l’ajouter dans votre VM comme un disque virtuel existant, prenez soins de mettre ce disque sur le port SATA 0 car VirtualBox ce base sur l’ordre des disques pour le boot. Moi j’ai eu des problèmes de droits avec mes périphériques USB donc j’ai exécuté la commande vboxmanage avec sudo puis j’ai aussi lancé virtualbox avec sudo.

                        +

                        Pour Windows la procédure plus en détaille est disponible sur ce blog.

                        +

                        4) Lancer l’installation dans VirtualBox

                        +

                        Vous lancez la vm et ça boot. Si vous avez une erreur du type Fatal impossible de trouver de quoi booter, vérifiez que vous avez bien mis la clé USB en disque SATA sur le port 0 et le disque virtuel sur le 1 ou plus. Moi ça été un peu long avant d’afficher le choix de la langue environ 60 secondes, cela doit être dû à la vérification de l’image d’installation. Au moment de choisir la partition d’installation, vous devez lancer l’outil de disque pour créer une partition sur le disque virtuel (dans le menu en haut), ensuite vous le fermez et l’installateur continu.

                        +

                        Pour information ma vm ne s’arrête pas correctement au niveau de l’affichage, je penses qu’il y a un problème de driver mais j’y connais que dalle en iDaube OSX. Une fois l’installation finit vous pouvez passer la connexion iCloud et laisser le script finir l’installation. Ensuite vous devez créer un utilisateur administrateur pour ne pas utiliser le compte root. Et je n’ai pas encore réussi à avoir du son peut-être en laissant activé pendant l’installation mais je sais que ça peut poser problème.

                        +

                        Les identifiants de connexion sont :

                        +
                          +
                        • login : root
                        • +
                        • mot de passe : niresh
                        • +
                        +

                        5) Configurer pour avoir une résolution correcte

                        +

                        Pour cela il faut éditer le fichier /Extra/com.chameleon.Boot.plist dans votre OS X fraichement installé et rajouter/éditer les balises suivantes :

                        +
                        <key>GraphicsEnabler</key>
                        +<string>y</string>
                        +<key>Graphics Mode</key>
                        +<string>1366x768x32</string>
                        +<key>Kernel Flags</key>
                        +<string>"Graphics Mode"="1366x768x32"</string>
                        +

                        Dans la balise string Kernel Flags, des flags sont surement déjà présent donc moi je les ai laissé, j’ai rajouter « Graphics Mode »= »1366x768x32 » à la fin.

                        +

                        Ensuite vous devez éditer votre fichier de configuration vbox avec les commandes suivantes :

                        +
                        hugo@hugo-NB ~ $ vboxmanage setextradata "MAC OS X" "CustomVideoMode1" "1366x768x32"
                        +hugo@hugo-NB ~ $ vboxmanage setextradata "MAC OS X" "GUI/CustomVideoMode1" "1366x768x32"
                        +

                        Voilà après c’est sans garantie de fonctionnement …

                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +

                        + 6 commentaires

                        +
                        + +
                        +
                        +
                        +
                        +

                        + sc + · 2 mars 2014 à 23 h 44 min +

                        +

                        Merci, excellent tuto ! En suivant les étapes ça passe tout seul.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Djow + · 5 mars 2014 à 16 h 50 min +

                        +

                        Salut et merci pour le tuto , je suis bloqué a l instal « missing bluetooth controller transport » tester différente manip mais rien y fais . Une idée?

                        + +
                        +
                        + + +
                        + +
                        +
                        +
                        +
                        +

                        + LeKingduWar + · 7 mars 2014 à 10 h 22 min +

                        +

                        Hugo stp il me demande un controlleur bluetooth.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + mac + · 7 mars 2014 à 14 h 03 min +

                        +

                        Thanks, I’m installing it right now. The usb key step wasnt necessary however, you can convert it directly from dmg to vdi with: « VBoxManage convertdd yourdmgfile.dmg yournewvdiimage.vdi ». Then boot from the converted .vdi file. Worked for me on Ubuntu 12.04 with Virtualbox 4.3.6.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Niamor + · 16 avril 2014 à 10 h 30 min +

                        +

                        Bonjour à tous,
                        +Effectivement, l’étape avec la clé USB n’est pas nécessaire.
                        +Il est tout à fait possible d’installer l’OS directement en bootant sur l’iso qui sera préalablement monté via le lecteur virtuel.
                        +En tout cas, merci pour le tuto et les sources.
                        +Bonne continuation

                        + +
                        +
                        + +
                        +
                        +
                        +

                        Répondre à sc Annuler la réponse

                        Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                        +
                        +
                        +

                        + +

                        +
                        +
                        +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        + + +
                        + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/7fc406558f7a09ba6b2de6184bfaee307b8bdeba.00000661.css b/www/.content.EZtzwPjb/html/7fc406558f7a09ba6b2de6184bfaee307b8bdeba.00000661.css new file mode 100644 index 0000000..8043bbf --- /dev/null +++ b/www/.content.EZtzwPjb/html/7fc406558f7a09ba6b2de6184bfaee307b8bdeba.00000661.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;background:#fff;border:1px +solid #f00;font-size:10pt;width:280px;padding:2px}span.wpcf7-not-valid-tip-no-ajax{color:#f00;font-size:10pt;display:block}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/7fd30c01d9c7c91f3096ac1b9e84f86669238779.00001293.xml b/www/.content.EZtzwPjb/html/7fd30c01d9c7c91f3096ac1b9e84f86669238779.00001293.xml new file mode 100644 index 0000000..7cbe186 --- /dev/null +++ b/www/.content.EZtzwPjb/html/7fd30c01d9c7c91f3096ac1b9e84f86669238779.00001293.xml @@ -0,0 +1,7 @@ + +1.0HugoPoihttp://blog.hugopoi.netHugoPoihttp://blog.hugopoi.net/author/hugopoi/Réparations Samsung SyncMaster 2232BWrich600338<blockquote class="wp-embedded-content"><a href="/2012/01/15/reparations-samsung-syncmaster-2232bw/">Réparations Samsung SyncMaster 2232BW</a></blockquote> +<script type='text/javascript'> +<!--//--><![CDATA[//><!-- + !function(a,b){"use strict";function c(){if(!e){e=!0;var a,c,d,f,g=-1!==navigator.appVersion.indexOf("MSIE 10"),h=!!navigator.userAgent.match(/Trident.*rv:11\./),i=b.querySelectorAll("iframe.wp-embedded-content");for(c=0;c<i.length;c++){if(d=i[c],!d.getAttribute("data-secret"))f=Math.random().toString(36).substr(2,10),d.src+="#?secret="+f,d.setAttribute("data-secret",f);if(g||h)a=d.cloneNode(!0),a.removeAttribute("security"),d.parentNode.replaceChild(a,d)}}}var d=!1,e=!1;if(b.querySelector)if(a.addEventListener)d=!0;if(a.wp=a.wp||{},!a.wp.receiveEmbedMessage)if(a.wp.receiveEmbedMessage=function(c){var d=c.data;if(d.secret||d.message||d.value)if(!/[^a-zA-Z0-9]/.test(d.secret)){var e,f,g,h,i,j=b.querySelectorAll('iframe[data-secret="'+d.secret+'"]'),k=b.querySelectorAll('blockquote[data-secret="'+d.secret+'"]');for(e=0;e<k.length;e++)k[e].style.display="none";for(e=0;e<j.length;e++)if(f=j[e],c.source===f.contentWindow){if(f.removeAttribute("style"),"height"===d.message){if(g=parseInt(d.value,10),g>1e3)g=1e3;else if(~~g<200)g=200;f.height=g}if("link"===d.message)if(h=b.createElement("a"),i=b.createElement("a"),h.href=f.getAttribute("src"),i.href=d.value,i.host===h.host)if(b.activeElement===f)a.top.location.href=d.value}else;}},d)a.addEventListener("message",a.wp.receiveEmbedMessage,!1),b.addEventListener("DOMContentLoaded",c,!1),a.addEventListener("load",c,!1)}(window,document); +//--><!]]> +</script><iframe sandbox="allow-scripts" security="restricted" src="/2012/01/15/reparations-samsung-syncmaster-2232bw/embed/" width="600" height="338" title="« Réparations Samsung SyncMaster 2232BW » — HugoPoi" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" class="wp-embedded-content"></iframe> diff --git a/www/.content.EZtzwPjb/html/80bdfa9a77233c3b02b12a3ee265b7495a319525.00000285.html b/www/.content.EZtzwPjb/html/80bdfa9a77233c3b02b12a3ee265b7495a319525.00000285.html new file mode 100644 index 0000000..2415266 --- /dev/null +++ b/www/.content.EZtzwPjb/html/80bdfa9a77233c3b02b12a3ee265b7495a319525.00000285.html @@ -0,0 +1,412 @@ + + + + + + + Aventure PC – Page 2 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +

                        Écran miraculé d’un Asus N53SN

                        Comme d’habitude tantine vient me voir pour me dire que son écran d’ordinateur ne marche plus. Le pc portable, un Asus N53SN d’un plus de 2 ans de services, présente un écran noir complètement éteint mais le portable fonctionne parfaitement sur un écran externe. Ni une ni deux je commence par démonter la bête pour récupérer la référence exacte du moniteur.

                        +

                        asusn53sn_open_lcd_front (suite…)

                        +
                        Par HugoPoi, il y a

                        Installer Mac OS X Mavericks avec VirtualBox

                        Capture Installation Mac OS X MavericksComme Apple c’est des blaireaux et que j’avais besoin d’un environnement de développement pour iDaube. J’ai du me résoudre à installer un Mac OS X dans une machine virtuel.

                        +

                        Ce dont vous avez besoin :

                        + +

                        Moi je travail sous Linux Mint mais vous devriez réussir à faire les manipulations sous Windaube. (suite…)

                        +
                        Par HugoPoi, il y a

                        Home Cinéma

                        Bientôt fini mais peut-être jamais terminé tellement il y a de boulot autour d’un système home-cinema complet et parfait. Cela fait bientôt deux semaines que je suis dans mes travaux et ma configuration HTPC. Première semaine, je suis parti de rien, aucun câble posé, pas de pc installé et pas de meuble. Du coup, le lundi, je suis allé à Ikea et j’ai trouvé à peu près ce que je voulais pour pas trop cher (120 € pour de l’aggloméré de merde). Le mardi, je venais de recevoir tout le matos, à savoir :

                        +
                          +
                        • Un Amplificateur Yamaha RX-671
                        • +
                        • Un kit d’enceinte Jamo 5.1
                        • +
                        • Un boitier Antec Remote black et les 2-3 composants qui vont bien
                        • +
                        +

                        Salon Wii

                        +

                         

                        + +
                        Par HugoPoi, il y a

                        Asus U36 et OCZ Vertex 3 la suite

                        Après un mois d’attente auprès de Cdiscount, pour au final m’annoncer le remboursement de mon SSD Vertex 2 qui est mort subitement, j’ai donc décidé de commander un Vertex 3 qui va remplacer le mort au sein de mon Asus U36JC. Et pour ne pas l’ouvrir juste pour un banal remplacement de SSD j’ai décidé de remplacer par la même occasion la carte wifi, une Intel N-1000 par une Intel N-6320. Celle-ci disposant en plus du bluetooth. J’en ai donc profité pour prendre des photos supplémentaires du démontage pour compléter mon précédent article : Démontage d’un Asus U36. Vous pouvez d’abord lire mon ancien article avant d’attaquer celui-ci, je ne ferai qu’apporter des informations complémentaires pour le démontage. (suite…)

                        +
                        Par HugoPoi, il y a

                        Réparations Samsung SyncMaster 2232BW

                        Allô docteur on a un problème,

                        +

                        En ce dimanche calme avant la fin de mes partiels, mon écran Samsung SyncMaster 2232BW commençait à faire des siennes. Celui-ci depuis un mois ou deux clignotait de façon systématique au démarrage, au début pendant seulement quelques secondes, puis au fur et à mesure, de plus en plus jusqu’à devoir attendre 10 minutes pour que je puisse l’utiliser. Après 3 ans et 4 mois de bons et loyaux services, il voulait me quitter. J’ai tenté le support Samsung par email avec peu d’espoir car l’écran a dépassé sa garantie de 4 mois (oui oui les bâtards -> obsolescence programmée). Et donc j’ai eu le droit à un joli mail automatique me disant de contacter un numéro non surtaxé (mais avec combien de temps d’attente ?), ce que je n’ai pas fait car je n’avais pas envie de passer 30min au téléphone pour au final avoir un « On est désolé mais on ne peut rien faire pour vous car la garantie est dépassée, mais on peut envoyer votre écran en SAV pour faire un devis pour seulement 50 boules ». Concernant le support email de Samsung France, je leur donne une note de 0/20 puisque ce n’est pas un support mais une redirection vers le téléphone.

                        +

                        (suite…)

                        +
                        Par HugoPoi, il y a

                        Vos données sauvegardées

                        Dans le monde d’aujourd’hui, le numérique est omniprésent, tout ce que vous faites est ou peut être numérisé. Qu’il s’agisse de vos photos de vacances, de votre CV ou votre liste de course, vos contacts et tous les documents que vous utilisez pour travailler sont surement numériques. L’informatique est partout et aide à gérer votre comptabilité, vos contacts pro ou perso et même bientôt votre frigo. Quand je pense qu’il y a 10 ans, beaucoup de professions géraient leur base clients avec des fiches papiers, et que ça existe encore… Pourtant, c’est une perte de temps importante de gérer des clientèles de plus 100 personnes, trier les fiches à la main dans l’ordre alphabétique. Imaginez devoir sortir tous les clients que vous n’avez pas contacté depuis 2 mois, même avec uniquement 100 personnes vous allez y passer au moins une 1 heure avant que votre liste soit faite, avec une base de données, cela est fait en moins d’1 seconde. Tous ça pour dire que l’informatique facilite grandement votre vie jusqu’au jour où ça tombe en panne ! J’ai donc quelques propositions à vous faire concernant la protection de vos données. (suite…)

                        +
                        Par HugoPoi, il y a
                        +
                        +
                        + +
                        +
                        +
                        +
                        + +
                        +
                        + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/80fd772c4f5aa3888ce4ade44d5cadae4eaef8bc.00000576.css b/www/.content.EZtzwPjb/html/80fd772c4f5aa3888ce4ade44d5cadae4eaef8bc.00000576.css new file mode 100644 index 0000000..cda068b --- /dev/null +++ b/www/.content.EZtzwPjb/html/80fd772c4f5aa3888ce4ade44d5cadae4eaef8bc.00000576.css @@ -0,0 +1,107 @@ +div.wpcf7 { + margin: 0; + padding: 0; +} + +div.wpcf7-response-output { + margin: 2em 0.5em 1em; + padding: 0.2em 1em; +} + +div.wpcf7 .screen-reader-response { + position: absolute; + overflow: hidden; + clip: rect(1px, 1px, 1px, 1px); + height: 1px; + width: 1px; + margin: 0; + padding: 0; + border: 0; +} + +div.wpcf7-mail-sent-ok { + border: 2px solid #398f14; +} + +div.wpcf7-mail-sent-ng { + border: 2px solid #ff0000; +} + +div.wpcf7-spam-blocked { + border: 2px solid #ffa500; +} + +div.wpcf7-validation-errors { + border: 2px solid #f7e700; +} + +.wpcf7-form-control-wrap { + position: relative; +} + +span.wpcf7-not-valid-tip { + color: #f00; + font-size: 1em; + font-weight: normal; + display: block; +} + +.use-floating-validation-tip span.wpcf7-not-valid-tip { + position: absolute; + top: 20%; + left: 20%; + z-index: 100; + border: 1px solid #ff0000; + background: #fff; + padding: .2em .8em; +} + +span.wpcf7-list-item { + display: inline-block; + margin: 0 0 0 1em; +} + +span.wpcf7-list-item-label::before, +span.wpcf7-list-item-label::after { + content: " "; +} + +.wpcf7-display-none { + display: none; +} + +div.wpcf7 .ajax-loader { + visibility: hidden; + display: inline-block; + background-image: url('../../images/ajax-loader.gif'); + width: 16px; + height: 16px; + border: none; + padding: 0; + margin: 0 0 0 4px; + vertical-align: middle; +} + +div.wpcf7 .ajax-loader.is-active { + visibility: visible; +} + +div.wpcf7 div.ajax-error { + display: none; +} + +div.wpcf7 .placeheld { + color: #888; +} + +div.wpcf7 .wpcf7-recaptcha iframe { + margin-bottom: 0; +} + +div.wpcf7 input[type="file"] { + cursor: pointer; +} + +div.wpcf7 input[type="file"]:disabled { + cursor: default; +} diff --git a/www/.content.EZtzwPjb/html/81130d0362d3733c407e223fecfc34b263aecb87.00000535.html b/www/.content.EZtzwPjb/html/81130d0362d3733c407e223fecfc34b263aecb87.00000535.html new file mode 100644 index 0000000..09f6fdb --- /dev/null +++ b/www/.content.EZtzwPjb/html/81130d0362d3733c407e223fecfc34b263aecb87.00000535.html @@ -0,0 +1,364 @@ + + + + + + + trident media guard – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +

                        Download-Day

                        Bon voilà, je vais officialiser ma participation au D-Day organisé par LinuxManua, en date du 1er novembre 2010. Le but de l’opération étant de télécharger 20 Go et cela uniquement sur les réseaux Peer to Peer de préférence pas anonyme : Edonkey2000, Gnutella, Bitorrent, etc. Alors comme je suis joueur, je Lire la suite…

                        +
                        +
                        + +
                        +
                        +
                        +
                        + +
                        +
                        + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/813bd26d226a4b853d74c292e7616dd5113b237d.00000507.html b/www/.content.EZtzwPjb/html/813bd26d226a4b853d74c292e7616dd5113b237d.00000507.html new file mode 100644 index 0000000..48e18ec --- /dev/null +++ b/www/.content.EZtzwPjb/html/813bd26d226a4b853d74c292e7616dd5113b237d.00000507.html @@ -0,0 +1,364 @@ + + + + + + + sapin – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        + +
                        +
                        + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/82240f681ad2f145e77347e4110585706481e50b.00000260.html b/www/.content.EZtzwPjb/html/82240f681ad2f145e77347e4110585706481e50b.00000260.html new file mode 100644 index 0000000..30a556e --- /dev/null +++ b/www/.content.EZtzwPjb/html/82240f681ad2f145e77347e4110585706481e50b.00000260.html @@ -0,0 +1,551 @@ + + + + + + + + My shitty Nvidia DisplayPort Problems who no ones care about – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        +

                        Recently I have done the acquisition of a new ULTRAWIDE screen, precisily a Philips 439PH9 with a DisplayPort v1.4, this information is very important for what’s coming next.

                        +

                        The problem

                        +

                        The morning I receive it, I already have my computer running, so I hot swap my DisplayPort cable to the new monitor and all going well, the screen work perfectly fine. Couple days later I need to do an upgrade of my linux kernel, so I restart my computer and a black screen appear with nothing, no signal, not even the UEFI logo. So I know by heart how to start without screen :

                        +
                          +
                        1. Hit 10 times backward key to make sure my very old wireless keyboard connect
                        2. +
                        3. Enter my LUKS passphrase to start decrypt my disk
                        4. +
                        5. Wait 2 seconds for the login screen
                        6. +
                        7. Hit 10 times backward key to ensure the keyboard is connected
                        8. +
                        9. Enter my Login and password
                        10. +
                        11. Then X server will start
                        12. +
                        +

                        Because yes I don’t have a Display/Login manager, I don’t need one, so my computer stay in console mode until I sign up on TTY1.

                        +

                        After some digging on The Internet, very interesting reading about a display port issue concerning some Nvidia GTX9xx serie GPU.
                        +Of course Nvidia provide a fix but only on Windows for doing the patching. Then I checked on MSI website for a miracle Linux compatible VGABios upgrade tool, there is none.

                        +

                        The Linux community have done a lot lately, and new standard/tool exists for upgrading firmware on Linux, fwupd is the response. But only too few manufacturer play the game, big ones like Dell, Lenovo and Logitech, that’s all.

                        +

                        Diagnosis

                        +
                          +
                        • Always black screen in text mode and UEFI at boot
                        • +
                        • The display work perfectly in graphic mode
                        • +
                        • My old screen work without problem on Display Port
                        • +
                        • I test with HDMI => the problem disapear
                        • +
                        +

                        Fix attempt 1

                        +

                        WARNING DON4T DO THIS
                        +1. Get a Windows 10 PE weird image on The Pirate Bay
                        +2. Flash it on a USB stick with woeusb --device GandalfsWindows10PE.iso /dex/sdx
                        +3. Boot => success
                        +4. Try MSI Live Updater 6 => instantly crash with no message
                        +5. Try Nvidia tool get

                        +

                        Conclusion

                        +

                        Windows 10 PE is a no go.

                        +

                        Fix attempt 2

                        +
                          +
                        1. Get a Windows iso
                        2. +
                        3. Flash on a usb stick woeusb --device windows10.iso /dex/sdx
                        4. +
                        5. Installing Windows (I do this through a virtual machine, and a raw device to /dev/sdx)
                        6. +
                        7. Try MSI Live Updater 6 => USELESS
                        8. +
                        9. Try the Nvidia DisplayPort fixer tool
                          +
                          +
                        10. +
                        11. FUCKING SOLVED MY ISSUE
                        12. +
                        +

                        Conclusion 2

                        +

                        Nvidia can you provide Linux tools for fixing your mistakes ?
                        +MSI, your tools are useless, can you provide vga bios update ?
                        +More than the half of earth computers now running Linux based system this days, too much to ask that hardware manufacturers have the desency to provide a support for Linux.

                        +

                        ## Other notes
                        + * There is nvflash which working on Linux
                        + * No clue how to find the patched version of my gpu bios, not here anymore
                        + * I’m in touch with MSI French support …
                        +

                        +
                        +
                        +
                        +
                        +
                        Catégories : #FAILHardware
                        +
                        +
                        +
                        + + + + + + + + + +
                        +
                        +
                        +
                        +
                        +
                        +
                        +

                        + 1 commentaire

                        +
                        + +
                        +
                        +
                        +
                        +

                        + Rudi Pittman + · 1 juin 2020 à 1 h 56 min +

                        +

                        The problem I have is even though grub is specifying 4.14.138 and initird-v1.5.5 on reboot it tells me those don’t exist. Doing a grub edit and using autocomplete the files it ACTUALLY find are /boot/vmlinuz-4.14.73-rancher and /boot/initrd-v1.4.2. Where the heck are those coming from? When I look on /dev/vda2/boot I see the 4.14.138 and initrd-v1.5.5 as the grub reflects. /mnt/efipart/EFI/BOOT has:

                        +

                        -rwxr-xr-x 1 root root 1334816 May 30 15:13 BOOTx64.EFI
                        +-rwxr-xr-x 1 root root 316 May 30 15:15 grub.cfg
                        +-rwxr-xr-x 1 root root 1146744 May 30 15:13 grubx64.efi

                        + +
                        +
                        + +
                        +
                        +
                        +

                        Laisser un commentaire

                        Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                        +
                        +
                        +

                        + +

                        +
                        +
                        +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        + + +
                        + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/82a1f7ab9cc9232d418ad4efc7f27e174fe96f93.00001281.json b/www/.content.EZtzwPjb/html/82a1f7ab9cc9232d418ad4efc7f27e174fe96f93.00001281.json new file mode 100644 index 0000000..5a30087 --- /dev/null +++ b/www/.content.EZtzwPjb/html/82a1f7ab9cc9232d418ad4efc7f27e174fe96f93.00001281.json @@ -0,0 +1 @@ +{"version":"1.0","provider_name":"HugoPoi","provider_url":"http:\/\/blog.hugopoi.net","author_name":"HugoPoi","author_url":"http:\/\/blog.hugopoi.net\/author\/hugopoi\/","title":"Pr\u00e9paration Migration","type":"rich","width":600,"height":338,"html":"
                        Pr\u00e9paration Migration<\/a><\/blockquote>\n + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        +

                        Bon les cocos, j’ai récupéré un vidéo projecteur Sony VPL-CX5 en état décédé. Comme je sais que c’est encore et toujours ce problème d’obsolescence programmée j’ai donc décidé de le réparer.

                        +

                        Sony VPL-CX5

                        +

                        Première étape, identifier la panne

                        +

                        Le vidéoprojecteur ne donnait aucun signe de vie, aucune led ne s’allume quand je l’ai branché rien du tout même pas un petit crépitement d’alimentation. Je pense a un problème d’alimentation mais rien est sur tant que je ne l’ai pas démonté. Mais avant le dévissage je vais quand même faire une recherche Google car le Internet il est grand et il est beau. J’ai trouvé un truc qui m’a mis la puce à l’oreille sans même avoir enlever la première visse, sur un forum quelconque que je n’arrive plus à retrouver, un mec dit qu’il a changé un composant (un certain MCZ3001) sur une des cartes d’alimentation, et le vidéoprojecteur remarchait.

                        +

                        Démontage

                        +

                        Sony VPL-CX5

                        +

                        J’ai donc commencé par enlever les quelques visses, puis démonter toutes les cartes une par une, une vrai galère. Pour m’aider j’ai trouvé le « manuel de service » (or Service Manual) que je mets a disposition ici même : sony_vpl-cx5_cs5_servicemanual. J’ai mis dans la suite les références des connecteurs pour les mesures.

                        +

                        1) Premier test vérifier le fusible sur la première carte d’alimentation GA, faire le test avec la carte débranché, j’ai utilisé un voltmètre sur la position test de résistance : test OK.

                        +

                        2) Deuxième test, vérifier la tension continu fournie par cette carte GA sur le connecteur de sortie CN2001 environ 380V DC, DONC FAIRE CECI AVEC PRÉCAUTION (je l’ai fait avec un voltmètre de merde à 5€) : test OK j’ai 380 Volt en sortie. Sur cette carte il y un gros condensateur de 400V donc faire TRÈS ATTENTION MÊME QUAND LA CARTE EST DÉBRANCHÉ DU SECTEUR.(j’ai vérifier le condensateur se décharge assez vite j’ai mesuré 4V 10 secondes après avoir débranché)

                        +

                        3) Maintenant test de la carte GB qui transforme le 400V continu en basse tension continu ici du 24V d’après le SM. Donc j’ai le point de mesure parfait, c’est le connecteur CN3201.

                        +
                        N'oubliez d'ouvrir le manuel de service ça donne des infos précieuses pour le dépannage

                        N’oubliez d’ouvrir le manuel de service ça donne des infos précieuses pour le dépannage

                        +

                        Plusieurs points pour tester le plus pratique étant le petit connecteur blanc de 3 broches qui fournit la masse et VCC 24V. Après mesure sur ce connecteur j’ai une tension stable mais pas du 24VDC, les composants n’ont pas l’air endommagés donc je vérifie à l’entrée du fameux MCZ3001 il est bien alimenté correctement mais ne sort pas 24VDC. Pas de condensateurs chimiques endommagés.

                        +

                        Donc la panne est certainement dû à ce composant, achetons-le !

                        +

                        Trouver le composant de rechange

                        +

                        Au début j’ai cherché chez des e-commerçant d’électronique comme Farnell,Conrad, etc pas trouvé en france, puis j’ai fait les marchants Anglais et je l’ai trouvé mais à 30€ frais de port inclus. Et comme un con j’avais oublié de faire Ebay : encore un coup des chinois 4.27€ avec le support DIP et les frais de port inclus OMFG j’adore la mondialisation. J’en ai pris 2 pour mois de 10€ et comme les chinois ils sont trop fort j’ai tout reçu en moins de 2 semaines.

                        +

                        Capture-ebay-mcz3001

                        +

                        Dés-soudage

                        +

                        Bon j’avais des fer à souder de merde et du coup c’est le #FAIL, j’ai pas réussi à dés-souder proprement, j’ai donc été obligé d’investir dans une merde à 10€ :

                        +

                        Fer à souderEnsuite j’ai finalement réussi à dés-souder :

                        +

                        Carte GB MCZ3001 dés-soudéEt il me semble que sur cette photo j’avais nettoyer avec du dissolvant.

                        +

                        Remontage

                        +

                        Alors je suis désolé mais je n’ai pas de photos pour le MCZ soudé car j’avais déjà remonté le projecteur. Les étapes :

                        +
                          +
                        1. Souder un support fourni (au cas ou ce fameux MCZ rendrais encore l’âme)
                        2. +
                        3. Placer un MCZ neuf dans le support
                        4. +
                        5. Relier la carte GA et GB ensemble
                        6. +
                        7. Brancher sur le 220V
                        8. +
                        9. Tester le 24VDC sur le connecteur CN3201
                        10. +
                        11. #WIN
                        12. +
                        13. Remonter le projecteur
                        14. +
                        15. Tester en vrai
                        16. +
                        17. #WIN2
                        18. +
                        +

                        Conclusion

                        +

                        Oui c’est un WIN d’une valeur 4€ mais je tiens à préciser que ça représente environ 10 heures de travail continu. Entre les recherches Google et la lecture de la documentation, les heures passés au démontage, les quelques fois ou je me suis arraché les cheveux et risquer ma vie avec un voltmètre à 5€.

                        +

                        Mon banc de test

                        +

                        Banc de test chez HugoLa table du salon 2Les Tofs

                        + + +
                        +
                        +
                        + +
                        +
                        + + + + + + + + + +
                        +
                        +
                        +
                        +
                        +
                        +
                        +

                        + 16 commentaires

                        +
                        + +
                        +
                        +
                        +
                        +

                        + Georg + · 30 janvier 2014 à 12 h 22 min +

                        +

                        Hello,
                        +dear Hugo, at first: HAVE MANY THANKS FOR YOUR VERY INTERESTING BLOG!!!

                        +

                        I also have a cx5 and try to repair it.

                        +

                        It has the same problems like your projector…

                        +

                        I’ve measured the CN2001 but in my power supply there are only 320 V (stable).
                        +Are you sure, that there have to be 380V?
                        +In the service manual, I didn’t find a value (either 320V nor 380V)

                        +

                        Best Regards
                        +Your Georg

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 21 février 2014 à 17 h 36 min +

                          +

                          Sorry to be so long to answer,
                          +320V seems to be OK, I have extrapolated the value from the schema ~ 220Vxrootsquare(2) but this depends of the quality of your current source. I think 320 will not impact the power for the next card.

                          +

                          Good repair !
                          +Thanks for the comment :-D

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + henri moine + · 2 février 2014 à 20 h 43 min +

                        +

                        Bonsoir,
                        +Merci beaucoup pour l’explication détaillée et les photos.
                        +Je vais pas tarder de m’attaquer à mon SONY VPL CS7 bizarrement inerte depuis quelques semaines…
                        +Bonne continuation !

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + florian + · 21 avril 2014 à 9 h 09 min +

                          +

                          Bonjour,
                          +Je possède également un sony VPL CS7, et depuis plusieurs mois il a quelques signes de faiblesses.

                          +

                          1) lorsque je le débranche du secteur et que je le rebranche, il faut que j’attende 24 à 48 h pour que le voyant on/off se mette à éclairer, donc je ne peux pas l’allumer pendant ce temps.

                          +

                          2) aujourd’hui j’ai beau le laisser brancher, aucun signe de vie plus rien ne s’allume.

                          +

                          As tu attaqué ton VPL, As tu trouvé quelque chose ?

                          +

                          Merci

                          + +
                          +
                          +
                            +
                            + +
                            +
                            +
                            +
                            +

                            + HugoPoi + · 9 mai 2014 à 17 h 50 min +

                            +

                            Le VPL que j’avais était en panne je l’ai réparé jusqu’à il y a 2 mois ou il retombé en panne. Ton problème d’allumage ressemble à un problème de condensateur cramé. tu peux regarder si tu en vois des gonflés en démontant.

                            + +
                            +
                            + +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Ghent + · 21 septembre 2014 à 12 h 48 min +

                        +

                        Bonjour,

                        +

                        Déjà, super tuto.
                        +Je rencontre un problème à priori similaire avec mon CX5: le bouton de mise sous tension n’est plus éclairé et il ne se passe rien quand j’appuie dessus.

                        +

                        Je me suis donc lancé, et j’ai démonté jusqu’à atteindre les cartes d’alimentation.
                        +J’ai mesuré donc au niveau du CN3201, et là j’ai 22V continu stable.
                        +D’où ma première question, ai-je le même problème que toi avec le MCZ3001, ou dois-je chercher autre part ?
                        +Faut-il 24V exactement ?

                        +

                        Ensuite, j’ai essayé de me rapprocher du composant lui-même, mais je ne sais pas où mesurer. Le diagramme indique le VC1 sur la patte 8, mais je ne sais pas où prendre la masse.
                        +Saurais-tu m’aider ?

                        +

                        J’ai enfin voulu tester la tension en sortie de la carte GB, le point 17V, mais même question, si je teste la patte 1 du connecteur, où prendre la masse pour vérifier qu’il y a bien 17V ?
                        +Cette partie est-elle alimentée malgré que l’appareil soit éteint ?

                        +

                        Dans tous les cas, j’ai commandé le MCZ3001D, mais je voudrais m’assurer qu’il est bien le responsable avant de le changer.

                        +

                        Merci d’avance pour tes réponses, et encore une fois, merci de partager ton travail !

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 26 septembre 2014 à 15 h 01 min +

                          +

                          Je penses que si tu as 22V sur CN3201 le problème est sûrement ailleurs. Même si cela ne coûte rien de changer le MCZ3001D si tu as de quoi dessouder proprement. Regarde sur le service manuel pour tester les autres tensions qui sortent de la carte après les partie d’isolement, de mémoire il y a 3,3 V et du 5V.

                          + +
                          +
                          +
                            +
                            + +
                            +
                            +
                            +
                            +

                            + Neckron + · 12 décembre 2014 à 21 h 32 min +

                            +

                            Bonsoir, je déterre un peu ce vpl-cx5 que je possède et que je vends !!!
                            +Je voie qu’il y a encore des personnes qui s’y intéresse.
                            +Je précise juste que le mien est en excellent état de marche, il y a la télécommande et qu’il n’a servi QUE 220 Heures. Lampe d’origine. Je cherchais pendant un temps un moyen de l’upgrader pour l’image, mais finalement…. je change…

                            + +
                            +
                            + +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Jean-Marie + · 31 décembre 2014 à 14 h 43 min +

                        +

                        Bonjour Hugo.
                        +Merci pour ton partage d’expérience.
                        +Moi aussi, j’ai un VPL-CS7 inerte comme tu dis. Pas la moindre led s’allume ou clignote quand je le branche.
                        +Je l’ai complètement démonté. Je soupçonne un composant sur le bloc d’alim.
                        +As-tu réparé le tien ?
                        +Merci.
                        +JM.

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 31 janvier 2015 à 15 h 13 min +

                          +

                          Moi j’ai bien réparé mon CX5 mais celui-ci est retombé en panne 6 mois plus tard. Cette fois-ci avec plus de composants endommagés :-(
                          +Bon courage pour les réparations.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Sorce + · 14 mars 2015 à 16 h 05 min +

                        +

                        Bonjour ,j’ai un vpl cs6 ,qui ne s’allume pas rien du tous j’ai suivi tes étape et sur le connecteur con 2001 et la 325v bizarre bon je relie la carte gb pour tester au borne du con 3201 et la 15v et sa retombe et sa remonte a 15v peut tu m aider cdt richard (pense tu que je doi changer le mcz)

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 29 avril 2015 à 16 h 18 min +

                          +

                          Vérifiez les autres tensions en sortie de la carte GB, de mémoire il doit y avoir 3,3 V du 5 V et du 15V. Si tout est OK, la carte-mère principale est peut-être endommagé et pas moyen de réparer sans changement.

                          + +
                          +
                          + +
                          + +
                          +
                          +
                          +
                          +

                          + Gilles + · 16 juin 2018 à 13 h 44 min +

                          +

                          Même chose que vous ?
                          +Avez-vous trouvé une solution ?
                          +Est-ce que c’est normal cette tension non stable ?

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Daoud Yacoub + · 20 octobre 2015 à 9 h 54 min +

                        +

                        Je remercie beaucoup l’equipe

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Daoud Yacoub + · 20 octobre 2015 à 10 h 02 min +

                        +

                        Aidez moi à depanner mon vidéo projecteur le tout ne s’allume pas ;jai démonté et nettoyer toutes les plaques alimentation et logique me rien ne se passe mais en toute sincérité si je peux avoir le document technique de réparation m’est indispensable

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 24 octobre 2015 à 13 h 39 min +

                          +

                          Les commentaires n’ont pas pour vocation d’être un forum :-)

                          + +
                          +
                          + +
                        + +
                        +
                        +
                        +

                        Répondre à HugoPoi Annuler la réponse

                        Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                        +
                        +
                        +

                        + +

                        +
                        +
                        +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        + + +
                        + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/8319c4338ec1ac278e9fed686f3ef964895784fc.00000015.html b/www/.content.EZtzwPjb/html/8319c4338ec1ac278e9fed686f3ef964895784fc.00000015.html new file mode 100644 index 0000000..da2817d --- /dev/null +++ b/www/.content.EZtzwPjb/html/8319c4338ec1ac278e9fed686f3ef964895784fc.00000015.html @@ -0,0 +1,489 @@ + + + + + + + + Download-Day – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        +

                        Vuze

                        +

                        Bon voilà, je vais officialiser ma participation au D-Day organisé par LinuxManua, en date du 1er novembre 2010. Le but de l’opération étant de télécharger 20 Go et cela uniquement sur les réseaux Peer to Peer de préférence pas anonyme : Edonkey2000, Gnutella, Bitorrent, etc. Alors comme je suis joueur, je me suis dit qu’on pourrait améliorer l’event en mettant en place un système de score.

                        +

                        What ?

                        +

                        La proposition de LinuxManua était de définir gagnant, celui ou ceux qui recevraient leur jolie courriel Hadopi. Mais ça va prendre du temps avant que les mails soient envoyés si on est sur « liste d’attente ». Donc ma proposition qui me semble « fun » est d’auditer les IP et serveurs de TMG, pour cela, voici leurs plages d’IP :

                        +

                        TRIDENT MEDIA GUARD TMG : 193.105.197.0-193.105.197.255
                        +TRIDENT MEDIA GUARD TMG : 193.107.240.0-193.107.243.255
                        +TRIDENT MEDIA GUARD TMG : 195.191.244.0-195.191.245.255

                        +

                        Mais j’ai un petit doute sur le fait que ces IP soit utilisées pour pêcher les internautes donc je vais d’abord auditer celles-ci afin de vérifier. Alors le principe est simple, vous ajoutez dans le filtre IP de votre client P2P préféré les plages ci-dessus puis vous téléchargez 20 Go à la fin de la journée vous regardez les log de votre logiciel pour voir si une des IP de la plage à tenté de se connecter !

                        +

                        Donc j’attends vos retours.

                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +

                        + 0 commentaire

                        +
                        +
                        +
                        +

                        Laisser un commentaire

                        Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                        +
                        +
                        +

                        + +

                        +
                        +
                        +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        + + +
                        + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/833d11d84224d0d0e8adfa88cfeed1aaafa43475.00000323.xml b/www/.content.EZtzwPjb/html/833d11d84224d0d0e8adfa88cfeed1aaafa43475.00000323.xml new file mode 100644 index 0000000..685f99d --- /dev/null +++ b/www/.content.EZtzwPjb/html/833d11d84224d0d0e8adfa88cfeed1aaafa43475.00000323.xml @@ -0,0 +1,205 @@ + + + HugoPoi + + https://blog.hugopoi.net + Internet, Hardware et Bidouille + + Sat, 30 Mar 2019 14:07:08 +0000 + fr-FR + + hourly + + 1 + https://wordpress.org/?v=5.1.4 + + Le cloud maison + https://blog.hugopoi.net/2019/03/30/le-cloud-maison/ + https://blog.hugopoi.net/2019/03/30/le-cloud-maison/#comments + Sat, 30 Mar 2019 14:07:06 +0000 + + + + + + + + + + https://blog.hugopoi.net/?p=1142 + + https://blog.hugopoi.net/2019/03/30/le-cloud-maison/feed/ + 3 + + + Secure Boot n’est pas simple + https://blog.hugopoi.net/2019/01/06/secure-boot-nest-pas-simple/ + https://blog.hugopoi.net/2019/01/06/secure-boot-nest-pas-simple/#respond + Sun, 06 Jan 2019 10:38:00 +0000 + + + + https://blog.hugopoi.net/?p=1068 + + https://blog.hugopoi.net/2019/01/06/secure-boot-nest-pas-simple/feed/ + 0 + + + Niquer les DRMs d’Amazon AKA convertir vos ebook vers EPUB sans DRM + https://blog.hugopoi.net/2018/09/08/niquer-les-drms-damazon-aka-convertir-vos-ebook-vers-epub-sans-drm/ + https://blog.hugopoi.net/2018/09/08/niquer-les-drms-damazon-aka-convertir-vos-ebook-vers-epub-sans-drm/#comments + Sat, 08 Sep 2018 00:20:34 +0000 + + + + + + + + + + + https://blog.hugopoi.net/?p=999 + + https://blog.hugopoi.net/2018/09/08/niquer-les-drms-damazon-aka-convertir-vos-ebook-vers-epub-sans-drm/feed/ + 2 + + + L’homme du milieu avec DD-WRT + https://blog.hugopoi.net/2017/06/23/lhomme-du-milieu-avec-dd-wrt/ + https://blog.hugopoi.net/2017/06/23/lhomme-du-milieu-avec-dd-wrt/#comments + Fri, 23 Jun 2017 20:32:30 +0000 + + + + + + + + + + https://blog.hugopoi.net/?p=973 + + https://blog.hugopoi.net/2017/06/23/lhomme-du-milieu-avec-dd-wrt/feed/ + 1 + + + Le destin de Linux + https://blog.hugopoi.net/2017/04/02/le-destin-de-linux/ + https://blog.hugopoi.net/2017/04/02/le-destin-de-linux/#respond + Sun, 02 Apr 2017 11:32:32 +0000 + + + + + + + + http://blog.hugopoi.net/?p=957 + + https://blog.hugopoi.net/2017/04/02/le-destin-de-linux/feed/ + 0 + + + Pourquoi je suis sous Linux bordel ! + https://blog.hugopoi.net/2017/02/11/pourquoi-je-suis-sous-linux-bordel/ + https://blog.hugopoi.net/2017/02/11/pourquoi-je-suis-sous-linux-bordel/#comments + Sat, 11 Feb 2017 17:37:20 +0000 + + + + + + + + http://blog.hugopoi.net/?p=947 + + https://blog.hugopoi.net/2017/02/11/pourquoi-je-suis-sous-linux-bordel/feed/ + 1 + + + Reflow Dell Inspiron 1546 + https://blog.hugopoi.net/2016/08/22/reflow-dell-1546/ + https://blog.hugopoi.net/2016/08/22/reflow-dell-1546/#respond + Mon, 22 Aug 2016 14:00:28 +0000 + + + + + + + + + + http://blog.hugopoi.net/?p=918 + + https://blog.hugopoi.net/2016/08/22/reflow-dell-1546/feed/ + 0 + + + Et si on faisait sans Twitch et sans Youtube + https://blog.hugopoi.net/2015/10/24/et-si-on-faisait-sans-twitch-et-sans-youtube/ + https://blog.hugopoi.net/2015/10/24/et-si-on-faisait-sans-twitch-et-sans-youtube/#respond + Sat, 24 Oct 2015 13:07:55 +0000 + + + + + + + + + + + + + + http://blog.hugopoi.net/?p=909 + + https://blog.hugopoi.net/2015/10/24/et-si-on-faisait-sans-twitch-et-sans-youtube/feed/ + 0 + + + Test et démontage d’un Sony Multi Flip 15 SVF15N1C5E + https://blog.hugopoi.net/2014/08/04/test-et-demontage-dun-sony-multi-flip-15-svf15n1c5e/ + https://blog.hugopoi.net/2014/08/04/test-et-demontage-dun-sony-multi-flip-15-svf15n1c5e/#respond + Mon, 04 Aug 2014 13:25:59 +0000 + + + + + + + + + http://blog.hugopoi.net/?p=856 + + https://blog.hugopoi.net/2014/08/04/test-et-demontage-dun-sony-multi-flip-15-svf15n1c5e/feed/ + 0 + + + Écran miraculé d’un Asus N53SN + https://blog.hugopoi.net/2014/08/02/ecran-miracule-dun-asus-n53sn/ + https://blog.hugopoi.net/2014/08/02/ecran-miracule-dun-asus-n53sn/#comments + Sat, 02 Aug 2014 17:53:57 +0000 + + + + + + + + http://blog.hugopoi.net/?p=819 + + https://blog.hugopoi.net/2014/08/02/ecran-miracule-dun-asus-n53sn/feed/ + 1 + + + diff --git a/www/.content.EZtzwPjb/html/83bf269b69995e48a4aae628c27049e2f709f019.00000007.html b/www/.content.EZtzwPjb/html/83bf269b69995e48a4aae628c27049e2f709f019.00000007.html new file mode 100644 index 0000000..593604a --- /dev/null +++ b/www/.content.EZtzwPjb/html/83bf269b69995e48a4aae628c27049e2f709f019.00000007.html @@ -0,0 +1,596 @@ + + + + + + + + Anonymat I2P, TOR et les VPN – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        +

                        Intro

                        +

                        Mon Minitel à coté de (soon) mon Minitel 2.0

                        +

                        Suite aux articles de Bluetouff, je voudrais apporter ma pierre à l’édifice anonymat sur internet. Cet article va donc parler de 2 concepts logiciels réseaux qui permettent de surfer de façon blindée sur Internet. Enfin pas tant que ça …

                        +

                        En premier lieu, je devais écrire cet article dans le but de vous donnez des conseils pour utiliser les réseaux anonymes, mais je suis rendu compte qu’il était urgent d’informer les gens sur les dangers que sont les VPN.

                        +

                        Suite à une conversation avec un ami (et même plusieurs), je leur disais que je téléchargeais sur le réseau Bitorrent. La grande question était : est-ce que tu utilises un VPN ? Je leur ai répondu que non. La première des raisons pour laquelle je n’utilise pas de VPN c’est que je n’ai pas d’argent. Aussi le fait que pour utiliser un VPN, il faut rediriger ses paquets ip, ils transitent donc par un tiers qui peut comme il le veut logger toutes vos connexions et trafics. Enfin si je suis une autorité qui veux écouter le trafic des gens (genre hadopi), bah j’ouvre un VPN « pas-hadopi.fr« , venez tous ici pour contourner hadopi, tout le monde il est beau, tout le monde il est gentil, voilà tous les pigeons dans mon filet. Pour dire aussi que le VPN c’est de l’anti-internet, cela revient à supprimer le plus grand intérêt d’internet, à savoir l’échange direct possible entre tous et publier, discuter de façon décentralisée. Ce qui m’inquiète le plus en ce moment, c’est cette nouvelle vague « cloud computing  » « web 3.0  » qui vient avec des périphériques qui ne servent à rien sans internet et des services hyper centralisés tel Facebook ou Youtube et Google. Je ne sais pas si les gens se rendent compte qu’ils mettent leurs vies entre les mains de sociétés privées dont ils n’ont que peu de contrôle.

                        +

                        Tor

                        +

                        The Onion Router, je vais pas écrire un roman sur le fonctionnement de ce système de routage anonymisant mais le principe est pas super compliqué. Au lieu de choisir d’acheminer votre trafic de façon la plus rapide et/ou la moins cher, ce réseau va acheminer votre trafic de façon aléatoire et chiffré. Attention le chiffrement est présent qu’entre votre ordinateur et le dernier nœud, qui lui se connecte en clair sur le serveur que vous voulez atteindre. Donc il serait facile, comme tout le monde peut devenir nœud sur Tor, d’intercepter le trafic qui passe en clair quand on est le dernier maillon de la chaîne. Quand vous utilisez ce genre de service (TOR,I2P,VPN,Proxy,…) évitez d’aller vous connecter sur le site de votre banque. Et puis quel serait l’intérêt d’être anonyme si c’est pour vous identifier sur facebook, on marche sur la tête là non ?!

                        +

                        En surfant sur les pages du projet Tor, je suis tombé sur ça. Une page qui donne des retours d’expériences sur l’hébergement de nœuds relais pour Tor. Il est marrant de constater que les hébergeurs ne sont pas du tout fan de ce genre d’installation sur leur réseau. Cela montre que ce genre de système est suffisamment puissant pour faire peur, et permet d’effectuer sûrement des attaques ciblées de façon totalement anonyme.

                        +

                        I2P

                        +

                        Alors je vais être moins long sur l’explication du fonctionnement de I2P, ça rassemble beaucoup à Tor sauf que c’est plus orienté service et échange peer to peer. Vous pouvez lire cette page qui explique les différences entre les réseaux Tor et I2P.

                        +
                        +
                        +
                        +
                        +
                        Catégories : InternetLogiciels
                        +
                        +
                        +
                        + + + + + + + + + +
                        +
                        +
                        +
                        +
                        +
                        +
                        +

                        + 6 commentaires

                        +
                        + +
                        +
                        +
                        +
                        +

                        + Mickael + · 13 novembre 2010 à 23 h 24 min +

                        +

                        Yop Hugo, il est cool ton blog mais pour être tranquille avec HADOPI faut faire du wawa :)
                        +Ca peut être une idée d’article :p

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Lamoroso + · 22 janvier 2011 à 21 h 42 min +

                        +

                        quote : « le VPN c’est de l’anti-internet, cela revient à supprimer le plus grand intérêt d’internet, à savoir l’échange direct possible entre tous »…
                        +Un FTP sous SSL chez moi via mon VPN nordique va bien pour mes amis… Je ne comprends pas votre argument…
                        +Une plus fine explication?
                        +Merci.

                        + +
                        +
                        + + +
                        + +
                        +
                        +
                        +
                        +

                        + Denis + · 12 mai 2011 à 10 h 40 min +

                        +

                        pour 4.90 euros par mois j utilise ********** qui me procure une grande satisfaction au niveau fiabilite,securite,rapidite et surete….un super vpn

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 12 mai 2011 à 13 h 47 min +

                          +

                          tu ne peux pas vérifier si il log tes connexions … Mais bon si il est à l’étranger ça limite le traçage :)

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + ghous + · 17 mars 2017 à 13 h 48 min +

                        +

                        tres bon article

                        + +
                        +
                        + +
                        +
                        +
                        +

                        Laisser un commentaire

                        Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                        +
                        +
                        +

                        + +

                        +
                        +
                        +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        + + +
                        + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/83dff8a6e20456a2afdab2691932c4dfdbbe5a43.00000368.html b/www/.content.EZtzwPjb/html/83dff8a6e20456a2afdab2691932c4dfdbbe5a43.00000368.html new file mode 100644 index 0000000..eee7794 --- /dev/null +++ b/www/.content.EZtzwPjb/html/83dff8a6e20456a2afdab2691932c4dfdbbe5a43.00000368.html @@ -0,0 +1,366 @@ + + + + + + + condensateur – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +

                        Réparations Samsung SyncMaster 2232BW

                        Allô docteur on a un problème,

                        +

                        En ce dimanche calme avant la fin de mes partiels, mon écran Samsung SyncMaster 2232BW commençait à faire des siennes. Celui-ci depuis un mois ou deux clignotait de façon systématique au démarrage, au début pendant seulement quelques secondes, puis au fur et à mesure, de plus en plus jusqu’à devoir attendre 10 minutes pour que je puisse l’utiliser. Après 3 ans et 4 mois de bons et loyaux services, il voulait me quitter. J’ai tenté le support Samsung par email avec peu d’espoir car l’écran a dépassé sa garantie de 4 mois (oui oui les bâtards -> obsolescence programmée). Et donc j’ai eu le droit à un joli mail automatique me disant de contacter un numéro non surtaxé (mais avec combien de temps d’attente ?), ce que je n’ai pas fait car je n’avais pas envie de passer 30min au téléphone pour au final avoir un « On est désolé mais on ne peut rien faire pour vous car la garantie est dépassée, mais on peut envoyer votre écran en SAV pour faire un devis pour seulement 50 boules ». Concernant le support email de Samsung France, je leur donne une note de 0/20 puisque ce n’est pas un support mais une redirection vers le téléphone.

                        +

                        (suite…)

                        +
                        Par HugoPoi, il y a
                        +
                        + +
                        +
                        +
                        +
                        + +
                        +
                        + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/846e9839d58825181ceac51337ce5dc14239e6ce.00000339.xml b/www/.content.EZtzwPjb/html/846e9839d58825181ceac51337ce5dc14239e6ce.00000339.xml new file mode 100644 index 0000000..8777f0f --- /dev/null +++ b/www/.content.EZtzwPjb/html/846e9839d58825181ceac51337ce5dc14239e6ce.00000339.xml @@ -0,0 +1,43 @@ + + + + HugoPoi » AnyDVD HD + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Sat, 14 Sep 2013 23:01:40 +0000 + fr-FR + hourly + 1 + http://wordpress.org/?v=3.6 + + Home Cinéma + http://blog.hugopoi.net/2012/12/26/home-cinema/ + http://blog.hugopoi.net/2012/12/26/home-cinema/#comments + Wed, 26 Dec 2012 14:42:16 +0000 + HugoPoi + + + + + + + + + + + + http://blog.hugopoi.net/?p=518 + Lire la suite »

                        ]]>
                        + http://blog.hugopoi.net/2012/12/26/home-cinema/feed/ + 0 +
                        +
                        +
                        diff --git a/www/.content.EZtzwPjb/html/8599af161f645acd4a8ca01a03e2b45e63251779.00000429.html b/www/.content.EZtzwPjb/html/8599af161f645acd4a8ca01a03e2b45e63251779.00000429.html new file mode 100644 index 0000000..280a2d9 --- /dev/null +++ b/www/.content.EZtzwPjb/html/8599af161f645acd4a8ca01a03e2b45e63251779.00000429.html @@ -0,0 +1,364 @@ + + + + + + + ip – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +

                        IPv6 – Intro

                        Etant donné la proche pénurie d’adresse IP v4, plus que 5% seraient disponible sur le réseau public qu’est Internet, je vais faire un dossier qui parlera d’IP v6. Dans ce dossier, je vais vous faire des tutoriels, des RFC et des découvertes. (suite…)

                        +
                        +
                        + +
                        +
                        +
                        +
                        + +
                        +
                        + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/85c875288268bec9351407eb87cecfcdcaea97f9.00000250.html b/www/.content.EZtzwPjb/html/85c875288268bec9351407eb87cecfcdcaea97f9.00000250.html new file mode 100644 index 0000000..c8b9c04 --- /dev/null +++ b/www/.content.EZtzwPjb/html/85c875288268bec9351407eb87cecfcdcaea97f9.00000250.html @@ -0,0 +1,817 @@ + + + + + + + + Install RancherOs on FreeNas 11.3 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        +

                        Install RancherOs on FreeNas 11.3

                        +
                          +
                        • The automated RancherOs installation aka Docker VM has been removed in
                          +11.3
                        • +
                        • RancherOs doesn’t support EFI boot out of the box
                        • +
                        • Thanks to MKinney howto
                        • +
                        • This howto is provided without warranty
                        • +
                        • TODO the proper way of doing it is somewhere here
                        • +
                        • Some stuff about losetup
                        • +
                        +

                        1. Make a EFI bootable RancherOs image

                        + +
                          +
                        1. wget https://releases.rancher.com/os/v1.5.5/rancheros.iso
                        2. +
                        3. wget http://releases.ubuntu.com/18.04/ubuntu-18.04.4-live-server-amd64.iso
                        4. +
                        5. mkdir tmpubuntu tmprancheros tmprancheros_dest
                        6. +
                        7. sudo mount ubuntuserverlive.iso tmpubuntu
                        8. +
                        9. sudo mount rancheros.iso tmprancheros
                        10. +
                        11. fallocate -l 150M rancheros.img
                        12. +
                        13. gdisk rancheros.img o,y,n,enter,enter,ef00,w,Y
                        14. +
                        15. sudo losetup --partscan --show --find rancheros.img
                        16. +
                        17. sudo mkfs.fat /dev/loop2p1
                        18. +
                        19. sudo mount /dev/loop2p1 rancheros_dest
                        20. +
                        21. sudo cp -r tmprancheros/* tmprancheros_dest/
                        22. +
                        23. sudo cp -r tmpubuntu/EFI tmprancheros_dest/
                        24. +
                        25. Replace the content of tmprancheros_dest/boot/grub/grub.cfg with:
                        26. +
                        +
                        set timeout=5
                        +menuentry "Install Rancher" {
                        +    linux   /boot/vmlinuz-4.14.138-rancher rancher.autologin=tty1 rancher.autologin=ttyS0 rancher.autologin=ttyS1 console=tty1 console=ttyS0 console=ttyS1 printk.devkmsg=on panic=10 ---
                        +    initrd  /boot/initrd-v1.5.5
                        +}
                        +
                        +
                          +
                        1. sudo umount tmprancheros_dest
                        2. +
                        3. sudo losetup -d /dev/loop2
                        4. +
                        5. sudo umount tmpubuntu tmprancheros
                        6. +
                        +

                        2. Installation in FreeNas as Vm

                        +
                          +
                        1. Create a VM with EFI boot 2GB RAM choose virtio for all the driver
                          +better performance with linux
                        2. +
                        3. Add a RAW device and select your rancheros.img
                        4. +
                        5. Start the VM
                        6. +
                        7. Go to serial and in the shell cu -l /dev/nmdmXX at this point you should
                          +have a rancher shell
                        8. +
                        9. sudo fdisk /dev/vda then g,n,1,+200M,t,1,n,enter,enter,w you
                          +should something like at the end
                        10. +
                        +
                        Disk /dev/vda: 10 GiB, 10737418240 bytes, 20971520 sectors
                        +Units: sectors of 1 * 512 = 512 bytes
                        +Sector size (logical/physical): 512 bytes / 16384 bytes
                        +I/O size (minimum/optimal): 16384 bytes / 16384 bytes
                        +Disklabel type: gpt
                        +Disk identifier: 2B56EE14-44BF-6443-A197-EF73723B715F
                        +Device      Start      End  Sectors  Size Type
                        +/dev/vda1    2048   411647   409600  200M EFI System
                        +/dev/vda2  411648 20971486 20559839  9.8G Linux filesystem
                        +
                        +
                          +
                        1. Format the boot partition sudo mkdosfs -n RANCHER -F 32 /dev/vda1
                        2. +
                        3. Format the main filesystem sudo mkfs.ext4 -L RANCHER_STATE /dev/vda2
                        4. +
                        5. Create a cloud-config.yml see https://rancher.com/docs/os/v1.x/en/installation/running-rancheros/server/install-to-disk/ for minimum content
                        6. +
                        7. sudo mkdir /dev/sr0 for installer checking about iso mounted before
                          +install
                        8. +
                        9. Install ros with sudo ros install -t gptsyslinux -c cloud-config.yml -d /dev/vda -p /dev/vda2
                        10. +
                        11. mkdir /mnt/efipart && sudo mount /dev/vda1 /mnt/efipart
                        12. +
                        13. mkdir /mnt/installer && sudo mount /dev/vdb1 /mnt/installer
                        14. +
                        15. sudo cp -r /mnt/installer/EFI /mnt/efipart
                        16. +
                        17. Add a grub.cfg in /mnt/efipart/EFI/BOOT/grub.cfg with in it:
                          +You might want to add/remove autologin as you wish below

                          +
                            +
                          • tty0 I think is VNC but I havent tested it
                          • +
                          • ttyS0 is serial (I have autologin enable in serial see below)
                          • +
                          +
                        18. +
                        +
                        set timeout=1
                        +menuentry "Rancher from GPT" {
                        +    search --no-floppy --set=root --label RANCHER_STATE
                        +    linux    /boot/vmlinuz-4.14.138-rancher printk.devkmsg=on rancher.state.dev=LABEL=RANCHER_STATE rancher.state.wait panic=10 console=tty0 console=ttyS0 rancher.autologin=ttyS0
                        +    initrd    /boot/initrd-v1.5.5
                        +}
                        +
                        +
                          +
                        1. sudo umount /mnt/*
                        2. +
                        3. sudo reboot
                        4. +
                        5. You are good to go
                        6. +
                        7. You can remove the RAW device in the VM config in FreeNas
                        8. +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +

                        + 12 commentaires

                        +
                        + +
                        +
                        +
                        +
                        +

                        + Rudi Pittman + · 18 mars 2020 à 17 h 46 min +

                        +

                        Can I or can I not use my existing rancher img that was previously being used by freenas? ie

                        +

                        -rw-r–r– 1 root wheel 21474836480 Mar 18 02:13 rancher.img_docker1

                        +

                        I have around 10 different docker containers defined inside and I really don’t want to have to redo all of them.

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 11 avril 2020 à 16 h 32 min +

                          +

                          If the image is a VM image like a zvol, I think it will work, but I’m not sure, it will only work if the 11.2 behavior is EFI compatible.
                          +You may patch your existing image/snapshot by justing installing the efi bootloader aka grub in it.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Rob RD + · 4 avril 2020 à 19 h 36 min +

                        +

                        Parfait – Merci Beaucoup! :)

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + dario + · 12 avril 2020 à 14 h 07 min +

                        +

                        Thanks for this guide. I am stuck at Step 12:
                        +> sudo mount /dev/vdb1 /mnt/installer
                        +ther is no /dev/vdb1, regardingless if I choose to boot at step 10 or not

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 22 avril 2020 à 23 h 34 min +

                          +

                          Your installer may be on a different disk if you choose SCSI in place of virtio when you add the raw image device in Freenas, you can identified with

                          +

                          cat /proc/partitions

                          +

                          and

                          +

                          mount

                          +

                          it should be /dev/sda1 maybe

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + somebody + · 19 avril 2020 à 13 h 07 min +

                        +

                        Thank you so much for the step by step guide, it was very helpful. With this I can finally transition from my old Docker VM inherited from FreeNAS 11.1.

                        +

                        Going to state the obvious (for some) and mention that when new version gets released and you run

                        +

                        sudo ros os upgrade

                        +

                        to upgrade you’ll also need to update initrd command in your grub.cfg file on EFI partition, otherwise you’re just going to boot into the same version.

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + Rudi Pittman + · 1 juin 2020 à 1 h 58 min +

                          +

                          The problem I have is even though grub is specifying 4.14.138 and initird-v1.5.5 on reboot it tells me those don’t exist. Doing a grub edit and using autocomplete the files it ACTUALLY find are /boot/vmlinuz-4.14.73-rancher and /boot/initrd-v1.4.2. Where the heck are those coming from? When I look on /dev/vda2/boot I see the 4.14.138 and initrd-v1.5.5 as the grub reflects. /mnt/efipart/EFI/BOOT has:

                          +

                          -rwxr-xr-x 1 root root 1334816 May 30 15:13 BOOTx64.EFI
                          +-rwxr-xr-x 1 root root 316 May 30 15:15 grub.cfg
                          +-rwxr-xr-x 1 root root 1146744 May 30 15:13 grubx64.efi

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Max + · 3 mai 2020 à 16 h 40 min +

                        +

                        The image i downloaded does not start. Stuck at step4 in the bhyve shell. Any idea how to proceed from there?

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 10 mai 2020 à 14 h 53 min +

                          +

                          Try to change the device order to a lower or higher number to be sure it try to load the good bootloader.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Rudi Pittman + · 1 juin 2020 à 18 h 28 min +

                        +

                        If you do a « ros os version » on your efi image it’s NOT v1.5.5. It’s v1.4.2 and running the command although it MAY download the files does nothing to actually make the grub.cfg FIND those new files. It’s still looking for vmlinuz-4.14.73 and initrd-v1.4.2.

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + Johnny Z + · 25 juin 2020 à 8 h 49 min +

                          +

                          I found them. The guide doesn’t necessarily state where or when to get the files. You should be able to do this to find and copy the files

                          +

                          cd /mnt/installer/boot/
                          +ls -asl
                          +(here you will find the two files)
                          +cp vmlinuz-4.14.138-rancher ../../efipart/efi/boot/
                          +cp initrd-v1.5.5.5 ../../efipart/efi/boot

                          +

                          Double check my paths here but that should basically get you the files so the kernel can load proper

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Toohai + · 16 septembre 2020 à 8 h 18 min +

                        +

                        Missing step after 12 in part 1?

                        +

                        sudo cp -r tmpubuntu/boot/grub tmprancheros_dest/boot/

                        + +
                        +
                        + +
                        +
                        +
                        +

                        Répondre à somebody Annuler la réponse

                        Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                        +
                        +
                        +

                        + +

                        +
                        +
                        +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        + + +
                        + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/85d407a08a5f5d5bb37b6f99b20bcad146b006f5.00001282.xml b/www/.content.EZtzwPjb/html/85d407a08a5f5d5bb37b6f99b20bcad146b006f5.00001282.xml new file mode 100644 index 0000000..253a714 --- /dev/null +++ b/www/.content.EZtzwPjb/html/85d407a08a5f5d5bb37b6f99b20bcad146b006f5.00001282.xml @@ -0,0 +1,7 @@ + +1.0HugoPoihttp://blog.hugopoi.netHugoPoihttp://blog.hugopoi.net/author/hugopoi/Préparation Migrationrich600338<blockquote class="wp-embedded-content"><a href="/2011/02/16/preparation-migration/">Préparation Migration</a></blockquote> +<script type='text/javascript'> +<!--//--><![CDATA[//><!-- + !function(a,b){"use strict";function c(){if(!e){e=!0;var a,c,d,f,g=-1!==navigator.appVersion.indexOf("MSIE 10"),h=!!navigator.userAgent.match(/Trident.*rv:11\./),i=b.querySelectorAll("iframe.wp-embedded-content");for(c=0;c<i.length;c++)if(d=i[c],!d.getAttribute("data-secret")){if(f=Math.random().toString(36).substr(2,10),d.src+="#?secret="+f,d.setAttribute("data-secret",f),g||h)a=d.cloneNode(!0),a.removeAttribute("security"),d.parentNode.replaceChild(a,d)}else;}}var d=!1,e=!1;if(b.querySelector)if(a.addEventListener)d=!0;if(a.wp=a.wp||{},!a.wp.receiveEmbedMessage)if(a.wp.receiveEmbedMessage=function(c){var d=c.data;if(d.secret||d.message||d.value)if(!/[^a-zA-Z0-9]/.test(d.secret)){var e,f,g,h,i,j=b.querySelectorAll('iframe[data-secret="'+d.secret+'"]'),k=b.querySelectorAll('blockquote[data-secret="'+d.secret+'"]');for(e=0;e<k.length;e++)k[e].style.display="none";for(e=0;e<j.length;e++)if(f=j[e],c.source===f.contentWindow){if(f.removeAttribute("style"),"height"===d.message){if(g=parseInt(d.value,10),g>1e3)g=1e3;else if(~~g<200)g=200;f.height=g}if("link"===d.message)if(h=b.createElement("a"),i=b.createElement("a"),h.href=f.getAttribute("src"),i.href=d.value,i.host===h.host)if(b.activeElement===f)a.top.location.href=d.value}else;}},d)a.addEventListener("message",a.wp.receiveEmbedMessage,!1),b.addEventListener("DOMContentLoaded",c,!1),a.addEventListener("load",c,!1)}(window,document); +//--><!]]> +</script><iframe sandbox="allow-scripts" security="restricted" src="/2011/02/16/preparation-migration/embed/" width="600" height="338" title="« Préparation Migration » — HugoPoi" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" class="wp-embedded-content"></iframe> diff --git a/www/.content.EZtzwPjb/html/8600f941efd1bedd183d9002517631405aa83728.00000233.html b/www/.content.EZtzwPjb/html/8600f941efd1bedd183d9002517631405aa83728.00000233.html new file mode 100644 index 0000000..a9bbbff --- /dev/null +++ b/www/.content.EZtzwPjb/html/8600f941efd1bedd183d9002517631405aa83728.00000233.html @@ -0,0 +1,333 @@ + + + + + + + Screenshot_LinuxMint19-LXDE-x64-clone-secureboot-test_2018-11-18_19:07:23 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        +
                        +
                        +
                        +
                        + + + +

                        +
                        +
                        +
                        +
                        +

                        + 0 commentaire

                        +
                        +
                        +
                        +

                        Laisser un commentaire

                        Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                        +
                        +
                        +

                        + +

                        +
                        +
                        +
                        +
                        +
                        +
                        +
                        +
                        + +
                        + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/867631b2b935e0c8a7fc80b97c007bb8affa8cd2.00000645.css b/www/.content.EZtzwPjb/html/867631b2b935e0c8a7fc80b97c007bb8affa8cd2.00000645.css new file mode 100644 index 0000000..8043bbf --- /dev/null +++ b/www/.content.EZtzwPjb/html/867631b2b935e0c8a7fc80b97c007bb8affa8cd2.00000645.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;background:#fff;border:1px +solid #f00;font-size:10pt;width:280px;padding:2px}span.wpcf7-not-valid-tip-no-ajax{color:#f00;font-size:10pt;display:block}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/878af5dff2533bfe274f0a628379ab071bc63b4c.00000141.html b/www/.content.EZtzwPjb/html/878af5dff2533bfe274f0a628379ab071bc63b4c.00000141.html new file mode 100644 index 0000000..2aa6914 --- /dev/null +++ b/www/.content.EZtzwPjb/html/878af5dff2533bfe274f0a628379ab071bc63b4c.00000141.html @@ -0,0 +1,1370 @@ + + + + + + + + Réparations Samsung SyncMaster 2232BW – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        +

                        Allô docteur on a un problème,

                        +

                        En ce dimanche calme avant la fin de mes partiels, mon écran Samsung SyncMaster 2232BW commençait à faire des siennes. Celui-ci depuis un mois ou deux clignotait de façon systématique au démarrage, au début pendant seulement quelques secondes, puis au fur et à mesure, de plus en plus jusqu’à devoir attendre 10 minutes pour que je puisse l’utiliser. Après 3 ans et 4 mois de bons et loyaux services, il voulait me quitter. J’ai tenté le support Samsung par email avec peu d’espoir car l’écran a dépassé sa garantie de 4 mois (oui oui les bâtards -> obsolescence programmée). Et donc j’ai eu le droit à un joli mail automatique me disant de contacter un numéro non surtaxé (mais avec combien de temps d’attente ?), ce que je n’ai pas fait car je n’avais pas envie de passer 30min au téléphone pour au final avoir un « On est désolé mais on ne peut rien faire pour vous car la garantie est dépassée, mais on peut envoyer votre écran en SAV pour faire un devis pour seulement 50 boules ». Concernant le support email de Samsung France, je leur donne une note de 0/20 puisque ce n’est pas un support mais une redirection vers le téléphone.

                        +

                        +

                        Symptômes

                        +

                        Clignotements de l’écran et de la LED power systématiques à chaque démarrage de l’écran. Je me suis tout de suite douté d’un problème d’alimentation et après quelques recherches sur google, confirmation du problème sur beaucoup d’écrans et téléviseurs. Dans 99% des cas ce clignotement est dû à des condensateurs défectueux qu’il faut simplement changer :-D

                        +

                        Démontage

                        +

                        Donc après avoir cerné le problème, j’ai ouvert l’écran pour chercher les condos défectueux. J’ai trouvé une petite vidéo pour mon écran :

                        +

                        +

                        Voici quelques photos en plus pour vous aider :

                        +

                        Les outils que j’ai utilisé pour le démontage

                        +

                        Position des clips

                        +

                        Carte d’alimentation dans son emplacement

                        +

                        Et voici les condensateurs qui posent problèmes. Comme vous pouvez le voir sur la photo, ils sont très facilement identifiable car ils sont bombés sur le dessus.

                        +

                        Condensateurs défectueux

                        +

                        Vous devez donc acheter des condensateurs de remplacement, par exemple sur Conrad.

                        +

                        Mes condensateurs suivant étaient endommagés:

                        +
                          +
                        • 1 de 330uF 25V remplacé par un 470uF 25V
                        • +
                        • 3 de 820uF 25V remplacé par des 1000uF 50V
                        • +
                        +

                        Pour la réparation, il vous faut un fer à souder avec une panne pas trop grosse mais d’une grosse puissance car les soudures sont très solides (j’ai galéré avec un fer pro qui monte jusqu’à 400°).

                        +

                        Tout remarche nickel après remontage, plus de clignotement pour seulement quelques euros.

                        +

                        edit du 19 aout 2014 : j’ai trouvé le service manuel de l’écran si besoin samsung_2232bw_chassis_lpe22bs_sm

                        + + +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +

                        + 41 commentaires

                        +
                        + +
                        +
                        +
                        +
                        +

                        + c'est_moi + · 30 janvier 2012 à 18 h 57 min +

                        +

                        Mille mercis et mille félicitations pour cette fiche technique si pédagogue.

                        +

                        J’espère que le partiels se passent plus que parfait !!

                        +

                        J’ai gardé l’url de la page pour réparer mon écran dans un petit mois : j’espère que la page soit toujours là ;-)

                        +

                        Merci encore.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Maxime + · 5 mai 2012 à 12 h 31 min +

                        +

                        Bonjour HugoPoi!

                        +

                        Merci pour toutes vos infos et votre topic, je voulais avoir quelques précisions sur les condos à changer pour samsung 2232bw, je veux passer commande mais j’ai un problème avec les dimensions des condos, si vous pouvez m’informer de ce que je pourrais acheter car il y a trop de références. En vous remerciant A+ Maxime

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 14 juin 2012 à 22 h 56 min +

                          +

                          N’importe quel condensateur polarisé avec des caractéristiques proches devrait marché.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + gaubjezj + · 14 juin 2012 à 22 h 32 min +

                        +

                        Merci pour le tuto qui m’a bien aidé.
                        +J’ai utilisé un fer de 40 W avec une panne fine et
                        +une pompe à dessouder et j’ai retiré les condensateurs sans problème.
                        +Merci encore (3€40 pour le dépannage).

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + DragonTribal + · 2 juillet 2012 à 12 h 02 min +

                        +

                        super merci pour manifique tuto.
                        +Est-il possible de changer les 5 condensateurs 820uF 25V par des 1000uF 50V? car moi mes 5 condensateurs sont presque HS ;-)

                        +

                        Cordialement

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 2 juillet 2012 à 12 h 25 min +

                          +

                          Oui je penses que ça marchera étant donné que c’est des valeurs plus grandes.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + FRED + · 11 juillet 2012 à 19 h 11 min +

                        +

                        Bravo, MERCI.
                        +Je n’ai encore rien fait…mais j’ai le même problème, et tu me donnes la solution.
                        +Super.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + daninpet + · 31 août 2012 à 10 h 10 min +

                        +

                        Merci mille fois!

                        +

                        J’avais ce problème, et j’ai emmener la photo des trucs a remplacer chez le réparateur du coin et voila!! Ça m’a coûté 7 Euros (mais j’habite en Thaïlande)

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + moi + · 15 novembre 2012 à 15 h 25 min +

                        +

                        super mon 2232bw vient de lâcher, les 3 + 1 condos sont gonflés j ai trouvé un 330 en 35v qui traîné sur un écran mort et j’ai commander 5 1000uf 35v sur ebay pour moins de 3 dollars, ca devrait le faire j’espere j’attend d’être livré merci! par contre j’ai qu’un gros pistolet a soudure et un gros fil d’étain, c’est pas évident mais bon ca le fait quand même =)

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + moi + · 7 décembre 2012 à 9 h 33 min +

                          +

                          parfait je vient de recevoir les condos; j ai meuler la panne du fer a souder pour la tailler en mine de crayon et j ai reussi a les souder facilement ils étaient un peu plus gros mais ca passe tout juste, mais attention ne pas prendre des plus gros! l écran fonctionne nickel maintenant.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Croco + · 19 janvier 2013 à 18 h 39 min +

                        +

                        Je souhaiterai savoir si tu as utilisé un fer à souder bien précis étant donné que la carte est une multi couche.
                        +Merci

                        + +
                        +
                        + + +
                        + +
                        +
                        +
                        +
                        +

                        + momo + · 10 juin 2013 à 13 h 15 min +

                        +

                        slut je voudrai savoir ou trouvé les condansateur a changer sur mon ecran qui clignote

                        + +
                        +
                        + + +
                        + +
                        +
                        +
                        +
                        +

                        + lokmane + · 5 juillet 2013 à 16 h 08 min +

                        +

                        merci j’avais un ecran rouge ! et c’etais la tresse qui relie mon ecran votre page m’a aider a l’ouvrir et a le reparer merci bien

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + ML + · 21 août 2013 à 19 h 11 min +

                        +

                        Merci ! Ecran réparé. Halte à l’obsolescence programmée.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + raymond + · 31 octobre 2013 à 13 h 20 min +

                        +

                        ai vu votre vidéo et les explications pour la reparation de mon écran , apparemment le méme probléme l écran passe au noir apres quelque seconde , j ai vu un le condensateur en bas a gauche gonflé , je l ai fait changé (10€) les autre condensateur étant toujour bon d après la personne qui me l a changé , mais j ai toujour le méme probléme cela peut il venir de la carte video a gauche ?

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 20 décembre 2013 à 12 h 27 min +

                          +

                          Si la led bleu du bouton power s’éteint aussi c’est un problème d’alimentation sinon c’est plus compliqué et ça peut provenir de condensateurs sur la partie vidéo. Changé tous les plus gros condensateurs sur la partie alimentation pourrait être un bon début même si ils ne paraissent pas endommagé.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + damien + · 4 novembre 2013 à 0 h 29 min +

                        +

                        bonjour,

                        +

                        j’ai des crasses coincées entres l’écran et le truc juste derrière, est ce qu’on sais les enlever en démontant la dalle ?

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 20 décembre 2013 à 12 h 28 min +

                          +

                          Je ne sais si cette partie de la dalle est démontable, je penses que c’est collé mais vous pouvez essayer.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + mac + · 1 décembre 2013 à 17 h 30 min +

                        +

                        Merci HugoPoi, avec ces excellents conseils et tuto vidéo, mon écran est reparti pour une nouvelle vie.
                        +Pour les composants, si vous êtes sur Paris ou proche. La boutique RAM électroniques est une bonne adresse, 138 bd Diderot 75012 Paris (Place de la Nation).

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Bouddhid + · 16 janvier 2014 à 19 h 21 min +

                        +

                        Merci beaucoup pour ces conseils ! J’étais à 2 doigts de jeter mon écran, le voilà comme neuf pour moins de 5€ ! Vive la bricole !

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Vincent + · 17 mai 2014 à 16 h 45 min +

                        +

                        Alors là merci.

                        +

                        Pour ce post, les photos, la vidéo, tout y est.

                        +

                        J’ai démonté l’écran assez vite, enlevé la carte, regarder quel condensateurs étaient gonflés,(il y en avaient 4), un magasin d’électronique sur lyon et une heure de démontage, soudure, remontage plus tard, voilà, c’est tout beau.
                        +Ca ne clignote plus, ça s’allume comme avant, comme neuf.

                        +

                        Et dire que j’allais jeter cet écran et claquer 350 euros pour un neuf…

                        +

                        Coût de l’opération pour 4 condensateurs, du fil d’étain 7 euros.

                        +

                        Je précise que je n’avais jamais fais de soudure sur composant électronique auparavant.
                        +Comme quoi cette opération de réparation est à la portée de tous.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Julot + · 6 juillet 2014 à 13 h 49 min +

                        +

                        Site vraiment détaillé et très claire. J’ai pu dépanner mon écran avec succès. Merci beaucoup pour ces précieuses explications.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + PaniK31 + · 29 juillet 2014 à 9 h 21 min +

                        +

                        Pas besoin d’une grosse puissance pour le fer, il faut au préalable gratter le vernis sur l’étain afin de pouvoir le faire fondre plus facilement

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + R211_IP-45130B + · 20 août 2014 à 14 h 04 min +

                        +

                        Bonjour à tous,

                        +

                        Une âme charitable peut-elle me communiquer ce qui est gravé sur la résistance CMS R211 de la carte d’alimentation/inverter IP-45130B qui équipe le SAMSUNG 2232BW ? Cette résistance a pris un coup de tournevis et je n’arrive pas à déterminer sa valeur de résistance car son marquage est effacé et comme le composant est abimé la mesure à l’ohmmètre indique l’infinie.

                        +

                        Merci par avance.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + roger + · 24 octobre 2014 à 17 h 21 min +

                        +

                        Ca refonctionne après échange de 4 condensateurs :
                        +-un 330uf25v remplacé à l’identique.
                        +-trois 820uf25v remplacés par 1000uf25v.
                        +Le tout pour quelques €. Le plus dur était le dessoudage, la tresse n’était pas très efficace contrairement à la pompe.
                        +Grand merci à HugoPoi.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Max + · 26 février 2015 à 16 h 28 min +

                        +

                        ENORME MERCI!! J’ai réparé mon écran en 20mn pour 3,50€, il était à 2 doigts de partir à la déchetterie. Ca faisait des mois qu’il clignotait, et l’allumage mettait parfois plus d’une demi heure. J’ai changé 5 condos 820uf25v et 1 330uf25v, par exactement les mêmes en neuf, et là il démarre au quart de tour! Ca fait plaisir! :)

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + rocco michelle + · 7 octobre 2015 à 10 h 16 min +

                          +

                          Bonjour je ne sais si vous verrez mon message mais je tente…je cherche quelqu’un qui accepterait de changer mes condensateurs sur mon samsung, les réparateurs me demandent 70 à 80 euros et encore ils n’ont pss envie de le faire et me disent d’acheter un nouvel écran. j’aurais bien tenter mais je n’ai pas de matériel et j’ai lu que les condo pouvaient être très dangereux s’ils avaient de la charge alors j’ai la trouille de bidouiller pq je n’y connais rien. si vous êtes de lyon acccepteriez vous de changer mes condensateurs pour 45 euros? merci de votre réponse.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + lecakeseb + · 27 juillet 2015 à 15 h 26 min +

                        +

                        Bonjour,

                        +

                        J’ai utilisé la vidéo pour démonter mon écran afin de le nettoyer de 4 bêtes d’orage infiltrés entre le premier écran (noir) et la dalle (blanche) de mon samsung SyncMaster 2232W

                        +

                        Petits conseils afin de modérer ce que j’ai pu voir dans cette vidéo :

                        +

                        0 : aspirez, nettoyez l’extérieur de l’écran avant de l’ouvrir et nettoyez la table qui vous servira d’atelier, pour éviter les poussières qui s’infiltreront forcément plus tard si vous ne le faites pas…
                        +1 : pour ouvrir, utilisez plutôt un couteau à enduire pour la première partie (le cadre). Vous n’abîmerez ainsi pas du tout l’écran. Soyez patients, ne forcez pas ! ça viendra doucement, mais ça viendra. Il m’a fallu à peine 10 minutes, sans détériorer l’écran, sans le griffer… Il est encore nickel !
                        +2 : attention à ne pas déconnecter les fils reliant le cadre à la carte. Inutile pour simplement nettoyer l’écran.
                        +3 : pour séparer les deux éléments de la dalle entre lesquels les bêtes se sont infiltrées, les doigts suffisent, pas besoin d’outils qui viendraient les endommager. La dalle blanche reste à l’horizontale, l’écran noir sera tenu à la verticale.
                        +4 : utiliser un chiffon doux ne peluchant pas pour enlever les bêtes (faites-vous aider de quelqu’un qui les enlèvera pendant que vous tenez l’écran extérieur en position verticale).
                        +5 : repositionnez la colle d’étanchéité qui aurait pu se déplacer, avant de repositionner les deux écrans.
                        +6 : commencer par refermer par le bas de l’écran (sinon les éléments de réglage situés au bas de l’écran – luminosité, contraste,…- ne se replaceront pas correctement).
                        +7 : Une fois l’écran refermé, j’ai appliqué un peu de « barrage aux insectes », avec un chiffon à l’arrière de mon écran en insistant surtout sur les bouches d’aération par lesquelles les maudites bestioles ont du s’infiltrer. En espérant ne pas avoir à ouvrir !

                        +

                        Bon courage à vous !

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Michel Jousserandot + · 20 janvier 2017 à 20 h 41 min +

                        +

                        Merci pour les conseils au démontage.
                        +J’avais un problème un peu différent :l’écran ne s’allumait plus du tout. Avec un copain beaucoup plus malin que moi, on a détecté 2 fusibles dont l’un était fichu. On l’a remplacé par un petit fil de cuivre. Et tout a remarché comme avant.
                        +Il faut surtout faire attention quand on teste la partie haute tension
                        +Michel.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Crec + · 14 juillet 2017 à 10 h 20 min +

                        +

                        Bonjour. Très bons conseils avertis. Merci beaucoup.
                        +Peut-on avoir les mêmes conseils pour un écran BX2250.
                        +Merci par avance.
                        +Crec

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 6 août 2017 à 14 h 03 min +

                          +

                          J’ai pas de BX2250 donc dans le détails non mais si c’est les même symptômes ça doit la même procédure.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Ferronnier + · 10 août 2017 à 17 h 42 min +

                        +

                        Un grand merci !
                        +J’ai changé tous les condensateurs de la partie alimentation de la carte, en déportant certains qui n’avaient pas le même format qu’à l’origine, et ça tourne nickel !

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Nours + · 1 décembre 2017 à 15 h 17 min +

                        +

                        Ca fait des années que j’ai cet article enregistré dans un coin, en nourrissant l’espoir d’avoir un jour le courage de réparer ce foutu écran… Après plus de cinq ans c’est chose faite \o/
                        +Un giga, hypra, immense merci pour ce tutoriel tellement bien expliqué et facile d’accès (je n’avais pas touché à un fer à souder depuis… Oh boy 15 ans déjà).
                        +Après une longue pause, l’écran reprend du service… Jusqu’à la prochaine panne /o/

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Alex + · 11 août 2018 à 13 h 28 min +

                        +

                        Quelqu’un sait qui pourrait me le faire svp j ai le même problème mais aucun matériel

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + David + · 5 février 2019 à 21 h 06 min +

                        +

                        Merci Hugo pour ce tuto qui m’a déjà servi en 2013 et qui va me resservir aujourd’hui car mon 2ème 2232bw commence à avoir les mêmes symptômes.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + yvan + · 23 novembre 2019 à 17 h 14 min +

                        +

                        Bonjour
                        +j’ai tenté de changer le condensateur qui avait l’air naze mais ça n’a pas marché … toujours le bouton bleu allumé, l’écran est reconnu par Windows 10 même si l’écran est éteint
                        +grâce au service manuel de l’écran fourni plus haut, j’ai vérifié les tensions jusque sur la carte de la dalle et elles sont correctes, ainsi que sur la carte elle-même, tout est ok, donc je pense que ce n’est plus un problème de condensateur
                        +pour les fusibles, ils ressemblent plutôt à des composants qu’à de simple fusibles, mais comme j’ai les bonnes tension, je ne pense pas que ça vienne de là
                        +j’ai bien peur que ce soit la dalle qui soit naze ? quelqu’un a t il des idées supplémentaires avant que je le jette avec grand regret (c’est un 2032bw, mais c’est la même chose, même si ma carte électronique est un peu différente car plus récente
                        +merci d’avance pour vos conseils

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + yvan + · 24 novembre 2019 à 17 h 26 min +

                        +

                        finalement j’ai trouvé, c’est un petit fusible vert qui ressemble à une résistance mais tout vert avec écrit 4A LF qui assure l’alimentation de la dalle.
                        +En le shuntant, mon écran a retrouvé l’image.
                        +après enquête il s’agit d’un fusible pico de 4ampères de chez little fuse, pas du tout évident à trouver
                        +Résolu !

                        + +
                        +
                        + +
                        +
                        +

                        + Reflow Dell 1546 | HugoPoi + · 22 août 2016 à 16 h 09 min +

                        +

                        […] « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable de marque Dell un 1546 pour être précis. Encore […]

                        + +
                        +
                        + +
                        +
                        +

                        + Reflow Dell Inspiron 1546 – HugoPoi + · 23 juin 2017 à 23 h 18 min +

                        +

                        […] d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un […]

                        + +
                        +
                        + +
                        +
                        +
                        +

                        Répondre à c'est_moi Annuler la réponse

                        Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                        +
                        +
                        +

                        + +

                        +
                        +
                        +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        + + +
                        + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/87a82d3045da4d54a92f6d153d822782a5729da9.00000122.html b/www/.content.EZtzwPjb/html/87a82d3045da4d54a92f6d153d822782a5729da9.00000122.html new file mode 100644 index 0000000..ec1db9d --- /dev/null +++ b/www/.content.EZtzwPjb/html/87a82d3045da4d54a92f6d153d822782a5729da9.00000122.html @@ -0,0 +1,1370 @@ + + + + + + + + Réparations Samsung SyncMaster 2232BW – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        +

                        Allô docteur on a un problème,

                        +

                        En ce dimanche calme avant la fin de mes partiels, mon écran Samsung SyncMaster 2232BW commençait à faire des siennes. Celui-ci depuis un mois ou deux clignotait de façon systématique au démarrage, au début pendant seulement quelques secondes, puis au fur et à mesure, de plus en plus jusqu’à devoir attendre 10 minutes pour que je puisse l’utiliser. Après 3 ans et 4 mois de bons et loyaux services, il voulait me quitter. J’ai tenté le support Samsung par email avec peu d’espoir car l’écran a dépassé sa garantie de 4 mois (oui oui les bâtards -> obsolescence programmée). Et donc j’ai eu le droit à un joli mail automatique me disant de contacter un numéro non surtaxé (mais avec combien de temps d’attente ?), ce que je n’ai pas fait car je n’avais pas envie de passer 30min au téléphone pour au final avoir un « On est désolé mais on ne peut rien faire pour vous car la garantie est dépassée, mais on peut envoyer votre écran en SAV pour faire un devis pour seulement 50 boules ». Concernant le support email de Samsung France, je leur donne une note de 0/20 puisque ce n’est pas un support mais une redirection vers le téléphone.

                        +

                        +

                        Symptômes

                        +

                        Clignotements de l’écran et de la LED power systématiques à chaque démarrage de l’écran. Je me suis tout de suite douté d’un problème d’alimentation et après quelques recherches sur google, confirmation du problème sur beaucoup d’écrans et téléviseurs. Dans 99% des cas ce clignotement est dû à des condensateurs défectueux qu’il faut simplement changer :-D

                        +

                        Démontage

                        +

                        Donc après avoir cerné le problème, j’ai ouvert l’écran pour chercher les condos défectueux. J’ai trouvé une petite vidéo pour mon écran :

                        +

                        +

                        Voici quelques photos en plus pour vous aider :

                        +

                        Les outils que j’ai utilisé pour le démontage

                        +

                        Position des clips

                        +

                        Carte d’alimentation dans son emplacement

                        +

                        Et voici les condensateurs qui posent problèmes. Comme vous pouvez le voir sur la photo, ils sont très facilement identifiable car ils sont bombés sur le dessus.

                        +

                        Condensateurs défectueux

                        +

                        Vous devez donc acheter des condensateurs de remplacement, par exemple sur Conrad.

                        +

                        Mes condensateurs suivant étaient endommagés:

                        +
                          +
                        • 1 de 330uF 25V remplacé par un 470uF 25V
                        • +
                        • 3 de 820uF 25V remplacé par des 1000uF 50V
                        • +
                        +

                        Pour la réparation, il vous faut un fer à souder avec une panne pas trop grosse mais d’une grosse puissance car les soudures sont très solides (j’ai galéré avec un fer pro qui monte jusqu’à 400°).

                        +

                        Tout remarche nickel après remontage, plus de clignotement pour seulement quelques euros.

                        +

                        edit du 19 aout 2014 : j’ai trouvé le service manuel de l’écran si besoin samsung_2232bw_chassis_lpe22bs_sm

                        + + +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +

                        + 41 commentaires

                        +
                        + +
                        +
                        +
                        +
                        +

                        + c'est_moi + · 30 janvier 2012 à 18 h 57 min +

                        +

                        Mille mercis et mille félicitations pour cette fiche technique si pédagogue.

                        +

                        J’espère que le partiels se passent plus que parfait !!

                        +

                        J’ai gardé l’url de la page pour réparer mon écran dans un petit mois : j’espère que la page soit toujours là ;-)

                        +

                        Merci encore.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Maxime + · 5 mai 2012 à 12 h 31 min +

                        +

                        Bonjour HugoPoi!

                        +

                        Merci pour toutes vos infos et votre topic, je voulais avoir quelques précisions sur les condos à changer pour samsung 2232bw, je veux passer commande mais j’ai un problème avec les dimensions des condos, si vous pouvez m’informer de ce que je pourrais acheter car il y a trop de références. En vous remerciant A+ Maxime

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 14 juin 2012 à 22 h 56 min +

                          +

                          N’importe quel condensateur polarisé avec des caractéristiques proches devrait marché.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + gaubjezj + · 14 juin 2012 à 22 h 32 min +

                        +

                        Merci pour le tuto qui m’a bien aidé.
                        +J’ai utilisé un fer de 40 W avec une panne fine et
                        +une pompe à dessouder et j’ai retiré les condensateurs sans problème.
                        +Merci encore (3€40 pour le dépannage).

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + DragonTribal + · 2 juillet 2012 à 12 h 02 min +

                        +

                        super merci pour manifique tuto.
                        +Est-il possible de changer les 5 condensateurs 820uF 25V par des 1000uF 50V? car moi mes 5 condensateurs sont presque HS ;-)

                        +

                        Cordialement

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 2 juillet 2012 à 12 h 25 min +

                          +

                          Oui je penses que ça marchera étant donné que c’est des valeurs plus grandes.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + FRED + · 11 juillet 2012 à 19 h 11 min +

                        +

                        Bravo, MERCI.
                        +Je n’ai encore rien fait…mais j’ai le même problème, et tu me donnes la solution.
                        +Super.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + daninpet + · 31 août 2012 à 10 h 10 min +

                        +

                        Merci mille fois!

                        +

                        J’avais ce problème, et j’ai emmener la photo des trucs a remplacer chez le réparateur du coin et voila!! Ça m’a coûté 7 Euros (mais j’habite en Thaïlande)

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + moi + · 15 novembre 2012 à 15 h 25 min +

                        +

                        super mon 2232bw vient de lâcher, les 3 + 1 condos sont gonflés j ai trouvé un 330 en 35v qui traîné sur un écran mort et j’ai commander 5 1000uf 35v sur ebay pour moins de 3 dollars, ca devrait le faire j’espere j’attend d’être livré merci! par contre j’ai qu’un gros pistolet a soudure et un gros fil d’étain, c’est pas évident mais bon ca le fait quand même =)

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + moi + · 7 décembre 2012 à 9 h 33 min +

                          +

                          parfait je vient de recevoir les condos; j ai meuler la panne du fer a souder pour la tailler en mine de crayon et j ai reussi a les souder facilement ils étaient un peu plus gros mais ca passe tout juste, mais attention ne pas prendre des plus gros! l écran fonctionne nickel maintenant.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Croco + · 19 janvier 2013 à 18 h 39 min +

                        +

                        Je souhaiterai savoir si tu as utilisé un fer à souder bien précis étant donné que la carte est une multi couche.
                        +Merci

                        + +
                        +
                        + + +
                        + +
                        +
                        +
                        +
                        +

                        + momo + · 10 juin 2013 à 13 h 15 min +

                        +

                        slut je voudrai savoir ou trouvé les condansateur a changer sur mon ecran qui clignote

                        + +
                        +
                        + + +
                        + +
                        +
                        +
                        +
                        +

                        + lokmane + · 5 juillet 2013 à 16 h 08 min +

                        +

                        merci j’avais un ecran rouge ! et c’etais la tresse qui relie mon ecran votre page m’a aider a l’ouvrir et a le reparer merci bien

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + ML + · 21 août 2013 à 19 h 11 min +

                        +

                        Merci ! Ecran réparé. Halte à l’obsolescence programmée.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + raymond + · 31 octobre 2013 à 13 h 20 min +

                        +

                        ai vu votre vidéo et les explications pour la reparation de mon écran , apparemment le méme probléme l écran passe au noir apres quelque seconde , j ai vu un le condensateur en bas a gauche gonflé , je l ai fait changé (10€) les autre condensateur étant toujour bon d après la personne qui me l a changé , mais j ai toujour le méme probléme cela peut il venir de la carte video a gauche ?

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 20 décembre 2013 à 12 h 27 min +

                          +

                          Si la led bleu du bouton power s’éteint aussi c’est un problème d’alimentation sinon c’est plus compliqué et ça peut provenir de condensateurs sur la partie vidéo. Changé tous les plus gros condensateurs sur la partie alimentation pourrait être un bon début même si ils ne paraissent pas endommagé.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + damien + · 4 novembre 2013 à 0 h 29 min +

                        +

                        bonjour,

                        +

                        j’ai des crasses coincées entres l’écran et le truc juste derrière, est ce qu’on sais les enlever en démontant la dalle ?

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 20 décembre 2013 à 12 h 28 min +

                          +

                          Je ne sais si cette partie de la dalle est démontable, je penses que c’est collé mais vous pouvez essayer.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + mac + · 1 décembre 2013 à 17 h 30 min +

                        +

                        Merci HugoPoi, avec ces excellents conseils et tuto vidéo, mon écran est reparti pour une nouvelle vie.
                        +Pour les composants, si vous êtes sur Paris ou proche. La boutique RAM électroniques est une bonne adresse, 138 bd Diderot 75012 Paris (Place de la Nation).

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Bouddhid + · 16 janvier 2014 à 19 h 21 min +

                        +

                        Merci beaucoup pour ces conseils ! J’étais à 2 doigts de jeter mon écran, le voilà comme neuf pour moins de 5€ ! Vive la bricole !

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Vincent + · 17 mai 2014 à 16 h 45 min +

                        +

                        Alors là merci.

                        +

                        Pour ce post, les photos, la vidéo, tout y est.

                        +

                        J’ai démonté l’écran assez vite, enlevé la carte, regarder quel condensateurs étaient gonflés,(il y en avaient 4), un magasin d’électronique sur lyon et une heure de démontage, soudure, remontage plus tard, voilà, c’est tout beau.
                        +Ca ne clignote plus, ça s’allume comme avant, comme neuf.

                        +

                        Et dire que j’allais jeter cet écran et claquer 350 euros pour un neuf…

                        +

                        Coût de l’opération pour 4 condensateurs, du fil d’étain 7 euros.

                        +

                        Je précise que je n’avais jamais fais de soudure sur composant électronique auparavant.
                        +Comme quoi cette opération de réparation est à la portée de tous.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Julot + · 6 juillet 2014 à 13 h 49 min +

                        +

                        Site vraiment détaillé et très claire. J’ai pu dépanner mon écran avec succès. Merci beaucoup pour ces précieuses explications.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + PaniK31 + · 29 juillet 2014 à 9 h 21 min +

                        +

                        Pas besoin d’une grosse puissance pour le fer, il faut au préalable gratter le vernis sur l’étain afin de pouvoir le faire fondre plus facilement

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + R211_IP-45130B + · 20 août 2014 à 14 h 04 min +

                        +

                        Bonjour à tous,

                        +

                        Une âme charitable peut-elle me communiquer ce qui est gravé sur la résistance CMS R211 de la carte d’alimentation/inverter IP-45130B qui équipe le SAMSUNG 2232BW ? Cette résistance a pris un coup de tournevis et je n’arrive pas à déterminer sa valeur de résistance car son marquage est effacé et comme le composant est abimé la mesure à l’ohmmètre indique l’infinie.

                        +

                        Merci par avance.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + roger + · 24 octobre 2014 à 17 h 21 min +

                        +

                        Ca refonctionne après échange de 4 condensateurs :
                        +-un 330uf25v remplacé à l’identique.
                        +-trois 820uf25v remplacés par 1000uf25v.
                        +Le tout pour quelques €. Le plus dur était le dessoudage, la tresse n’était pas très efficace contrairement à la pompe.
                        +Grand merci à HugoPoi.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Max + · 26 février 2015 à 16 h 28 min +

                        +

                        ENORME MERCI!! J’ai réparé mon écran en 20mn pour 3,50€, il était à 2 doigts de partir à la déchetterie. Ca faisait des mois qu’il clignotait, et l’allumage mettait parfois plus d’une demi heure. J’ai changé 5 condos 820uf25v et 1 330uf25v, par exactement les mêmes en neuf, et là il démarre au quart de tour! Ca fait plaisir! :)

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + rocco michelle + · 7 octobre 2015 à 10 h 16 min +

                          +

                          Bonjour je ne sais si vous verrez mon message mais je tente…je cherche quelqu’un qui accepterait de changer mes condensateurs sur mon samsung, les réparateurs me demandent 70 à 80 euros et encore ils n’ont pss envie de le faire et me disent d’acheter un nouvel écran. j’aurais bien tenter mais je n’ai pas de matériel et j’ai lu que les condo pouvaient être très dangereux s’ils avaient de la charge alors j’ai la trouille de bidouiller pq je n’y connais rien. si vous êtes de lyon acccepteriez vous de changer mes condensateurs pour 45 euros? merci de votre réponse.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + lecakeseb + · 27 juillet 2015 à 15 h 26 min +

                        +

                        Bonjour,

                        +

                        J’ai utilisé la vidéo pour démonter mon écran afin de le nettoyer de 4 bêtes d’orage infiltrés entre le premier écran (noir) et la dalle (blanche) de mon samsung SyncMaster 2232W

                        +

                        Petits conseils afin de modérer ce que j’ai pu voir dans cette vidéo :

                        +

                        0 : aspirez, nettoyez l’extérieur de l’écran avant de l’ouvrir et nettoyez la table qui vous servira d’atelier, pour éviter les poussières qui s’infiltreront forcément plus tard si vous ne le faites pas…
                        +1 : pour ouvrir, utilisez plutôt un couteau à enduire pour la première partie (le cadre). Vous n’abîmerez ainsi pas du tout l’écran. Soyez patients, ne forcez pas ! ça viendra doucement, mais ça viendra. Il m’a fallu à peine 10 minutes, sans détériorer l’écran, sans le griffer… Il est encore nickel !
                        +2 : attention à ne pas déconnecter les fils reliant le cadre à la carte. Inutile pour simplement nettoyer l’écran.
                        +3 : pour séparer les deux éléments de la dalle entre lesquels les bêtes se sont infiltrées, les doigts suffisent, pas besoin d’outils qui viendraient les endommager. La dalle blanche reste à l’horizontale, l’écran noir sera tenu à la verticale.
                        +4 : utiliser un chiffon doux ne peluchant pas pour enlever les bêtes (faites-vous aider de quelqu’un qui les enlèvera pendant que vous tenez l’écran extérieur en position verticale).
                        +5 : repositionnez la colle d’étanchéité qui aurait pu se déplacer, avant de repositionner les deux écrans.
                        +6 : commencer par refermer par le bas de l’écran (sinon les éléments de réglage situés au bas de l’écran – luminosité, contraste,…- ne se replaceront pas correctement).
                        +7 : Une fois l’écran refermé, j’ai appliqué un peu de « barrage aux insectes », avec un chiffon à l’arrière de mon écran en insistant surtout sur les bouches d’aération par lesquelles les maudites bestioles ont du s’infiltrer. En espérant ne pas avoir à ouvrir !

                        +

                        Bon courage à vous !

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Michel Jousserandot + · 20 janvier 2017 à 20 h 41 min +

                        +

                        Merci pour les conseils au démontage.
                        +J’avais un problème un peu différent :l’écran ne s’allumait plus du tout. Avec un copain beaucoup plus malin que moi, on a détecté 2 fusibles dont l’un était fichu. On l’a remplacé par un petit fil de cuivre. Et tout a remarché comme avant.
                        +Il faut surtout faire attention quand on teste la partie haute tension
                        +Michel.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Crec + · 14 juillet 2017 à 10 h 20 min +

                        +

                        Bonjour. Très bons conseils avertis. Merci beaucoup.
                        +Peut-on avoir les mêmes conseils pour un écran BX2250.
                        +Merci par avance.
                        +Crec

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 6 août 2017 à 14 h 03 min +

                          +

                          J’ai pas de BX2250 donc dans le détails non mais si c’est les même symptômes ça doit la même procédure.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Ferronnier + · 10 août 2017 à 17 h 42 min +

                        +

                        Un grand merci !
                        +J’ai changé tous les condensateurs de la partie alimentation de la carte, en déportant certains qui n’avaient pas le même format qu’à l’origine, et ça tourne nickel !

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Nours + · 1 décembre 2017 à 15 h 17 min +

                        +

                        Ca fait des années que j’ai cet article enregistré dans un coin, en nourrissant l’espoir d’avoir un jour le courage de réparer ce foutu écran… Après plus de cinq ans c’est chose faite \o/
                        +Un giga, hypra, immense merci pour ce tutoriel tellement bien expliqué et facile d’accès (je n’avais pas touché à un fer à souder depuis… Oh boy 15 ans déjà).
                        +Après une longue pause, l’écran reprend du service… Jusqu’à la prochaine panne /o/

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Alex + · 11 août 2018 à 13 h 28 min +

                        +

                        Quelqu’un sait qui pourrait me le faire svp j ai le même problème mais aucun matériel

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + David + · 5 février 2019 à 21 h 06 min +

                        +

                        Merci Hugo pour ce tuto qui m’a déjà servi en 2013 et qui va me resservir aujourd’hui car mon 2ème 2232bw commence à avoir les mêmes symptômes.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + yvan + · 23 novembre 2019 à 17 h 14 min +

                        +

                        Bonjour
                        +j’ai tenté de changer le condensateur qui avait l’air naze mais ça n’a pas marché … toujours le bouton bleu allumé, l’écran est reconnu par Windows 10 même si l’écran est éteint
                        +grâce au service manuel de l’écran fourni plus haut, j’ai vérifié les tensions jusque sur la carte de la dalle et elles sont correctes, ainsi que sur la carte elle-même, tout est ok, donc je pense que ce n’est plus un problème de condensateur
                        +pour les fusibles, ils ressemblent plutôt à des composants qu’à de simple fusibles, mais comme j’ai les bonnes tension, je ne pense pas que ça vienne de là
                        +j’ai bien peur que ce soit la dalle qui soit naze ? quelqu’un a t il des idées supplémentaires avant que je le jette avec grand regret (c’est un 2032bw, mais c’est la même chose, même si ma carte électronique est un peu différente car plus récente
                        +merci d’avance pour vos conseils

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + yvan + · 24 novembre 2019 à 17 h 26 min +

                        +

                        finalement j’ai trouvé, c’est un petit fusible vert qui ressemble à une résistance mais tout vert avec écrit 4A LF qui assure l’alimentation de la dalle.
                        +En le shuntant, mon écran a retrouvé l’image.
                        +après enquête il s’agit d’un fusible pico de 4ampères de chez little fuse, pas du tout évident à trouver
                        +Résolu !

                        + +
                        +
                        + +
                        +
                        +

                        + Reflow Dell 1546 | HugoPoi + · 22 août 2016 à 16 h 09 min +

                        +

                        […] « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable de marque Dell un 1546 pour être précis. Encore […]

                        + +
                        +
                        + +
                        +
                        +

                        + Reflow Dell Inspiron 1546 – HugoPoi + · 23 juin 2017 à 23 h 18 min +

                        +

                        […] d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un […]

                        + +
                        +
                        + +
                        +
                        +
                        +

                        Répondre à rocco michelle Annuler la réponse

                        Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                        +
                        +
                        +

                        + +

                        +
                        +
                        +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        + + +
                        + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/881f8006a0e896403ce42d98cb456d981fc4320b.00000326.html b/www/.content.EZtzwPjb/html/881f8006a0e896403ce42d98cb456d981fc4320b.00000326.html new file mode 100644 index 0000000..3a91a0a --- /dev/null +++ b/www/.content.EZtzwPjb/html/881f8006a0e896403ce42d98cb456d981fc4320b.00000326.html @@ -0,0 +1,398 @@ + + + + + + + HugoPoi – Page 2 – Internet, Hardware et Bidouille + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +

                        L’homme du milieu avec DD-WRT

                        J’avais besoin de faire un MITM entre un ONT et la box SFR NB6 pour pouvoir capturer les identifiants PPP pour le tunnel ipv6. Je n’avais pas de hub ou de machine avec 2 interfaces Ethernet pour pouvoir le faire de façon passive sans faire du spoofing ARP. Et je n’avais pas envie d’envoyer des trames ARP sur l’infrastructure réseau SFR. J’avais un Netgear WNR3500Lv1 dans un coin, je me suis dit qu’il y avais moyen d’utiliser ce genre de routeur pour faire du tapping passif.

                        +

                        (suite…)

                        +
                        Par HugoPoi, il y a
                        +
                        +
                        + +
                        +
                        +
                        +
                        + +
                        +
                        + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/8823a72ea69e180b4709b627af45d790b9100fdc.00000172.html b/www/.content.EZtzwPjb/html/8823a72ea69e180b4709b627af45d790b9100fdc.00000172.html new file mode 100644 index 0000000..d4c85b2 --- /dev/null +++ b/www/.content.EZtzwPjb/html/8823a72ea69e180b4709b627af45d790b9100fdc.00000172.html @@ -0,0 +1,869 @@ + + + + + + + + Réparer un Vidéoprojecteur Sony VPL-CX5 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        +

                        Bon les cocos, j’ai récupéré un vidéo projecteur Sony VPL-CX5 en état décédé. Comme je sais que c’est encore et toujours ce problème d’obsolescence programmée j’ai donc décidé de le réparer.

                        +

                        Sony VPL-CX5

                        +

                        Première étape, identifier la panne

                        +

                        Le vidéoprojecteur ne donnait aucun signe de vie, aucune led ne s’allume quand je l’ai branché rien du tout même pas un petit crépitement d’alimentation. Je pense a un problème d’alimentation mais rien est sur tant que je ne l’ai pas démonté. Mais avant le dévissage je vais quand même faire une recherche Google car le Internet il est grand et il est beau. J’ai trouvé un truc qui m’a mis la puce à l’oreille sans même avoir enlever la première visse, sur un forum quelconque que je n’arrive plus à retrouver, un mec dit qu’il a changé un composant (un certain MCZ3001) sur une des cartes d’alimentation, et le vidéoprojecteur remarchait.

                        +

                        Démontage

                        +

                        Sony VPL-CX5

                        +

                        J’ai donc commencé par enlever les quelques visses, puis démonter toutes les cartes une par une, une vrai galère. Pour m’aider j’ai trouvé le « manuel de service » (or Service Manual) que je mets a disposition ici même : sony_vpl-cx5_cs5_servicemanual. J’ai mis dans la suite les références des connecteurs pour les mesures.

                        +

                        1) Premier test vérifier le fusible sur la première carte d’alimentation GA, faire le test avec la carte débranché, j’ai utilisé un voltmètre sur la position test de résistance : test OK.

                        +

                        2) Deuxième test, vérifier la tension continu fournie par cette carte GA sur le connecteur de sortie CN2001 environ 380V DC, DONC FAIRE CECI AVEC PRÉCAUTION (je l’ai fait avec un voltmètre de merde à 5€) : test OK j’ai 380 Volt en sortie. Sur cette carte il y un gros condensateur de 400V donc faire TRÈS ATTENTION MÊME QUAND LA CARTE EST DÉBRANCHÉ DU SECTEUR.(j’ai vérifier le condensateur se décharge assez vite j’ai mesuré 4V 10 secondes après avoir débranché)

                        +

                        3) Maintenant test de la carte GB qui transforme le 400V continu en basse tension continu ici du 24V d’après le SM. Donc j’ai le point de mesure parfait, c’est le connecteur CN3201.

                        +
                        N'oubliez d'ouvrir le manuel de service ça donne des infos précieuses pour le dépannage

                        N’oubliez d’ouvrir le manuel de service ça donne des infos précieuses pour le dépannage

                        +

                        Plusieurs points pour tester le plus pratique étant le petit connecteur blanc de 3 broches qui fournit la masse et VCC 24V. Après mesure sur ce connecteur j’ai une tension stable mais pas du 24VDC, les composants n’ont pas l’air endommagés donc je vérifie à l’entrée du fameux MCZ3001 il est bien alimenté correctement mais ne sort pas 24VDC. Pas de condensateurs chimiques endommagés.

                        +

                        Donc la panne est certainement dû à ce composant, achetons-le !

                        +

                        Trouver le composant de rechange

                        +

                        Au début j’ai cherché chez des e-commerçant d’électronique comme Farnell,Conrad, etc pas trouvé en france, puis j’ai fait les marchants Anglais et je l’ai trouvé mais à 30€ frais de port inclus. Et comme un con j’avais oublié de faire Ebay : encore un coup des chinois 4.27€ avec le support DIP et les frais de port inclus OMFG j’adore la mondialisation. J’en ai pris 2 pour mois de 10€ et comme les chinois ils sont trop fort j’ai tout reçu en moins de 2 semaines.

                        +

                        Capture-ebay-mcz3001

                        +

                        Dés-soudage

                        +

                        Bon j’avais des fer à souder de merde et du coup c’est le #FAIL, j’ai pas réussi à dés-souder proprement, j’ai donc été obligé d’investir dans une merde à 10€ :

                        +

                        Fer à souderEnsuite j’ai finalement réussi à dés-souder :

                        +

                        Carte GB MCZ3001 dés-soudéEt il me semble que sur cette photo j’avais nettoyer avec du dissolvant.

                        +

                        Remontage

                        +

                        Alors je suis désolé mais je n’ai pas de photos pour le MCZ soudé car j’avais déjà remonté le projecteur. Les étapes :

                        +
                          +
                        1. Souder un support fourni (au cas ou ce fameux MCZ rendrais encore l’âme)
                        2. +
                        3. Placer un MCZ neuf dans le support
                        4. +
                        5. Relier la carte GA et GB ensemble
                        6. +
                        7. Brancher sur le 220V
                        8. +
                        9. Tester le 24VDC sur le connecteur CN3201
                        10. +
                        11. #WIN
                        12. +
                        13. Remonter le projecteur
                        14. +
                        15. Tester en vrai
                        16. +
                        17. #WIN2
                        18. +
                        +

                        Conclusion

                        +

                        Oui c’est un WIN d’une valeur 4€ mais je tiens à préciser que ça représente environ 10 heures de travail continu. Entre les recherches Google et la lecture de la documentation, les heures passés au démontage, les quelques fois ou je me suis arraché les cheveux et risquer ma vie avec un voltmètre à 5€.

                        +

                        Mon banc de test

                        +

                        Banc de test chez HugoLa table du salon 2Les Tofs

                        + + +
                        +
                        +
                        + +
                        +
                        + + + + + + + + + +
                        +
                        +
                        +
                        +
                        +
                        +
                        +

                        + 16 commentaires

                        +
                        + +
                        +
                        +
                        +
                        +

                        + Georg + · 30 janvier 2014 à 12 h 22 min +

                        +

                        Hello,
                        +dear Hugo, at first: HAVE MANY THANKS FOR YOUR VERY INTERESTING BLOG!!!

                        +

                        I also have a cx5 and try to repair it.

                        +

                        It has the same problems like your projector…

                        +

                        I’ve measured the CN2001 but in my power supply there are only 320 V (stable).
                        +Are you sure, that there have to be 380V?
                        +In the service manual, I didn’t find a value (either 320V nor 380V)

                        +

                        Best Regards
                        +Your Georg

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 21 février 2014 à 17 h 36 min +

                          +

                          Sorry to be so long to answer,
                          +320V seems to be OK, I have extrapolated the value from the schema ~ 220Vxrootsquare(2) but this depends of the quality of your current source. I think 320 will not impact the power for the next card.

                          +

                          Good repair !
                          +Thanks for the comment :-D

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + henri moine + · 2 février 2014 à 20 h 43 min +

                        +

                        Bonsoir,
                        +Merci beaucoup pour l’explication détaillée et les photos.
                        +Je vais pas tarder de m’attaquer à mon SONY VPL CS7 bizarrement inerte depuis quelques semaines…
                        +Bonne continuation !

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + florian + · 21 avril 2014 à 9 h 09 min +

                          +

                          Bonjour,
                          +Je possède également un sony VPL CS7, et depuis plusieurs mois il a quelques signes de faiblesses.

                          +

                          1) lorsque je le débranche du secteur et que je le rebranche, il faut que j’attende 24 à 48 h pour que le voyant on/off se mette à éclairer, donc je ne peux pas l’allumer pendant ce temps.

                          +

                          2) aujourd’hui j’ai beau le laisser brancher, aucun signe de vie plus rien ne s’allume.

                          +

                          As tu attaqué ton VPL, As tu trouvé quelque chose ?

                          +

                          Merci

                          + +
                          +
                          +
                            +
                            + +
                            +
                            +
                            +
                            +

                            + HugoPoi + · 9 mai 2014 à 17 h 50 min +

                            +

                            Le VPL que j’avais était en panne je l’ai réparé jusqu’à il y a 2 mois ou il retombé en panne. Ton problème d’allumage ressemble à un problème de condensateur cramé. tu peux regarder si tu en vois des gonflés en démontant.

                            + +
                            +
                            + +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Ghent + · 21 septembre 2014 à 12 h 48 min +

                        +

                        Bonjour,

                        +

                        Déjà, super tuto.
                        +Je rencontre un problème à priori similaire avec mon CX5: le bouton de mise sous tension n’est plus éclairé et il ne se passe rien quand j’appuie dessus.

                        +

                        Je me suis donc lancé, et j’ai démonté jusqu’à atteindre les cartes d’alimentation.
                        +J’ai mesuré donc au niveau du CN3201, et là j’ai 22V continu stable.
                        +D’où ma première question, ai-je le même problème que toi avec le MCZ3001, ou dois-je chercher autre part ?
                        +Faut-il 24V exactement ?

                        +

                        Ensuite, j’ai essayé de me rapprocher du composant lui-même, mais je ne sais pas où mesurer. Le diagramme indique le VC1 sur la patte 8, mais je ne sais pas où prendre la masse.
                        +Saurais-tu m’aider ?

                        +

                        J’ai enfin voulu tester la tension en sortie de la carte GB, le point 17V, mais même question, si je teste la patte 1 du connecteur, où prendre la masse pour vérifier qu’il y a bien 17V ?
                        +Cette partie est-elle alimentée malgré que l’appareil soit éteint ?

                        +

                        Dans tous les cas, j’ai commandé le MCZ3001D, mais je voudrais m’assurer qu’il est bien le responsable avant de le changer.

                        +

                        Merci d’avance pour tes réponses, et encore une fois, merci de partager ton travail !

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 26 septembre 2014 à 15 h 01 min +

                          +

                          Je penses que si tu as 22V sur CN3201 le problème est sûrement ailleurs. Même si cela ne coûte rien de changer le MCZ3001D si tu as de quoi dessouder proprement. Regarde sur le service manuel pour tester les autres tensions qui sortent de la carte après les partie d’isolement, de mémoire il y a 3,3 V et du 5V.

                          + +
                          +
                          +
                            +
                            + +
                            +
                            +
                            +
                            +

                            + Neckron + · 12 décembre 2014 à 21 h 32 min +

                            +

                            Bonsoir, je déterre un peu ce vpl-cx5 que je possède et que je vends !!!
                            +Je voie qu’il y a encore des personnes qui s’y intéresse.
                            +Je précise juste que le mien est en excellent état de marche, il y a la télécommande et qu’il n’a servi QUE 220 Heures. Lampe d’origine. Je cherchais pendant un temps un moyen de l’upgrader pour l’image, mais finalement…. je change…

                            + +
                            +
                            + +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Jean-Marie + · 31 décembre 2014 à 14 h 43 min +

                        +

                        Bonjour Hugo.
                        +Merci pour ton partage d’expérience.
                        +Moi aussi, j’ai un VPL-CS7 inerte comme tu dis. Pas la moindre led s’allume ou clignote quand je le branche.
                        +Je l’ai complètement démonté. Je soupçonne un composant sur le bloc d’alim.
                        +As-tu réparé le tien ?
                        +Merci.
                        +JM.

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 31 janvier 2015 à 15 h 13 min +

                          +

                          Moi j’ai bien réparé mon CX5 mais celui-ci est retombé en panne 6 mois plus tard. Cette fois-ci avec plus de composants endommagés :-(
                          +Bon courage pour les réparations.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Sorce + · 14 mars 2015 à 16 h 05 min +

                        +

                        Bonjour ,j’ai un vpl cs6 ,qui ne s’allume pas rien du tous j’ai suivi tes étape et sur le connecteur con 2001 et la 325v bizarre bon je relie la carte gb pour tester au borne du con 3201 et la 15v et sa retombe et sa remonte a 15v peut tu m aider cdt richard (pense tu que je doi changer le mcz)

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 29 avril 2015 à 16 h 18 min +

                          +

                          Vérifiez les autres tensions en sortie de la carte GB, de mémoire il doit y avoir 3,3 V du 5 V et du 15V. Si tout est OK, la carte-mère principale est peut-être endommagé et pas moyen de réparer sans changement.

                          + +
                          +
                          + +
                          + +
                          +
                          +
                          +
                          +

                          + Gilles + · 16 juin 2018 à 13 h 44 min +

                          +

                          Même chose que vous ?
                          +Avez-vous trouvé une solution ?
                          +Est-ce que c’est normal cette tension non stable ?

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Daoud Yacoub + · 20 octobre 2015 à 9 h 54 min +

                        +

                        Je remercie beaucoup l’equipe

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Daoud Yacoub + · 20 octobre 2015 à 10 h 02 min +

                        +

                        Aidez moi à depanner mon vidéo projecteur le tout ne s’allume pas ;jai démonté et nettoyer toutes les plaques alimentation et logique me rien ne se passe mais en toute sincérité si je peux avoir le document technique de réparation m’est indispensable

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 24 octobre 2015 à 13 h 39 min +

                          +

                          Les commentaires n’ont pas pour vocation d’être un forum :-)

                          + +
                          +
                          + +
                        + +
                        +
                        +
                        +

                        Répondre à HugoPoi Annuler la réponse

                        Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                        +
                        +
                        +

                        + +

                        +
                        +
                        +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        + + +
                        + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/884658d773b2891568b7def2aa2b980546ae5992.00001201.css b/www/.content.EZtzwPjb/html/884658d773b2891568b7def2aa2b980546ae5992.00001201.css new file mode 100644 index 0000000..e852a69 --- /dev/null +++ b/www/.content.EZtzwPjb/html/884658d773b2891568b7def2aa2b980546ae5992.00001201.css @@ -0,0 +1,11 @@ +@charset "UTF-8";#start-resizable-editor-section{display:none}.wp-block-audio figcaption{margin-top:.5em;margin-bottom:1em}.wp-block-audio audio{width:100%;min-width:300px}.wp-block-button__link{color:#fff;background-color:#32373c;border:none;border-radius:1.55em;box-shadow:none;cursor:pointer;display:inline-block;font-size:1.125em;padding:.667em 1.333em;text-align:center;text-decoration:none;overflow-wrap:break-word}.wp-block-button__link:active,.wp-block-button__link:focus,.wp-block-button__link:hover,.wp-block-button__link:visited{color:#fff}.wp-block-button__link.aligncenter{text-align:center}.wp-block-button__link.alignright{text-align:right}.wp-block-buttons>.wp-block-button.has-custom-width{max-width:none}.wp-block-buttons>.wp-block-button.has-custom-width .wp-block-button__link{width:100%}.wp-block-buttons>.wp-block-button.wp-block-button__width-25{width:calc(25% - .5em)}.wp-block-buttons>.wp-block-button.wp-block-button__width-50{width:calc(50% - .5em)}.wp-block-buttons>.wp-block-button.wp-block-button__width-75{width:calc(75% - .5em)}.wp-block-buttons>.wp-block-button.wp-block-button__width-100{margin-right:0;width:100%}.wp-block-button.is-style-squared,.wp-block-button__link.wp-block-button.is-style-squared{border-radius:0}.wp-block-button.no-border-radius,.wp-block-button__link.no-border-radius{border-radius:0!important}.is-style-outline>.wp-block-button__link,.wp-block-button__link.is-style-outline{border:2px solid}.is-style-outline>.wp-block-button__link:not(.has-text-color),.wp-block-button__link.is-style-outline:not(.has-text-color){color:#32373c}.is-style-outline>.wp-block-button__link:not(.has-background),.wp-block-button__link.is-style-outline:not(.has-background){background-color:transparent}.wp-block-buttons{display:flex;flex-direction:row;flex-wrap:wrap}.wp-block-buttons.is-vertical{flex-direction:column}.wp-block-buttons.is-vertical>.wp-block-button{margin-right:0}.wp-block-buttons.is-vertical>.wp-block-button:last-child{margin-bottom:0}.wp-block-buttons>.wp-block-button{display:inline-block;margin-left:0;margin-right:.5em;margin-bottom:.5em}.wp-block-buttons>.wp-block-button:last-child{margin-right:0}.wp-block-buttons.is-content-justification-left{justify-content:flex-start}.wp-block-buttons.is-content-justification-left.is-vertical{align-items:flex-start}.wp-block-buttons.is-content-justification-center{justify-content:center}.wp-block-buttons.is-content-justification-center.is-vertical{align-items:center}.wp-block-buttons.is-content-justification-right{justify-content:flex-end}.wp-block-buttons.is-content-justification-right>.wp-block-button{margin-left:.5em;margin-right:0}.wp-block-buttons.is-content-justification-right>.wp-block-button:first-child{margin-left:0}.wp-block-buttons.is-content-justification-right.is-vertical{align-items:flex-end}.wp-block-buttons.is-content-justification-space-between{justify-content:space-between}.wp-block-buttons.aligncenter{text-align:center}.wp-block-buttons.alignleft .wp-block-button{margin-left:0;margin-right:.5em}.wp-block-buttons.alignleft .wp-block-button:last-child{margin-right:0}.wp-block-buttons.alignright .wp-block-button{margin-right:0;margin-left:.5em}.wp-block-buttons.alignright .wp-block-button:first-child{margin-left:0}.wp-block-buttons:not(.is-content-justification-space-between,.is-content-justification-right,.is-content-justification-left,.is-content-justification-center) .wp-block-button.aligncenter{margin-left:auto;margin-right:auto;margin-bottom:.5em;width:100%}.wp-block-calendar{text-align:center}.wp-block-calendar tbody td,.wp-block-calendar th{padding:.25em;border:1px solid #ddd}.wp-block-calendar tfoot td{border:none}.wp-block-calendar table{width:100%;border-collapse:collapse}.wp-block-calendar table th{font-weight:400;background:#ddd}.wp-block-calendar a{text-decoration:underline}.wp-block-calendar table caption,.wp-block-calendar table tbody{color:#40464d}.wp-block-categories.alignleft{margin-right:2em}.wp-block-categories.alignright{margin-left:2em}.wp-block-code code{display:block;white-space:pre-wrap;overflow-wrap:break-word}.wp-block-columns{display:flex;margin-bottom:1.75em;flex-wrap:wrap}@media (min-width:782px){.wp-block-columns{flex-wrap:nowrap}}.wp-block-columns.has-background{padding:1.25em 2.375em}.wp-block-columns.are-vertically-aligned-top{align-items:flex-start}.wp-block-columns.are-vertically-aligned-center{align-items:center}.wp-block-columns.are-vertically-aligned-bottom{align-items:flex-end}.wp-block-column{flex-grow:1;min-width:0;word-break:break-word;overflow-wrap:break-word}@media (max-width:599px){.wp-block-column{flex-basis:100%!important}}@media (min-width:600px) and (max-width:781px){.wp-block-column:not(:only-child){flex-basis:calc(50% - 1em)!important;flex-grow:0}.wp-block-column:nth-child(2n){margin-left:2em}}@media (min-width:782px){.wp-block-column{flex-basis:0;flex-grow:1}.wp-block-column[style*=flex-basis]{flex-grow:0}.wp-block-column:not(:first-child){margin-left:2em}}.wp-block-column.is-vertically-aligned-top{align-self:flex-start}.wp-block-column.is-vertically-aligned-center{-ms-grid-row-align:center;align-self:center}.wp-block-column.is-vertically-aligned-bottom{align-self:flex-end}.wp-block-column.is-vertically-aligned-bottom,.wp-block-column.is-vertically-aligned-center,.wp-block-column.is-vertically-aligned-top{width:100%}.wp-block-cover,.wp-block-cover-image{position:relative;background-size:cover;background-position:50%;min-height:430px;width:100%;display:flex;justify-content:center;align-items:center;padding:1em;box-sizing:border-box}.wp-block-cover-image.has-parallax,.wp-block-cover.has-parallax{background-attachment:fixed}@supports (-webkit-overflow-scrolling:touch){.wp-block-cover-image.has-parallax,.wp-block-cover.has-parallax{background-attachment:scroll}}@media (prefers-reduced-motion:reduce){.wp-block-cover-image.has-parallax,.wp-block-cover.has-parallax{background-attachment:scroll}}.wp-block-cover-image.is-repeated,.wp-block-cover.is-repeated{background-repeat:repeat;background-size:auto}.wp-block-cover-image.has-background-dim:not([class*=-background-color]),.wp-block-cover.has-background-dim:not([class*=-background-color]){background-color:#000}.wp-block-cover-image.has-background-dim:before,.wp-block-cover.has-background-dim:before{content:"";background-color:inherit}.wp-block-cover-image.has-background-dim:not(.has-background-gradient):before,.wp-block-cover-image .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim:not(.has-background-gradient):before,.wp-block-cover .wp-block-cover__gradient-background{position:absolute;top:0;left:0;bottom:0;right:0;z-index:1;opacity:.5}.wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-10:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-10:not(.has-background-gradient):before{opacity:.1}.wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-20:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-20:not(.has-background-gradient):before{opacity:.2}.wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-30:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-30:not(.has-background-gradient):before{opacity:.3}.wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-40:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-40:not(.has-background-gradient):before{opacity:.4}.wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-50:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-50:not(.has-background-gradient):before{opacity:.5}.wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-60:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-60:not(.has-background-gradient):before{opacity:.6}.wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-70:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-70:not(.has-background-gradient):before{opacity:.7}.wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-80:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-80:not(.has-background-gradient):before{opacity:.8}.wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-90:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-90:not(.has-background-gradient):before{opacity:.9}.wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-100:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-100:not(.has-background-gradient):before{opacity:1}.wp-block-cover-image.alignleft,.wp-block-cover-image.alignright,.wp-block-cover.alignleft,.wp-block-cover.alignright{max-width:420px;width:100%}.wp-block-cover-image:after,.wp-block-cover:after{display:block;content:"";font-size:0;min-height:inherit}@supports ((position:-webkit-sticky) or (position:sticky)){.wp-block-cover-image:after,.wp-block-cover:after{content:none}}.wp-block-cover-image.aligncenter,.wp-block-cover-image.alignleft,.wp-block-cover-image.alignright,.wp-block-cover.aligncenter,.wp-block-cover.alignleft,.wp-block-cover.alignright{display:flex}.wp-block-cover-image .wp-block-cover__inner-container,.wp-block-cover .wp-block-cover__inner-container{width:100%;z-index:1;color:#fff}.wp-block-cover-image .wp-block-subhead:not(.has-text-color),.wp-block-cover-image h1:not(.has-text-color),.wp-block-cover-image h2:not(.has-text-color),.wp-block-cover-image h3:not(.has-text-color),.wp-block-cover-image h4:not(.has-text-color),.wp-block-cover-image h5:not(.has-text-color),.wp-block-cover-image h6:not(.has-text-color),.wp-block-cover-image p:not(.has-text-color),.wp-block-cover .wp-block-subhead:not(.has-text-color),.wp-block-cover h1:not(.has-text-color),.wp-block-cover h2:not(.has-text-color),.wp-block-cover h3:not(.has-text-color),.wp-block-cover h4:not(.has-text-color),.wp-block-cover h5:not(.has-text-color),.wp-block-cover h6:not(.has-text-color),.wp-block-cover p:not(.has-text-color){color:inherit}.wp-block-cover-image.is-position-top-left,.wp-block-cover.is-position-top-left{align-items:flex-start;justify-content:flex-start}.wp-block-cover-image.is-position-top-center,.wp-block-cover.is-position-top-center{align-items:flex-start;justify-content:center}.wp-block-cover-image.is-position-top-right,.wp-block-cover.is-position-top-right{align-items:flex-start;justify-content:flex-end}.wp-block-cover-image.is-position-center-left,.wp-block-cover.is-position-center-left{align-items:center;justify-content:flex-start}.wp-block-cover-image.is-position-center-center,.wp-block-cover.is-position-center-center{align-items:center;justify-content:center}.wp-block-cover-image.is-position-center-right,.wp-block-cover.is-position-center-right{align-items:center;justify-content:flex-end}.wp-block-cover-image.is-position-bottom-left,.wp-block-cover.is-position-bottom-left{align-items:flex-end;justify-content:flex-start}.wp-block-cover-image.is-position-bottom-center,.wp-block-cover.is-position-bottom-center{align-items:flex-end;justify-content:center}.wp-block-cover-image.is-position-bottom-right,.wp-block-cover.is-position-bottom-right{align-items:flex-end;justify-content:flex-end}.wp-block-cover-image.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container,.wp-block-cover.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container{margin:0;width:auto}.wp-block-cover-image img.wp-block-cover__image-background,.wp-block-cover-image video.wp-block-cover__video-background,.wp-block-cover img.wp-block-cover__image-background,.wp-block-cover video.wp-block-cover__video-background{position:absolute;top:0;left:0;right:0;bottom:0;margin:0;padding:0;width:100%;height:100%;max-width:none;max-height:none;-o-object-fit:cover;object-fit:cover;outline:none;border:none;box-shadow:none}.wp-block-cover__image-background,.wp-block-cover__video-background{z-index:0}.wp-block-cover-image-text,.wp-block-cover-image-text a,.wp-block-cover-image-text a:active,.wp-block-cover-image-text a:focus,.wp-block-cover-image-text a:hover,.wp-block-cover-text,.wp-block-cover-text a,.wp-block-cover-text a:active,.wp-block-cover-text a:focus,.wp-block-cover-text a:hover,section.wp-block-cover-image h2,section.wp-block-cover-image h2 a,section.wp-block-cover-image h2 a:active,section.wp-block-cover-image h2 a:focus,section.wp-block-cover-image h2 a:hover{color:#fff}.wp-block-cover-image .wp-block-cover.has-left-content{justify-content:flex-start}.wp-block-cover-image .wp-block-cover.has-right-content{justify-content:flex-end}.wp-block-cover-image.has-left-content .wp-block-cover-image-text,.wp-block-cover.has-left-content .wp-block-cover-text,section.wp-block-cover-image.has-left-content>h2{margin-left:0;text-align:left}.wp-block-cover-image.has-right-content .wp-block-cover-image-text,.wp-block-cover.has-right-content .wp-block-cover-text,section.wp-block-cover-image.has-right-content>h2{margin-right:0;text-align:right}.wp-block-cover-image .wp-block-cover-image-text,.wp-block-cover .wp-block-cover-text,section.wp-block-cover-image>h2{font-size:2em;line-height:1.25;z-index:1;margin-bottom:0;max-width:840px;padding:.44em;text-align:center}.wp-block-embed.alignleft,.wp-block-embed.alignright,.wp-block[data-align=left]>[data-type="core/embed"],.wp-block[data-align=right]>[data-type="core/embed"]{max-width:360px;width:100%}.wp-block-embed.alignleft .wp-block-embed__wrapper,.wp-block-embed.alignright .wp-block-embed__wrapper,.wp-block[data-align=left]>[data-type="core/embed"] .wp-block-embed__wrapper,.wp-block[data-align=right]>[data-type="core/embed"] .wp-block-embed__wrapper{min-width:280px}.wp-block-cover .wp-block-embed{min-width:320px;min-height:240px}.wp-block-embed{margin-bottom:1em}.wp-block-embed figcaption{margin-top:.5em;margin-bottom:1em}.wp-block-embed iframe{max-width:100%}.wp-block-embed__wrapper{position:relative}.wp-embed-responsive .wp-has-aspect-ratio .wp-block-embed__wrapper:before{content:"";display:block;padding-top:50%}.wp-embed-responsive .wp-has-aspect-ratio iframe{position:absolute;top:0;right:0;bottom:0;left:0;height:100%;width:100%}.wp-embed-responsive .wp-embed-aspect-21-9 .wp-block-embed__wrapper:before{padding-top:42.85%}.wp-embed-responsive .wp-embed-aspect-18-9 .wp-block-embed__wrapper:before{padding-top:50%}.wp-embed-responsive .wp-embed-aspect-16-9 .wp-block-embed__wrapper:before{padding-top:56.25%}.wp-embed-responsive .wp-embed-aspect-4-3 .wp-block-embed__wrapper:before{padding-top:75%}.wp-embed-responsive .wp-embed-aspect-1-1 .wp-block-embed__wrapper:before{padding-top:100%}.wp-embed-responsive .wp-embed-aspect-9-16 .wp-block-embed__wrapper:before{padding-top:177.77%}.wp-embed-responsive .wp-embed-aspect-1-2 .wp-block-embed__wrapper:before{padding-top:200%}.wp-block-file{margin-bottom:1.5em}.wp-block-file.aligncenter{text-align:center}.wp-block-file.alignright{text-align:right}.wp-block-file .wp-block-file__button{background:#32373c;border-radius:2em;color:#fff;font-size:.8em;padding:.5em 1em}.wp-block-file a.wp-block-file__button{text-decoration:none}.wp-block-file a.wp-block-file__button:active,.wp-block-file a.wp-block-file__button:focus,.wp-block-file a.wp-block-file__button:hover,.wp-block-file a.wp-block-file__button:visited{box-shadow:none;color:#fff;opacity:.85;text-decoration:none}.wp-block-file *+.wp-block-file__button{margin-left:.75em}.blocks-gallery-grid,.wp-block-gallery{display:flex;flex-wrap:wrap;list-style-type:none;padding:0;margin:0}.blocks-gallery-grid .blocks-gallery-image,.blocks-gallery-grid .blocks-gallery-item,.wp-block-gallery .blocks-gallery-image,.wp-block-gallery .blocks-gallery-item{margin:0 1em 1em 0;display:flex;flex-grow:1;flex-direction:column;justify-content:center;position:relative;width:calc(50% - 1em)}.blocks-gallery-grid .blocks-gallery-image:nth-of-type(2n),.blocks-gallery-grid .blocks-gallery-item:nth-of-type(2n),.wp-block-gallery .blocks-gallery-image:nth-of-type(2n),.wp-block-gallery .blocks-gallery-item:nth-of-type(2n){margin-right:0}.blocks-gallery-grid .blocks-gallery-image figure,.blocks-gallery-grid .blocks-gallery-item figure,.wp-block-gallery .blocks-gallery-image figure,.wp-block-gallery .blocks-gallery-item figure{margin:0;height:100%}@supports ((position:-webkit-sticky) or (position:sticky)){.blocks-gallery-grid .blocks-gallery-image figure,.blocks-gallery-grid .blocks-gallery-item figure,.wp-block-gallery .blocks-gallery-image figure,.wp-block-gallery .blocks-gallery-item figure{display:flex;align-items:flex-end;justify-content:flex-start}}.blocks-gallery-grid .blocks-gallery-image img,.blocks-gallery-grid .blocks-gallery-item img,.wp-block-gallery .blocks-gallery-image img,.wp-block-gallery .blocks-gallery-item img{display:block;max-width:100%;height:auto;width:100%}@supports ((position:-webkit-sticky) or (position:sticky)){.blocks-gallery-grid .blocks-gallery-image img,.blocks-gallery-grid .blocks-gallery-item img,.wp-block-gallery .blocks-gallery-image img,.wp-block-gallery .blocks-gallery-item img{width:auto}}.blocks-gallery-grid .blocks-gallery-image figcaption,.blocks-gallery-grid .blocks-gallery-item figcaption,.wp-block-gallery .blocks-gallery-image figcaption,.wp-block-gallery .blocks-gallery-item figcaption{position:absolute;bottom:0;width:100%;max-height:100%;overflow:auto;padding:3em .77em .7em;color:#fff;text-align:center;font-size:.8em;background:linear-gradient(0deg,rgba(0,0,0,.7),rgba(0,0,0,.3) 70%,transparent);box-sizing:border-box;margin:0}.blocks-gallery-grid .blocks-gallery-image figcaption img,.blocks-gallery-grid .blocks-gallery-item figcaption img,.wp-block-gallery .blocks-gallery-image figcaption img,.wp-block-gallery .blocks-gallery-item figcaption img{display:inline}.blocks-gallery-grid figcaption,.wp-block-gallery figcaption{flex-grow:1}.blocks-gallery-grid.is-cropped .blocks-gallery-image a,.blocks-gallery-grid.is-cropped .blocks-gallery-image img,.blocks-gallery-grid.is-cropped .blocks-gallery-item a,.blocks-gallery-grid.is-cropped .blocks-gallery-item img,.wp-block-gallery.is-cropped .blocks-gallery-image a,.wp-block-gallery.is-cropped .blocks-gallery-image img,.wp-block-gallery.is-cropped .blocks-gallery-item a,.wp-block-gallery.is-cropped .blocks-gallery-item img{width:100%}@supports ((position:-webkit-sticky) or (position:sticky)){.blocks-gallery-grid.is-cropped .blocks-gallery-image a,.blocks-gallery-grid.is-cropped .blocks-gallery-image img,.blocks-gallery-grid.is-cropped .blocks-gallery-item a,.blocks-gallery-grid.is-cropped .blocks-gallery-item img,.wp-block-gallery.is-cropped .blocks-gallery-image a,.wp-block-gallery.is-cropped .blocks-gallery-image img,.wp-block-gallery.is-cropped .blocks-gallery-item a,.wp-block-gallery.is-cropped .blocks-gallery-item img{height:100%;flex:1;-o-object-fit:cover;object-fit:cover}}.blocks-gallery-grid.columns-1 .blocks-gallery-image,.blocks-gallery-grid.columns-1 .blocks-gallery-item,.wp-block-gallery.columns-1 .blocks-gallery-image,.wp-block-gallery.columns-1 .blocks-gallery-item{width:100%;margin-right:0}@media (min-width:600px){.blocks-gallery-grid.columns-3 .blocks-gallery-image,.blocks-gallery-grid.columns-3 .blocks-gallery-item,.wp-block-gallery.columns-3 .blocks-gallery-image,.wp-block-gallery.columns-3 .blocks-gallery-item{width:calc(33.33333% - .66667em);margin-right:1em}.blocks-gallery-grid.columns-4 .blocks-gallery-image,.blocks-gallery-grid.columns-4 .blocks-gallery-item,.wp-block-gallery.columns-4 .blocks-gallery-image,.wp-block-gallery.columns-4 .blocks-gallery-item{width:calc(25% - .75em);margin-right:1em}.blocks-gallery-grid.columns-5 .blocks-gallery-image,.blocks-gallery-grid.columns-5 .blocks-gallery-item,.wp-block-gallery.columns-5 .blocks-gallery-image,.wp-block-gallery.columns-5 .blocks-gallery-item{width:calc(20% - .8em);margin-right:1em}.blocks-gallery-grid.columns-6 .blocks-gallery-image,.blocks-gallery-grid.columns-6 .blocks-gallery-item,.wp-block-gallery.columns-6 .blocks-gallery-image,.wp-block-gallery.columns-6 .blocks-gallery-item{width:calc(16.66667% - .83333em);margin-right:1em}.blocks-gallery-grid.columns-7 .blocks-gallery-image,.blocks-gallery-grid.columns-7 .blocks-gallery-item,.wp-block-gallery.columns-7 .blocks-gallery-image,.wp-block-gallery.columns-7 .blocks-gallery-item{width:calc(14.28571% - .85714em);margin-right:1em}.blocks-gallery-grid.columns-8 .blocks-gallery-image,.blocks-gallery-grid.columns-8 .blocks-gallery-item,.wp-block-gallery.columns-8 .blocks-gallery-image,.wp-block-gallery.columns-8 .blocks-gallery-item{width:calc(12.5% - .875em);margin-right:1em}.blocks-gallery-grid.columns-1 .blocks-gallery-image:nth-of-type(1n),.blocks-gallery-grid.columns-1 .blocks-gallery-item:nth-of-type(1n),.blocks-gallery-grid.columns-2 .blocks-gallery-image:nth-of-type(2n),.blocks-gallery-grid.columns-2 .blocks-gallery-item:nth-of-type(2n),.blocks-gallery-grid.columns-3 .blocks-gallery-image:nth-of-type(3n),.blocks-gallery-grid.columns-3 .blocks-gallery-item:nth-of-type(3n),.blocks-gallery-grid.columns-4 .blocks-gallery-image:nth-of-type(4n),.blocks-gallery-grid.columns-4 .blocks-gallery-item:nth-of-type(4n),.blocks-gallery-grid.columns-5 .blocks-gallery-image:nth-of-type(5n),.blocks-gallery-grid.columns-5 .blocks-gallery-item:nth-of-type(5n),.blocks-gallery-grid.columns-6 .blocks-gallery-image:nth-of-type(6n),.blocks-gallery-grid.columns-6 .blocks-gallery-item:nth-of-type(6n),.blocks-gallery-grid.columns-7 .blocks-gallery-image:nth-of-type(7n),.blocks-gallery-grid.columns-7 .blocks-gallery-item:nth-of-type(7n),.blocks-gallery-grid.columns-8 .blocks-gallery-image:nth-of-type(8n),.blocks-gallery-grid.columns-8 .blocks-gallery-item:nth-of-type(8n),.wp-block-gallery.columns-1 .blocks-gallery-image:nth-of-type(1n),.wp-block-gallery.columns-1 .blocks-gallery-item:nth-of-type(1n),.wp-block-gallery.columns-2 .blocks-gallery-image:nth-of-type(2n),.wp-block-gallery.columns-2 .blocks-gallery-item:nth-of-type(2n),.wp-block-gallery.columns-3 .blocks-gallery-image:nth-of-type(3n),.wp-block-gallery.columns-3 .blocks-gallery-item:nth-of-type(3n),.wp-block-gallery.columns-4 .blocks-gallery-image:nth-of-type(4n),.wp-block-gallery.columns-4 .blocks-gallery-item:nth-of-type(4n),.wp-block-gallery.columns-5 .blocks-gallery-image:nth-of-type(5n),.wp-block-gallery.columns-5 .blocks-gallery-item:nth-of-type(5n),.wp-block-gallery.columns-6 .blocks-gallery-image:nth-of-type(6n),.wp-block-gallery.columns-6 .blocks-gallery-item:nth-of-type(6n),.wp-block-gallery.columns-7 .blocks-gallery-image:nth-of-type(7n),.wp-block-gallery.columns-7 .blocks-gallery-item:nth-of-type(7n),.wp-block-gallery.columns-8 .blocks-gallery-image:nth-of-type(8n),.wp-block-gallery.columns-8 .blocks-gallery-item:nth-of-type(8n){margin-right:0}}.blocks-gallery-grid .blocks-gallery-image:last-child,.blocks-gallery-grid .blocks-gallery-item:last-child,.wp-block-gallery .blocks-gallery-image:last-child,.wp-block-gallery .blocks-gallery-item:last-child{margin-right:0}.blocks-gallery-grid.alignleft,.blocks-gallery-grid.alignright,.wp-block-gallery.alignleft,.wp-block-gallery.alignright{max-width:420px;width:100%}.blocks-gallery-grid.aligncenter .blocks-gallery-item figure,.wp-block-gallery.aligncenter .blocks-gallery-item figure{justify-content:center}.wp-block-group{box-sizing:border-box}h1.has-background,h2.has-background,h3.has-background,h4.has-background,h5.has-background,h6.has-background{padding:1.25em 2.375em}.wp-block-image{margin-bottom:1em}.wp-block-image img{max-width:100%}.wp-block-image:not(.is-style-rounded) img{border-radius:inherit}.wp-block-image.aligncenter{text-align:center}.wp-block-image.alignfull img,.wp-block-image.alignwide img{width:100%}.wp-block-image .aligncenter,.wp-block-image .alignleft,.wp-block-image .alignright{display:table}.wp-block-image .aligncenter>figcaption,.wp-block-image .alignleft>figcaption,.wp-block-image .alignright>figcaption{display:table-caption;caption-side:bottom}.wp-block-image .alignleft{float:left;margin:.5em 1em .5em 0}.wp-block-image .alignright{float:right;margin:.5em 0 .5em 1em}.wp-block-image .aligncenter{margin-left:auto;margin-right:auto}.wp-block-image figcaption{margin-top:.5em;margin-bottom:1em}.wp-block-image.is-style-circle-mask img,.wp-block-image.is-style-rounded img{border-radius:9999px}@supports ((-webkit-mask-image:none) or (mask-image:none)) or (-webkit-mask-image:none){.wp-block-image.is-style-circle-mask img{-webkit-mask-image:url('data:image/svg+xml;utf8,');mask-image:url('data:image/svg+xml;utf8,');mask-mode:alpha;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-position:center;mask-position:center;border-radius:0}}.wp-block-latest-comments__comment{line-height:1.1;list-style:none;margin-bottom:1em}.has-avatars .wp-block-latest-comments__comment{min-height:2.25em;list-style:none}.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt,.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta{margin-left:3.25em}.has-dates .wp-block-latest-comments__comment,.has-excerpts .wp-block-latest-comments__comment{line-height:1.5}.wp-block-latest-comments__comment-excerpt p{font-size:.875em;line-height:1.8;margin:.36em 0 1.4em}.wp-block-latest-comments__comment-date{display:block;font-size:.75em}.wp-block-latest-comments .avatar,.wp-block-latest-comments__comment-avatar{border-radius:1.5em;display:block;float:left;height:2.5em;margin-right:.75em;width:2.5em}.wp-block-latest-posts.alignleft{margin-right:2em}.wp-block-latest-posts.alignright{margin-left:2em}.wp-block-latest-posts.wp-block-latest-posts__list{list-style:none}.wp-block-latest-posts.wp-block-latest-posts__list li{clear:both}.wp-block-latest-posts.is-grid{display:flex;flex-wrap:wrap;padding:0}.wp-block-latest-posts.is-grid li{margin:0 1.25em 1.25em 0;width:100%}@media (min-width:600px){.wp-block-latest-posts.columns-2 li{width:calc(50% - .625em)}.wp-block-latest-posts.columns-2 li:nth-child(2n){margin-right:0}.wp-block-latest-posts.columns-3 li{width:calc(33.33333% - .83333em)}.wp-block-latest-posts.columns-3 li:nth-child(3n){margin-right:0}.wp-block-latest-posts.columns-4 li{width:calc(25% - .9375em)}.wp-block-latest-posts.columns-4 li:nth-child(4n){margin-right:0}.wp-block-latest-posts.columns-5 li{width:calc(20% - 1em)}.wp-block-latest-posts.columns-5 li:nth-child(5n){margin-right:0}.wp-block-latest-posts.columns-6 li{width:calc(16.66667% - 1.04167em)}.wp-block-latest-posts.columns-6 li:nth-child(6n){margin-right:0}}.wp-block-latest-posts__post-author,.wp-block-latest-posts__post-date{display:block;color:#555;font-size:.8125em}.wp-block-latest-posts__post-excerpt{margin-top:.5em;margin-bottom:1em}.wp-block-latest-posts__featured-image a{display:inline-block}.wp-block-latest-posts__featured-image img{height:auto;width:auto}.wp-block-latest-posts__featured-image.alignleft{margin-right:1em}.wp-block-latest-posts__featured-image.alignright{margin-left:1em}.wp-block-latest-posts__featured-image.aligncenter{margin-bottom:1em;text-align:center}.block-editor-image-alignment-control__row .components-base-control__field{display:flex;justify-content:space-between;align-items:center}.block-editor-image-alignment-control__row .components-base-control__field .components-base-control__label{margin-bottom:0}ol.has-background,ul.has-background{padding:1.25em 2.375em}.wp-block-media-text{ + /*!rtl:begin:ignore*/direction:ltr; + /*!rtl:end:ignore*/display:-ms-grid;display:grid;-ms-grid-columns:50% 1fr;grid-template-columns:50% 1fr;-ms-grid-rows:auto;grid-template-rows:auto}.wp-block-media-text.has-media-on-the-right{-ms-grid-columns:1fr 50%;grid-template-columns:1fr 50%}.wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__content,.wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__media{-ms-grid-row-align:start;align-self:start}.wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__content,.wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__media,.wp-block-media-text .wp-block-media-text__content,.wp-block-media-text .wp-block-media-text__media{-ms-grid-row-align:center;align-self:center}.wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__content,.wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__media{-ms-grid-row-align:end;align-self:end}.wp-block-media-text .wp-block-media-text__media{ + /*!rtl:begin:ignore*/-ms-grid-column:1;grid-column:1;-ms-grid-row:1;grid-row:1; + /*!rtl:end:ignore*/margin:0}.wp-block-media-text .wp-block-media-text__content{direction:ltr; + /*!rtl:begin:ignore*/-ms-grid-column:2;grid-column:2;-ms-grid-row:1;grid-row:1; + /*!rtl:end:ignore*/padding:0 8%;word-break:break-word}.wp-block-media-text.has-media-on-the-right .wp-block-media-text__media{ + /*!rtl:begin:ignore*/-ms-grid-column:2;grid-column:2;-ms-grid-row:1;grid-row:1 + /*!rtl:end:ignore*/}.wp-block-media-text.has-media-on-the-right .wp-block-media-text__content{ + /*!rtl:begin:ignore*/-ms-grid-column:1;grid-column:1;-ms-grid-row:1;grid-row:1 + /*!rtl:end:ignore*/}.wp-block-media-text__media img,.wp-block-media-text__media video{max-width:unset;width:100%;vertical-align:middle}.wp-block-media-text.is-image-fill .wp-block-media-text__media{height:100%;min-height:250px;background-size:cover}.wp-block-media-text.is-image-fill .wp-block-media-text__media>a{display:block;height:100%}.wp-block-media-text.is-image-fill .wp-block-media-text__media img{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}@media (max-width:600px){.wp-block-media-text.is-stacked-on-mobile{-ms-grid-columns:100%!important;grid-template-columns:100%!important}.wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__media{-ms-grid-column:1;grid-column:1;-ms-grid-row:1;grid-row:1}.wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content{-ms-grid-column:1;grid-column:1;-ms-grid-row:2;grid-row:2}}.wp-block-navigation:not(.has-background) .wp-block-navigation__container .wp-block-navigation__container{color:#1e1e1e;background-color:#fff;min-width:200px}.items-justified-left>ul{justify-content:flex-start}.items-justified-center>ul{justify-content:center}.items-justified-right>ul{justify-content:flex-end}.items-justified-space-between>ul{justify-content:space-between}.wp-block-navigation-link{display:flex;align-items:center;position:relative;margin:0}.wp-block-navigation-link .wp-block-navigation__container:empty{display:none}.wp-block-navigation__container{list-style:none;margin:0;padding-left:0;display:flex;flex-wrap:wrap}.is-vertical .wp-block-navigation__container{display:block}.has-child>.wp-block-navigation-link__content{padding-right:.5em}.has-child .wp-block-navigation__container{border:1px solid rgba(0,0,0,.15);background-color:inherit;color:inherit;position:absolute;left:0;top:100%;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;z-index:2;opacity:0;transition:opacity .1s linear;visibility:hidden}.has-child .wp-block-navigation__container>.wp-block-navigation-link>.wp-block-navigation-link__content{flex-grow:1}.has-child .wp-block-navigation__container>.wp-block-navigation-link>.wp-block-navigation-link__submenu-icon{padding-right:.5em}@media (min-width:782px){.has-child .wp-block-navigation__container{left:1.5em}.has-child .wp-block-navigation__container .wp-block-navigation__container{left:100%;top:-1px}.has-child .wp-block-navigation__container .wp-block-navigation__container:before{content:"";position:absolute;right:100%;height:100%;display:block;width:.5em;background:transparent}.has-child .wp-block-navigation__container .wp-block-navigation-link__submenu-icon svg{transform:rotate(0)}}.has-child:hover{cursor:pointer}.has-child:hover>.wp-block-navigation__container{visibility:visible;opacity:1;display:flex;flex-direction:column}.has-child:focus-within{cursor:pointer}.has-child:focus-within>.wp-block-navigation__container{visibility:visible;opacity:1;display:flex;flex-direction:column}.wp-block-navigation[style*=text-decoration] .wp-block-navigation-link,.wp-block-navigation[style*=text-decoration] .wp-block-navigation-link__content,.wp-block-navigation[style*=text-decoration] .wp-block-navigation-link__content:active,.wp-block-navigation[style*=text-decoration] .wp-block-navigation-link__content:focus,.wp-block-navigation[style*=text-decoration] .wp-block-navigation__container{text-decoration:inherit}.wp-block-navigation:not([style*=text-decoration]) .wp-block-navigation-link__content,.wp-block-navigation:not([style*=text-decoration]) .wp-block-navigation-link__content:active,.wp-block-navigation:not([style*=text-decoration]) .wp-block-navigation-link__content:focus{text-decoration:none}.wp-block-navigation-link__content{color:inherit;padding:.5em 1em}.wp-block-navigation-link__content+.wp-block-navigation-link__content{padding-top:0}.has-text-color .wp-block-navigation-link__content{color:inherit}.wp-block-navigation-link__label{word-break:normal;overflow-wrap:break-word}.wp-block-navigation-link__submenu-icon{height:inherit;padding:.375em 1em .375em 0}.wp-block-navigation-link__submenu-icon svg{fill:currentColor}@media (min-width:782px){.wp-block-navigation-link__submenu-icon svg{transform:rotate(90deg)}}.is-small-text{font-size:.875em}.is-regular-text{font-size:1em}.is-large-text{font-size:2.25em}.is-larger-text{font-size:3em}.has-drop-cap:not(:focus):first-letter{float:left;font-size:8.4em;line-height:.68;font-weight:100;margin:.05em .1em 0 0;text-transform:uppercase;font-style:normal}p.has-background{padding:1.25em 2.375em}p.has-text-color a{color:inherit}.wp-block-post-author{display:flex;flex-wrap:wrap}.wp-block-post-author__byline{width:100%;margin-top:0;margin-bottom:0;font-size:.5em}.wp-block-post-author__avatar{margin-right:1em}.wp-block-post-author__bio{margin-bottom:.7em;font-size:.7em}.wp-block-post-author__content{flex-grow:1;flex-basis:0}.wp-block-post-author__name{font-weight:700;margin:0}.wp-block-post-comments-form input[type=submit]{color:#fff;background-color:#32373c;border:none;border-radius:1.55em;box-shadow:none;cursor:pointer;display:inline-block;font-size:1.125em;padding:.667em 1.333em;text-align:center;text-decoration:none;overflow-wrap:break-word}.wp-block-post-comments-form input[type=submit]:active,.wp-block-post-comments-form input[type=submit]:focus,.wp-block-post-comments-form input[type=submit]:hover,.wp-block-post-comments-form input[type=submit]:visited{color:#fff}.wp-block-preformatted{white-space:pre-wrap}.wp-block-pullquote{padding:3em 0;margin-left:0;margin-right:0;text-align:center}.wp-block-pullquote.alignleft,.wp-block-pullquote.alignright{max-width:420px}.wp-block-pullquote.alignleft p,.wp-block-pullquote.alignright p{font-size:1.25em}.wp-block-pullquote p{font-size:1.75em;line-height:1.6}.wp-block-pullquote cite,.wp-block-pullquote footer{position:relative}.wp-block-pullquote .has-text-color a{color:inherit}.wp-block-pullquote:not(.is-style-solid-color){background:none}.wp-block-pullquote.is-style-solid-color{border:none}.wp-block-pullquote.is-style-solid-color blockquote{margin-left:auto;margin-right:auto;text-align:left;max-width:60%}.wp-block-pullquote.is-style-solid-color blockquote p{margin-top:0;margin-bottom:0;font-size:2em}.wp-block-pullquote.is-style-solid-color blockquote cite{text-transform:none;font-style:normal}.wp-block-pullquote cite{color:inherit}.wp-block-query-loop{max-width:100%;list-style:none;padding:0}.wp-block-query-loop li{clear:both}.wp-block-query-loop.is-flex-container{flex-direction:row;display:flex;flex-wrap:wrap}.wp-block-query-loop.is-flex-container li{margin:0 0 1.25em;width:100%}@media (min-width:600px){.wp-block-query-loop.is-flex-container li{margin-right:1.25em}.wp-block-query-loop.is-flex-container.is-flex-container.columns-2>li{width:calc(50% - .625em)}.wp-block-query-loop.is-flex-container.is-flex-container.columns-2>li:nth-child(2n){margin-right:0}.wp-block-query-loop.is-flex-container.is-flex-container.columns-3>li{width:calc(33.33333% - .83333em)}.wp-block-query-loop.is-flex-container.is-flex-container.columns-3>li:nth-child(3n){margin-right:0}.wp-block-query-loop.is-flex-container.is-flex-container.columns-4>li{width:calc(25% - .9375em)}.wp-block-query-loop.is-flex-container.is-flex-container.columns-4>li:nth-child(4n){margin-right:0}.wp-block-query-loop.is-flex-container.is-flex-container.columns-5>li{width:calc(20% - 1em)}.wp-block-query-loop.is-flex-container.is-flex-container.columns-5>li:nth-child(5n){margin-right:0}.wp-block-query-loop.is-flex-container.is-flex-container.columns-6>li{width:calc(16.66667% - 1.04167em)}.wp-block-query-loop.is-flex-container.is-flex-container.columns-6>li:nth-child(6n){margin-right:0}}.wp-block-query-pagination{display:flex;flex-direction:row;flex-wrap:wrap}.wp-block-query-pagination>.wp-block-query-pagination-next,.wp-block-query-pagination>.wp-block-query-pagination-numbers,.wp-block-query-pagination>.wp-block-query-pagination-previous{display:inline-block;margin-right:.5em;margin-bottom:.5em}.wp-block-query-pagination>.wp-block-query-pagination-next:last-child,.wp-block-query-pagination>.wp-block-query-pagination-numbers:last-child,.wp-block-query-pagination>.wp-block-query-pagination-previous:last-child{margin-right:0}.wp-block-quote.is-large,.wp-block-quote.is-style-large{margin-bottom:1em;padding:0 1em}.wp-block-quote.is-large p,.wp-block-quote.is-style-large p{font-size:1.5em;font-style:italic;line-height:1.6}.wp-block-quote.is-large cite,.wp-block-quote.is-large footer,.wp-block-quote.is-style-large cite,.wp-block-quote.is-style-large footer{font-size:1.125em;text-align:right}.wp-block-rss.wp-block-rss{box-sizing:border-box}.wp-block-rss.alignleft{margin-right:2em}.wp-block-rss.alignright{margin-left:2em}.wp-block-rss.is-grid{display:flex;flex-wrap:wrap;padding:0;list-style:none}.wp-block-rss.is-grid li{margin:0 1em 1em 0;width:100%}@media (min-width:600px){.wp-block-rss.columns-2 li{width:calc(50% - 1em)}.wp-block-rss.columns-3 li{width:calc(33.33333% - 1em)}.wp-block-rss.columns-4 li{width:calc(25% - 1em)}.wp-block-rss.columns-5 li{width:calc(20% - 1em)}.wp-block-rss.columns-6 li{width:calc(16.66667% - 1em)}}.wp-block-rss__item-author,.wp-block-rss__item-publish-date{display:block;color:#555;font-size:.8125em}.wp-block-search .wp-block-search__button{background:#f7f7f7;border:1px solid #ccc;padding:.375em .625em;color:#32373c;margin-left:.625em;word-break:normal}.wp-block-search .wp-block-search__button.has-icon{line-height:0}.wp-block-search .wp-block-search__button svg{min-width:1.5em;min-height:1.5em}.wp-block-search .wp-block-search__inside-wrapper{display:flex;flex:auto;flex-wrap:nowrap;max-width:100%}.wp-block-search .wp-block-search__label{width:100%}.wp-block-search .wp-block-search__input{flex-grow:1;min-width:3em;border:1px solid #949494}.wp-block-search.wp-block-search__button-only .wp-block-search__button{margin-left:0}.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper{padding:4px;border:1px solid #949494}.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input{border-radius:0;border:none;padding:0 0 0 .25em}.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:focus{outline:none}.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button{padding:.125em .5em}.wp-block-separator.is-style-wide{border-bottom-width:1px}.wp-block-separator.is-style-dots{background:none!important;border:none;text-align:center;max-width:none;line-height:1;height:auto}.wp-block-separator.is-style-dots:before{content:"···";color:currentColor;font-size:1.5em;letter-spacing:2em;padding-left:2em;font-family:serif}.wp-block-custom-logo{line-height:0}.wp-block-custom-logo .aligncenter{display:table}.wp-block-custom-logo.is-style-rounded img{border-radius:9999px}.wp-block-social-links{display:flex;flex-wrap:wrap;justify-content:flex-start;padding-left:0;padding-right:0;text-indent:0;margin-left:0}.wp-block-social-links .wp-social-link a,.wp-block-social-links .wp-social-link a:hover{text-decoration:none;border-bottom:0;box-shadow:none}.wp-block-social-links .wp-social-link.wp-social-link.wp-social-link{margin:4px 8px 4px 0}.wp-block-social-links .wp-social-link a{padding:.25em}.wp-block-social-links .wp-social-link svg{width:1em;height:1em}.wp-block-social-links.has-small-icon-size{font-size:16px}.wp-block-social-links,.wp-block-social-links.has-normal-icon-size{font-size:24px}.wp-block-social-links.has-large-icon-size{font-size:36px}.wp-block-social-links.has-huge-icon-size{font-size:48px}.wp-block-social-links.aligncenter{justify-content:center;display:flex}.wp-block-social-links.alignright{justify-content:flex-end}.wp-social-link{display:block;border-radius:9999px;transition:transform .1s ease;height:auto}@media (prefers-reduced-motion:reduce){.wp-social-link{transition-duration:0s}}.wp-social-link a{display:block;line-height:0;transition:transform .1s ease}.wp-social-link a,.wp-social-link a:active,.wp-social-link a:hover,.wp-social-link a:visited,.wp-social-link svg{color:currentColor;fill:currentColor}.wp-social-link:hover{transform:scale(1.1)}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link{background-color:#f0f0f0;color:#444}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-amazon{background-color:#f90;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-bandcamp{background-color:#1ea0c3;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-behance{background-color:#0757fe;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-codepen{background-color:#1e1f26;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-deviantart{background-color:#02e49b;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dribbble{background-color:#e94c89;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dropbox{background-color:#4280ff;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-etsy{background-color:#f45800;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-facebook{background-color:#1778f2;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-fivehundredpx{background-color:#000;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-flickr{background-color:#0461dd;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-foursquare{background-color:#e65678;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-github{background-color:#24292d;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-goodreads{background-color:#eceadd;color:#382110}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-google{background-color:#ea4434;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-instagram{background-color:#f00075;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-lastfm{background-color:#e21b24;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-linkedin{background-color:#0d66c2;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-mastodon{background-color:#3288d4;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-medium{background-color:#02ab6c;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-meetup{background-color:#f6405f;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-patreon{background-color:#ff424d;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pinterest{background-color:#e60122;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pocket{background-color:#ef4155;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-reddit{background-color:#fe4500;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-skype{background-color:#0478d7;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-snapchat{background-color:#fefc00;color:#fff;stroke:#000}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-soundcloud{background-color:#ff5600;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-spotify{background-color:#1bd760;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-telegram{background-color:#2aabee;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tiktok{background-color:#000;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tumblr{background-color:#011835;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitch{background-color:#6440a4;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitter{background-color:#1da1f2;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vimeo{background-color:#1eb7ea;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vk{background-color:#4680c2;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-wordpress{background-color:#3499cd;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-yelp{background-color:#d32422;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-youtube{background-color:red;color:#fff}.wp-block-social-links.is-style-logos-only .wp-social-link{background:none;padding:4px}.wp-block-social-links.is-style-logos-only .wp-social-link-amazon{color:#f90}.wp-block-social-links.is-style-logos-only .wp-social-link-bandcamp{color:#1ea0c3}.wp-block-social-links.is-style-logos-only .wp-social-link-behance{color:#0757fe}.wp-block-social-links.is-style-logos-only .wp-social-link-codepen{color:#1e1f26}.wp-block-social-links.is-style-logos-only .wp-social-link-deviantart{color:#02e49b}.wp-block-social-links.is-style-logos-only .wp-social-link-dribbble{color:#e94c89}.wp-block-social-links.is-style-logos-only .wp-social-link-dropbox{color:#4280ff}.wp-block-social-links.is-style-logos-only .wp-social-link-etsy{color:#f45800}.wp-block-social-links.is-style-logos-only .wp-social-link-facebook{color:#1778f2}.wp-block-social-links.is-style-logos-only .wp-social-link-fivehundredpx{color:#000}.wp-block-social-links.is-style-logos-only .wp-social-link-flickr{color:#0461dd}.wp-block-social-links.is-style-logos-only .wp-social-link-foursquare{color:#e65678}.wp-block-social-links.is-style-logos-only .wp-social-link-github{color:#24292d}.wp-block-social-links.is-style-logos-only .wp-social-link-goodreads{color:#382110}.wp-block-social-links.is-style-logos-only .wp-social-link-google{color:#ea4434}.wp-block-social-links.is-style-logos-only .wp-social-link-instagram{color:#f00075}.wp-block-social-links.is-style-logos-only .wp-social-link-lastfm{color:#e21b24}.wp-block-social-links.is-style-logos-only .wp-social-link-linkedin{color:#0d66c2}.wp-block-social-links.is-style-logos-only .wp-social-link-mastodon{color:#3288d4}.wp-block-social-links.is-style-logos-only .wp-social-link-medium{color:#02ab6c}.wp-block-social-links.is-style-logos-only .wp-social-link-meetup{color:#f6405f}.wp-block-social-links.is-style-logos-only .wp-social-link-patreon{color:#ff424d}.wp-block-social-links.is-style-logos-only .wp-social-link-pinterest{color:#e60122}.wp-block-social-links.is-style-logos-only .wp-social-link-pocket{color:#ef4155}.wp-block-social-links.is-style-logos-only .wp-social-link-reddit{color:#fe4500}.wp-block-social-links.is-style-logos-only .wp-social-link-skype{color:#0478d7}.wp-block-social-links.is-style-logos-only .wp-social-link-snapchat{color:#fff;stroke:#000}.wp-block-social-links.is-style-logos-only .wp-social-link-soundcloud{color:#ff5600}.wp-block-social-links.is-style-logos-only .wp-social-link-spotify{color:#1bd760}.wp-block-social-links.is-style-logos-only .wp-social-link-telegram{color:#2aabee}.wp-block-social-links.is-style-logos-only .wp-social-link-tiktok{color:#000}.wp-block-social-links.is-style-logos-only .wp-social-link-tumblr{color:#011835}.wp-block-social-links.is-style-logos-only .wp-social-link-twitch{color:#6440a4}.wp-block-social-links.is-style-logos-only .wp-social-link-twitter{color:#1da1f2}.wp-block-social-links.is-style-logos-only .wp-social-link-vimeo{color:#1eb7ea}.wp-block-social-links.is-style-logos-only .wp-social-link-vk{color:#4680c2}.wp-block-social-links.is-style-logos-only .wp-social-link-wordpress{color:#3499cd}.wp-block-social-links.is-style-logos-only .wp-social-link-yelp{background-color:#d32422;color:#fff}.wp-block-social-links.is-style-logos-only .wp-social-link-youtube{color:red}.wp-block-social-links.is-style-pill-shape .wp-social-link{width:auto}.wp-block-social-links.is-style-pill-shape .wp-social-link a{padding-left:.66667em;padding-right:.66667em}.wp-block-spacer{clear:both}p.wp-block-subhead{font-size:1.1em;font-style:italic;opacity:.75}.wp-block-tag-cloud.aligncenter{text-align:center}.wp-block-tag-cloud.alignfull{padding-left:1em;padding-right:1em}.wp-block-table{overflow-x:auto}.wp-block-table table{width:100%}.wp-block-table .has-fixed-layout{table-layout:fixed;width:100%}.wp-block-table .has-fixed-layout td,.wp-block-table .has-fixed-layout th{word-break:break-word}.wp-block-table.aligncenter,.wp-block-table.alignleft,.wp-block-table.alignright{display:table;width:auto}.wp-block-table.aligncenter td,.wp-block-table.aligncenter th,.wp-block-table.alignleft td,.wp-block-table.alignleft th,.wp-block-table.alignright td,.wp-block-table.alignright th{word-break:break-word}.wp-block-table .has-subtle-light-gray-background-color{background-color:#f3f4f5}.wp-block-table .has-subtle-pale-green-background-color{background-color:#e9fbe5}.wp-block-table .has-subtle-pale-blue-background-color{background-color:#e7f5fe}.wp-block-table .has-subtle-pale-pink-background-color{background-color:#fcf0ef}.wp-block-table.is-style-stripes{border-spacing:0;border-collapse:inherit;background-color:transparent;border-bottom:1px solid #f0f0f0}.wp-block-table.is-style-stripes tbody tr:nth-child(odd){background-color:#f0f0f0}.wp-block-table.is-style-stripes.has-subtle-light-gray-background-color tbody tr:nth-child(odd){background-color:#f3f4f5}.wp-block-table.is-style-stripes.has-subtle-pale-green-background-color tbody tr:nth-child(odd){background-color:#e9fbe5}.wp-block-table.is-style-stripes.has-subtle-pale-blue-background-color tbody tr:nth-child(odd){background-color:#e7f5fe}.wp-block-table.is-style-stripes.has-subtle-pale-pink-background-color tbody tr:nth-child(odd){background-color:#fcf0ef}.wp-block-table.is-style-stripes td,.wp-block-table.is-style-stripes th{border-color:transparent}.wp-block-text-columns,.wp-block-text-columns.aligncenter{display:flex}.wp-block-text-columns .wp-block-column{margin:0 1em;padding:0}.wp-block-text-columns .wp-block-column:first-child{margin-left:0}.wp-block-text-columns .wp-block-column:last-child{margin-right:0}.wp-block-text-columns.columns-2 .wp-block-column{width:50%}.wp-block-text-columns.columns-3 .wp-block-column{width:33.33333%}.wp-block-text-columns.columns-4 .wp-block-column{width:25%}pre.wp-block-verse{font-family:inherit;overflow:auto;white-space:pre-wrap}.wp-block-video{margin-left:0;margin-right:0}.wp-block-video video{width:100%}@supports ((position:-webkit-sticky) or (position:sticky)){.wp-block-video [poster]{-o-object-fit:cover;object-fit:cover}}.wp-block-video.aligncenter{text-align:center}.wp-block-video figcaption{margin-top:.5em;margin-bottom:1em}.wp-block-post-featured-image a{display:inline-block}.wp-block-post-featured-image img{max-width:100%;height:auto}:root .has-pale-pink-background-color{background-color:#f78da7}:root .has-vivid-red-background-color{background-color:#cf2e2e}:root .has-luminous-vivid-orange-background-color{background-color:#ff6900}:root .has-luminous-vivid-amber-background-color{background-color:#fcb900}:root .has-light-green-cyan-background-color{background-color:#7bdcb5}:root .has-vivid-green-cyan-background-color{background-color:#00d084}:root .has-pale-cyan-blue-background-color{background-color:#8ed1fc}:root .has-vivid-cyan-blue-background-color{background-color:#0693e3}:root .has-vivid-purple-background-color{background-color:#9b51e0}:root .has-white-background-color{background-color:#fff}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-cyan-bluish-gray-background-color{background-color:#abb8c3}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-black-background-color{background-color:#000}:root .has-pale-pink-color{color:#f78da7}:root .has-vivid-red-color{color:#cf2e2e}:root .has-luminous-vivid-orange-color{color:#ff6900}:root .has-luminous-vivid-amber-color{color:#fcb900}:root .has-light-green-cyan-color{color:#7bdcb5}:root .has-vivid-green-cyan-color{color:#00d084}:root .has-pale-cyan-blue-color{color:#8ed1fc}:root .has-vivid-cyan-blue-color{color:#0693e3}:root .has-vivid-purple-color{color:#9b51e0}:root .has-white-color{color:#fff}:root .has-very-light-gray-color{color:#eee}:root .has-cyan-bluish-gray-color{color:#abb8c3}:root .has-very-dark-gray-color{color:#313131}:root .has-black-color{color:#000}:root .has-vivid-cyan-blue-to-vivid-purple-gradient-background{background:linear-gradient(135deg,#0693e3,#9b51e0)}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-light-green-cyan-to-vivid-green-cyan-gradient-background{background:linear-gradient(135deg,#7adcb4,#00d082)}:root .has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background:linear-gradient(135deg,#fcb900,#ff6900)}:root .has-luminous-vivid-orange-to-vivid-red-gradient-background{background:linear-gradient(135deg,#ff6900,#cf2e2e)}:root .has-very-light-gray-to-cyan-bluish-gray-gradient-background{background:linear-gradient(135deg,#eee,#a9b8c3)}:root .has-cool-to-warm-spectrum-gradient-background{background:linear-gradient(135deg,#4aeadc,#9778d1 20%,#cf2aba 40%,#ee2c82 60%,#fb6962 80%,#fef84c)}:root .has-blush-light-purple-gradient-background{background:linear-gradient(135deg,#ffceec,#9896f0)}:root .has-blush-bordeaux-gradient-background{background:linear-gradient(135deg,#fecda5,#fe2d2d 50%,#6b003e)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-luminous-dusk-gradient-background{background:linear-gradient(135deg,#ffcb70,#c751c0 50%,#4158d0)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-pale-ocean-gradient-background{background:linear-gradient(135deg,#fff5cb,#b6e3d4 50%,#33a7b5)}:root .has-electric-grass-gradient-background{background:linear-gradient(135deg,#caf880,#71ce7e)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root .has-link-color a{color:#00e;color:var(--wp--style--color--link,#00e)}.has-small-font-size{font-size:.8125em}.has-normal-font-size,.has-regular-font-size{font-size:1em}.has-medium-font-size{font-size:1.25em}.has-large-font-size{font-size:2.25em}.has-huge-font-size,.has-larger-font-size{font-size:2.625em}.has-text-align-center{text-align:center}.has-text-align-left{text-align:left}.has-text-align-right{text-align:right}#end-resizable-editor-section{display:none}.aligncenter{clear:both} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/8898c5b557751e6945703d8153eef5089f0d5213.00000142.html b/www/.content.EZtzwPjb/html/8898c5b557751e6945703d8153eef5089f0d5213.00000142.html new file mode 100644 index 0000000..e49cf77 --- /dev/null +++ b/www/.content.EZtzwPjb/html/8898c5b557751e6945703d8153eef5089f0d5213.00000142.html @@ -0,0 +1,1370 @@ + + + + + + + + Réparations Samsung SyncMaster 2232BW – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        +

                        Allô docteur on a un problème,

                        +

                        En ce dimanche calme avant la fin de mes partiels, mon écran Samsung SyncMaster 2232BW commençait à faire des siennes. Celui-ci depuis un mois ou deux clignotait de façon systématique au démarrage, au début pendant seulement quelques secondes, puis au fur et à mesure, de plus en plus jusqu’à devoir attendre 10 minutes pour que je puisse l’utiliser. Après 3 ans et 4 mois de bons et loyaux services, il voulait me quitter. J’ai tenté le support Samsung par email avec peu d’espoir car l’écran a dépassé sa garantie de 4 mois (oui oui les bâtards -> obsolescence programmée). Et donc j’ai eu le droit à un joli mail automatique me disant de contacter un numéro non surtaxé (mais avec combien de temps d’attente ?), ce que je n’ai pas fait car je n’avais pas envie de passer 30min au téléphone pour au final avoir un « On est désolé mais on ne peut rien faire pour vous car la garantie est dépassée, mais on peut envoyer votre écran en SAV pour faire un devis pour seulement 50 boules ». Concernant le support email de Samsung France, je leur donne une note de 0/20 puisque ce n’est pas un support mais une redirection vers le téléphone.

                        +

                        +

                        Symptômes

                        +

                        Clignotements de l’écran et de la LED power systématiques à chaque démarrage de l’écran. Je me suis tout de suite douté d’un problème d’alimentation et après quelques recherches sur google, confirmation du problème sur beaucoup d’écrans et téléviseurs. Dans 99% des cas ce clignotement est dû à des condensateurs défectueux qu’il faut simplement changer :-D

                        +

                        Démontage

                        +

                        Donc après avoir cerné le problème, j’ai ouvert l’écran pour chercher les condos défectueux. J’ai trouvé une petite vidéo pour mon écran :

                        +

                        +

                        Voici quelques photos en plus pour vous aider :

                        +

                        Les outils que j’ai utilisé pour le démontage

                        +

                        Position des clips

                        +

                        Carte d’alimentation dans son emplacement

                        +

                        Et voici les condensateurs qui posent problèmes. Comme vous pouvez le voir sur la photo, ils sont très facilement identifiable car ils sont bombés sur le dessus.

                        +

                        Condensateurs défectueux

                        +

                        Vous devez donc acheter des condensateurs de remplacement, par exemple sur Conrad.

                        +

                        Mes condensateurs suivant étaient endommagés:

                        +
                          +
                        • 1 de 330uF 25V remplacé par un 470uF 25V
                        • +
                        • 3 de 820uF 25V remplacé par des 1000uF 50V
                        • +
                        +

                        Pour la réparation, il vous faut un fer à souder avec une panne pas trop grosse mais d’une grosse puissance car les soudures sont très solides (j’ai galéré avec un fer pro qui monte jusqu’à 400°).

                        +

                        Tout remarche nickel après remontage, plus de clignotement pour seulement quelques euros.

                        +

                        edit du 19 aout 2014 : j’ai trouvé le service manuel de l’écran si besoin samsung_2232bw_chassis_lpe22bs_sm

                        + + +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +

                        + 41 commentaires

                        +
                        + +
                        +
                        +
                        +
                        +

                        + c'est_moi + · 30 janvier 2012 à 18 h 57 min +

                        +

                        Mille mercis et mille félicitations pour cette fiche technique si pédagogue.

                        +

                        J’espère que le partiels se passent plus que parfait !!

                        +

                        J’ai gardé l’url de la page pour réparer mon écran dans un petit mois : j’espère que la page soit toujours là ;-)

                        +

                        Merci encore.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Maxime + · 5 mai 2012 à 12 h 31 min +

                        +

                        Bonjour HugoPoi!

                        +

                        Merci pour toutes vos infos et votre topic, je voulais avoir quelques précisions sur les condos à changer pour samsung 2232bw, je veux passer commande mais j’ai un problème avec les dimensions des condos, si vous pouvez m’informer de ce que je pourrais acheter car il y a trop de références. En vous remerciant A+ Maxime

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 14 juin 2012 à 22 h 56 min +

                          +

                          N’importe quel condensateur polarisé avec des caractéristiques proches devrait marché.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + gaubjezj + · 14 juin 2012 à 22 h 32 min +

                        +

                        Merci pour le tuto qui m’a bien aidé.
                        +J’ai utilisé un fer de 40 W avec une panne fine et
                        +une pompe à dessouder et j’ai retiré les condensateurs sans problème.
                        +Merci encore (3€40 pour le dépannage).

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + DragonTribal + · 2 juillet 2012 à 12 h 02 min +

                        +

                        super merci pour manifique tuto.
                        +Est-il possible de changer les 5 condensateurs 820uF 25V par des 1000uF 50V? car moi mes 5 condensateurs sont presque HS ;-)

                        +

                        Cordialement

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 2 juillet 2012 à 12 h 25 min +

                          +

                          Oui je penses que ça marchera étant donné que c’est des valeurs plus grandes.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + FRED + · 11 juillet 2012 à 19 h 11 min +

                        +

                        Bravo, MERCI.
                        +Je n’ai encore rien fait…mais j’ai le même problème, et tu me donnes la solution.
                        +Super.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + daninpet + · 31 août 2012 à 10 h 10 min +

                        +

                        Merci mille fois!

                        +

                        J’avais ce problème, et j’ai emmener la photo des trucs a remplacer chez le réparateur du coin et voila!! Ça m’a coûté 7 Euros (mais j’habite en Thaïlande)

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + moi + · 15 novembre 2012 à 15 h 25 min +

                        +

                        super mon 2232bw vient de lâcher, les 3 + 1 condos sont gonflés j ai trouvé un 330 en 35v qui traîné sur un écran mort et j’ai commander 5 1000uf 35v sur ebay pour moins de 3 dollars, ca devrait le faire j’espere j’attend d’être livré merci! par contre j’ai qu’un gros pistolet a soudure et un gros fil d’étain, c’est pas évident mais bon ca le fait quand même =)

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + moi + · 7 décembre 2012 à 9 h 33 min +

                          +

                          parfait je vient de recevoir les condos; j ai meuler la panne du fer a souder pour la tailler en mine de crayon et j ai reussi a les souder facilement ils étaient un peu plus gros mais ca passe tout juste, mais attention ne pas prendre des plus gros! l écran fonctionne nickel maintenant.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Croco + · 19 janvier 2013 à 18 h 39 min +

                        +

                        Je souhaiterai savoir si tu as utilisé un fer à souder bien précis étant donné que la carte est une multi couche.
                        +Merci

                        + +
                        +
                        + + +
                        + +
                        +
                        +
                        +
                        +

                        + momo + · 10 juin 2013 à 13 h 15 min +

                        +

                        slut je voudrai savoir ou trouvé les condansateur a changer sur mon ecran qui clignote

                        + +
                        +
                        + + +
                        + +
                        +
                        +
                        +
                        +

                        + lokmane + · 5 juillet 2013 à 16 h 08 min +

                        +

                        merci j’avais un ecran rouge ! et c’etais la tresse qui relie mon ecran votre page m’a aider a l’ouvrir et a le reparer merci bien

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + ML + · 21 août 2013 à 19 h 11 min +

                        +

                        Merci ! Ecran réparé. Halte à l’obsolescence programmée.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + raymond + · 31 octobre 2013 à 13 h 20 min +

                        +

                        ai vu votre vidéo et les explications pour la reparation de mon écran , apparemment le méme probléme l écran passe au noir apres quelque seconde , j ai vu un le condensateur en bas a gauche gonflé , je l ai fait changé (10€) les autre condensateur étant toujour bon d après la personne qui me l a changé , mais j ai toujour le méme probléme cela peut il venir de la carte video a gauche ?

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 20 décembre 2013 à 12 h 27 min +

                          +

                          Si la led bleu du bouton power s’éteint aussi c’est un problème d’alimentation sinon c’est plus compliqué et ça peut provenir de condensateurs sur la partie vidéo. Changé tous les plus gros condensateurs sur la partie alimentation pourrait être un bon début même si ils ne paraissent pas endommagé.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + damien + · 4 novembre 2013 à 0 h 29 min +

                        +

                        bonjour,

                        +

                        j’ai des crasses coincées entres l’écran et le truc juste derrière, est ce qu’on sais les enlever en démontant la dalle ?

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 20 décembre 2013 à 12 h 28 min +

                          +

                          Je ne sais si cette partie de la dalle est démontable, je penses que c’est collé mais vous pouvez essayer.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + mac + · 1 décembre 2013 à 17 h 30 min +

                        +

                        Merci HugoPoi, avec ces excellents conseils et tuto vidéo, mon écran est reparti pour une nouvelle vie.
                        +Pour les composants, si vous êtes sur Paris ou proche. La boutique RAM électroniques est une bonne adresse, 138 bd Diderot 75012 Paris (Place de la Nation).

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Bouddhid + · 16 janvier 2014 à 19 h 21 min +

                        +

                        Merci beaucoup pour ces conseils ! J’étais à 2 doigts de jeter mon écran, le voilà comme neuf pour moins de 5€ ! Vive la bricole !

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Vincent + · 17 mai 2014 à 16 h 45 min +

                        +

                        Alors là merci.

                        +

                        Pour ce post, les photos, la vidéo, tout y est.

                        +

                        J’ai démonté l’écran assez vite, enlevé la carte, regarder quel condensateurs étaient gonflés,(il y en avaient 4), un magasin d’électronique sur lyon et une heure de démontage, soudure, remontage plus tard, voilà, c’est tout beau.
                        +Ca ne clignote plus, ça s’allume comme avant, comme neuf.

                        +

                        Et dire que j’allais jeter cet écran et claquer 350 euros pour un neuf…

                        +

                        Coût de l’opération pour 4 condensateurs, du fil d’étain 7 euros.

                        +

                        Je précise que je n’avais jamais fais de soudure sur composant électronique auparavant.
                        +Comme quoi cette opération de réparation est à la portée de tous.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Julot + · 6 juillet 2014 à 13 h 49 min +

                        +

                        Site vraiment détaillé et très claire. J’ai pu dépanner mon écran avec succès. Merci beaucoup pour ces précieuses explications.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + PaniK31 + · 29 juillet 2014 à 9 h 21 min +

                        +

                        Pas besoin d’une grosse puissance pour le fer, il faut au préalable gratter le vernis sur l’étain afin de pouvoir le faire fondre plus facilement

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + R211_IP-45130B + · 20 août 2014 à 14 h 04 min +

                        +

                        Bonjour à tous,

                        +

                        Une âme charitable peut-elle me communiquer ce qui est gravé sur la résistance CMS R211 de la carte d’alimentation/inverter IP-45130B qui équipe le SAMSUNG 2232BW ? Cette résistance a pris un coup de tournevis et je n’arrive pas à déterminer sa valeur de résistance car son marquage est effacé et comme le composant est abimé la mesure à l’ohmmètre indique l’infinie.

                        +

                        Merci par avance.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + roger + · 24 octobre 2014 à 17 h 21 min +

                        +

                        Ca refonctionne après échange de 4 condensateurs :
                        +-un 330uf25v remplacé à l’identique.
                        +-trois 820uf25v remplacés par 1000uf25v.
                        +Le tout pour quelques €. Le plus dur était le dessoudage, la tresse n’était pas très efficace contrairement à la pompe.
                        +Grand merci à HugoPoi.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Max + · 26 février 2015 à 16 h 28 min +

                        +

                        ENORME MERCI!! J’ai réparé mon écran en 20mn pour 3,50€, il était à 2 doigts de partir à la déchetterie. Ca faisait des mois qu’il clignotait, et l’allumage mettait parfois plus d’une demi heure. J’ai changé 5 condos 820uf25v et 1 330uf25v, par exactement les mêmes en neuf, et là il démarre au quart de tour! Ca fait plaisir! :)

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + rocco michelle + · 7 octobre 2015 à 10 h 16 min +

                          +

                          Bonjour je ne sais si vous verrez mon message mais je tente…je cherche quelqu’un qui accepterait de changer mes condensateurs sur mon samsung, les réparateurs me demandent 70 à 80 euros et encore ils n’ont pss envie de le faire et me disent d’acheter un nouvel écran. j’aurais bien tenter mais je n’ai pas de matériel et j’ai lu que les condo pouvaient être très dangereux s’ils avaient de la charge alors j’ai la trouille de bidouiller pq je n’y connais rien. si vous êtes de lyon acccepteriez vous de changer mes condensateurs pour 45 euros? merci de votre réponse.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + lecakeseb + · 27 juillet 2015 à 15 h 26 min +

                        +

                        Bonjour,

                        +

                        J’ai utilisé la vidéo pour démonter mon écran afin de le nettoyer de 4 bêtes d’orage infiltrés entre le premier écran (noir) et la dalle (blanche) de mon samsung SyncMaster 2232W

                        +

                        Petits conseils afin de modérer ce que j’ai pu voir dans cette vidéo :

                        +

                        0 : aspirez, nettoyez l’extérieur de l’écran avant de l’ouvrir et nettoyez la table qui vous servira d’atelier, pour éviter les poussières qui s’infiltreront forcément plus tard si vous ne le faites pas…
                        +1 : pour ouvrir, utilisez plutôt un couteau à enduire pour la première partie (le cadre). Vous n’abîmerez ainsi pas du tout l’écran. Soyez patients, ne forcez pas ! ça viendra doucement, mais ça viendra. Il m’a fallu à peine 10 minutes, sans détériorer l’écran, sans le griffer… Il est encore nickel !
                        +2 : attention à ne pas déconnecter les fils reliant le cadre à la carte. Inutile pour simplement nettoyer l’écran.
                        +3 : pour séparer les deux éléments de la dalle entre lesquels les bêtes se sont infiltrées, les doigts suffisent, pas besoin d’outils qui viendraient les endommager. La dalle blanche reste à l’horizontale, l’écran noir sera tenu à la verticale.
                        +4 : utiliser un chiffon doux ne peluchant pas pour enlever les bêtes (faites-vous aider de quelqu’un qui les enlèvera pendant que vous tenez l’écran extérieur en position verticale).
                        +5 : repositionnez la colle d’étanchéité qui aurait pu se déplacer, avant de repositionner les deux écrans.
                        +6 : commencer par refermer par le bas de l’écran (sinon les éléments de réglage situés au bas de l’écran – luminosité, contraste,…- ne se replaceront pas correctement).
                        +7 : Une fois l’écran refermé, j’ai appliqué un peu de « barrage aux insectes », avec un chiffon à l’arrière de mon écran en insistant surtout sur les bouches d’aération par lesquelles les maudites bestioles ont du s’infiltrer. En espérant ne pas avoir à ouvrir !

                        +

                        Bon courage à vous !

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Michel Jousserandot + · 20 janvier 2017 à 20 h 41 min +

                        +

                        Merci pour les conseils au démontage.
                        +J’avais un problème un peu différent :l’écran ne s’allumait plus du tout. Avec un copain beaucoup plus malin que moi, on a détecté 2 fusibles dont l’un était fichu. On l’a remplacé par un petit fil de cuivre. Et tout a remarché comme avant.
                        +Il faut surtout faire attention quand on teste la partie haute tension
                        +Michel.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Crec + · 14 juillet 2017 à 10 h 20 min +

                        +

                        Bonjour. Très bons conseils avertis. Merci beaucoup.
                        +Peut-on avoir les mêmes conseils pour un écran BX2250.
                        +Merci par avance.
                        +Crec

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 6 août 2017 à 14 h 03 min +

                          +

                          J’ai pas de BX2250 donc dans le détails non mais si c’est les même symptômes ça doit la même procédure.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Ferronnier + · 10 août 2017 à 17 h 42 min +

                        +

                        Un grand merci !
                        +J’ai changé tous les condensateurs de la partie alimentation de la carte, en déportant certains qui n’avaient pas le même format qu’à l’origine, et ça tourne nickel !

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Nours + · 1 décembre 2017 à 15 h 17 min +

                        +

                        Ca fait des années que j’ai cet article enregistré dans un coin, en nourrissant l’espoir d’avoir un jour le courage de réparer ce foutu écran… Après plus de cinq ans c’est chose faite \o/
                        +Un giga, hypra, immense merci pour ce tutoriel tellement bien expliqué et facile d’accès (je n’avais pas touché à un fer à souder depuis… Oh boy 15 ans déjà).
                        +Après une longue pause, l’écran reprend du service… Jusqu’à la prochaine panne /o/

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Alex + · 11 août 2018 à 13 h 28 min +

                        +

                        Quelqu’un sait qui pourrait me le faire svp j ai le même problème mais aucun matériel

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + David + · 5 février 2019 à 21 h 06 min +

                        +

                        Merci Hugo pour ce tuto qui m’a déjà servi en 2013 et qui va me resservir aujourd’hui car mon 2ème 2232bw commence à avoir les mêmes symptômes.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + yvan + · 23 novembre 2019 à 17 h 14 min +

                        +

                        Bonjour
                        +j’ai tenté de changer le condensateur qui avait l’air naze mais ça n’a pas marché … toujours le bouton bleu allumé, l’écran est reconnu par Windows 10 même si l’écran est éteint
                        +grâce au service manuel de l’écran fourni plus haut, j’ai vérifié les tensions jusque sur la carte de la dalle et elles sont correctes, ainsi que sur la carte elle-même, tout est ok, donc je pense que ce n’est plus un problème de condensateur
                        +pour les fusibles, ils ressemblent plutôt à des composants qu’à de simple fusibles, mais comme j’ai les bonnes tension, je ne pense pas que ça vienne de là
                        +j’ai bien peur que ce soit la dalle qui soit naze ? quelqu’un a t il des idées supplémentaires avant que je le jette avec grand regret (c’est un 2032bw, mais c’est la même chose, même si ma carte électronique est un peu différente car plus récente
                        +merci d’avance pour vos conseils

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + yvan + · 24 novembre 2019 à 17 h 26 min +

                        +

                        finalement j’ai trouvé, c’est un petit fusible vert qui ressemble à une résistance mais tout vert avec écrit 4A LF qui assure l’alimentation de la dalle.
                        +En le shuntant, mon écran a retrouvé l’image.
                        +après enquête il s’agit d’un fusible pico de 4ampères de chez little fuse, pas du tout évident à trouver
                        +Résolu !

                        + +
                        +
                        + +
                        +
                        +

                        + Reflow Dell 1546 | HugoPoi + · 22 août 2016 à 16 h 09 min +

                        +

                        […] « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable de marque Dell un 1546 pour être précis. Encore […]

                        + +
                        +
                        + +
                        +
                        +

                        + Reflow Dell Inspiron 1546 – HugoPoi + · 23 juin 2017 à 23 h 18 min +

                        +

                        […] d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un […]

                        + +
                        +
                        + +
                        +
                        +
                        +

                        Répondre à Maxime Annuler la réponse

                        Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                        +
                        +
                        +

                        + +

                        +
                        +
                        +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        + + +
                        + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/88a1dda990c29d94043629b6a93dbfcb4d5e74e3.00000715.css b/www/.content.EZtzwPjb/html/88a1dda990c29d94043629b6a93dbfcb4d5e74e3.00000715.css new file mode 100644 index 0000000..fe9245c --- /dev/null +++ b/www/.content.EZtzwPjb/html/88a1dda990c29d94043629b6a93dbfcb4d5e74e3.00000715.css @@ -0,0 +1,28 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7 .screen-reader-response{position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);height:1px;width:1px;margin:0;padding:0;border:0}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{color:#f00;font-size:1em;display:block}.use-floating-validation-tip span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;border:1px +solid #f00;background:#fff;padding: .2em .8em}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wpcf7-recaptcha +iframe{margin-bottom:0}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/88d78fc0cf2c168ca095ec68fb0f7b12b9487653.00001301.xml b/www/.content.EZtzwPjb/html/88d78fc0cf2c168ca095ec68fb0f7b12b9487653.00001301.xml new file mode 100644 index 0000000..6419d6c --- /dev/null +++ b/www/.content.EZtzwPjb/html/88d78fc0cf2c168ca095ec68fb0f7b12b9487653.00001301.xml @@ -0,0 +1,7 @@ + +1.0HugoPoihttp://blog.hugopoi.netHugoPoihttp://blog.hugopoi.net/author/hugopoi/Redimensionner une partition NTFSrich600338<blockquote class="wp-embedded-content"><a href="/2012/12/23/redimensionner-une-partition-ntfs/">Redimensionner une partition NTFS</a></blockquote> +<script type='text/javascript'> +<!--//--><![CDATA[//><!-- + !function(a,b){"use strict";function c(){if(!e){e=!0;var a,c,d,f,g=-1!==navigator.appVersion.indexOf("MSIE 10"),h=!!navigator.userAgent.match(/Trident.*rv:11\./),i=b.querySelectorAll("iframe.wp-embedded-content");for(c=0;c<i.length;c++)if(d=i[c],!d.getAttribute("data-secret")){if(f=Math.random().toString(36).substr(2,10),d.src+="#?secret="+f,d.setAttribute("data-secret",f),g||h)a=d.cloneNode(!0),a.removeAttribute("security"),d.parentNode.replaceChild(a,d)}else;}}var d=!1,e=!1;if(b.querySelector)if(a.addEventListener)d=!0;if(a.wp=a.wp||{},!a.wp.receiveEmbedMessage)if(a.wp.receiveEmbedMessage=function(c){var d=c.data;if(d.secret||d.message||d.value)if(!/[^a-zA-Z0-9]/.test(d.secret)){var e,f,g,h,i,j=b.querySelectorAll('iframe[data-secret="'+d.secret+'"]'),k=b.querySelectorAll('blockquote[data-secret="'+d.secret+'"]');for(e=0;e<k.length;e++)k[e].style.display="none";for(e=0;e<j.length;e++)if(f=j[e],c.source===f.contentWindow){if(f.removeAttribute("style"),"height"===d.message){if(g=parseInt(d.value,10),g>1e3)g=1e3;else if(~~g<200)g=200;f.height=g}if("link"===d.message)if(h=b.createElement("a"),i=b.createElement("a"),h.href=f.getAttribute("src"),i.href=d.value,i.host===h.host)if(b.activeElement===f)a.top.location.href=d.value}else;}},d)a.addEventListener("message",a.wp.receiveEmbedMessage,!1),b.addEventListener("DOMContentLoaded",c,!1),a.addEventListener("load",c,!1)}(window,document); +//--><!]]> +</script><iframe sandbox="allow-scripts" security="restricted" src="/2012/12/23/redimensionner-une-partition-ntfs/embed/" width="600" height="338" title="« Redimensionner une partition NTFS » — HugoPoi" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" class="wp-embedded-content"></iframe> diff --git a/www/.content.EZtzwPjb/html/89d9d87aacdd8d06ac31fa9957542cf897343147.00000529.html b/www/.content.EZtzwPjb/html/89d9d87aacdd8d06ac31fa9957542cf897343147.00000529.html new file mode 100644 index 0000000..d72e631 --- /dev/null +++ b/www/.content.EZtzwPjb/html/89d9d87aacdd8d06ac31fa9957542cf897343147.00000529.html @@ -0,0 +1,364 @@ + + + + + + + téléchargement – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        + +
                        +
                        + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/8b2dfc15301451e5e6a3573c20c5526039fddb62.00000291.xml b/www/.content.EZtzwPjb/html/8b2dfc15301451e5e6a3573c20c5526039fddb62.00000291.xml new file mode 100644 index 0000000..a2a1ea6 --- /dev/null +++ b/www/.content.EZtzwPjb/html/8b2dfc15301451e5e6a3573c20c5526039fddb62.00000291.xml @@ -0,0 +1,36 @@ + + + IP v6 – HugoPoi + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Sat, 11 Feb 2017 17:37:20 +0000 + fr-FR + hourly + 1 + https://wordpress.org/?v=4.7.2 + + IPv6 – Intro + http://blog.hugopoi.net/2010/12/20/ipv6-intro/ + http://blog.hugopoi.net/2010/12/20/ipv6-intro/#comments + Mon, 20 Dec 2010 20:40:34 +0000 + + + + + + + http://blog.hugopoi.net/?p=77 + Lire la suite »

                        ]]>
                        + http://blog.hugopoi.net/2010/12/20/ipv6-intro/feed/ + 2 +
                        +
                        +
                        diff --git a/www/.content.EZtzwPjb/html/8ba48177cd0179f98b058830fb4faf45cc3b766e.00000098.html b/www/.content.EZtzwPjb/html/8ba48177cd0179f98b058830fb4faf45cc3b766e.00000098.html new file mode 100644 index 0000000..004ef49 --- /dev/null +++ b/www/.content.EZtzwPjb/html/8ba48177cd0179f98b058830fb4faf45cc3b766e.00000098.html @@ -0,0 +1,580 @@ + + + + + + + + Pascal Negre tu m’emmerdes – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        +


                        +
                        Bon sérieux, Pascal Negre il commence à me les briser sec. Après Deezer qui est devenu une belle merde car il n’y a plus que les Black Eyed Peas, Justin et Britney, la plateforme est devenue complètement payante et cela reste cher au vu du catalogue proposé. Puis l’année dernière j’ai pris un abonnement téléphonique chez Orange avec la vente forcée d’un compte premium Deezer dont malheureusement je ne me sers pas.

                        +

                        +

                        Peu de temps après, j’ai découvert Grooveshark, une plateforme un peu différente sur laquelle on peut ajouter sa musique perso. Vous cherchez un titre? Vous ne le trouvez pas ? Si vous l’avez dans votre ordinateur, vous pouvez l’envoyer sur la plateforme pour le rendre disponible à tous. Grooveshark se base sur un business model pub pour leur site web donc l’accès est gratuit et sans inscription. Pour l’accès depuis votre mobile, cela est payant via un abonnement mensuel de quelques euros. Mais après avoir fais mes premiers pas sur la plateforme, je me suis demandé comment Grooveshark pouvait obtenir les droits de diffusion pour tous les titres ajoutés par les utilisateurs. Cela est en faite impossible car il n’y a pas de catalogue unifié et donc chaque major et artiste fait valoir ses droits séparément. Donc au final, je me retrouve avec un Grooveshark qui se fait grignoter au fur et à mesure du temps, et qui va finir comme Deezer avec un catalogue incomplet et amputé. Et cela commence vraiment à m’emmerder car je n’ai pas envie de payer trois abonnements différents sur trois plateformes. En plus, ce sera vraiment pratique pour écouter de la musique en changeant d’application entre deux titres. Donc à moins que les majors se bougent la rondelle pour faire des vraies offres unifiées avec des tarifs raisonnables, je vais devoir monter ma plateforme musicale communautaire en ligne. Je pensais à un truc avec une interface simple style grooveshark, voici mes 2,3 idées :

                        +
                          +
                        • Interface Web en HTML5
                        • +
                        • Application mobile Android Iphone et cie
                        • +
                        • Accès avec inscription, le tout gratuit (genre tracker privé)
                        • +
                        • Alors j’en ai rêvé la nuit dernière, pour stocker la musique, je pensais à un système décentralisé basé sur BitTorrent. Comme ça, impossible de fermer les serveurs qui hébergent la base de données contenant les infos sur chaque titre.
                        • +
                        • En gros, il faudrait un client lourd avec un protocole spécifiquement développé pour l’occasion
                        • +
                        • Au niveau de la qualité, il nous faut du Flac et du MP3 (minimum 320kbits/s)
                        • +
                        • Donc un système d’ajout à la BDD avec vérification de l’intégrité par les utilisateurs (proposition d’écoute pour savoir si le titre que l’on ajoute est déjà présent)
                        • +
                        • Chaque utilisateur stocke sa bibliothèque musicale, et en plus éventuellement un cache de redondance d’une partie de la bibliothèque totale
                        • +
                        • Complétition progressive de la BDD par les utilisateurs
                        • +
                        +
                        Bref, je pense que je rêves à 15000km mais ce concept pourrait amener à construire la plus grosse base de  données musicales de l’Internet et faire chier les majors. Montrer que la culture et le partage sont plus important que la BMW de Pascal Negre et ses potes.
                        +

                         

                        +
                        +
                        +
                        +
                        +
                        Catégories : InternetNews
                        +
                        +
                        +
                        + + + + + + + + + +
                        +
                        +
                        +
                        +
                        +
                        +
                        +

                        + 4 commentaires

                        +
                        + +
                        +
                        +
                        +
                        +

                        + Thibault + · 7 janvier 2012 à 19 h 50 min +

                        +

                        Très bonne idée mais …
                        +Le seul hic dans tes 2,3 idées c’est le stockage via BitTorrent je crois :)

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 7 janvier 2012 à 19 h 57 min +

                          +

                          Pourquoi ? si on stock la musique sur les serveurs, ça va représenter une bande passante énorme et en plus vu qu’il n’y aura que de la « contrefaçon ». Je serais obligé de fermer mon service si je veux pas vendre mes 2 bras.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Thibault + · 8 janvier 2012 à 18 h 02 min +

                        +

                        A moins de tout passer en full-encrypt et d’autres méthodes pour cacher l’ip du client vis à vis du tracker (je ne suis pas un pro-torrent donc je dis p’tet des conneries)
                        +Dans ce cas bonjour l’appli bien lourde :)

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 8 janvier 2012 à 21 h 49 min +

                          +

                          Non tu ne dis pas de connerie bittorrent à besoin de l’ip public pour fonctionner, stocké au niveau du tracker. Le protocol bittorrent dispose déjà de chiffrement sur la partie pair à pair et aussi connexion au tracker qui peux se faire en SSL. Au niveau confidentialité, faire une plateforme uniquement avec client web ou bittorrent revient au même car le serveur peux stocké indéfiniment les ip qui s’y connectent dans les deux cas. Moi je suis pour les systèmes décentralisés qui sont la base d’Internet qui ont l’avantage de répartir la charge sur tous le réseau et pas provoqué d’engorgement. Appli bien lourde je ne sais pas, ça sera toujours moins lourd que iTunes lol

                          + +
                          +
                          + +
                        + +
                        +
                        +
                        +

                        Répondre à Thibault Annuler la réponse

                        Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                        +
                        +
                        +

                        + +

                        +
                        +
                        +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        + + +
                        + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/8be47700f2d91b8e20ee64a92157c1909e467225.00000365.html b/www/.content.EZtzwPjb/html/8be47700f2d91b8e20ee64a92157c1909e467225.00000365.html new file mode 100644 index 0000000..8dfb83d --- /dev/null +++ b/www/.content.EZtzwPjb/html/8be47700f2d91b8e20ee64a92157c1909e467225.00000365.html @@ -0,0 +1,364 @@ + + + + + + + Clé USB – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        + +
                        +
                        + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/8bf417b9d35634c52e0cfa09d1e4a1653a6cf591.00000744.css b/www/.content.EZtzwPjb/html/8bf417b9d35634c52e0cfa09d1e4a1653a6cf591.00000744.css new file mode 100644 index 0000000..cc58ce7 --- /dev/null +++ b/www/.content.EZtzwPjb/html/8bf417b9d35634c52e0cfa09d1e4a1653a6cf591.00000744.css @@ -0,0 +1 @@ +.carousel .hestia-title{font-size:67px}.carousel span.sub-title{font-size:18px}@media (max-width:768px){.carousel .hestia-title,h1.hestia-title{font-size:36px}.page-header.header-small .hestia-title,.page-header.header-small .title{font-size:26px}}h2.hestia-title,h2.title{font-size:37px}@media (max-width:768px){h2.hestia-title,h2.title{font-size:24px}}.woocommerce .exclusive-products h2,.woocommerce .related.products h2,.woocommerce div.product .product_title{font-size:32px}@media (max-width:768px){.woocommerce .exclusive-products h2,.woocommerce .related.products h2,.woocommerce div.product .product_title{font-size:24px}}#comments .hestia-title,.subscribe-line h3.hestia-title,.woocommerce .comment-reply-title,.woocommerce-cart .blog-post h1.hestia-title,.woocommerce-checkout .blog-post h1.hestia-title{font-size:27px}h5.description,h5.subscribe-description{font-size:18px}.subscribe-line .description{font-size:14px}.woocommerce-cart .blog-post h1.hestia-title,.woocommerce-checkout .blog-post h1.hestia-title{font-size:27px}.hestia-work .card-title,.woocommerce .cart-collaterals h2,.woocommerce .cross-sells h2,.woocommerce-checkout .blog-post .section form.woocommerce-checkout h3:not(#ship-to-different-address),.woocommerce.single-product .summary .price{font-size:23px}.footer .widget h5,.hestia-info h4.info-title,h4.card-title,section.contactus h4.hestia-title{font-size:18px}.archive .card-blog .card-title,.blog .card-blog .card-title,.blog .hestia-blog-featured-card .card-title{font-size:25px}h6.category{font-size:12px}.card-description,.woocommerce .product .card-product .card-description p,.woocommerce.single-product .woocommerce-product-details__short-description,section.pricing p.text-gray{font-size:14px}.hestia-features .hestia-info p{font-size:16px}.hestia-title.title-in-content,.page-content-wrap h1,.single-post-wrap h1,h1{font-size:42px}@media (max-width:768px){.hestia-title.title-in-content{font-size:36px}}.page-content-wrap h2,.single-post-wrap h2,h2{font-size:37px}.page-content-wrap h3,.single-post-wrap h3,h3{font-size:32px}.page-content-wrap h4,.single-post-wrap h4,h4{font-size:27px}.page-content-wrap h5,.single-post-wrap h5,h5{font-size:23px}.page-content-wrap h6,.single-post-wrap h6,h6{font-size:18px}@media (max-width:768px){.page-content-wrap h1,.page-template-template-fullwidth article h1,.single-post-wrap h1,h1{font-size:30px}.page-content-wrap h2,.page-template-template-fullwidth article h2,.single-post-wrap h2,h2{font-size:28px}.page-content-wrap h3,.page-template-template-fullwidth article h3,.single-post-wrap h3,h3{font-size:24px}.page-content-wrap h4,.page-template-template-fullwidth article h4,.single-post-wrap h4,h4{font-size:22px}.page-content-wrap h5,.page-template-template-fullwidth article h5,.single-post-wrap h5,h5{font-size:20px}.page-content-wrap h6,.page-template-template-fullwidth article h6,.single-post-wrap h6,h6{font-size:18px}}.page-content-wrap,.page-content-wrap dl,.page-content-wrap ol,.page-content-wrap table,.page-content-wrap ul,.page-template-template-fullwidth article,.page-template-template-fullwidth article dl,.page-template-template-fullwidth article ol,.page-template-template-fullwidth article table,.page-template-template-fullwidth article ul,.single-post-wrap,.single-post-wrap dl,.single-post-wrap ol,.single-post-wrap table,.single-post-wrap ul{font-size:18px}@media (max-width:768px){.page-content-wrap,.page-content-wrap dl,.page-content-wrap ol,.page-content-wrap table,.page-content-wrap ul,.page-template-template-fullwidth article,.page-template-template-fullwidth article dl,.page-template-template-fullwidth article ol,.page-template-template-fullwidth article table,.page-template-template-fullwidth article ul,.single-post-wrap,.single-post-wrap dl,.single-post-wrap ol,.single-post-wrap table,.single-post-wrap ul{font-size:16px}}body{font-size:14px}.navbar a{font-size:12px} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/8c85b20bcd53113f523f205c01422f65d7607e84.00000736.css b/www/.content.EZtzwPjb/html/8c85b20bcd53113f523f205c01422f65d7607e84.00000736.css new file mode 100644 index 0000000..51f3e30 --- /dev/null +++ b/www/.content.EZtzwPjb/html/8c85b20bcd53113f523f205c01422f65d7607e84.00000736.css @@ -0,0 +1 @@ +html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:0.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace, monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff;}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:hover,a:focus{color:#23527c;text-decoration:underline}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive,.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role="button"]{cursor:pointer}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small{font-weight:normal;line-height:1;color:#777}h1,.h1,h2,.h2,h3,.h3{margin-top:20px;margin-bottom:10px}h1 small,.h1 small,h2 small,.h2 small,h3 small,.h3 small,h1 .small,.h1 .small,h2 .small,.h2 .small,h3 .small,.h3 .small{font-size:65%}h4,.h4,h5,.h5,h6,.h6{margin-top:10px;margin-bottom:10px}h4 small,.h4 small,h5 small,.h5 small,h6 small,.h6 small,h4 .small,.h4 .small,h5 .small,.h5 .small,h6 .small,.h6 .small{font-size:75%}h1,.h1{font-size:36px}h2,.h2{font-size:30px}h3,.h3{font-size:24px}h4,.h4{font-size:18px}h5,.h5{font-size:14px}h6,.h6{font-size:12px}p{margin:0 0 10px;}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}small,.small{font-size:85%}mark,.mark{background-color:#fcf8e3;padding:.2em}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:hover,a.text-primary:focus{color:#286090}.text-success{color:#3c763d}a.text-success:hover,a.text-success:focus{color:#2b542c}.text-info{color:#31708f}a.text-info:hover,a.text-info:focus{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover,a.text-warning:focus{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover,a.text-danger:focus{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:hover,a.bg-primary:focus{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:hover,a.bg-success:focus{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover,a.bg-info:focus{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover,a.bg-warning:focus{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover,a.bg-danger:focus{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none;margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-top:0;margin-bottom:20px}dt,dd{line-height:1.42857143;}dt{font-weight:bold}dd{margin-left:0}@media (min-width:769px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote footer:before,blockquote small:before,blockquote .small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}.blockquote-reverse footer:before,blockquote.pull-right footer:before,.blockquote-reverse small:before,blockquote.pull-right small:before,.blockquote-reverse .small:before,blockquote.pull-right .small:before{content:''}.blockquote-reverse footer:after,blockquote.pull-right footer:after,.blockquote-reverse small:after,blockquote.pull-right small:after,.blockquote-reverse .small:after,blockquote.pull-right .small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.25)}kbd kbd{padding:0;font-size:100%;font-weight:bold;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;word-break:break-all;word-wrap:break-word;color:#333;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.row{margin-left:-15px;margin-right:-15px;}.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%;}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*="col-"]{position:static;float:none;display:table-column}table td[class*="col-"],table th[class*="col-"]{position:static;float:none;display:table-cell}.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr.active:hover>th{background-color:#e8e8e8}.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{background-color:#dff0d8}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr.success:hover>th{background-color:#d0e9c6}.table>thead>tr>td.info,.table>tbody>tr>td.info,.table>tfoot>tr>td.info,.table>thead>tr>th.info,.table>tbody>tr>th.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>tbody>tr.info>td,.table>tfoot>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr.info>th,.table>tfoot>tr.info>th{background-color:#d9edf7}.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr.info:hover>th{background-color:#c4e3f3}.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr.warning:hover>th{background-color:#faf2cc}.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{background-color:#f2dede}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr.danger:hover>th{background-color:#ebcccc}.table-responsive{overflow-x:auto;min-height:0.01%}@media screen and (max-width:768px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{padding:0;margin:0;border:0;min-width:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:bold}input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type="file"]{display:block}input[type="range"]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{border:0;background-color:transparent}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type="search"]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type="date"].form-control,input[type="time"].form-control,input[type="datetime-local"].form-control,input[type="month"].form-control{line-height:34px}input[type="date"].input-sm,input[type="time"].input-sm,input[type="datetime-local"].input-sm,input[type="month"].input-sm,.input-group-sm input[type="date"],.input-group-sm input[type="time"],.input-group-sm input[type="datetime-local"],.input-group-sm input[type="month"]{line-height:30px}input[type="date"].input-lg,input[type="time"].input-lg,input[type="datetime-local"].input-lg,input[type="month"].input-lg,.input-group-lg input[type="date"],.input-group-lg input[type="time"],.input-group-lg input[type="datetime-local"],.input-group-lg input[type="month"]{line-height:46px}}.form-group{margin-bottom:15px}.radio,.checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}.radio label,.checkbox label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:normal;cursor:pointer}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{position:absolute;margin-left:-20px;margin-top:4px \9}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:normal;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"].disabled,input[type="checkbox"].disabled,fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"]{cursor:not-allowed}.radio-inline.disabled,.checkbox-inline.disabled,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.radio.disabled label,.checkbox.disabled label,fieldset[disabled] .radio label,fieldset[disabled] .checkbox label{cursor:not-allowed}.form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0;min-height:34px}.form-control-static.input-lg,.form-control-static.input-sm{padding-left:0;padding-right:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}textarea.input-sm,select[multiple].input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm textarea.form-control,.form-group-sm select[multiple].form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}textarea.input-lg,select[multiple].input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg textarea.form-control,.form-group-lg select[multiple].form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.input-lg+.form-control-feedback,.input-group-lg+.form-control-feedback,.form-group-lg .form-control+.form-control-feedback{width:46px;height:46px;line-height:46px}.input-sm+.form-control-feedback,.input-group-sm+.form-control-feedback,.form-group-sm .form-control+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline,.has-success.radio label,.has-success.checkbox label,.has-success.radio-inline label,.has-success.checkbox-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-success .form-control-feedback{color:#3c763d}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline,.has-warning.radio label,.has-warning.checkbox label,.has-warning.radio-inline label,.has-warning.checkbox-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline,.has-error.radio label,.has-error.checkbox label,.has-error.radio-inline label,.has-error.checkbox-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn,.form-inline .input-group .form-control{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .radio label,.form-inline .checkbox label{padding-left:0}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .radio,.form-horizontal .checkbox{min-height:27px}.form-horizontal .form-group{margin-left:-15px;margin-right:-15px}@media (min-width:768px){.form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:7px}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;margin-bottom:0;font-weight:normal;text-align:center;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn:focus,.btn:active:focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn.active.focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus,.btn.focus{color:#333;text-decoration:none}.btn:active,.btn.active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:focus,.btn-default.focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active:hover,.btn-default.active:hover,.open>.dropdown-toggle.btn-default:hover,.btn-default:active:focus,.btn-default.active:focus,.open>.dropdown-toggle.btn-default:focus,.btn-default:active.focus,.btn-default.active.focus,.open>.dropdown-toggle.btn-default.focus{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled.focus,.btn-default[disabled].focus,fieldset[disabled] .btn-default.focus{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary:focus,.btn-primary.focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary:active:hover,.btn-primary.active:hover,.open>.dropdown-toggle.btn-primary:hover,.btn-primary:active:focus,.btn-primary.active:focus,.open>.dropdown-toggle.btn-primary:focus,.btn-primary:active.focus,.btn-primary.active.focus,.open>.dropdown-toggle.btn-primary.focus{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled.focus,.btn-primary[disabled].focus,fieldset[disabled] .btn-primary.focus{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:focus,.btn-success.focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active:hover,.btn-success.active:hover,.open>.dropdown-toggle.btn-success:hover,.btn-success:active:focus,.btn-success.active:focus,.open>.dropdown-toggle.btn-success:focus,.btn-success:active.focus,.btn-success.active.focus,.open>.dropdown-toggle.btn-success.focus{color:#fff;background-color:#398439;border-color:#255625}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled.focus,.btn-success[disabled].focus,fieldset[disabled] .btn-success.focus{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:focus,.btn-info.focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info:active:hover,.btn-info.active:hover,.open>.dropdown-toggle.btn-info:hover,.btn-info:active:focus,.btn-info.active:focus,.open>.dropdown-toggle.btn-info:focus,.btn-info:active.focus,.btn-info.active.focus,.open>.dropdown-toggle.btn-info.focus{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled.focus,.btn-info[disabled].focus,fieldset[disabled] .btn-info.focus{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:focus,.btn-warning.focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning:active:hover,.btn-warning.active:hover,.open>.dropdown-toggle.btn-warning:hover,.btn-warning:active:focus,.btn-warning.active:focus,.open>.dropdown-toggle.btn-warning:focus,.btn-warning:active.focus,.btn-warning.active.focus,.open>.dropdown-toggle.btn-warning.focus{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled.focus,.btn-warning[disabled].focus,fieldset[disabled] .btn-warning.focus{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:focus,.btn-danger.focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active:hover,.btn-danger.active:hover,.open>.dropdown-toggle.btn-danger:hover,.btn-danger:active:focus,.btn-danger.active:focus,.open>.dropdown-toggle.btn-danger:focus,.btn-danger:active.focus,.btn-danger.active.focus,.open>.dropdown-toggle.btn-danger.focus{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled.focus,.btn-danger[disabled].focus,fieldset[disabled] .btn-danger.focus{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#337ab7;font-weight:normal;border-radius:0}.btn-link,.btn-link:active,.btn-link.active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#777;text-decoration:none}.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-property:height, visibility;-o-transition-property:height, visibility;transition-property:height, visibility;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid \9;border-right:4px solid transparent;border-left:4px solid transparent;}.dropup,.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;text-align:left;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);-webkit-background-clip:padding-box;background-clip:padding-box;}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none;color:#262626;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#337ab7}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#777}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px dashed;border-bottom:4px solid \9;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:769px){.navbar-right .dropdown-menu{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right:auto}}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav>li{position:relative;display:block;}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#777;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent;}@media (min-width:769px){.navbar{border-radius:4px}}@media (min-width:769px){.navbar-header{float:left}}.navbar-collapse{overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:769px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block !important;height:auto !important;padding-bottom:0;overflow:visible !important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-left:0;padding-right:0}}.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:200px}}.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:-15px;margin-left:-15px;}@media (min-width:769px){.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:769px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}@media (min-width:769px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:15px 15px;font-size:18px;line-height:20px;height:50px;}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:769px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;margin-right:5px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px;}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:769px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:768px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media (min-width:769px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left;}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{margin-left:-15px;margin-right:-15px;padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);margin-top:8px;margin-bottom:8px}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn,.navbar-form .input-group .form-control{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .radio label,.navbar-form .checkbox label{padding-left:0}.navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:768px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:769px){.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-right-radius:4px;border-top-left-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:769px){.navbar-text{float:left;margin-left:15px;margin-right:15px}}@media (min-width:769px){.navbar-left{float:left !important}.navbar-right{float:none;margin-right:-15px;text-align:right;}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}@media (max-width:768px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:hover,.navbar-default .btn-link:focus{color:#333}.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:hover,.navbar-default .btn-link[disabled]:focus,fieldset[disabled] .navbar-default .btn-link:focus{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{background-color:#080808;color:#fff}@media (max-width:768px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:hover,.navbar-inverse .btn-link:focus{color:#fff}.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:hover,.navbar-inverse .btn-link[disabled]:focus,fieldset[disabled] .navbar-inverse .btn-link:focus{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{content:"/\00a0";padding:0 5px;color:#ccc}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857143;text-decoration:none;color:#337ab7;background-color:#fff;border:1px solid #ddd;margin-left:-1px}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:4px;border-top-right-radius:4px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:3;color:#fff;background-color:#337ab7;border-color:#337ab7;cursor:default}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#777;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:6px;border-top-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:hover,a.label:focus{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:hover,.label-default[href]:focus{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:hover,.label-success[href]:focus{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:hover,.label-info[href]:focus{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c9302c}.modal-open{overflow:hidden}.modal{display:none;overflow:hidden;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transform:translate(0, -25%);-ms-transform:translate(0, -25%);-o-transform:translate(0, -25%);transform:translate(0, -25%);-webkit-transition:-webkit-transform 0.3s ease-out;-o-transition:-o-transform 0.3s ease-out;transition:transform 0.3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0, 0);-ms-transform:translate(0, 0);-o-transform:translate(0, 0);transform:translate(0, 0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,0.5);box-shadow:0 3px 9px rgba(0,0,0,0.5);-webkit-background-clip:padding-box;background-clip:padding-box;outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,0.5);box-shadow:0 5px 15px rgba(0,0,0,0.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:normal;letter-spacing:normal;line-break:auto;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:12px;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{bottom:0;right:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.carousel{position:relative}.carousel-inner{position:relative;overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform 0.6s ease-in-out;-o-transition:-o-transform 0.6s ease-in-out;transition:transform 0.6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.item.next,.carousel-inner>.item.active.right{-webkit-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0);left:0}.carousel-inner>.item.prev,.carousel-inner>.item.active.left{-webkit-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0);left:0}.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right,.carousel-inner>.item.active{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);left:0}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:.5;filter:alpha(opacity=50);font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6);background-color:rgba(0,0,0,0)}.carousel-control.left{background-image:-webkit-linear-gradient(left, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-image:-o-linear-gradient(left, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-image:-webkit-gradient(linear, left top, right top, color-stop(0, rgba(0,0,0,0.5)), to(rgba(0,0,0,0.0001)));background-image:linear-gradient(to right, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)}.carousel-control.right{left:auto;right:0;background-image:-webkit-linear-gradient(left, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-image:-o-linear-gradient(left, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-image:-webkit-gradient(linear, left top, right top, color-stop(0, rgba(0,0,0,0.0001)), to(rgba(0,0,0,0.5)));background-image:linear-gradient(to right, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)}.carousel-control:hover,.carousel-control:focus{outline:0;color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;margin-top:-10px;z-index:5;display:inline-block}.carousel-control .icon-prev,.carousel-control .glyphicon-chevron-left{left:50%;margin-left:-10px}.carousel-control .icon-next,.carousel-control .glyphicon-chevron-right{right:50%;margin-right:-10px}.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;line-height:1;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0)}.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{left:20%;right:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:before,.clearfix:after,.dl-horizontal dd:before,.dl-horizontal dd:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.form-horizontal .form-group:before,.form-horizontal .form-group:after,.nav:before,.nav:after,.navbar:before,.navbar:after,.navbar-header:before,.navbar-header:after,.navbar-collapse:before,.navbar-collapse:after,.modal-header:before,.modal-header:after,.modal-footer:before,.modal-footer:after{content:" ";display:table}.clearfix:after,.dl-horizontal dd:after,.container:after,.container-fluid:after,.row:after,.form-horizontal .form-group:after,.nav:after,.navbar:after,.navbar-header:after,.navbar-collapse:after,.modal-header:after,.modal-footer:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right !important}.pull-left{float:left !important}.hide{display:none !important}.show{display:block !important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none !important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none !important}.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block{display:none !important}@media (max-width:768px){.visible-xs{display:block !important}table.visible-xs{display:table !important}tr.visible-xs{display:table-row !important}th.visible-xs,td.visible-xs{display:table-cell !important}}@media (max-width:768px){.visible-xs-block{display:block !important}}@media (max-width:768px){.visible-xs-inline{display:inline !important}}@media (max-width:768px){.visible-xs-inline-block{display:inline-block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block !important}table.visible-sm{display:table !important}tr.visible-sm{display:table-row !important}th.visible-sm,td.visible-sm{display:table-cell !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block !important}table.visible-md{display:table !important}tr.visible-md{display:table-row !important}th.visible-md,td.visible-md{display:table-cell !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block !important}}@media (min-width:1200px){.visible-lg{display:block !important}table.visible-lg{display:table !important}tr.visible-lg{display:table-row !important}th.visible-lg,td.visible-lg{display:table-cell !important}}@media (min-width:1200px){.visible-lg-block{display:block !important}}@media (min-width:1200px){.visible-lg-inline{display:inline !important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block !important}}@media (max-width:768px){.hidden-xs{display:none !important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none !important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none !important}}@media (min-width:1200px){.hidden-lg{display:none !important}}.visible-print{display:none !important}@media print{.visible-print{display:block !important}table.visible-print{display:table !important}tr.visible-print{display:table-row !important}th.visible-print,td.visible-print{display:table-cell !important}}.visible-print-block{display:none !important}@media print{.visible-print-block{display:block !important}}.visible-print-inline{display:none !important}@media print{.visible-print-inline{display:inline !important}}.visible-print-inline-block{display:none !important}@media print{.visible-print-inline-block{display:inline-block !important}}@media print{.hidden-print{display:none !important}} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/8ce46837f472f60399ea5fe0f648ac44d9a7e961.00000541.html b/www/.content.EZtzwPjb/html/8ce46837f472f60399ea5fe0f648ac44d9a7e961.00000541.html new file mode 100644 index 0000000..b563102 --- /dev/null +++ b/www/.content.EZtzwPjb/html/8ce46837f472f60399ea5fe0f648ac44d9a7e961.00000541.html @@ -0,0 +1,374 @@ + + + + + + + U36JC – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +

                        Asus U36 et OCZ Vertex 3 la suite

                        Après un mois d’attente auprès de Cdiscount, pour au final m’annoncer le remboursement de mon SSD Vertex 2 qui est mort subitement, j’ai donc décidé de commander un Vertex 3 qui va remplacer le mort au sein de mon Asus U36JC. Et pour ne pas l’ouvrir juste pour un banal remplacement de SSD j’ai décidé de remplacer par la même occasion la carte wifi, une Intel N-1000 par une Intel N-6320. Celle-ci disposant en plus du bluetooth. J’en ai donc profité pour prendre des photos supplémentaires du démontage pour compléter mon précédent article : Démontage d’un Asus U36. Vous pouvez d’abord lire mon ancien article avant d’attaquer celui-ci, je ne ferai qu’apporter des informations complémentaires pour le démontage. (suite…)

                        +
                        Par HugoPoi, il y a
                        +
                        + +
                        +
                        +
                        +
                        + +
                        +
                        + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/8d09a9b81b435e98c91b32ef3d4461d892a20cf8.00000410.html b/www/.content.EZtzwPjb/html/8d09a9b81b435e98c91b32ef3d4461d892a20cf8.00000410.html new file mode 100644 index 0000000..a5b7fee --- /dev/null +++ b/www/.content.EZtzwPjb/html/8d09a9b81b435e98c91b32ef3d4461d892a20cf8.00000410.html @@ -0,0 +1,367 @@ + + + + + + + free – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        + +
                        +
                        + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/8d869639aafe8c0a717a460fcd1c8f516b8f1917.00000445.xml b/www/.content.EZtzwPjb/html/8d869639aafe8c0a717a460fcd1c8f516b8f1917.00000445.xml new file mode 100644 index 0000000..258fb1d --- /dev/null +++ b/www/.content.EZtzwPjb/html/8d869639aafe8c0a717a460fcd1c8f516b8f1917.00000445.xml @@ -0,0 +1,38 @@ + + + mavericks – HugoPoi + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Mon, 22 Aug 2016 14:10:26 +0000 + fr-FR + hourly + 1 + https://wordpress.org/?v=4.6.1 + + Installer Mac OS X Mavericks avec VirtualBox + http://blog.hugopoi.net/2013/12/27/installer-mac-os-x-mavericks-avec-virtualbox/ + http://blog.hugopoi.net/2013/12/27/installer-mac-os-x-mavericks-avec-virtualbox/#comments + Fri, 27 Dec 2013 21:40:28 +0000 + + + + + + + + + http://blog.hugopoi.net/?p=802 + Lire la suite »

                        ]]>
                        + http://blog.hugopoi.net/2013/12/27/installer-mac-os-x-mavericks-avec-virtualbox/feed/ + 6 +
                        +
                        +
                        diff --git a/www/.content.EZtzwPjb/html/8e5c7a376d2f0e9f1e39589590f53065498c64ac.00000092.html b/www/.content.EZtzwPjb/html/8e5c7a376d2f0e9f1e39589590f53065498c64ac.00000092.html new file mode 100644 index 0000000..5d6f223 --- /dev/null +++ b/www/.content.EZtzwPjb/html/8e5c7a376d2f0e9f1e39589590f53065498c64ac.00000092.html @@ -0,0 +1,545 @@ + + + + + + + + Montage PC de A à Z – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        +

                        Bonjour tout le monde,

                        +

                        Ready pour un montage de PC dans les Règles de l’art. Ce Week-end avec Calcifer on a monté du PC :D [Week end du 14 et 15 Mai … Merci à Hugopoi de sa réactivité pour finir ses articles :p]

                        +

                        Choisir nos composants

                        +

                        Le plus dur dans l’assemblage main d’une machine, ce n’est pas le montage mais le choix des composants que vous allez acheter pour votre machine. Pour une machine de base, il vous faut ces composants : une carte-mère, un processeur, de la mémoire vive (RAM), du stockage disque-dur ou autre, une carte graphique, un boitier et une alimentation.

                        +

                        La première étape, c’est de choisir la carte-mère, carte qui est l’élément central de votre machine: c’est elle qui accueille tous vos autres composants. Pour choisir votre carte mère, le premier critère c’est l’emplacement processeur( ou socket en anglais), qui détermine la plateforme ou type de processeur que vous allez pouvoir y mettre, car n’importe quel processeur ne va pas dans n’importe quelle carte mère. Il existe actuellement plusieurs sockets sur le marché, ils sont regroupés en deux grands groupes: les sockets de marque Intel et les sockets de marque AMD. Je vais commencer par AMD car c’est simple: ils n’ont qu’un seul socket pour toutes leurs gammes. Le dernier socket AMD en date est AM3, qui supporte tous les processeurs AMD récents. Chez Intel, c’est moins simple car ils sont séparés en 2 gammes. Le très haut de gamme est sur socket 1366. Tout le reste est sur le socket 1156 et 1155. Le 1156 est en fin de vie, plus aucun processeur ne sortira sur ce socket donc pas de mise à jour possible vers un modèle plus puissant. Le 1155 est son remplaçant, c’est sur celui-ci que notre choix va s’orienter car les processeurs que l’on peut lui associer sont très performants pour un prix raisonnable.

                        +

                         

                        +

                        Une fois votre socket selectionné, il faut choisir votre chipset et l’équipement que vous voulez sur votre carte mère. Sur 1155, il y a les chipsets H61, H67, Q67 et P67. Le P67 est celui à choisir si vous ne voulez pas vous servir du chipset graphique intégré au processeur contrairement au H67 qui dispose du câblage nécessaire. Le Q67 est semblable au P67 mais réduit à un seul emplacement PCI-Express 16x pour les cartes graphiques, le H61 est une version un peu plus dépouillé sans SATA-3. Pour Calcifer j’ai choisi une carte mère Asus P8H67-Mpro au format Micro-ATX.

                        +

                        Le choix de processeur se fait assez rapidement car en socket 1155 même le plus petit model est performant. J’ai opté pour un processeur quad-core le moins chère un Intel Core I5 2300 à 160€. A ce tarif c’est déjà un monstre comme processeur pour des usages courants comme la bureautique ou le multimédia.

                        +

                        Concernant la mémoire vive (ou RAM), le choix se fait beaucoup au niveau du prix en prenant soin de choisir de la DDR3 avec une fréquence minimum de 1600Mhz. Je recommande de prendre 4 Go, ce qui vous permet d’avoir un confort d’utilisation non négligeable, surtout vu le prix, tournant autour de 40€.

                        +

                        Le stockage: partie importante qui conditionne la vitesse de démarrage de vos applications et de votre système d’exploitation. Si vous avez les moyens prenez un SSD de 100Go pour installer votre OS dessus. Les Crucial M4 ou OCZ Vertex 2 et 3 sont de très bonnes références. Pour vos données, un bon disque dur de 1 ou 2 To sont très intéressant niveau prix.

                        +

                        L’alimentation: un composant qui alimente tous vos composants est à ne pas négliger. C’est simple: il ne faut pas prendre une alimentation qui n’est pas certifiée 80+. Après, c’est au niveau du prix que ça se joue. Pour une petite configuration 400W sont amplement suffisants, j’ai acheté l’alimentation LDLC 400W certifiée 80+ Bronze qui est très bien mise à part la longueur des câbles qui sont un peu court mais pour 43€ c’est imbattable. Si vous achetez une grosse machine, privilégiez une alimentation 80+ Gold qui aura des composants internes de très bonne qualité qui pourront fournir un rendement de plus de 90%.

                        +

                        +

                        Il nous reste le boitier ou l’habillage :) à choisir il existe la norme ATX pour les différentes tailles. Les tailles du plus grand au plus petit : ATX, Micro-ATX, Mini-ITX qui sont les plus utilisés. Notre carte mère est au format Micro-ATX mais j’ai choisi un boitier plus grand ATX un Antec Two Hundred pour des soucis d’évolutions dans le temps, de mise à jour de la configuration.

                        +

                        Pour ce qui est du montage rien de difficile, tout est avec détrompeur et les notices fournies avec les composants expliquent les procédures à suivre pour le montage.

                        + + +

                        Quelques Conseils :

                        +
                          +
                        • Se décharger de son électricité statique en touchant un radiateur pour éviter d’endommager les composants pendant le déballage.
                        • +
                        • Un tournevis cruciforme de taille moyenne et une petite pince plate suffisent pour le montage.
                        • +
                        • Essayer d’organiser ses câbles dans le boitier en les attachant avec des sert-câbles et bien dégager le flux d’air pour refroidir vos composants.
                        • +
                        • Si vous le pouvez, installer le processeur et son radiateur avant de mettre la carte mère dans le boitier.
                        • +
                        +
                        Si vous voulez en savoir plus sur le choix des composants et le montage de vos machines, je vous recommande de lire Hardware Magazine et PC Update chez Techage disponible en librairie.
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +

                        + 0 commentaire

                        +
                        +
                        +
                        +

                        Laisser un commentaire

                        Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                        +
                        +
                        +

                        + +

                        +
                        +
                        +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        + + +
                        + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/8eafb778142eaad8f39117d6f8ee6659d74b164b.00000388.html b/www/.content.EZtzwPjb/html/8eafb778142eaad8f39117d6f8ee6659d74b164b.00000388.html new file mode 100644 index 0000000..23ef521 --- /dev/null +++ b/www/.content.EZtzwPjb/html/8eafb778142eaad8f39117d6f8ee6659d74b164b.00000388.html @@ -0,0 +1,385 @@ + + + + + + + démonter – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +

                        Test et démontage d’un Sony Multi Flip 15 SVF15N1C5E

                        Longtemps que je n’avais pas posté ici, mais la je suis en vacances donc j’ai le temps. Voici donc mes retours sur ce pc portable Sony un peu atypique. J’ai choisit cette machine sur plusieurs critères qui m’avait convaincu pour les usages de ma chérie (c’est sa machine), elle fait du dessin vectoriel et de la retouche d’images principalement.
                        + (suite…)

                        +
                        Par HugoPoi, il y a

                        Écran miraculé d’un Asus N53SN

                        Comme d’habitude tantine vient me voir pour me dire que son écran d’ordinateur ne marche plus. Le pc portable, un Asus N53SN d’un plus de 2 ans de services, présente un écran noir complètement éteint mais le portable fonctionne parfaitement sur un écran externe. Ni une ni deux je commence par démonter la bête pour récupérer la référence exacte du moniteur.

                        +

                        asusn53sn_open_lcd_front (suite…)

                        +
                        Par HugoPoi, il y a

                        Démonter un Switch Cisco 2950T

                        Après avoir tout tenté sur le port console, le switch semblait mort donc démontage. J’ai donc ouvert ce petit switch 24 ports. C’est assez simple, il y a quelques vis à l’arrière ensuite faire coulisser le châssis.

                        +

                        Cisco 2950T-24

                        +

                        (suite…)

                        +
                        Par HugoPoi, il y a

                        Asus U36 et OCZ Vertex 3 la suite

                        Après un mois d’attente auprès de Cdiscount, pour au final m’annoncer le remboursement de mon SSD Vertex 2 qui est mort subitement, j’ai donc décidé de commander un Vertex 3 qui va remplacer le mort au sein de mon Asus U36JC. Et pour ne pas l’ouvrir juste pour un banal remplacement de SSD j’ai décidé de remplacer par la même occasion la carte wifi, une Intel N-1000 par une Intel N-6320. Celle-ci disposant en plus du bluetooth. J’en ai donc profité pour prendre des photos supplémentaires du démontage pour compléter mon précédent article : Démontage d’un Asus U36. Vous pouvez d’abord lire mon ancien article avant d’attaquer celui-ci, je ne ferai qu’apporter des informations complémentaires pour le démontage. (suite…)

                        +
                        Par HugoPoi, il y a

                        Réparations Samsung SyncMaster 2232BW

                        Allô docteur on a un problème,

                        +

                        En ce dimanche calme avant la fin de mes partiels, mon écran Samsung SyncMaster 2232BW commençait à faire des siennes. Celui-ci depuis un mois ou deux clignotait de façon systématique au démarrage, au début pendant seulement quelques secondes, puis au fur et à mesure, de plus en plus jusqu’à devoir attendre 10 minutes pour que je puisse l’utiliser. Après 3 ans et 4 mois de bons et loyaux services, il voulait me quitter. J’ai tenté le support Samsung par email avec peu d’espoir car l’écran a dépassé sa garantie de 4 mois (oui oui les bâtards -> obsolescence programmée). Et donc j’ai eu le droit à un joli mail automatique me disant de contacter un numéro non surtaxé (mais avec combien de temps d’attente ?), ce que je n’ai pas fait car je n’avais pas envie de passer 30min au téléphone pour au final avoir un « On est désolé mais on ne peut rien faire pour vous car la garantie est dépassée, mais on peut envoyer votre écran en SAV pour faire un devis pour seulement 50 boules ». Concernant le support email de Samsung France, je leur donne une note de 0/20 puisque ce n’est pas un support mais une redirection vers le téléphone.

                        +

                        (suite…)

                        +
                        Par HugoPoi, il y a
                        +
                        + +
                        +
                        +
                        +
                        + +
                        +
                        + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/8eb2b55423b075c74e81fa47011b1f8c27ce6571.00000758.svg b/www/.content.EZtzwPjb/html/8eb2b55423b075c74e81fa47011b1f8c27ce6571.00000758.svg new file mode 100644 index 0000000..855c845 --- /dev/null +++ b/www/.content.EZtzwPjb/html/8eb2b55423b075c74e81fa47011b1f8c27ce6571.00000758.svg @@ -0,0 +1,2671 @@ + + + + +Created by FontForge 20120731 at Mon Oct 24 17:37:40 2016 + By ,,, +Copyright Dave Gandy 2016. All rights reserved. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/8eb948662d94ffaaddae549e0bee860bc129133b.00001203.css b/www/.content.EZtzwPjb/html/8eb948662d94ffaaddae549e0bee860bc129133b.00001203.css new file mode 100644 index 0000000..e2f52a6 --- /dev/null +++ b/www/.content.EZtzwPjb/html/8eb948662d94ffaaddae549e0bee860bc129133b.00001203.css @@ -0,0 +1,11 @@ +@charset "UTF-8";#start-resizable-editor-section{display:none}.wp-block-audio{margin:0 0 1em}.wp-block-audio figcaption{margin-top:.5em;margin-bottom:1em}.wp-block-audio audio{width:100%;min-width:300px}.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;cursor:pointer;display:inline-block;font-size:1.125em;padding:calc(.667em + 2px) calc(1.333em + 2px);text-align:center;text-decoration:none;overflow-wrap:break-word;box-sizing:border-box}.wp-block-button__link:active,.wp-block-button__link:focus,.wp-block-button__link:hover,.wp-block-button__link:visited{color:#fff}.wp-block-button__link.aligncenter{text-align:center}.wp-block-button__link.alignright{text-align:right}.wp-block-buttons>.wp-block-button.has-custom-width{max-width:none}.wp-block-buttons>.wp-block-button.has-custom-width .wp-block-button__link{width:100%}.wp-block-buttons>.wp-block-button.has-custom-font-size .wp-block-button__link{font-size:inherit}.wp-block-buttons>.wp-block-button.wp-block-button__width-25{width:calc(25% - .5em)}.wp-block-buttons>.wp-block-button.wp-block-button__width-50{width:calc(50% - .5em)}.wp-block-buttons>.wp-block-button.wp-block-button__width-75{width:calc(75% - .5em)}.wp-block-buttons>.wp-block-button.wp-block-button__width-100{width:calc(100% - .5em)}.wp-block-buttons>.wp-block-button.wp-block-button__width-100:only-child{margin-right:0;width:100%}@supports (column-gap:0.5em){.wp-block-buttons.is-content-justification-right>.wp-block-button.wp-block-button,.wp-block-buttons>.wp-block-button.wp-block-button{margin-right:0;margin-left:0}.wp-block-buttons>.wp-block-button.wp-block-button__width-25{width:calc(25% - .375em)}.wp-block-buttons>.wp-block-button.wp-block-button__width-50{width:calc(50% - .25em)}.wp-block-buttons>.wp-block-button.wp-block-button__width-75{width:calc(75% - .125em)}.wp-block-buttons>.wp-block-button.wp-block-button__width-100{width:auto;flex-basis:100%}}.wp-block-button.is-style-squared,.wp-block-button__link.wp-block-button.is-style-squared{border-radius:0}.wp-block-button.no-border-radius,.wp-block-button__link.no-border-radius{border-radius:0!important}.is-style-outline>.wp-block-button__link,.wp-block-button__link.is-style-outline{border:2px solid;padding:.667em 1.333em}.is-style-outline>.wp-block-button__link:not(.has-text-color),.wp-block-button__link.is-style-outline:not(.has-text-color){color:currentColor}.is-style-outline>.wp-block-button__link:not(.has-background),.wp-block-button__link.is-style-outline:not(.has-background){background-color:transparent}.wp-block-buttons{display:flex;flex-direction:row;flex-wrap:wrap;column-gap:.5em}.wp-block-buttons.is-vertical{flex-direction:column}.wp-block-buttons.is-vertical>.wp-block-button{margin-right:0}.wp-block-buttons.is-vertical>.wp-block-button:last-child{margin-bottom:0}.wp-block-buttons>.wp-block-button{display:inline-block;margin-left:0;margin-right:.5em;margin-bottom:.5em}.wp-block-buttons>.wp-block-button:last-child{margin-right:0}.wp-block-buttons.is-content-justification-left{justify-content:flex-start}.wp-block-buttons.is-content-justification-left.is-vertical{align-items:flex-start}.wp-block-buttons.is-content-justification-center{justify-content:center}.wp-block-buttons.is-content-justification-center.is-vertical{align-items:center}.wp-block-buttons.is-content-justification-right{justify-content:flex-end}.wp-block-buttons.is-content-justification-right>.wp-block-button{margin-left:.5em;margin-right:0}.wp-block-buttons.is-content-justification-right>.wp-block-button:first-child{margin-left:0}.wp-block-buttons.is-content-justification-right.is-vertical{align-items:flex-end}.wp-block-buttons.is-content-justification-space-between{justify-content:space-between}.wp-block-buttons.aligncenter{text-align:center}.wp-block-buttons.alignleft .wp-block-button{margin-left:0;margin-right:.5em}.wp-block-buttons.alignleft .wp-block-button:last-child{margin-right:0}.wp-block-buttons.alignright .wp-block-button{margin-right:0;margin-left:.5em}.wp-block-buttons.alignright .wp-block-button:first-child{margin-left:0}.wp-block-buttons:not(.is-content-justification-space-between,.is-content-justification-right,.is-content-justification-left,.is-content-justification-center) .wp-block-button.aligncenter{margin-left:auto;margin-right:auto;margin-bottom:.5em;width:100%}.wp-block-button.aligncenter,.wp-block-calendar{text-align:center}.wp-block-calendar tbody td,.wp-block-calendar th{padding:.25em;border:1px solid #ddd}.wp-block-calendar tfoot td{border:none}.wp-block-calendar table{width:100%;border-collapse:collapse}.wp-block-calendar table th{font-weight:400;background:#ddd}.wp-block-calendar a{text-decoration:underline}.wp-block-calendar table caption,.wp-block-calendar table tbody{color:#40464d}.wp-block-categories.alignleft{margin-right:2em}.wp-block-categories.alignright{margin-left:2em}.wp-block-code code{display:block;white-space:pre-wrap;overflow-wrap:break-word}.wp-block-columns{display:flex;margin-bottom:1.75em;box-sizing:border-box;flex-wrap:wrap}@media (min-width:782px){.wp-block-columns{flex-wrap:nowrap}}.wp-block-columns.has-background{padding:1.25em 2.375em}.wp-block-columns.are-vertically-aligned-top{align-items:flex-start}.wp-block-columns.are-vertically-aligned-center{align-items:center}.wp-block-columns.are-vertically-aligned-bottom{align-items:flex-end}.wp-block-column{flex-grow:1;min-width:0;word-break:break-word;overflow-wrap:break-word}@media (max-width:599px){.wp-block-column{flex-basis:100%!important}}@media (min-width:600px) and (max-width:781px){.wp-block-column:not(:only-child){flex-basis:calc(50% - 1em)!important;flex-grow:0}.wp-block-column:nth-child(2n){margin-left:2em}}@media (min-width:782px){.wp-block-column{flex-basis:0;flex-grow:1}.wp-block-column[style*=flex-basis]{flex-grow:0}.wp-block-column:not(:first-child){margin-left:2em}}.wp-block-column.is-vertically-aligned-top{align-self:flex-start}.wp-block-column.is-vertically-aligned-center{align-self:center}.wp-block-column.is-vertically-aligned-bottom{align-self:flex-end}.wp-block-column.is-vertically-aligned-bottom,.wp-block-column.is-vertically-aligned-center,.wp-block-column.is-vertically-aligned-top{width:100%}.wp-block-cover,.wp-block-cover-image{position:relative;background-size:cover;background-position:50%;min-height:430px;width:100%;display:flex;justify-content:center;align-items:center;padding:1em;box-sizing:border-box}.wp-block-cover-image.has-parallax,.wp-block-cover.has-parallax{background-attachment:fixed}@supports (-webkit-overflow-scrolling:touch){.wp-block-cover-image.has-parallax,.wp-block-cover.has-parallax{background-attachment:scroll}}@media (prefers-reduced-motion:reduce){.wp-block-cover-image.has-parallax,.wp-block-cover.has-parallax{background-attachment:scroll}}.wp-block-cover-image.is-repeated,.wp-block-cover.is-repeated{background-repeat:repeat;background-size:auto}.wp-block-cover-image.has-background-dim:not([class*=-background-color]),.wp-block-cover.has-background-dim:not([class*=-background-color]){background-color:#000}.wp-block-cover-image.has-background-dim:before,.wp-block-cover.has-background-dim:before{content:"";background-color:inherit}.wp-block-cover-image.has-background-dim:not(.has-background-gradient):before,.wp-block-cover-image .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim:not(.has-background-gradient):before,.wp-block-cover .wp-block-cover__gradient-background{position:absolute;top:0;left:0;bottom:0;right:0;z-index:1;opacity:.5}.wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-10:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-10:not(.has-background-gradient):before{opacity:.1}.wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-20:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-20:not(.has-background-gradient):before{opacity:.2}.wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-30:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-30:not(.has-background-gradient):before{opacity:.3}.wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-40:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-40:not(.has-background-gradient):before{opacity:.4}.wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-50:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-50:not(.has-background-gradient):before{opacity:.5}.wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-60:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-60:not(.has-background-gradient):before{opacity:.6}.wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-70:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-70:not(.has-background-gradient):before{opacity:.7}.wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-80:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-80:not(.has-background-gradient):before{opacity:.8}.wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-90:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-90:not(.has-background-gradient):before{opacity:.9}.wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-100:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-100:not(.has-background-gradient):before{opacity:1}.wp-block-cover-image.alignleft,.wp-block-cover-image.alignright,.wp-block-cover.alignleft,.wp-block-cover.alignright{max-width:420px;width:100%}.wp-block-cover-image:after,.wp-block-cover:after{display:block;content:"";font-size:0;min-height:inherit}@supports (position:sticky){.wp-block-cover-image:after,.wp-block-cover:after{content:none}}.wp-block-cover-image.aligncenter,.wp-block-cover-image.alignleft,.wp-block-cover-image.alignright,.wp-block-cover.aligncenter,.wp-block-cover.alignleft,.wp-block-cover.alignright{display:flex}.wp-block-cover-image .wp-block-cover__inner-container,.wp-block-cover .wp-block-cover__inner-container{width:100%;z-index:1;color:#fff}.wp-block-cover-image h1:not(.has-text-color),.wp-block-cover-image h2:not(.has-text-color),.wp-block-cover-image h3:not(.has-text-color),.wp-block-cover-image h4:not(.has-text-color),.wp-block-cover-image h5:not(.has-text-color),.wp-block-cover-image h6:not(.has-text-color),.wp-block-cover-image p:not(.has-text-color),.wp-block-cover h1:not(.has-text-color),.wp-block-cover h2:not(.has-text-color),.wp-block-cover h3:not(.has-text-color),.wp-block-cover h4:not(.has-text-color),.wp-block-cover h5:not(.has-text-color),.wp-block-cover h6:not(.has-text-color),.wp-block-cover p:not(.has-text-color){color:inherit}.wp-block-cover-image.is-position-top-left,.wp-block-cover.is-position-top-left{align-items:flex-start;justify-content:flex-start}.wp-block-cover-image.is-position-top-center,.wp-block-cover.is-position-top-center{align-items:flex-start;justify-content:center}.wp-block-cover-image.is-position-top-right,.wp-block-cover.is-position-top-right{align-items:flex-start;justify-content:flex-end}.wp-block-cover-image.is-position-center-left,.wp-block-cover.is-position-center-left{align-items:center;justify-content:flex-start}.wp-block-cover-image.is-position-center-center,.wp-block-cover.is-position-center-center{align-items:center;justify-content:center}.wp-block-cover-image.is-position-center-right,.wp-block-cover.is-position-center-right{align-items:center;justify-content:flex-end}.wp-block-cover-image.is-position-bottom-left,.wp-block-cover.is-position-bottom-left{align-items:flex-end;justify-content:flex-start}.wp-block-cover-image.is-position-bottom-center,.wp-block-cover.is-position-bottom-center{align-items:flex-end;justify-content:center}.wp-block-cover-image.is-position-bottom-right,.wp-block-cover.is-position-bottom-right{align-items:flex-end;justify-content:flex-end}.wp-block-cover-image.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container,.wp-block-cover.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container{margin:0;width:auto}.wp-block-cover-image img.wp-block-cover__image-background,.wp-block-cover-image video.wp-block-cover__video-background,.wp-block-cover img.wp-block-cover__image-background,.wp-block-cover video.wp-block-cover__video-background{position:absolute;top:0;left:0;right:0;bottom:0;margin:0;padding:0;width:100%;height:100%;max-width:none;max-height:none;-o-object-fit:cover;object-fit:cover;outline:none;border:none;box-shadow:none}.wp-block-cover__image-background,.wp-block-cover__video-background{z-index:0}.wp-block-cover-image-text,.wp-block-cover-image-text a,.wp-block-cover-image-text a:active,.wp-block-cover-image-text a:focus,.wp-block-cover-image-text a:hover,.wp-block-cover-text,.wp-block-cover-text a,.wp-block-cover-text a:active,.wp-block-cover-text a:focus,.wp-block-cover-text a:hover,section.wp-block-cover-image h2,section.wp-block-cover-image h2 a,section.wp-block-cover-image h2 a:active,section.wp-block-cover-image h2 a:focus,section.wp-block-cover-image h2 a:hover{color:#fff}.wp-block-cover-image .wp-block-cover.has-left-content{justify-content:flex-start}.wp-block-cover-image .wp-block-cover.has-right-content{justify-content:flex-end}.wp-block-cover-image.has-left-content .wp-block-cover-image-text,.wp-block-cover.has-left-content .wp-block-cover-text,section.wp-block-cover-image.has-left-content>h2{margin-left:0;text-align:left}.wp-block-cover-image.has-right-content .wp-block-cover-image-text,.wp-block-cover.has-right-content .wp-block-cover-text,section.wp-block-cover-image.has-right-content>h2{margin-right:0;text-align:right}.wp-block-cover-image .wp-block-cover-image-text,.wp-block-cover .wp-block-cover-text,section.wp-block-cover-image>h2{font-size:2em;line-height:1.25;z-index:1;margin-bottom:0;max-width:840px;padding:.44em;text-align:center}.wp-block-embed.alignleft,.wp-block-embed.alignright,.wp-block[data-align=left]>[data-type="core/embed"],.wp-block[data-align=right]>[data-type="core/embed"]{max-width:360px;width:100%}.wp-block-embed.alignleft .wp-block-embed__wrapper,.wp-block-embed.alignright .wp-block-embed__wrapper,.wp-block[data-align=left]>[data-type="core/embed"] .wp-block-embed__wrapper,.wp-block[data-align=right]>[data-type="core/embed"] .wp-block-embed__wrapper{min-width:280px}.wp-block-cover .wp-block-embed{min-width:320px;min-height:240px}.wp-block-embed{margin:0 0 1em}.wp-block-embed figcaption{margin-top:.5em;margin-bottom:1em}.wp-block-embed iframe{max-width:100%}.wp-block-embed__wrapper{position:relative}.wp-embed-responsive .wp-has-aspect-ratio .wp-block-embed__wrapper:before{content:"";display:block;padding-top:50%}.wp-embed-responsive .wp-has-aspect-ratio iframe{position:absolute;top:0;right:0;bottom:0;left:0;height:100%;width:100%}.wp-embed-responsive .wp-embed-aspect-21-9 .wp-block-embed__wrapper:before{padding-top:42.85%}.wp-embed-responsive .wp-embed-aspect-18-9 .wp-block-embed__wrapper:before{padding-top:50%}.wp-embed-responsive .wp-embed-aspect-16-9 .wp-block-embed__wrapper:before{padding-top:56.25%}.wp-embed-responsive .wp-embed-aspect-4-3 .wp-block-embed__wrapper:before{padding-top:75%}.wp-embed-responsive .wp-embed-aspect-1-1 .wp-block-embed__wrapper:before{padding-top:100%}.wp-embed-responsive .wp-embed-aspect-9-16 .wp-block-embed__wrapper:before{padding-top:177.77%}.wp-embed-responsive .wp-embed-aspect-1-2 .wp-block-embed__wrapper:before{padding-top:200%}.wp-block-file{margin-bottom:1.5em}.wp-block-file.aligncenter{text-align:center}.wp-block-file.alignright{text-align:right}.wp-block-file .wp-block-file__embed{margin-bottom:1em}.wp-block-file .wp-block-file__button{background:#32373c;border-radius:2em;color:#fff;font-size:.8em;padding:.5em 1em}.wp-block-file a.wp-block-file__button{text-decoration:none}.wp-block-file a.wp-block-file__button:active,.wp-block-file a.wp-block-file__button:focus,.wp-block-file a.wp-block-file__button:hover,.wp-block-file a.wp-block-file__button:visited{box-shadow:none;color:#fff;opacity:.85;text-decoration:none}.wp-block-file *+.wp-block-file__button{margin-left:.75em}.blocks-gallery-grid,.wp-block-gallery{display:flex;flex-wrap:wrap;list-style-type:none;padding:0;margin:0}.blocks-gallery-grid .blocks-gallery-image,.blocks-gallery-grid .blocks-gallery-item,.wp-block-gallery .blocks-gallery-image,.wp-block-gallery .blocks-gallery-item{margin:0 1em 1em 0;display:flex;flex-grow:1;flex-direction:column;justify-content:center;position:relative;align-self:flex-start;width:calc(50% - 1em)}.blocks-gallery-grid .blocks-gallery-image:nth-of-type(2n),.blocks-gallery-grid .blocks-gallery-item:nth-of-type(2n),.wp-block-gallery .blocks-gallery-image:nth-of-type(2n),.wp-block-gallery .blocks-gallery-item:nth-of-type(2n){margin-right:0}.blocks-gallery-grid .blocks-gallery-image figure,.blocks-gallery-grid .blocks-gallery-item figure,.wp-block-gallery .blocks-gallery-image figure,.wp-block-gallery .blocks-gallery-item figure{margin:0;height:100%}@supports (position:sticky){.blocks-gallery-grid .blocks-gallery-image figure,.blocks-gallery-grid .blocks-gallery-item figure,.wp-block-gallery .blocks-gallery-image figure,.wp-block-gallery .blocks-gallery-item figure{display:flex;align-items:flex-end;justify-content:flex-start}}.blocks-gallery-grid .blocks-gallery-image img,.blocks-gallery-grid .blocks-gallery-item img,.wp-block-gallery .blocks-gallery-image img,.wp-block-gallery .blocks-gallery-item img{display:block;max-width:100%;height:auto;width:100%}@supports (position:sticky){.blocks-gallery-grid .blocks-gallery-image img,.blocks-gallery-grid .blocks-gallery-item img,.wp-block-gallery .blocks-gallery-image img,.wp-block-gallery .blocks-gallery-item img{width:auto}}.blocks-gallery-grid .blocks-gallery-image figcaption,.blocks-gallery-grid .blocks-gallery-item figcaption,.wp-block-gallery .blocks-gallery-image figcaption,.wp-block-gallery .blocks-gallery-item figcaption{position:absolute;bottom:0;width:100%;max-height:100%;overflow:auto;padding:3em .77em .7em;color:#fff;text-align:center;font-size:.8em;background:linear-gradient(0deg,rgba(0,0,0,.7),rgba(0,0,0,.3) 70%,transparent);box-sizing:border-box;margin:0}.blocks-gallery-grid .blocks-gallery-image figcaption img,.blocks-gallery-grid .blocks-gallery-item figcaption img,.wp-block-gallery .blocks-gallery-image figcaption img,.wp-block-gallery .blocks-gallery-item figcaption img{display:inline}.blocks-gallery-grid figcaption,.wp-block-gallery figcaption{flex-grow:1}.blocks-gallery-grid.is-cropped .blocks-gallery-image,.blocks-gallery-grid.is-cropped .blocks-gallery-item,.wp-block-gallery.is-cropped .blocks-gallery-image,.wp-block-gallery.is-cropped .blocks-gallery-item{align-self:inherit}.blocks-gallery-grid.is-cropped .blocks-gallery-image a,.blocks-gallery-grid.is-cropped .blocks-gallery-image img,.blocks-gallery-grid.is-cropped .blocks-gallery-item a,.blocks-gallery-grid.is-cropped .blocks-gallery-item img,.wp-block-gallery.is-cropped .blocks-gallery-image a,.wp-block-gallery.is-cropped .blocks-gallery-image img,.wp-block-gallery.is-cropped .blocks-gallery-item a,.wp-block-gallery.is-cropped .blocks-gallery-item img{width:100%}@supports (position:sticky){.blocks-gallery-grid.is-cropped .blocks-gallery-image a,.blocks-gallery-grid.is-cropped .blocks-gallery-image img,.blocks-gallery-grid.is-cropped .blocks-gallery-item a,.blocks-gallery-grid.is-cropped .blocks-gallery-item img,.wp-block-gallery.is-cropped .blocks-gallery-image a,.wp-block-gallery.is-cropped .blocks-gallery-image img,.wp-block-gallery.is-cropped .blocks-gallery-item a,.wp-block-gallery.is-cropped .blocks-gallery-item img{height:100%;flex:1;-o-object-fit:cover;object-fit:cover}}.blocks-gallery-grid.columns-1 .blocks-gallery-image,.blocks-gallery-grid.columns-1 .blocks-gallery-item,.wp-block-gallery.columns-1 .blocks-gallery-image,.wp-block-gallery.columns-1 .blocks-gallery-item{width:100%;margin-right:0}@media (min-width:600px){.blocks-gallery-grid.columns-3 .blocks-gallery-image,.blocks-gallery-grid.columns-3 .blocks-gallery-item,.wp-block-gallery.columns-3 .blocks-gallery-image,.wp-block-gallery.columns-3 .blocks-gallery-item{width:calc(33.33333% - .66667em);margin-right:1em}.blocks-gallery-grid.columns-4 .blocks-gallery-image,.blocks-gallery-grid.columns-4 .blocks-gallery-item,.wp-block-gallery.columns-4 .blocks-gallery-image,.wp-block-gallery.columns-4 .blocks-gallery-item{width:calc(25% - .75em);margin-right:1em}.blocks-gallery-grid.columns-5 .blocks-gallery-image,.blocks-gallery-grid.columns-5 .blocks-gallery-item,.wp-block-gallery.columns-5 .blocks-gallery-image,.wp-block-gallery.columns-5 .blocks-gallery-item{width:calc(20% - .8em);margin-right:1em}.blocks-gallery-grid.columns-6 .blocks-gallery-image,.blocks-gallery-grid.columns-6 .blocks-gallery-item,.wp-block-gallery.columns-6 .blocks-gallery-image,.wp-block-gallery.columns-6 .blocks-gallery-item{width:calc(16.66667% - .83333em);margin-right:1em}.blocks-gallery-grid.columns-7 .blocks-gallery-image,.blocks-gallery-grid.columns-7 .blocks-gallery-item,.wp-block-gallery.columns-7 .blocks-gallery-image,.wp-block-gallery.columns-7 .blocks-gallery-item{width:calc(14.28571% - .85714em);margin-right:1em}.blocks-gallery-grid.columns-8 .blocks-gallery-image,.blocks-gallery-grid.columns-8 .blocks-gallery-item,.wp-block-gallery.columns-8 .blocks-gallery-image,.wp-block-gallery.columns-8 .blocks-gallery-item{width:calc(12.5% - .875em);margin-right:1em}.blocks-gallery-grid.columns-1 .blocks-gallery-image:nth-of-type(1n),.blocks-gallery-grid.columns-1 .blocks-gallery-item:nth-of-type(1n),.blocks-gallery-grid.columns-2 .blocks-gallery-image:nth-of-type(2n),.blocks-gallery-grid.columns-2 .blocks-gallery-item:nth-of-type(2n),.blocks-gallery-grid.columns-3 .blocks-gallery-image:nth-of-type(3n),.blocks-gallery-grid.columns-3 .blocks-gallery-item:nth-of-type(3n),.blocks-gallery-grid.columns-4 .blocks-gallery-image:nth-of-type(4n),.blocks-gallery-grid.columns-4 .blocks-gallery-item:nth-of-type(4n),.blocks-gallery-grid.columns-5 .blocks-gallery-image:nth-of-type(5n),.blocks-gallery-grid.columns-5 .blocks-gallery-item:nth-of-type(5n),.blocks-gallery-grid.columns-6 .blocks-gallery-image:nth-of-type(6n),.blocks-gallery-grid.columns-6 .blocks-gallery-item:nth-of-type(6n),.blocks-gallery-grid.columns-7 .blocks-gallery-image:nth-of-type(7n),.blocks-gallery-grid.columns-7 .blocks-gallery-item:nth-of-type(7n),.blocks-gallery-grid.columns-8 .blocks-gallery-image:nth-of-type(8n),.blocks-gallery-grid.columns-8 .blocks-gallery-item:nth-of-type(8n),.wp-block-gallery.columns-1 .blocks-gallery-image:nth-of-type(1n),.wp-block-gallery.columns-1 .blocks-gallery-item:nth-of-type(1n),.wp-block-gallery.columns-2 .blocks-gallery-image:nth-of-type(2n),.wp-block-gallery.columns-2 .blocks-gallery-item:nth-of-type(2n),.wp-block-gallery.columns-3 .blocks-gallery-image:nth-of-type(3n),.wp-block-gallery.columns-3 .blocks-gallery-item:nth-of-type(3n),.wp-block-gallery.columns-4 .blocks-gallery-image:nth-of-type(4n),.wp-block-gallery.columns-4 .blocks-gallery-item:nth-of-type(4n),.wp-block-gallery.columns-5 .blocks-gallery-image:nth-of-type(5n),.wp-block-gallery.columns-5 .blocks-gallery-item:nth-of-type(5n),.wp-block-gallery.columns-6 .blocks-gallery-image:nth-of-type(6n),.wp-block-gallery.columns-6 .blocks-gallery-item:nth-of-type(6n),.wp-block-gallery.columns-7 .blocks-gallery-image:nth-of-type(7n),.wp-block-gallery.columns-7 .blocks-gallery-item:nth-of-type(7n),.wp-block-gallery.columns-8 .blocks-gallery-image:nth-of-type(8n),.wp-block-gallery.columns-8 .blocks-gallery-item:nth-of-type(8n){margin-right:0}}.blocks-gallery-grid .blocks-gallery-image:last-child,.blocks-gallery-grid .blocks-gallery-item:last-child,.wp-block-gallery .blocks-gallery-image:last-child,.wp-block-gallery .blocks-gallery-item:last-child{margin-right:0}.blocks-gallery-grid.alignleft,.blocks-gallery-grid.alignright,.wp-block-gallery.alignleft,.wp-block-gallery.alignright{max-width:420px;width:100%}.blocks-gallery-grid.aligncenter .blocks-gallery-item figure,.wp-block-gallery.aligncenter .blocks-gallery-item figure{justify-content:center}.wp-block-group{box-sizing:border-box}h1.has-background,h2.has-background,h3.has-background,h4.has-background,h5.has-background,h6.has-background{padding:1.25em 2.375em}.wp-block-image{margin:0 0 1em}.wp-block-image img{max-width:100%}.wp-block-image:not(.is-style-rounded) img{border-radius:inherit}.wp-block-image.aligncenter{text-align:center}.wp-block-image.alignfull img,.wp-block-image.alignwide img{width:100%}.wp-block-image .aligncenter,.wp-block-image .alignleft,.wp-block-image .alignright{display:table}.wp-block-image .aligncenter>figcaption,.wp-block-image .alignleft>figcaption,.wp-block-image .alignright>figcaption{display:table-caption;caption-side:bottom}.wp-block-image .alignleft{float:left;margin:.5em 1em .5em 0}.wp-block-image .alignright{float:right;margin:.5em 0 .5em 1em}.wp-block-image .aligncenter{margin-left:auto;margin-right:auto}.wp-block-image figcaption{margin-top:.5em;margin-bottom:1em}.wp-block-image.is-style-circle-mask img,.wp-block-image.is-style-rounded img{border-radius:9999px}@supports ((-webkit-mask-image:none) or (mask-image:none)) or (-webkit-mask-image:none){.wp-block-image.is-style-circle-mask img{-webkit-mask-image:url('data:image/svg+xml;utf8,');mask-image:url('data:image/svg+xml;utf8,');mask-mode:alpha;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-position:center;mask-position:center;border-radius:0}}.wp-block-image figure{margin:0}ol.wp-block-latest-comments{margin-left:0}.wp-block-latest-comments .wp-block-latest-comments{padding-left:0}.wp-block-latest-comments__comment{line-height:1.1;list-style:none;margin-bottom:1em}.has-avatars .wp-block-latest-comments__comment{min-height:2.25em;list-style:none}.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt,.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta{margin-left:3.25em}.has-dates .wp-block-latest-comments__comment,.has-excerpts .wp-block-latest-comments__comment{line-height:1.5}.wp-block-latest-comments__comment-excerpt p{font-size:.875em;line-height:1.8;margin:.36em 0 1.4em}.wp-block-latest-comments__comment-date{display:block;font-size:.75em}.wp-block-latest-comments .avatar,.wp-block-latest-comments__comment-avatar{border-radius:1.5em;display:block;float:left;height:2.5em;margin-right:.75em;width:2.5em}.wp-block-latest-posts.alignleft{margin-right:2em}.wp-block-latest-posts.alignright{margin-left:2em}.wp-block-latest-posts.wp-block-latest-posts__list{list-style:none;padding-left:0}.wp-block-latest-posts.wp-block-latest-posts__list li{clear:both}.wp-block-latest-posts.is-grid{display:flex;flex-wrap:wrap;padding:0}.wp-block-latest-posts.is-grid li{margin:0 1.25em 1.25em 0;width:100%}@media (min-width:600px){.wp-block-latest-posts.columns-2 li{width:calc(50% - .625em)}.wp-block-latest-posts.columns-2 li:nth-child(2n){margin-right:0}.wp-block-latest-posts.columns-3 li{width:calc(33.33333% - .83333em)}.wp-block-latest-posts.columns-3 li:nth-child(3n){margin-right:0}.wp-block-latest-posts.columns-4 li{width:calc(25% - .9375em)}.wp-block-latest-posts.columns-4 li:nth-child(4n){margin-right:0}.wp-block-latest-posts.columns-5 li{width:calc(20% - 1em)}.wp-block-latest-posts.columns-5 li:nth-child(5n){margin-right:0}.wp-block-latest-posts.columns-6 li{width:calc(16.66667% - 1.04167em)}.wp-block-latest-posts.columns-6 li:nth-child(6n){margin-right:0}}.wp-block-latest-posts__post-author,.wp-block-latest-posts__post-date{display:block;color:#555;font-size:.8125em}.wp-block-latest-posts__post-excerpt{margin-top:.5em;margin-bottom:1em}.wp-block-latest-posts__featured-image a{display:inline-block}.wp-block-latest-posts__featured-image img{height:auto;width:auto;max-width:100%}.wp-block-latest-posts__featured-image.alignleft{margin-right:1em}.wp-block-latest-posts__featured-image.alignright{margin-left:1em}.wp-block-latest-posts__featured-image.aligncenter{margin-bottom:1em;text-align:center}.block-editor-image-alignment-control__row .components-base-control__field{display:flex;justify-content:space-between;align-items:center}.block-editor-image-alignment-control__row .components-base-control__field .components-base-control__label{margin-bottom:0}ol.has-background,ul.has-background{padding:1.25em 2.375em}.wp-block-media-text{ + /*!rtl:begin:ignore*/direction:ltr; + /*!rtl:end:ignore*/display:grid;grid-template-columns:50% 1fr;grid-template-rows:auto}.wp-block-media-text.has-media-on-the-right{grid-template-columns:1fr 50%}.wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__content,.wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__media{align-self:start}.wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__content,.wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__media,.wp-block-media-text .wp-block-media-text__content,.wp-block-media-text .wp-block-media-text__media{align-self:center}.wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__content,.wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__media{align-self:end}.wp-block-media-text .wp-block-media-text__media{ + /*!rtl:begin:ignore*/grid-column:1;grid-row:1; + /*!rtl:end:ignore*/margin:0}.wp-block-media-text .wp-block-media-text__content{direction:ltr; + /*!rtl:begin:ignore*/grid-column:2;grid-row:1; + /*!rtl:end:ignore*/padding:0 8%;word-break:break-word}.wp-block-media-text.has-media-on-the-right .wp-block-media-text__media{ + /*!rtl:begin:ignore*/grid-column:2;grid-row:1 + /*!rtl:end:ignore*/}.wp-block-media-text.has-media-on-the-right .wp-block-media-text__content{ + /*!rtl:begin:ignore*/grid-column:1;grid-row:1 + /*!rtl:end:ignore*/}.wp-block-media-text__media img,.wp-block-media-text__media video{max-width:unset;width:100%;vertical-align:middle}.wp-block-media-text.is-image-fill .wp-block-media-text__media{height:100%;min-height:250px;background-size:cover}.wp-block-media-text.is-image-fill .wp-block-media-text__media>a{display:block;height:100%}.wp-block-media-text.is-image-fill .wp-block-media-text__media img{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}@media (max-width:600px){.wp-block-media-text.is-stacked-on-mobile{grid-template-columns:100%!important}.wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__media{grid-column:1;grid-row:1}.wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content{grid-column:1;grid-row:2}}.wp-block-navigation{position:relative}.wp-block-navigation ul,.wp-block-navigation ul li{list-style:none;padding:0}.wp-block-navigation .wp-block-navigation-link,.wp-block-navigation .wp-block-pages-list__item{display:flex;align-items:center;position:relative}.wp-block-navigation .wp-block-navigation-link .wp-block-navigation-link__container:empty,.wp-block-navigation .wp-block-pages-list__item .wp-block-navigation-link__container:empty{display:none}.wp-block-navigation .wp-block-navigation-link__content,.wp-block-navigation .wp-block-pages-list__item__link{color:inherit;display:block}.wp-block-navigation[style*=text-decoration] .wp-block-navigation-link,.wp-block-navigation[style*=text-decoration] .wp-block-navigation-link__container,.wp-block-navigation[style*=text-decoration] .wp-block-navigation-link__content,.wp-block-navigation[style*=text-decoration] .wp-block-navigation-link__content:active,.wp-block-navigation[style*=text-decoration] .wp-block-navigation-link__content:focus,.wp-block-navigation[style*=text-decoration] .wp-block-pages-list__item,.wp-block-navigation[style*=text-decoration] .wp-block-pages-list__item__link,.wp-block-navigation[style*=text-decoration] .wp-block-pages-list__item__link:active,.wp-block-navigation[style*=text-decoration] .wp-block-pages-list__item__link:focus{text-decoration:inherit}.wp-block-navigation:not([style*=text-decoration]) .wp-block-navigation-link__content,.wp-block-navigation:not([style*=text-decoration]) .wp-block-navigation-link__content:active,.wp-block-navigation:not([style*=text-decoration]) .wp-block-navigation-link__content:focus,.wp-block-navigation:not([style*=text-decoration]) .wp-block-pages-list__item__link,.wp-block-navigation:not([style*=text-decoration]) .wp-block-pages-list__item__link:active,.wp-block-navigation:not([style*=text-decoration]) .wp-block-pages-list__item__link:focus{text-decoration:none}.wp-block-navigation .wp-block-navigation-link__submenu-icon,.wp-block-navigation .wp-block-page-list__submenu-icon{height:inherit}.wp-block-navigation .wp-block-navigation-link__submenu-icon svg,.wp-block-navigation .wp-block-page-list__submenu-icon svg{stroke:currentColor}.wp-block-navigation .wp-block-navigation-link .wp-block-navigation-link__content.wp-block-navigation-link__content.wp-block-navigation-link__content,.wp-block-navigation .wp-block-pages-list__item .wp-block-pages-list__item__link{padding:0}.wp-block-navigation .has-child>.wp-block-navigation-link__content,.wp-block-navigation .has-child>.wp-block-pages-list__item__link{margin-right:.5em}.wp-block-navigation .has-child .submenu-container,.wp-block-navigation .has-child .wp-block-navigation-link__container{background-color:inherit;color:inherit;position:absolute;z-index:2;flex-direction:column;align-items:normal;min-width:200px;display:none;opacity:0;transition:opacity .1s linear;visibility:hidden}.wp-block-navigation .has-child .submenu-container>.wp-block-navigation-link>.wp-block-navigation-link__content,.wp-block-navigation .has-child .submenu-container>.wp-block-navigation-link>.wp-block-pages-list__item__link,.wp-block-navigation .has-child .submenu-container>.wp-block-pages-list__item>.wp-block-navigation-link__content,.wp-block-navigation .has-child .submenu-container>.wp-block-pages-list__item>.wp-block-pages-list__item__link,.wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-navigation-link>.wp-block-navigation-link__content,.wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-navigation-link>.wp-block-pages-list__item__link,.wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-pages-list__item>.wp-block-navigation-link__content,.wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-pages-list__item>.wp-block-pages-list__item__link{flex-grow:1}.wp-block-navigation .has-child .submenu-container>.wp-block-navigation-link>.wp-block-navigation-link__submenu-icon,.wp-block-navigation .has-child .submenu-container>.wp-block-navigation-link>.wp-block-page-list__submenu-icon,.wp-block-navigation .has-child .submenu-container>.wp-block-pages-list__item>.wp-block-navigation-link__submenu-icon,.wp-block-navigation .has-child .submenu-container>.wp-block-pages-list__item>.wp-block-page-list__submenu-icon,.wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-navigation-link>.wp-block-navigation-link__submenu-icon,.wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-navigation-link>.wp-block-page-list__submenu-icon,.wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-pages-list__item>.wp-block-navigation-link__submenu-icon,.wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-pages-list__item>.wp-block-page-list__submenu-icon{padding-right:.5em}@media (min-width:782px){.wp-block-navigation .has-child .submenu-container .submenu-container:before,.wp-block-navigation .has-child .submenu-container .wp-block-navigation-link__container:before,.wp-block-navigation .has-child .wp-block-navigation-link__container .submenu-container:before,.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container:before{content:"";position:absolute;right:100%;height:100%;display:block;width:.5em;background:transparent}.wp-block-navigation .has-child .submenu-container .wp-block-navigation-link__submenu-icon svg,.wp-block-navigation .has-child .submenu-container .wp-block-page-list__submenu-icon svg,.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link__submenu-icon svg,.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-page-list__submenu-icon svg{transform:rotate(-90deg)}}.wp-block-navigation .has-child:hover>.wp-block-navigation-link__container{display:flex;visibility:visible;opacity:1}.wp-block-navigation .has-child:focus-within>.wp-block-navigation-link__container{display:flex;visibility:visible;opacity:1}.wp-block-navigation .has-child:hover{cursor:pointer}.wp-block-navigation .has-child:hover>.submenu-container{display:flex;visibility:visible;opacity:1}.wp-block-navigation .has-child:focus-within{cursor:pointer}.wp-block-navigation .has-child:focus-within>.submenu-container{display:flex;visibility:visible;opacity:1}.wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .submenu-container,.wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .wp-block-navigation-link__container,.wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .submenu-container,.wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .wp-block-navigation-link__container,.wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .submenu-container,.wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .wp-block-navigation-link__container,.wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .submenu-container,.wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation-link__container{left:auto;right:0}.wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .submenu-container .submenu-container,.wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .submenu-container .wp-block-navigation-link__container,.wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .wp-block-navigation-link__container .submenu-container,.wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container,.wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .submenu-container .submenu-container,.wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .submenu-container .wp-block-navigation-link__container,.wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .wp-block-navigation-link__container .submenu-container,.wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container,.wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .submenu-container .submenu-container,.wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .submenu-container .wp-block-navigation-link__container,.wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .wp-block-navigation-link__container .submenu-container,.wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .wp-block-navigation-link__container .wp-block-navigation-link__container,.wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .submenu-container .submenu-container,.wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .submenu-container .wp-block-navigation-link__container,.wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation-link__container .submenu-container,.wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation-link__container .wp-block-navigation-link__container{left:auto;right:100%}.wp-block-navigation.wp-block-navigation .wp-block-navigation__container>.wp-block-navigation-link,.wp-block-navigation.wp-block-navigation .wp-block-page-list,.wp-block-navigation.wp-block-navigation .wp-block-page-list>.wp-block-pages-list__item{margin:0 2em 0 0}.wp-block-navigation.wp-block-navigation .wp-block-navigation__container>.wp-block-navigation-link:last-child,.wp-block-navigation.wp-block-navigation .wp-block-page-list:last-child,.wp-block-navigation.wp-block-navigation .wp-block-page-list>.wp-block-pages-list__item:last-child{margin-right:0}.wp-block-navigation.wp-block-navigation.has-background .wp-block-navigation__container>.wp-block-navigation-link,.wp-block-navigation.wp-block-navigation.has-background .wp-block-page-list,.wp-block-navigation.wp-block-navigation.has-background .wp-block-page-list>.wp-block-pages-list__item{margin:0 .5em 0 0}.wp-block-navigation.wp-block-navigation.has-background .wp-block-navigation__container .wp-block-navigation-link__content,.wp-block-navigation.wp-block-navigation.has-background .wp-block-page-list .wp-block-pages-list__item__link{padding:.5em 1em}.wp-block-navigation.wp-block-navigation .has-child .submenu-container,.wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container{left:-1em;top:100%}.wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-navigation-link,.wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-pages-list__item,.wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link,.wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-pages-list__item{margin:0}.wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-navigation-link__content,.wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-pages-list__item__link,.wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link__content,.wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-pages-list__item__link{padding:.5em 1em}.wp-block-navigation.wp-block-navigation .has-child .submenu-container .submenu-container,.wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-navigation-link__container,.wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .submenu-container,.wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container{left:-1px}@media (min-width:782px){.wp-block-navigation.wp-block-navigation .has-child .submenu-container .submenu-container,.wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-navigation-link__container,.wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .submenu-container,.wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container{left:100%;top:-1px}}.wp-block-navigation.wp-block-navigation.has-background .has-child .submenu-container,.wp-block-navigation.wp-block-navigation.has-background .has-child .wp-block-navigation-link__container{left:0;top:100%}.wp-block-navigation.wp-block-navigation.has-background .has-child .submenu-container .submenu-container,.wp-block-navigation.wp-block-navigation.has-background .has-child .submenu-container .wp-block-navigation-link__container,.wp-block-navigation.wp-block-navigation.has-background .has-child .wp-block-navigation-link__container .submenu-container,.wp-block-navigation.wp-block-navigation.has-background .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container{left:0}@media (min-width:782px){.wp-block-navigation.wp-block-navigation.has-background .has-child .submenu-container .submenu-container,.wp-block-navigation.wp-block-navigation.has-background .has-child .submenu-container .wp-block-navigation-link__container,.wp-block-navigation.wp-block-navigation.has-background .has-child .wp-block-navigation-link__container .submenu-container,.wp-block-navigation.wp-block-navigation.has-background .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container{left:100%;top:0}}.wp-block-navigation:not(.has-background) .submenu-container,.wp-block-navigation:not(.has-background) .wp-block-navigation__container .wp-block-navigation-link__container{background-color:#fff;color:#000;border:1px solid rgba(0,0,0,.15)}.wp-block-navigation__container{align-items:center;list-style:none;margin:0;padding-left:0}.wp-block-navigation__container .is-responsive{display:none}@media (min-width:600px){.wp-block-navigation__container{display:flex;flex-wrap:wrap}.is-vertical .wp-block-navigation__container{display:block;flex-direction:column;align-items:flex-start}}.items-justified-center .wp-block-navigation__container{justify-content:center}.items-justified-right .wp-block-navigation__container{justify-content:flex-end}.items-justified-space-between .wp-block-navigation__container{justify-content:space-between}.is-vertical.items-justified-center>ul{align-items:center}.is-vertical.items-justified-right>ul{align-items:flex-end}.is-vertical.items-justified-right>ul .wp-block-navigation-link,.is-vertical.items-justified-right>ul .wp-block-pages-list__item{margin-right:0;justify-content:flex-end}.wp-block-navigation__responsive-container{display:none;position:fixed;top:0;left:0;right:0;bottom:0;z-index:1;align-items:flex-start;justify-content:flex-start}.wp-block-navigation__responsive-container.is-menu-open{display:flex;flex-direction:column;overflow:auto;z-index:100000;padding:24px;background-color:inherit}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container{display:flex;flex-direction:column;margin-left:auto;margin-right:auto;align-items:flex-start;line-height:48px;padding:0}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container .wp-block-page-list{flex-direction:column}.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-link,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-link .wp-block-navigation-link__container,.wp-block-navigation__responsive-container.is-menu-open .wp-block-pages-list__item,.wp-block-navigation__responsive-container.is-menu-open .wp-block-pages-list__item .submenu-container{background:transparent!important}@media (min-width:600px){.wp-block-navigation__responsive-container:not(.is-menu-open){display:flex;flex-direction:row;position:relative;background-color:inherit}.wp-block-navigation__responsive-container:not(.is-menu-open) .wp-block-navigation__responsive-container-close{display:none}.wp-block-navigation__responsive-container.is-menu-open .submenu-container.submenu-container.submenu-container.submenu-container,.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-link__container.wp-block-navigation-link__container.wp-block-navigation-link__container.wp-block-navigation-link__container{left:0}}.wp-block-navigation:not(.has-background) .wp-block-navigation__responsive-container.is-menu-open{background-color:#fff;color:#000}.wp-block-navigation__responsive-container-close,.wp-block-navigation__responsive-container-open{vertical-align:middle;cursor:pointer;color:currentColor;background:transparent;border:none;margin:0;padding:0}.wp-block-navigation__responsive-container-close svg,.wp-block-navigation__responsive-container-open svg{fill:currentColor;pointer-events:none;display:block;width:24px;height:24px}.wp-block-navigation__responsive-container-open{display:flex}@media (min-width:600px){.wp-block-navigation__responsive-container-open{display:none}}.items-justified-left .wp-block-navigation__responsive-container-open{margin-left:0;margin-right:auto}.items-justified-center .wp-block-navigation__responsive-container-open{margin-left:auto;margin-right:auto}.items-justified-right .wp-block-navigation__responsive-container-open{margin-left:auto;margin-right:0}.wp-block-navigation__responsive-container-close{position:absolute;top:24px;right:24px;z-index:2}.wp-block-navigation__responsive-close{width:100%}.is-menu-open .wp-block-navigation__responsive-close,.is-menu-open .wp-block-navigation__responsive-container-content,.is-menu-open .wp-block-navigation__responsive-dialog{width:100%;height:100%}.wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-link__submenu-icon,.wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-page-list__submenu-icon{display:none}.wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .has-child .submenu-container,.wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .has-child .wp-block-navigation-link__container{position:relative;opacity:1;visibility:visible;padding:0 0 0 32px;border:none}.wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-link,.wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-pages-list__item{flex-direction:column;align-items:flex-start}html.has-modal-open{overflow:hidden}.wp-block-navigation .wp-block-navigation-link__label{word-break:normal;overflow-wrap:break-word}.wp-block-navigation .wp-block-home-link__content{color:inherit;display:block;padding:.5em 1em}.wp-block-navigation[style*=text-decoration] .wp-block-home-link,.wp-block-navigation[style*=text-decoration] .wp-block-home-link__content,.wp-block-navigation[style*=text-decoration] .wp-block-home-link__content:active,.wp-block-navigation[style*=text-decoration] .wp-block-home-link__content:focus{text-decoration:inherit}.wp-block-navigation:not([style*=text-decoration]) .wp-block-home-link__content,.wp-block-navigation:not([style*=text-decoration]) .wp-block-home-link__content:active,.wp-block-navigation:not([style*=text-decoration]) .wp-block-home-link__content:focus{text-decoration:none}.wp-block-navigation:not(.has-background) .wp-block-navigation__container .wp-block-home-link__container{background-color:#fff;color:#000;border:1px solid rgba(0,0,0,.15)}.wp-block-navigation:not(.has-background) .wp-block-navigation__container .wp-block-home-link__container .wp-block-home-link__container{top:-1px}.wp-block-navigation .wp-block-page-list{display:flex;flex-wrap:wrap;background-color:inherit}.wp-block-navigation .wp-block-pages-list__item{background-color:inherit}.wp-block-navigation .wp-block-page-list__submenu-icon{display:none}.is-open .wp-block-navigation__container .wp-block-page-list,.is-vertical .wp-block-navigation__container .wp-block-page-list,.wp-block-navigation .show-submenu-icons .wp-block-page-list__submenu-icon{display:block}@media (min-width:480px){.is-open .wp-block-navigation__container .wp-block-page-list{display:flex}}.items-justified-space-between .wp-block-page-list{display:contents}.is-small-text{font-size:.875em}.is-regular-text{font-size:1em}.is-large-text{font-size:2.25em}.is-larger-text{font-size:3em}.has-drop-cap:not(:focus):first-letter{float:left;font-size:8.4em;line-height:.68;font-weight:100;margin:.05em .1em 0 0;text-transform:uppercase;font-style:normal}p.has-drop-cap.has-background{overflow:hidden}p.has-background{padding:1.25em 2.375em}p.has-text-color a{color:inherit}.wp-block-post-author{display:flex;flex-wrap:wrap}.wp-block-post-author__byline{width:100%;margin-top:0;margin-bottom:0;font-size:.5em}.wp-block-post-author__avatar{margin-right:1em}.wp-block-post-author__bio{margin-bottom:.7em;font-size:.7em}.wp-block-post-author__content{flex-grow:1;flex-basis:0}.wp-block-post-author__name{font-weight:700;margin:0}.wp-block-post-comments .commentlist{list-style:none;margin:0;padding:0}.wp-block-post-comments .commentlist .comment{min-height:2.25em;padding-left:3.25em}.wp-block-post-comments .commentlist .comment p{font-size:.875em;line-height:1.8;margin:.36em 0 1.4em}.wp-block-post-comments .commentlist .children{list-style:none;margin:0;padding:0}.wp-block-post-comments .comment-author{line-height:1.5;margin-left:-3.25em}.wp-block-post-comments .comment-author .avatar{border-radius:1.5em;display:block;float:left;height:2.5em;margin-right:.75em;width:2.5em}.wp-block-post-comments .comment-author cite{font-style:normal}.wp-block-post-comments .comment-meta{line-height:1.5;margin-left:-3.25em}.wp-block-post-comments .comment-body .commentmetadata{font-size:.75em}.wp-block-post-comments .comment-form-author label,.wp-block-post-comments .comment-form-comment label,.wp-block-post-comments .comment-form-email label,.wp-block-post-comments .comment-form-url label{display:block}.wp-block-post-comments .comment-form-comment textarea{box-sizing:border-box;width:100%}.wp-block-post-comments .reply{font-size:.75em;margin-bottom:1.4em}.wp-block-post-comments input,.wp-block-post-comments textarea{border:1px solid #949494}.wp-block-post-comments-form input[type=submit]{border:none;box-shadow:none;cursor:pointer;display:inline-block;text-align:center;overflow-wrap:break-word}.wp-block-post-excerpt__more-link,.wp-block-post-title a{display:inline-block}.wp-block-preformatted{white-space:pre-wrap}.wp-block-preformatted.has-background{padding:1.25em 2.375em}.wp-block-pullquote{margin:0 0 1em;padding:3em 0;text-align:center}.wp-block-pullquote.alignleft,.wp-block-pullquote.alignright{max-width:420px}.wp-block-pullquote.alignleft p,.wp-block-pullquote.alignright p{font-size:1.25em}.wp-block-pullquote p{font-size:1.75em;line-height:1.6}.wp-block-pullquote cite,.wp-block-pullquote footer{position:relative}.wp-block-pullquote .has-text-color a{color:inherit}.wp-block-pullquote:not(.is-style-solid-color){background:none}.wp-block-pullquote.is-style-solid-color{border:none}.wp-block-pullquote.is-style-solid-color blockquote{margin-left:auto;margin-right:auto;text-align:left;max-width:60%}.wp-block-pullquote.is-style-solid-color blockquote p{margin-top:0;margin-bottom:0;font-size:2em}.wp-block-pullquote.is-style-solid-color blockquote cite{text-transform:none;font-style:normal}.wp-block-pullquote cite{color:inherit}.wp-block-post-template,.wp-block-query-loop{max-width:100%;list-style:none;padding:0}.wp-block-post-template li,.wp-block-query-loop li{clear:both}.wp-block-post-template.is-flex-container,.wp-block-query-loop.is-flex-container{flex-direction:row;display:flex;flex-wrap:wrap}.wp-block-post-template.is-flex-container li,.wp-block-query-loop.is-flex-container li{margin:0 0 1.25em;width:100%}@media (min-width:600px){.wp-block-post-template.is-flex-container li,.wp-block-query-loop.is-flex-container li{margin-right:1.25em}.wp-block-post-template.is-flex-container.is-flex-container.columns-2>li,.wp-block-query-loop.is-flex-container.is-flex-container.columns-2>li{width:calc(50% - .625em)}.wp-block-post-template.is-flex-container.is-flex-container.columns-2>li:nth-child(2n),.wp-block-query-loop.is-flex-container.is-flex-container.columns-2>li:nth-child(2n){margin-right:0}.wp-block-post-template.is-flex-container.is-flex-container.columns-3>li,.wp-block-query-loop.is-flex-container.is-flex-container.columns-3>li{width:calc(33.33333% - .83333em)}.wp-block-post-template.is-flex-container.is-flex-container.columns-3>li:nth-child(3n),.wp-block-query-loop.is-flex-container.is-flex-container.columns-3>li:nth-child(3n){margin-right:0}.wp-block-post-template.is-flex-container.is-flex-container.columns-4>li,.wp-block-query-loop.is-flex-container.is-flex-container.columns-4>li{width:calc(25% - .9375em)}.wp-block-post-template.is-flex-container.is-flex-container.columns-4>li:nth-child(4n),.wp-block-query-loop.is-flex-container.is-flex-container.columns-4>li:nth-child(4n){margin-right:0}.wp-block-post-template.is-flex-container.is-flex-container.columns-5>li,.wp-block-query-loop.is-flex-container.is-flex-container.columns-5>li{width:calc(20% - 1em)}.wp-block-post-template.is-flex-container.is-flex-container.columns-5>li:nth-child(5n),.wp-block-query-loop.is-flex-container.is-flex-container.columns-5>li:nth-child(5n){margin-right:0}.wp-block-post-template.is-flex-container.is-flex-container.columns-6>li,.wp-block-query-loop.is-flex-container.is-flex-container.columns-6>li{width:calc(16.66667% - 1.04167em)}.wp-block-post-template.is-flex-container.is-flex-container.columns-6>li:nth-child(6n),.wp-block-query-loop.is-flex-container.is-flex-container.columns-6>li:nth-child(6n){margin-right:0}}.wp-block-query-pagination{display:flex;flex-direction:row;flex-wrap:wrap}.wp-block-query-pagination>.wp-block-query-pagination-next,.wp-block-query-pagination>.wp-block-query-pagination-numbers,.wp-block-query-pagination>.wp-block-query-pagination-previous{display:inline-block;margin-right:.5em;margin-bottom:.5em}.wp-block-query-pagination>.wp-block-query-pagination-next:last-child,.wp-block-query-pagination>.wp-block-query-pagination-numbers:last-child,.wp-block-query-pagination>.wp-block-query-pagination-previous:last-child{margin-right:0}.wp-block-quote.is-large,.wp-block-quote.is-style-large{margin-bottom:1em;padding:0 1em}.wp-block-quote.is-large p,.wp-block-quote.is-style-large p{font-size:1.5em;font-style:italic;line-height:1.6}.wp-block-quote.is-large cite,.wp-block-quote.is-large footer,.wp-block-quote.is-style-large cite,.wp-block-quote.is-style-large footer{font-size:1.125em;text-align:right}.wp-block-rss.wp-block-rss{box-sizing:border-box}.wp-block-rss.alignleft{margin-right:2em}.wp-block-rss.alignright{margin-left:2em}.wp-block-rss.is-grid{display:flex;flex-wrap:wrap;padding:0;list-style:none}.wp-block-rss.is-grid li{margin:0 1em 1em 0;width:100%}@media (min-width:600px){.wp-block-rss.columns-2 li{width:calc(50% - 1em)}.wp-block-rss.columns-3 li{width:calc(33.33333% - 1em)}.wp-block-rss.columns-4 li{width:calc(25% - 1em)}.wp-block-rss.columns-5 li{width:calc(20% - 1em)}.wp-block-rss.columns-6 li{width:calc(16.66667% - 1em)}}.wp-block-rss__item-author,.wp-block-rss__item-publish-date{display:block;color:#555;font-size:.8125em}.wp-block-search .wp-block-search__button{background:#f7f7f7;border:1px solid #ccc;padding:.375em .625em;color:#32373c;margin-left:.625em;word-break:normal}.wp-block-search .wp-block-search__button.has-icon{line-height:0}.wp-block-search .wp-block-search__button svg{min-width:1.5em;min-height:1.5em}.wp-block-search .wp-block-search__inside-wrapper{display:flex;flex:auto;flex-wrap:nowrap;max-width:100%}.wp-block-search .wp-block-search__label{width:100%}.wp-block-search .wp-block-search__input{flex-grow:1;min-width:3em;border:1px solid #949494}.wp-block-search.wp-block-search__button-only .wp-block-search__button{margin-left:0}.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper{padding:4px;border:1px solid #949494}.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input{border-radius:0;border:none;padding:0 0 0 .25em}.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:focus{outline:none}.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button{padding:.125em .5em}.wp-block-search.aligncenter .wp-block-search__inside-wrapper{margin:auto}.wp-block-separator{border-top:1px solid;border-bottom:1px solid}.wp-block-separator.is-style-wide{border-bottom-width:1px}.wp-block-separator.is-style-dots{background:none!important;border:none;text-align:center;width:none;line-height:1;height:auto}.wp-block-separator.is-style-dots:before{content:"···";color:currentColor;font-size:1.5em;letter-spacing:2em;padding-left:2em;font-family:serif}.wp-block-site-logo{line-height:0}.wp-block-site-logo a{display:inline-block}.wp-block-site-logo.is-default-size img{width:120px;height:auto}.wp-block-site-logo .aligncenter{display:table}.wp-block-site-logo.is-style-rounded img{border-radius:9999px}.wp-block-social-links{display:flex;flex-wrap:wrap;padding-left:0;padding-right:0;text-indent:0;margin-left:0}.wp-block-social-links .wp-social-link a,.wp-block-social-links .wp-social-link a:hover{text-decoration:none;border-bottom:0;box-shadow:none}.wp-block-social-links .wp-social-link.wp-social-link.wp-social-link{margin:4px 8px 4px 0}.wp-block-social-links .wp-social-link a{padding:.25em}.wp-block-social-links .wp-social-link svg{width:1em;height:1em}.wp-block-social-links.has-small-icon-size{font-size:16px}.wp-block-social-links,.wp-block-social-links.has-normal-icon-size{font-size:24px}.wp-block-social-links.has-large-icon-size{font-size:36px}.wp-block-social-links.has-huge-icon-size{font-size:48px}.wp-block-social-links.aligncenter{justify-content:center;display:flex}.wp-block-social-links.alignright{justify-content:flex-end}.wp-block-social-link{display:block;border-radius:9999px;transition:transform .1s ease;height:auto}@media (prefers-reduced-motion:reduce){.wp-block-social-link{transition-duration:0s;transition-delay:0s}}.wp-block-social-link a{display:block;line-height:0;transition:transform .1s ease}.wp-block-social-link:hover{transform:scale(1.1)}.wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor,.wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:active,.wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:hover,.wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:visited,.wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor svg{color:currentColor;fill:currentColor}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link{background-color:#f0f0f0;color:#444}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-amazon{background-color:#f90;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-bandcamp{background-color:#1ea0c3;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-behance{background-color:#0757fe;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-codepen{background-color:#1e1f26;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-deviantart{background-color:#02e49b;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dribbble{background-color:#e94c89;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dropbox{background-color:#4280ff;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-etsy{background-color:#f45800;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-facebook{background-color:#1778f2;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-fivehundredpx{background-color:#000;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-flickr{background-color:#0461dd;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-foursquare{background-color:#e65678;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-github{background-color:#24292d;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-goodreads{background-color:#eceadd;color:#382110}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-google{background-color:#ea4434;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-instagram{background-color:#f00075;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-lastfm{background-color:#e21b24;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-linkedin{background-color:#0d66c2;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-mastodon{background-color:#3288d4;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-medium{background-color:#02ab6c;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-meetup{background-color:#f6405f;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-patreon{background-color:#ff424d;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pinterest{background-color:#e60122;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pocket{background-color:#ef4155;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-reddit{background-color:#fe4500;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-skype{background-color:#0478d7;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-snapchat{background-color:#fefc00;color:#fff;stroke:#000}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-soundcloud{background-color:#ff5600;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-spotify{background-color:#1bd760;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-telegram{background-color:#2aabee;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tiktok{background-color:#000;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tumblr{background-color:#011835;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitch{background-color:#6440a4;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitter{background-color:#1da1f2;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vimeo{background-color:#1eb7ea;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vk{background-color:#4680c2;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-wordpress{background-color:#3499cd;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-yelp{background-color:#d32422;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-youtube{background-color:red;color:#fff}.wp-block-social-links.is-style-logos-only .wp-social-link{background:none;padding:4px}.wp-block-social-links.is-style-logos-only .wp-social-link-amazon{color:#f90}.wp-block-social-links.is-style-logos-only .wp-social-link-bandcamp{color:#1ea0c3}.wp-block-social-links.is-style-logos-only .wp-social-link-behance{color:#0757fe}.wp-block-social-links.is-style-logos-only .wp-social-link-codepen{color:#1e1f26}.wp-block-social-links.is-style-logos-only .wp-social-link-deviantart{color:#02e49b}.wp-block-social-links.is-style-logos-only .wp-social-link-dribbble{color:#e94c89}.wp-block-social-links.is-style-logos-only .wp-social-link-dropbox{color:#4280ff}.wp-block-social-links.is-style-logos-only .wp-social-link-etsy{color:#f45800}.wp-block-social-links.is-style-logos-only .wp-social-link-facebook{color:#1778f2}.wp-block-social-links.is-style-logos-only .wp-social-link-fivehundredpx{color:#000}.wp-block-social-links.is-style-logos-only .wp-social-link-flickr{color:#0461dd}.wp-block-social-links.is-style-logos-only .wp-social-link-foursquare{color:#e65678}.wp-block-social-links.is-style-logos-only .wp-social-link-github{color:#24292d}.wp-block-social-links.is-style-logos-only .wp-social-link-goodreads{color:#382110}.wp-block-social-links.is-style-logos-only .wp-social-link-google{color:#ea4434}.wp-block-social-links.is-style-logos-only .wp-social-link-instagram{color:#f00075}.wp-block-social-links.is-style-logos-only .wp-social-link-lastfm{color:#e21b24}.wp-block-social-links.is-style-logos-only .wp-social-link-linkedin{color:#0d66c2}.wp-block-social-links.is-style-logos-only .wp-social-link-mastodon{color:#3288d4}.wp-block-social-links.is-style-logos-only .wp-social-link-medium{color:#02ab6c}.wp-block-social-links.is-style-logos-only .wp-social-link-meetup{color:#f6405f}.wp-block-social-links.is-style-logos-only .wp-social-link-patreon{color:#ff424d}.wp-block-social-links.is-style-logos-only .wp-social-link-pinterest{color:#e60122}.wp-block-social-links.is-style-logos-only .wp-social-link-pocket{color:#ef4155}.wp-block-social-links.is-style-logos-only .wp-social-link-reddit{color:#fe4500}.wp-block-social-links.is-style-logos-only .wp-social-link-skype{color:#0478d7}.wp-block-social-links.is-style-logos-only .wp-social-link-snapchat{color:#fff;stroke:#000}.wp-block-social-links.is-style-logos-only .wp-social-link-soundcloud{color:#ff5600}.wp-block-social-links.is-style-logos-only .wp-social-link-spotify{color:#1bd760}.wp-block-social-links.is-style-logos-only .wp-social-link-telegram{color:#2aabee}.wp-block-social-links.is-style-logos-only .wp-social-link-tiktok{color:#000}.wp-block-social-links.is-style-logos-only .wp-social-link-tumblr{color:#011835}.wp-block-social-links.is-style-logos-only .wp-social-link-twitch{color:#6440a4}.wp-block-social-links.is-style-logos-only .wp-social-link-twitter{color:#1da1f2}.wp-block-social-links.is-style-logos-only .wp-social-link-vimeo{color:#1eb7ea}.wp-block-social-links.is-style-logos-only .wp-social-link-vk{color:#4680c2}.wp-block-social-links.is-style-logos-only .wp-social-link-wordpress{color:#3499cd}.wp-block-social-links.is-style-logos-only .wp-social-link-yelp{color:#d32422}.wp-block-social-links.is-style-logos-only .wp-social-link-youtube{color:red}.wp-block-social-links.is-style-pill-shape .wp-social-link{width:auto}.wp-block-social-links.is-style-pill-shape .wp-social-link a{padding-left:.66667em;padding-right:.66667em}.wp-block-spacer{clear:both}.wp-block-tag-cloud.aligncenter{text-align:center}.wp-block-tag-cloud.alignfull{padding-left:1em;padding-right:1em}.wp-block-table{margin:0 0 1em;overflow-x:auto}.wp-block-table table{border-collapse:collapse;width:100%}.wp-block-table .has-fixed-layout{table-layout:fixed;width:100%}.wp-block-table .has-fixed-layout td,.wp-block-table .has-fixed-layout th{word-break:break-word}.wp-block-table.aligncenter,.wp-block-table.alignleft,.wp-block-table.alignright{display:table;width:auto}.wp-block-table.aligncenter td,.wp-block-table.aligncenter th,.wp-block-table.alignleft td,.wp-block-table.alignleft th,.wp-block-table.alignright td,.wp-block-table.alignright th{word-break:break-word}.wp-block-table .has-subtle-light-gray-background-color{background-color:#f3f4f5}.wp-block-table .has-subtle-pale-green-background-color{background-color:#e9fbe5}.wp-block-table .has-subtle-pale-blue-background-color{background-color:#e7f5fe}.wp-block-table .has-subtle-pale-pink-background-color{background-color:#fcf0ef}.wp-block-table.is-style-stripes{border-spacing:0;border-collapse:inherit;background-color:transparent;border-bottom:1px solid #f0f0f0}.wp-block-table.is-style-stripes tbody tr:nth-child(odd){background-color:#f0f0f0}.wp-block-table.is-style-stripes.has-subtle-light-gray-background-color tbody tr:nth-child(odd){background-color:#f3f4f5}.wp-block-table.is-style-stripes.has-subtle-pale-green-background-color tbody tr:nth-child(odd){background-color:#e9fbe5}.wp-block-table.is-style-stripes.has-subtle-pale-blue-background-color tbody tr:nth-child(odd){background-color:#e7f5fe}.wp-block-table.is-style-stripes.has-subtle-pale-pink-background-color tbody tr:nth-child(odd){background-color:#fcf0ef}.wp-block-table.is-style-stripes td,.wp-block-table.is-style-stripes th{border-color:transparent}.wp-block-table .has-border-color>*,.wp-block-table .has-border-color td,.wp-block-table .has-border-color th,.wp-block-table .has-border-color tr{border-color:inherit}.wp-block-table table[style*=border-style]>*,.wp-block-table table[style*=border-style] td,.wp-block-table table[style*=border-style] th,.wp-block-table table[style*=border-style] tr{border-style:inherit}.wp-block-table table[style*=border-width]>*,.wp-block-table table[style*=border-width] td,.wp-block-table table[style*=border-width] th,.wp-block-table table[style*=border-width] tr{border-width:inherit}.wp-block-text-columns,.wp-block-text-columns.aligncenter{display:flex}.wp-block-text-columns .wp-block-column{margin:0 1em;padding:0}.wp-block-text-columns .wp-block-column:first-child{margin-left:0}.wp-block-text-columns .wp-block-column:last-child{margin-right:0}.wp-block-text-columns.columns-2 .wp-block-column{width:50%}.wp-block-text-columns.columns-3 .wp-block-column{width:33.33333%}.wp-block-text-columns.columns-4 .wp-block-column{width:25%}pre.wp-block-verse{font-family:inherit;overflow:auto;white-space:pre-wrap}.wp-block-video{margin:0 0 1em}.wp-block-video video{width:100%}@supports (position:sticky){.wp-block-video [poster]{-o-object-fit:cover;object-fit:cover}}.wp-block-video.aligncenter{text-align:center}.wp-block-video figcaption{margin-top:.5em;margin-bottom:1em}.wp-block-post-featured-image{margin-left:0;margin-right:0}.wp-block-post-featured-image a{display:inline-block}.wp-block-post-featured-image img{max-width:100%;height:auto}.wp-block-post-featured-image.alignfull img,.wp-block-post-featured-image.alignwide img{width:100%}:root .has-pale-pink-background-color{background-color:#f78da7}:root .has-vivid-red-background-color{background-color:#cf2e2e}:root .has-luminous-vivid-orange-background-color{background-color:#ff6900}:root .has-luminous-vivid-amber-background-color{background-color:#fcb900}:root .has-light-green-cyan-background-color{background-color:#7bdcb5}:root .has-vivid-green-cyan-background-color{background-color:#00d084}:root .has-pale-cyan-blue-background-color{background-color:#8ed1fc}:root .has-vivid-cyan-blue-background-color{background-color:#0693e3}:root .has-vivid-purple-background-color{background-color:#9b51e0}:root .has-white-background-color{background-color:#fff}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-cyan-bluish-gray-background-color{background-color:#abb8c3}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-black-background-color{background-color:#000}:root .has-pale-pink-color{color:#f78da7}:root .has-vivid-red-color{color:#cf2e2e}:root .has-luminous-vivid-orange-color{color:#ff6900}:root .has-luminous-vivid-amber-color{color:#fcb900}:root .has-light-green-cyan-color{color:#7bdcb5}:root .has-vivid-green-cyan-color{color:#00d084}:root .has-pale-cyan-blue-color{color:#8ed1fc}:root .has-vivid-cyan-blue-color{color:#0693e3}:root .has-vivid-purple-color{color:#9b51e0}:root .has-white-color{color:#fff}:root .has-very-light-gray-color{color:#eee}:root .has-cyan-bluish-gray-color{color:#abb8c3}:root .has-very-dark-gray-color{color:#313131}:root .has-black-color{color:#000}:root .has-vivid-cyan-blue-to-vivid-purple-gradient-background{background:linear-gradient(135deg,#0693e3,#9b51e0)}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-light-green-cyan-to-vivid-green-cyan-gradient-background{background:linear-gradient(135deg,#7adcb4,#00d082)}:root .has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background:linear-gradient(135deg,#fcb900,#ff6900)}:root .has-luminous-vivid-orange-to-vivid-red-gradient-background{background:linear-gradient(135deg,#ff6900,#cf2e2e)}:root .has-very-light-gray-to-cyan-bluish-gray-gradient-background{background:linear-gradient(135deg,#eee,#a9b8c3)}:root .has-cool-to-warm-spectrum-gradient-background{background:linear-gradient(135deg,#4aeadc,#9778d1 20%,#cf2aba 40%,#ee2c82 60%,#fb6962 80%,#fef84c)}:root .has-blush-light-purple-gradient-background{background:linear-gradient(135deg,#ffceec,#9896f0)}:root .has-blush-bordeaux-gradient-background{background:linear-gradient(135deg,#fecda5,#fe2d2d 50%,#6b003e)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-luminous-dusk-gradient-background{background:linear-gradient(135deg,#ffcb70,#c751c0 50%,#4158d0)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-pale-ocean-gradient-background{background:linear-gradient(135deg,#fff5cb,#b6e3d4 50%,#33a7b5)}:root .has-electric-grass-gradient-background{background:linear-gradient(135deg,#caf880,#71ce7e)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}.has-small-font-size{font-size:.8125em}.has-normal-font-size,.has-regular-font-size{font-size:1em}.has-medium-font-size{font-size:1.25em}.has-large-font-size{font-size:2.25em}.has-huge-font-size,.has-larger-font-size{font-size:2.625em}.has-text-align-center{text-align:center}.has-text-align-left{text-align:left}.has-text-align-right{text-align:right}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.screen-reader-text:focus{background-color:#ddd;clip:auto!important;-webkit-clip-path:none;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/8ecf5928cad5a168ff4f63f67344e82f2dcc8764.00000502.html b/www/.content.EZtzwPjb/html/8ecf5928cad5a168ff4f63f67344e82f2dcc8764.00000502.html new file mode 100644 index 0000000..c36cd88 --- /dev/null +++ b/www/.content.EZtzwPjb/html/8ecf5928cad5a168ff4f63f67344e82f2dcc8764.00000502.html @@ -0,0 +1,364 @@ + + + + + + + rtmp – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        + +
                        +
                        + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/8ef2d0b1991640551ff49c01783aed16892a2e47.00000174.html b/www/.content.EZtzwPjb/html/8ef2d0b1991640551ff49c01783aed16892a2e47.00000174.html new file mode 100644 index 0000000..e0ed501 --- /dev/null +++ b/www/.content.EZtzwPjb/html/8ef2d0b1991640551ff49c01783aed16892a2e47.00000174.html @@ -0,0 +1,318 @@ + + + + + + + + SAMSUNG – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        +
                        +
                        +
                        +
                        + + + +

                        +
                        +
                        +
                        +
                        +

                        + 0 commentaire

                        +
                        +
                        +
                        +

                        Laisser un commentaire

                        Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                        +
                        +
                        +

                        + +

                        +
                        +
                        +
                        +
                        +
                        +
                        +
                        +
                        +
                        +
                        +
                        +
                        +
                        + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/8faadd2f15f303b1a49b0143408938e20b6671e9.00000643.css b/www/.content.EZtzwPjb/html/8faadd2f15f303b1a49b0143408938e20b6671e9.00000643.css new file mode 100644 index 0000000..8043bbf --- /dev/null +++ b/www/.content.EZtzwPjb/html/8faadd2f15f303b1a49b0143408938e20b6671e9.00000643.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;background:#fff;border:1px +solid #f00;font-size:10pt;width:280px;padding:2px}span.wpcf7-not-valid-tip-no-ajax{color:#f00;font-size:10pt;display:block}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/8ffa88dd4d62844d209b667300b45a40e9abee94.00000436.xml b/www/.content.EZtzwPjb/html/8ffa88dd4d62844d209b667300b45a40e9abee94.00000436.xml new file mode 100644 index 0000000..c52d759 --- /dev/null +++ b/www/.content.EZtzwPjb/html/8ffa88dd4d62844d209b667300b45a40e9abee94.00000436.xml @@ -0,0 +1,43 @@ + + + live – HugoPoi + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Mon, 22 Aug 2016 14:10:26 +0000 + fr-FR + hourly + 1 + https://wordpress.org/?v=4.6.1 + + Et si on faisait sans Twitch et sans Youtube + http://blog.hugopoi.net/2015/10/24/et-si-on-faisait-sans-twitch-et-sans-youtube/ + http://blog.hugopoi.net/2015/10/24/et-si-on-faisait-sans-twitch-et-sans-youtube/#respond + Sat, 24 Oct 2015 13:07:55 +0000 + + + + + + + + + + + + + + http://blog.hugopoi.net/?p=909 + Lire la suite »

                        ]]>
                        + http://blog.hugopoi.net/2015/10/24/et-si-on-faisait-sans-twitch-et-sans-youtube/feed/ + 0 +
                        +
                        +
                        diff --git a/www/.content.EZtzwPjb/html/907e563328ef8d365fc50024197af9d69bdae42f.00000397.html b/www/.content.EZtzwPjb/html/907e563328ef8d365fc50024197af9d69bdae42f.00000397.html new file mode 100644 index 0000000..1fe0ca2 --- /dev/null +++ b/www/.content.EZtzwPjb/html/907e563328ef8d365fc50024197af9d69bdae42f.00000397.html @@ -0,0 +1,364 @@ + + + + + + + Download Day – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +

                        Download-Day

                        Bon voilà, je vais officialiser ma participation au D-Day organisé par LinuxManua, en date du 1er novembre 2010. Le but de l’opération étant de télécharger 20 Go et cela uniquement sur les réseaux Peer to Peer de préférence pas anonyme : Edonkey2000, Gnutella, Bitorrent, etc. Alors comme je suis joueur, je Lire la suite…

                        +
                        +
                        + +
                        +
                        +
                        +
                        + +
                        +
                        + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/908b290da236a20e47314b9b2b1aad138bac60df.00001273.json b/www/.content.EZtzwPjb/html/908b290da236a20e47314b9b2b1aad138bac60df.00001273.json new file mode 100644 index 0000000..f140660 --- /dev/null +++ b/www/.content.EZtzwPjb/html/908b290da236a20e47314b9b2b1aad138bac60df.00001273.json @@ -0,0 +1 @@ +{"version":"1.0","provider_name":"HugoPoi","provider_url":"http:\/\/blog.hugopoi.net","author_name":"HugoPoi","author_url":"http:\/\/blog.hugopoi.net\/author\/hugopoi\/","title":"Test du Samsung Galaxy S","type":"rich","width":600,"height":338,"html":"
                        Test du Samsung Galaxy S<\/a><\/blockquote>\n + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        + +
                        +
                        + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/91181ddc30cca36f09729899673ec4a19d5a44bf.00001245.js b/www/.content.EZtzwPjb/html/91181ddc30cca36f09729899673ec4a19d5a44bf.00001245.js new file mode 100644 index 0000000..69c1f01 --- /dev/null +++ b/www/.content.EZtzwPjb/html/91181ddc30cca36f09729899673ec4a19d5a44bf.00001245.js @@ -0,0 +1 @@ +!function(a,b){"use strict";function c(){if(!e){e=!0;var a,c,d,f,g=-1!==navigator.appVersion.indexOf("MSIE 10"),h=!!navigator.userAgent.match(/Trident.*rv:11\./),i=b.querySelectorAll("iframe.wp-embedded-content");for(c=0;c1e3)g=1e3;else if(~~g<200)g=200;f.height=g}if("link"===d.message)if(h=b.createElement("a"),i=b.createElement("a"),h.href=f.getAttribute("src"),i.href=d.value,i.host===h.host)if(b.activeElement===f)a.top.location.href=d.value}else;}},d)a.addEventListener("message",a.wp.receiveEmbedMessage,!1),b.addEventListener("DOMContentLoaded",c,!1),a.addEventListener("load",c,!1)}(window,document); \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/9168f06fa9bd43088674f2c7a61a86deb2b5bf24.00000046.html b/www/.content.EZtzwPjb/html/9168f06fa9bd43088674f2c7a61a86deb2b5bf24.00000046.html new file mode 100644 index 0000000..5bacc39 --- /dev/null +++ b/www/.content.EZtzwPjb/html/9168f06fa9bd43088674f2c7a61a86deb2b5bf24.00000046.html @@ -0,0 +1,606 @@ + + + + + + + + Test du Samsung Galaxy S – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        +

                        C’est une petite révolution pour moi qui passe d’un HTC Touch à un Galaxy S. Le Touch était bien en son temps, smartphone de première génération, mais vite dépassé par les évènements et l’avènement du web sur mobile. Alors déjà pour commencer les caractéristiques techniques :

                        +
                          +
                        • Poids : 118 g
                        • +
                        • Dimensions : 122.4 x 64.2 x 9.9 mm
                        • +
                        • Ecran : Super AMOLED 4.0 » – 16 millions de couleurs 480 x 800
                        • +
                        • Processeur : ARM Cortex A8 @ 1 Ghz – Hummingbird
                        • +
                        • GPU : PowerVR SGX540
                        • +
                        • Ram : 512 Mo
                        • +
                        • Stockage : 8 Go interne + extension via microSD
                        • +
                        • Caméra : 5 mégapixels avec enregistrement vidéo en 720p à 30 images/seconde + caméra frontale
                        • +
                        • Com. : Wifi (b/g/n) , Bluetooth 3.0, Modem 3G+ HSDPA
                        • +
                        • Batterie : 1500 mAh
                        • +
                        +

                        Les accessoires fournis sont :

                        +
                          +
                        • Un cable USB
                        • +
                        • Un chargeur
                        • +
                        • Une paire d’écouteurs intra-auriculaire qui sert d’antenne pour la radio FM (donc inutilisable avec mon casque bluetooth).
                        • +
                        +

                        D’aspect extérieur on dirait un iPhone en légèrement plus grand et moins bien fini, la coque fais un peu cheap. Par contre il est très léger malgré l’écran 4 pouces et la grosse batterie, il tient très bien en poche.

                        +

                        L’écran est tout simplement bleuffant, rien à voir avec du LCD, là c’est du superAmoled et le contraste est très bon. Le tactile capacitif multitouch est sans commentaire… exemplaire !

                        +

                        Je l’ai acheté chez Orange, donc avec une Rom Android 2.1 custom Orange Daube. J’ai viré tout ça et j’ai mis une Darky’s v5.6 Gingerbread Edition mais la v7 est sortie 5 jours après donc pas encore eu le temps de tester. Ce téléphone est très facile à rooter et à flasher surtout avec l’aide fournie par frandroid.com.

                        +

                        Le compte rendu sur la fluidité du téléphone en général est donc basé sur une Android 2.2.1 Custom Darky v5.6. Alors c’est de la bombe, c’est fluide et tout est instantané. L’interface ressemble beaucoup à celle d’un iPhone, mais avec explorateur de fichier, player video DIVX, stockage de masse… Pour les détails c’est du Android donc vous pouvez tout personnaliser avec des thèmes, widgets, et applications via le Market. Le lecteur vidéo intégré lit de base les divx/xvid, mkv 720p mais j’ai pas testé la prise en charge de sous-titre. Il y a aussi une application très intéressante qui s’appelle AllShare qui permet de lire ou de diffuser via Upnp AV (DLNA) mais je n’ai pas reussi à la faire marcher avec Vuze, Tversity et ma Freebox donc pour l’instant je considère que c’est de la merde.

                        +

                        La caméra ça donne cela :

                        +

                        Rouen sous la neige

                        +

                        La qualité vidéo est très bonne mais le micro est un peu trop sensible du coup quand on parle trop près ça sature un peu vite.
                        +

                        +

                        Au niveau de l’autonomie, c’est comme sur les autres smartphones, environ 1 journée en usage intensif (surf, mail, vidéo, map). Par contre en utilisation Navigation GPS c’est plutôt une demi-journée. Si vous vous contentez de SMS et téléphone, 2 3 jours sans recharger c’est possible.

                        +

                        Pour conclure voici les plus et moins :

                        +

                        Les +

                        +

                        Léger

                        +

                        Ecran 4″ Amoled

                        +

                        Réactivité Générale

                        +

                        Le lecteur vidéo lit tout jusqu’à 720p compris

                        +

                        Wifi et Bluetooth efficace et grande portée

                        +

                        Les –

                        +

                        La coque fait un peu cheap

                        +

                        L’autonomie en prend un coup dés qu’on utilise le GPS

                        +

                        L’Appli AllShare qui nemarche pas, ou mal

                        +

                        Le connecteur USB pas standard

                        +

                        L’adaptateur HDMI en option

                        +

                        Voici quelques photos de la bête :

                        + + +
                        +
                        +
                        +
                        +
                        Catégories : Test
                        +
                        +
                        +
                        + + + + + + + + + +
                        +
                        +
                        +
                        +
                        +
                        +
                        +

                        + 1 commentaire

                        +
                        +
                        +

                        + Tweets that mention Test du #Samsung #Galaxy S #GSPowa -- Topsy.com + · 27 décembre 2010 à 21 h 18 min +

                        +

                        […] This post was mentioned on Twitter by Da Costa. Da Costa said: RT @HugoPoi #Test du #Samsung #Galaxy S http://bit.ly/eNER4X #GSPowa Ouais […]

                        + +
                        +
                        + +
                        +
                        +
                        +

                        Répondre à Tweets that mention Test du #Samsung #Galaxy S #GSPowa -- Topsy.com Annuler la réponse

                        Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                        +
                        +
                        +

                        + +

                        +
                        +
                        +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        + + +
                        + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/9206bd3851a8fc45eb02616ac926080cbb4c3c75.00000490.html b/www/.content.EZtzwPjb/html/9206bd3851a8fc45eb02616ac926080cbb4c3c75.00000490.html new file mode 100644 index 0000000..22e3533 --- /dev/null +++ b/www/.content.EZtzwPjb/html/9206bd3851a8fc45eb02616ac926080cbb4c3c75.00000490.html @@ -0,0 +1,364 @@ + + + + + + + présentation – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +

                        Hello World

                        Bienvenue sur mon blog, voila c’est fait, je voulais depuis un petit moment ouvrir un blog pour m’ exprimer sur l’ actualité geek et raconter ma vie parler technique. Alors j’annonce les couleurs ici je vais pas parler coupe de cheveux ni sous-vêtement mais des sujets orientés internet, réseaux, développement et politique #hadopi #fail.

                        +
                        +
                        + +
                        +
                        +
                        +
                        + +
                        +
                        + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/924b1f7f30da9f6a8491db49219f200bc52a331c.00000409.html b/www/.content.EZtzwPjb/html/924b1f7f30da9f6a8491db49219f200bc52a331c.00000409.html new file mode 100644 index 0000000..1863038 --- /dev/null +++ b/www/.content.EZtzwPjb/html/924b1f7f30da9f6a8491db49219f200bc52a331c.00000409.html @@ -0,0 +1,367 @@ + + + + + + + four – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +

                        Reflow Dell Inspiron 1546

                        +
                        Les choses n’ont pas beaucoup changé en terme d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un cadeau empoisonné de la belle-famille « Essaye de faire ce que tu peux pour récupérer mes photos, j’en rachèterais un ». Le pc portable en question était dans un état de mort certain.
                        + (suite…)
                        +
                        +
                        Par HugoPoi, il y a
                        +
                        + +
                        +
                        +
                        +
                        + +
                        +
                        + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/929badc3dcb200a4dc610682a348ac343edb6382.00000717.css b/www/.content.EZtzwPjb/html/929badc3dcb200a4dc610682a348ac343edb6382.00000717.css new file mode 100644 index 0000000..fe9245c --- /dev/null +++ b/www/.content.EZtzwPjb/html/929badc3dcb200a4dc610682a348ac343edb6382.00000717.css @@ -0,0 +1,28 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7 .screen-reader-response{position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);height:1px;width:1px;margin:0;padding:0;border:0}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{color:#f00;font-size:1em;display:block}.use-floating-validation-tip span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;border:1px +solid #f00;background:#fff;padding: .2em .8em}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wpcf7-recaptcha +iframe{margin-bottom:0}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/92a86f148eadbfad788a12ca65858ef8ef05d5d5.00000476.html b/www/.content.EZtzwPjb/html/92a86f148eadbfad788a12ca65858ef8ef05d5d5.00000476.html new file mode 100644 index 0000000..5b47ccc --- /dev/null +++ b/www/.content.EZtzwPjb/html/92a86f148eadbfad788a12ca65858ef8ef05d5d5.00000476.html @@ -0,0 +1,364 @@ + + + + + + + open broadcaster studio – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        + +
                        +
                        + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/92dbf984fdb78caaaf0f529ac03191a985794a3e.00000786.js b/www/.content.EZtzwPjb/html/92dbf984fdb78caaaf0f529ac03191a985794a3e.00000786.js new file mode 100644 index 0000000..f73abd0 --- /dev/null +++ b/www/.content.EZtzwPjb/html/92dbf984fdb78caaaf0f529ac03191a985794a3e.00000786.js @@ -0,0 +1 @@ +jQuery(document).ready(function(r){function n(t){var e=r(t);e.prop("disabled")||e.closest(".form-group").addClass("is-focused")}function e(t){var o=!1;(t.is(r.material.options.checkboxElements)||t.is(r.material.options.radioElements))&&(o=!0),t.closest("label").hover(function(){var t,e,a=r(this).find("input"),i=a.prop("disabled");o&&(t=r(this),e=i,(t.hasClass("checkbox-inline")||t.hasClass("radio-inline")?t:t.closest(".checkbox").length?t.closest(".checkbox"):t.closest(".radio")).toggleClass("disabled",e)),i||n(a)},function(){a(r(this).find("input"))})}function a(t){r(t).closest(".form-group").removeClass("is-focused")}r.expr[":"].notmdproc=function(t){return!r(t).data("mdproc")},r.material={options:{validate:!0,input:!0,ripples:!0,checkbox:!0,togglebutton:!0,radio:!0,arrive:!0,autofill:!1,withRipples:[".btn:not(.btn-link)",".card-image",".navbar a:not(.withoutripple)",".dropdown-menu a",".nav-tabs a:not(.withoutripple)",".withripple",".pagination li:not(.active):not(.disabled) a:not(.withoutripple)"].join(","),inputElements:"input.form-control, textarea.form-control, select.form-control",checkboxElements:".checkbox > label > input[type=checkbox], label.checkbox-inline > input[type=checkbox]",togglebuttonElements:".togglebutton > label > input[type=checkbox]",radioElements:".radio > label > input[type=radio], label.radio-inline > input[type=radio]"},checkbox:function(t){e(r(t||this.options.checkboxElements).filter(":notmdproc").data("mdproc",!0).after(''))},togglebutton:function(t){e(r(t||this.options.togglebuttonElements).filter(":notmdproc").data("mdproc",!0).after(''))},radio:function(t){e(r(t||this.options.radioElements).filter(":notmdproc").data("mdproc",!0).after(''))},input:function(t){r(t||this.options.inputElements).filter(":notmdproc").data("mdproc",!0).each(function(){var a=r(this),i=a.closest(".form-group");if(0!==i.length||"hidden"===a.attr("type")||a.attr("hidden")||a.parents(".pirate_forms").length||(a.wrap('
                        '),i=a.closest(".form-group")),0===i.length&&"hidden"!==a.attr("type")&&!a.attr("hidden")&&a.parents(".pirate_forms").length){var t=a.prev();"checkbox"===a.attr("type")&&(t=a.next()),a.add(t).wrapAll('
                        '),i=a.closest(".form-group")}a.attr("data-hint")&&(a.after('

                        '+a.attr("data-hint")+"

                        "),a.removeAttr("data-hint"));if(r.each({"input-lg":"form-group-lg","input-sm":"form-group-sm"},function(t,e){a.hasClass(t)&&(a.removeClass(t),i.addClass(e))}),a.hasClass("floating-label")){var e=a.attr("placeholder");a.attr("placeholder",null).removeClass("floating-label");var o=a.attr("id"),n="";o&&(n='for="'+o+'"'),i.addClass("label-floating"),a.after("")}null!==a.val()&&"undefined"!==a.val()&&""!==a.val()||i.addClass("is-empty"),0 '+e+" ").insertBefore(t)}},l.hestia={init:function(){this.navSearch(),this.getPortfolioModalData(),this.fixHeaderPadding(),this.headerSpacingFrontpage(),this.initCarousel(),this.initCarouselSwipe(),this.scrollToTop(),this.detectIos(),this.parallaxHeader(),this.addViewCart(),this.setSearchSizeInput(),this.setControlLabel(),this.styleDefaultSubscribeWidget(),this.fixElementorTemplates(),this.handleGutenbergAlignment()},fixElementorTemplates:function(){if(l(".elementor").length<=0)return!1;var t=l(".navbar").outerHeight();return l(".elementor-template-full-width header").css("margin-bottom",t),l(".page-template-template-fullwidth .main.classic-blog").css("margin-top",t),!1},navSearch:function(){l(".hestia-toggle-search").on("click",function(){l(".navbar").toggleClass("nav-searching");var t=l(".nav-searching");t.find(".hestia-nav-search").addClass("is-focused"),t.find(".hestia-nav-search").find(".search-field").focus(),l(this).find("i").fadeOut(200,function(){l(this).toggleClass("fa-search"),l(this).toggleClass("fa-times")}).fadeIn(200)})},getPortfolioModalData:function(){l("#portfolio").find('a[data-toggle="modal"]').on("click",function(t){t.preventDefault();var e=l(this).data("pid");l.ajax({url:requestpost.ajaxurl,type:"post",data:{action:"hestia_get_portfolio_item_data",pid:e},success:function(t){var e=l(".hestia-portfolio-modal");e.find(".modal-content").html(t),e.on("hidden.bs.modal",function(){l(this).find(".modal-content").html('
                        ')})}})})},fixHeaderPadding:function(){var t=l(".navbar-fixed-top").outerHeight(),e=window.matchMedia("(max-width: 600px)");if(l("#wpadminbar").length&&e.matches?(l(".wrapper.classic-blog").find(".main").css("margin-top",t-46),l(".carousel .item .container").css("padding-top",t+50-46),l(".home.page.page-template-default .navbar").hasClass("no-slider")&&l(".home.page.page-template-default .main").css("margin-top",t-46)):(l(".header-layout-classic-blog").find(".main").css("margin-top",t),l(".carousel .item .container").css("padding-top",t+50),l(".home.page.page-template-default .navbar").hasClass("no-slider")&&l(".home.page.page-template-default .main").css("margin-top",t)),768 div[id^=product].product").css("margin-top",-o)}else l(".page-header.header-small .container , .woocommerce.single-product .blog-post .col-md-12 > div[id^=product].product").removeAttr("style");l(".no-content").length&&l(".page-header.header-small").css("min-height",t+230)},headerSpacingFrontpage:function(){if((!this.inIframe()||!this.isMobileUA())&&0')})},setSearchSizeInput:function(){0'),t.find("p.sib-NAME-area").before(''),t.find(".form-group").each(function(){l(this).addClass("is-empty")})},handleGutenbergAlignment:function(){var t=l("body");if(t.hasClass("page-template-template-pagebuilder-full-width")||t.hasClass("page-template-template-pagebuilder-blank")||t.hasClass("page-template-template-page-sidebar"))return!1;if(0a?e&&(e=!1,t.removeClass("navbar-transparent"),t.addClass("navbar-not-transparent")):e||(e=!0,t.addClass("navbar-transparent"),t.removeClass("navbar-not-transparent")))},17))}},handleResponsiveDropdowns:function(){if(768 a .caret-wrap").on("click touchend",function(t){var e=l(this);t.preventDefault(),t.stopPropagation(),l(e).toggleClass("caret-open"),l(e).parent().siblings().toggleClass("open")})},smoothScroll:function(){l('.navbar a[href*="#"], a.btn[href*="#"]').click(function(){if("#"!==l(this).attr("href")&&location.pathname.replace(/^\//,"")===this.pathname.replace(/^\//,"")&&location.hostname===this.hostname){var t=l(this.hash);if((t=t.length?t:l("[name="+this.hash.slice(1)+"]")).length)return l("html,body").animate({scrollTop:t.offset().top-l.utilitiesFunctions.verifyNavHeight()},1200),l(".navbar .navbar-collapse").hasClass("in")&&l(".navbar .navbar-collapse.in").removeClass("in"),l("body").hasClass("menu-open")&&(l("body").removeClass("menu-open"),l(".navbar-collapse").css("height","0"),l(".navbar-toggle").attr("aria-expanded","false")),!1}})},activeParentLink:function(){l(".navbar .dropdown > a").click(function(){return"#"===l(this).attr("href")||(location.href=this.href),!1})},highlightMenu:function(){l(window).on("scroll",function(){if(l("body").hasClass("home")&&751<=l(window).width()){var n=l(window).scrollTop(),r=l(".navbar").outerHeight(),s="no";l("#carousel-hestia-generic, section").each(function(){var t="#"+l(this).attr("id"),e=l(this).offset().top,a=l(this).outerHeight(),i=e-r,o=e+a-r;if(n+l.utilitiesFunctions.verifyNavHeight()>=i&&n+l.utilitiesFunctions.verifyNavHeight()<=o)return s="yes",l("nav .on-section").removeClass("on-section"),l('nav a[href$="'+t+'"]').parent("li").addClass("on-section"),!1;"no"===s&&l("nav .on-section").removeClass("on-section")})}})},setBodyOverflow:function(){var t=l("#main-navigation");t.on("show.bs.collapse",function(){l("body").addClass("menu-open")}),t.on("hidden.bs.collapse",function(){l("body").removeClass("menu-open")})},repositionDropdowns:function(){var n=window.innerWidth;if(n<=768)return!1;var t=l(".dropdown-menu");return 0===t.length||l.each(t,function(t,e){var a=l(e),i=a.offset().left;/webkit.*mobile/i.test(navigator.userAgent)&&(i-=window.scrollX);var o=a.outerWidth();n<=i+o&&l(e).css({right:"100%",left:"auto"})}),!1}};var e=0;l.hestiaNavBarScroll={checkNavbarScrollPoint:function(){if(0===l(".navbar-header").length)return!1;if(768<=l.utilitiesFunctions.getWidth()){if(void 0!==l(".navbar-header").offset()){var t=l(".navbar-header").offset().top;/webkit.*mobile/i.test(navigator.userAgent)&&(t-=window.scrollY),e=t+l(".navbar-header").height()}0===l(".hestia_left.header-with-topbar").length&&0===l(".full-screen-menu.header-with-topbar").length||(e=40)}else e=0!==l(".header-with-topbar").length?40:0},addScrollClass:function(){l(window).on("scroll",function(){l(document).scrollTop()>=e?l(".navbar").addClass("navbar-scroll-point"):l(".navbar").removeClass("navbar-scroll-point")})}}}(jQuery),jQuery(document).ready(function(){jQuery.material.init(),jQuery.hestia.init(),jQuery.navigation.init(),jQuery.hestiaFeatures.initAnimations(),jQuery.hestiaFeatures.initTooltips(),jQuery.hestiaNavBarScroll.checkNavbarScrollPoint(),jQuery.hestiaNavBarScroll.addScrollClass()}),jQuery(window).on("load",function(){jQuery.hestiaFeatures.initMasonry(),jQuery.hestia.sidebarToggle()}),jQuery(window).resize(function(){jQuery.hestiaFeatures.initMasonry(),jQuery.hestia.fixHeaderPadding(),jQuery.hestia.headerSpacingFrontpage(),jQuery.hestia.handleGutenbergAlignment(),jQuery.hestiaNavBarScroll.checkNavbarScrollPoint(),jQuery.navigation.repositionDropdowns()}); \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/93499123b00518465e6bc9fdc29117afe5bacb2f.00001311.xml b/www/.content.EZtzwPjb/html/93499123b00518465e6bc9fdc29117afe5bacb2f.00001311.xml new file mode 100644 index 0000000..daad56e --- /dev/null +++ b/www/.content.EZtzwPjb/html/93499123b00518465e6bc9fdc29117afe5bacb2f.00001311.xml @@ -0,0 +1,7 @@ + +1.0HugoPoihttp://blog.hugopoi.netHugoPoihttp://blog.hugopoi.net/author/hugopoi/Test et démontage d'un Sony Multi Flip 15 SVF15N1C5Erich600338<blockquote class="wp-embedded-content"><a href="/2014/08/04/test-et-demontage-dun-sony-multi-flip-15-svf15n1c5e/">Test et démontage d’un Sony Multi Flip 15 SVF15N1C5E</a></blockquote> +<script type='text/javascript'> +<!--//--><![CDATA[//><!-- + !function(a,b){"use strict";function c(){if(!e){e=!0;var a,c,d,f,g=-1!==navigator.appVersion.indexOf("MSIE 10"),h=!!navigator.userAgent.match(/Trident.*rv:11\./),i=b.querySelectorAll("iframe.wp-embedded-content");for(c=0;c<i.length;c++){if(d=i[c],!d.getAttribute("data-secret"))f=Math.random().toString(36).substr(2,10),d.src+="#?secret="+f,d.setAttribute("data-secret",f);if(g||h)a=d.cloneNode(!0),a.removeAttribute("security"),d.parentNode.replaceChild(a,d)}}}var d=!1,e=!1;if(b.querySelector)if(a.addEventListener)d=!0;if(a.wp=a.wp||{},!a.wp.receiveEmbedMessage)if(a.wp.receiveEmbedMessage=function(c){var d=c.data;if(d.secret||d.message||d.value)if(!/[^a-zA-Z0-9]/.test(d.secret)){var e,f,g,h,i,j=b.querySelectorAll('iframe[data-secret="'+d.secret+'"]'),k=b.querySelectorAll('blockquote[data-secret="'+d.secret+'"]');for(e=0;e<k.length;e++)k[e].style.display="none";for(e=0;e<j.length;e++)if(f=j[e],c.source===f.contentWindow){if(f.removeAttribute("style"),"height"===d.message){if(g=parseInt(d.value,10),g>1e3)g=1e3;else if(~~g<200)g=200;f.height=g}if("link"===d.message)if(h=b.createElement("a"),i=b.createElement("a"),h.href=f.getAttribute("src"),i.href=d.value,i.host===h.host)if(b.activeElement===f)a.top.location.href=d.value}else;}},d)a.addEventListener("message",a.wp.receiveEmbedMessage,!1),b.addEventListener("DOMContentLoaded",c,!1),a.addEventListener("load",c,!1)}(window,document); +//--><!]]> +</script><iframe sandbox="allow-scripts" security="restricted" src="/2014/08/04/test-et-demontage-dun-sony-multi-flip-15-svf15n1c5e/embed/" width="600" height="338" title="« Test et démontage d’un Sony Multi Flip 15 SVF15N1C5E » — HugoPoi" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" class="wp-embedded-content"></iframe> diff --git a/www/.content.EZtzwPjb/html/942f0ab9360b212ef0573fdee54841aed6a78614.00000469.html b/www/.content.EZtzwPjb/html/942f0ab9360b212ef0573fdee54841aed6a78614.00000469.html new file mode 100644 index 0000000..37d3787 --- /dev/null +++ b/www/.content.EZtzwPjb/html/942f0ab9360b212ef0573fdee54841aed6a78614.00000469.html @@ -0,0 +1,370 @@ + + + + + + + ntfsprogs – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        + +
                        +
                        + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/943c72d56ff084822b9ed6cbfbf6c4597b997c18.00000510.html b/www/.content.EZtzwPjb/html/943c72d56ff084822b9ed6cbfbf6c4597b997c18.00000510.html new file mode 100644 index 0000000..0e17577 --- /dev/null +++ b/www/.content.EZtzwPjb/html/943c72d56ff084822b9ed6cbfbf6c4597b997c18.00000510.html @@ -0,0 +1,364 @@ + + + + + + + sécurité – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +

                        Vos données sauvegardées

                        Dans le monde d’aujourd’hui, le numérique est omniprésent, tout ce que vous faites est ou peut être numérisé. Qu’il s’agisse de vos photos de vacances, de votre CV ou votre liste de course, vos contacts et tous les documents que vous utilisez pour travailler sont surement numériques. L’informatique est partout et aide à gérer votre comptabilité, vos contacts pro ou perso et même bientôt votre frigo. Quand je pense qu’il y a 10 ans, beaucoup de professions géraient leur base clients avec des fiches papiers, et que ça existe encore… Pourtant, c’est une perte de temps importante de gérer des clientèles de plus 100 personnes, trier les fiches à la main dans l’ordre alphabétique. Imaginez devoir sortir tous les clients que vous n’avez pas contacté depuis 2 mois, même avec uniquement 100 personnes vous allez y passer au moins une 1 heure avant que votre liste soit faite, avec une base de données, cela est fait en moins d’1 seconde. Tous ça pour dire que l’informatique facilite grandement votre vie jusqu’au jour où ça tombe en panne ! J’ai donc quelques propositions à vous faire concernant la protection de vos données. (suite…)

                        +
                        Par HugoPoi, il y a
                        +
                        + +
                        +
                        +
                        +
                        + +
                        +
                        + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/9618f9a8dbf721f5e01c278539ccefddd80838ca.00000653.css b/www/.content.EZtzwPjb/html/9618f9a8dbf721f5e01c278539ccefddd80838ca.00000653.css new file mode 100644 index 0000000..8043bbf --- /dev/null +++ b/www/.content.EZtzwPjb/html/9618f9a8dbf721f5e01c278539ccefddd80838ca.00000653.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;background:#fff;border:1px +solid #f00;font-size:10pt;width:280px;padding:2px}span.wpcf7-not-valid-tip-no-ajax{color:#f00;font-size:10pt;display:block}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/96ed3b0a71dd4af3e2da96bbc6f3a2ef6971ad08.00000737.css b/www/.content.EZtzwPjb/html/96ed3b0a71dd4af3e2da96bbc6f3a2ef6971ad08.00000737.css new file mode 100644 index 0000000..59a0475 --- /dev/null +++ b/www/.content.EZtzwPjb/html/96ed3b0a71dd4af3e2da96bbc6f3a2ef6971ad08.00000737.css @@ -0,0 +1,14 @@ +/*! + * Bootstrap v3.3.7 (http://getbootstrap.com) + * Copyright 2011-2017 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ + +/*! + * Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=594e856fa8e8e557fa367de5be387bf7) + * Config saved to config.json and https://gist.github.com/594e856fa8e8e557fa367de5be387bf7 + *//*! + * Bootstrap v3.3.7 (http://getbootstrap.com) + * Copyright 2011-2016 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:0.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace, monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:hover,a:focus{color:#23527c;text-decoration:underline}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive,.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role="button"]{cursor:pointer}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small{font-weight:normal;line-height:1;color:#777}h1,.h1,h2,.h2,h3,.h3{margin-top:20px;margin-bottom:10px}h1 small,.h1 small,h2 small,.h2 small,h3 small,.h3 small,h1 .small,.h1 .small,h2 .small,.h2 .small,h3 .small,.h3 .small{font-size:65%}h4,.h4,h5,.h5,h6,.h6{margin-top:10px;margin-bottom:10px}h4 small,.h4 small,h5 small,.h5 small,h6 small,.h6 small,h4 .small,.h4 .small,h5 .small,.h5 .small,h6 .small,.h6 .small{font-size:75%}h1,.h1{font-size:36px}h2,.h2{font-size:30px}h3,.h3{font-size:24px}h4,.h4{font-size:18px}h5,.h5{font-size:14px}h6,.h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}small,.small{font-size:85%}mark,.mark{background-color:#fcf8e3;padding:.2em}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:hover,a.text-primary:focus{color:#286090}.text-success{color:#3c763d}a.text-success:hover,a.text-success:focus{color:#2b542c}.text-info{color:#31708f}a.text-info:hover,a.text-info:focus{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover,a.text-warning:focus{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover,a.text-danger:focus{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:hover,a.bg-primary:focus{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:hover,a.bg-success:focus{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover,a.bg-info:focus{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover,a.bg-warning:focus{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover,a.bg-danger:focus{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none;margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-top:0;margin-bottom:20px}dt,dd{line-height:1.42857143}dt{font-weight:bold}dd{margin-left:0}@media (min-width:769px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote footer:before,blockquote small:before,blockquote .small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}.blockquote-reverse footer:before,blockquote.pull-right footer:before,.blockquote-reverse small:before,blockquote.pull-right small:before,.blockquote-reverse .small:before,blockquote.pull-right .small:before{content:''}.blockquote-reverse footer:after,blockquote.pull-right footer:after,.blockquote-reverse small:after,blockquote.pull-right small:after,.blockquote-reverse .small:after,blockquote.pull-right .small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.25)}kbd kbd{padding:0;font-size:100%;font-weight:bold;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;word-break:break-all;word-wrap:break-word;color:#333;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.row{margin-left:-15px;margin-right:-15px}.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*="col-"]{position:static;float:none;display:table-column}table td[class*="col-"],table th[class*="col-"]{position:static;float:none;display:table-cell}.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr.active:hover>th{background-color:#e8e8e8}.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{background-color:#dff0d8}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr.success:hover>th{background-color:#d0e9c6}.table>thead>tr>td.info,.table>tbody>tr>td.info,.table>tfoot>tr>td.info,.table>thead>tr>th.info,.table>tbody>tr>th.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>tbody>tr.info>td,.table>tfoot>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr.info>th,.table>tfoot>tr.info>th{background-color:#d9edf7}.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr.info:hover>th{background-color:#c4e3f3}.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr.warning:hover>th{background-color:#faf2cc}.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{background-color:#f2dede}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr.danger:hover>th{background-color:#ebcccc}.table-responsive{overflow-x:auto;min-height:0.01%}@media screen and (max-width:768px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{padding:0;margin:0;border:0;min-width:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:bold}input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type="file"]{display:block}input[type="range"]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{border:0;background-color:transparent}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type="search"]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type="date"].form-control,input[type="time"].form-control,input[type="datetime-local"].form-control,input[type="month"].form-control{line-height:34px}input[type="date"].input-sm,input[type="time"].input-sm,input[type="datetime-local"].input-sm,input[type="month"].input-sm,.input-group-sm input[type="date"],.input-group-sm input[type="time"],.input-group-sm input[type="datetime-local"],.input-group-sm input[type="month"]{line-height:30px}input[type="date"].input-lg,input[type="time"].input-lg,input[type="datetime-local"].input-lg,input[type="month"].input-lg,.input-group-lg input[type="date"],.input-group-lg input[type="time"],.input-group-lg input[type="datetime-local"],.input-group-lg input[type="month"]{line-height:46px}}.form-group{margin-bottom:15px}.radio,.checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}.radio label,.checkbox label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:normal;cursor:pointer}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{position:absolute;margin-left:-20px;margin-top:4px \9}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:normal;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"].disabled,input[type="checkbox"].disabled,fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"]{cursor:not-allowed}.radio-inline.disabled,.checkbox-inline.disabled,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.radio.disabled label,.checkbox.disabled label,fieldset[disabled] .radio label,fieldset[disabled] .checkbox label{cursor:not-allowed}.form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0;min-height:34px}.form-control-static.input-lg,.form-control-static.input-sm{padding-left:0;padding-right:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}textarea.input-sm,select[multiple].input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm textarea.form-control,.form-group-sm select[multiple].form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}textarea.input-lg,select[multiple].input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg textarea.form-control,.form-group-lg select[multiple].form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.input-lg+.form-control-feedback,.input-group-lg+.form-control-feedback,.form-group-lg .form-control+.form-control-feedback{width:46px;height:46px;line-height:46px}.input-sm+.form-control-feedback,.input-group-sm+.form-control-feedback,.form-group-sm .form-control+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline,.has-success.radio label,.has-success.checkbox label,.has-success.radio-inline label,.has-success.checkbox-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-success .form-control-feedback{color:#3c763d}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline,.has-warning.radio label,.has-warning.checkbox label,.has-warning.radio-inline label,.has-warning.checkbox-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline,.has-error.radio label,.has-error.checkbox label,.has-error.radio-inline label,.has-error.checkbox-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn,.form-inline .input-group .form-control{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .radio label,.form-inline .checkbox label{padding-left:0}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .radio,.form-horizontal .checkbox{min-height:27px}.form-horizontal .form-group{margin-left:-15px;margin-right:-15px}@media (min-width:768px){.form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:7px}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;margin-bottom:0;font-weight:normal;text-align:center;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn:focus,.btn:active:focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn.active.focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus,.btn.focus{color:#333;text-decoration:none}.btn:active,.btn.active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:focus,.btn-default.focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active:hover,.btn-default.active:hover,.open>.dropdown-toggle.btn-default:hover,.btn-default:active:focus,.btn-default.active:focus,.open>.dropdown-toggle.btn-default:focus,.btn-default:active.focus,.btn-default.active.focus,.open>.dropdown-toggle.btn-default.focus{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled.focus,.btn-default[disabled].focus,fieldset[disabled] .btn-default.focus{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary:focus,.btn-primary.focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary:active:hover,.btn-primary.active:hover,.open>.dropdown-toggle.btn-primary:hover,.btn-primary:active:focus,.btn-primary.active:focus,.open>.dropdown-toggle.btn-primary:focus,.btn-primary:active.focus,.btn-primary.active.focus,.open>.dropdown-toggle.btn-primary.focus{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled.focus,.btn-primary[disabled].focus,fieldset[disabled] .btn-primary.focus{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:focus,.btn-success.focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active:hover,.btn-success.active:hover,.open>.dropdown-toggle.btn-success:hover,.btn-success:active:focus,.btn-success.active:focus,.open>.dropdown-toggle.btn-success:focus,.btn-success:active.focus,.btn-success.active.focus,.open>.dropdown-toggle.btn-success.focus{color:#fff;background-color:#398439;border-color:#255625}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled.focus,.btn-success[disabled].focus,fieldset[disabled] .btn-success.focus{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:focus,.btn-info.focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info:active:hover,.btn-info.active:hover,.open>.dropdown-toggle.btn-info:hover,.btn-info:active:focus,.btn-info.active:focus,.open>.dropdown-toggle.btn-info:focus,.btn-info:active.focus,.btn-info.active.focus,.open>.dropdown-toggle.btn-info.focus{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled.focus,.btn-info[disabled].focus,fieldset[disabled] .btn-info.focus{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:focus,.btn-warning.focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning:active:hover,.btn-warning.active:hover,.open>.dropdown-toggle.btn-warning:hover,.btn-warning:active:focus,.btn-warning.active:focus,.open>.dropdown-toggle.btn-warning:focus,.btn-warning:active.focus,.btn-warning.active.focus,.open>.dropdown-toggle.btn-warning.focus{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled.focus,.btn-warning[disabled].focus,fieldset[disabled] .btn-warning.focus{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:focus,.btn-danger.focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active:hover,.btn-danger.active:hover,.open>.dropdown-toggle.btn-danger:hover,.btn-danger:active:focus,.btn-danger.active:focus,.open>.dropdown-toggle.btn-danger:focus,.btn-danger:active.focus,.btn-danger.active.focus,.open>.dropdown-toggle.btn-danger.focus{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled.focus,.btn-danger[disabled].focus,fieldset[disabled] .btn-danger.focus{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#337ab7;font-weight:normal;border-radius:0}.btn-link,.btn-link:active,.btn-link.active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#777;text-decoration:none}.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-property:height, visibility;-o-transition-property:height, visibility;transition-property:height, visibility;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid \9;border-right:4px solid transparent;border-left:4px solid transparent}.dropup,.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;text-align:left;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);-webkit-background-clip:padding-box;background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none;color:#262626;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#337ab7}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#777}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px dashed;border-bottom:4px solid \9;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:769px){.navbar-right .dropdown-menu{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right:auto}}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#777;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:769px){.navbar{border-radius:4px}}@media (min-width:769px){.navbar-header{float:left}}.navbar-collapse{overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:769px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block !important;height:auto !important;padding-bottom:0;overflow:visible !important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-left:0;padding-right:0}}.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:200px}}.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media (min-width:769px){.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:769px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}@media (min-width:769px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:15px 15px;font-size:18px;line-height:20px;height:50px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:769px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:769px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:768px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media (min-width:769px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{margin-left:-15px;margin-right:-15px;padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);margin-top:8px;margin-bottom:8px}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn,.navbar-form .input-group .form-control{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .radio label,.navbar-form .checkbox label{padding-left:0}.navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:768px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:769px){.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-right-radius:4px;border-top-left-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:769px){.navbar-text{float:left;margin-left:15px;margin-right:15px}}@media (min-width:769px){.navbar-left{float:left !important}.navbar-right{float:right !important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{background-color:#e7e7e7;color:#555}@media (max-width:768px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:hover,.navbar-default .btn-link:focus{color:#333}.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:hover,.navbar-default .btn-link[disabled]:focus,fieldset[disabled] .navbar-default .btn-link:focus{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{background-color:#080808;color:#fff}@media (max-width:768px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:hover,.navbar-inverse .btn-link:focus{color:#fff}.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:hover,.navbar-inverse .btn-link[disabled]:focus,fieldset[disabled] .navbar-inverse .btn-link:focus{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{content:"/\00a0";padding:0 5px;color:#ccc}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857143;text-decoration:none;color:#337ab7;background-color:#fff;border:1px solid #ddd;margin-left:-1px}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:4px;border-top-right-radius:4px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:3;color:#fff;background-color:#337ab7;border-color:#337ab7;cursor:default}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#777;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:6px;border-top-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:hover,a.label:focus{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:hover,.label-default[href]:focus{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:hover,.label-success[href]:focus{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:hover,.label-info[href]:focus{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c9302c}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:normal;letter-spacing:normal;line-break:auto;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:12px;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{bottom:0;right:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.carousel{position:relative}.carousel-inner{position:relative;overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform 0.6s ease-in-out;-o-transition:-o-transform 0.6s ease-in-out;transition:transform 0.6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.item.next,.carousel-inner>.item.active.right{-webkit-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0);left:0}.carousel-inner>.item.prev,.carousel-inner>.item.active.left{-webkit-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0);left:0}.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right,.carousel-inner>.item.active{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);left:0}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:.5;filter:alpha(opacity=50);font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6);background-color:rgba(0,0,0,0)}.carousel-control.left{background-image:-webkit-linear-gradient(left, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-image:-o-linear-gradient(left, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-image:-webkit-gradient(linear, left top, right top, color-stop(0, rgba(0,0,0,0.5)), to(rgba(0,0,0,0.0001)));background-image:linear-gradient(to right, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)}.carousel-control.right{left:auto;right:0;background-image:-webkit-linear-gradient(left, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-image:-o-linear-gradient(left, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-image:-webkit-gradient(linear, left top, right top, color-stop(0, rgba(0,0,0,0.0001)), to(rgba(0,0,0,0.5)));background-image:linear-gradient(to right, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)}.carousel-control:hover,.carousel-control:focus{outline:0;color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;margin-top:-10px;z-index:5;display:inline-block}.carousel-control .icon-prev,.carousel-control .glyphicon-chevron-left{left:50%;margin-left:-10px}.carousel-control .icon-next,.carousel-control .glyphicon-chevron-right{right:50%;margin-right:-10px}.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;line-height:1;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0)}.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{left:20%;right:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:before,.clearfix:after,.dl-horizontal dd:before,.dl-horizontal dd:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.form-horizontal .form-group:before,.form-horizontal .form-group:after,.nav:before,.nav:after,.navbar:before,.navbar:after,.navbar-header:before,.navbar-header:after,.navbar-collapse:before,.navbar-collapse:after{content:" ";display:table}.clearfix:after,.dl-horizontal dd:after,.container:after,.container-fluid:after,.row:after,.form-horizontal .form-group:after,.nav:after,.navbar:after,.navbar-header:after,.navbar-collapse:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right !important}.pull-left{float:left !important}.hide{display:none !important}.show{display:block !important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none !important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none !important}.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block{display:none !important}@media (max-width:768px){.visible-xs{display:block !important}table.visible-xs{display:table !important}tr.visible-xs{display:table-row !important}th.visible-xs,td.visible-xs{display:table-cell !important}}@media (max-width:768px){.visible-xs-block{display:block !important}}@media (max-width:768px){.visible-xs-inline{display:inline !important}}@media (max-width:768px){.visible-xs-inline-block{display:inline-block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block !important}table.visible-sm{display:table !important}tr.visible-sm{display:table-row !important}th.visible-sm,td.visible-sm{display:table-cell !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block !important}table.visible-md{display:table !important}tr.visible-md{display:table-row !important}th.visible-md,td.visible-md{display:table-cell !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block !important}}@media (min-width:1200px){.visible-lg{display:block !important}table.visible-lg{display:table !important}tr.visible-lg{display:table-row !important}th.visible-lg,td.visible-lg{display:table-cell !important}}@media (min-width:1200px){.visible-lg-block{display:block !important}}@media (min-width:1200px){.visible-lg-inline{display:inline !important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block !important}}@media (max-width:768px){.hidden-xs{display:none !important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none !important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none !important}}@media (min-width:1200px){.hidden-lg{display:none !important}}.visible-print{display:none !important}@media print{.visible-print{display:block !important}table.visible-print{display:table !important}tr.visible-print{display:table-row !important}th.visible-print,td.visible-print{display:table-cell !important}}.visible-print-block{display:none !important}@media print{.visible-print-block{display:block !important}}.visible-print-inline{display:none !important}@media print{.visible-print-inline{display:inline !important}}.visible-print-inline-block{display:none !important}@media print{.visible-print-inline-block{display:inline-block !important}}@media print{.hidden-print{display:none !important}} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/973e25e8134647c288c24466015020e1fc2d8276.00000123.html b/www/.content.EZtzwPjb/html/973e25e8134647c288c24466015020e1fc2d8276.00000123.html new file mode 100644 index 0000000..57cc492 --- /dev/null +++ b/www/.content.EZtzwPjb/html/973e25e8134647c288c24466015020e1fc2d8276.00000123.html @@ -0,0 +1,1370 @@ + + + + + + + + Réparations Samsung SyncMaster 2232BW – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        +

                        Allô docteur on a un problème,

                        +

                        En ce dimanche calme avant la fin de mes partiels, mon écran Samsung SyncMaster 2232BW commençait à faire des siennes. Celui-ci depuis un mois ou deux clignotait de façon systématique au démarrage, au début pendant seulement quelques secondes, puis au fur et à mesure, de plus en plus jusqu’à devoir attendre 10 minutes pour que je puisse l’utiliser. Après 3 ans et 4 mois de bons et loyaux services, il voulait me quitter. J’ai tenté le support Samsung par email avec peu d’espoir car l’écran a dépassé sa garantie de 4 mois (oui oui les bâtards -> obsolescence programmée). Et donc j’ai eu le droit à un joli mail automatique me disant de contacter un numéro non surtaxé (mais avec combien de temps d’attente ?), ce que je n’ai pas fait car je n’avais pas envie de passer 30min au téléphone pour au final avoir un « On est désolé mais on ne peut rien faire pour vous car la garantie est dépassée, mais on peut envoyer votre écran en SAV pour faire un devis pour seulement 50 boules ». Concernant le support email de Samsung France, je leur donne une note de 0/20 puisque ce n’est pas un support mais une redirection vers le téléphone.

                        +

                        +

                        Symptômes

                        +

                        Clignotements de l’écran et de la LED power systématiques à chaque démarrage de l’écran. Je me suis tout de suite douté d’un problème d’alimentation et après quelques recherches sur google, confirmation du problème sur beaucoup d’écrans et téléviseurs. Dans 99% des cas ce clignotement est dû à des condensateurs défectueux qu’il faut simplement changer :-D

                        +

                        Démontage

                        +

                        Donc après avoir cerné le problème, j’ai ouvert l’écran pour chercher les condos défectueux. J’ai trouvé une petite vidéo pour mon écran :

                        +

                        +

                        Voici quelques photos en plus pour vous aider :

                        +

                        Les outils que j’ai utilisé pour le démontage

                        +

                        Position des clips

                        +

                        Carte d’alimentation dans son emplacement

                        +

                        Et voici les condensateurs qui posent problèmes. Comme vous pouvez le voir sur la photo, ils sont très facilement identifiable car ils sont bombés sur le dessus.

                        +

                        Condensateurs défectueux

                        +

                        Vous devez donc acheter des condensateurs de remplacement, par exemple sur Conrad.

                        +

                        Mes condensateurs suivant étaient endommagés:

                        +
                          +
                        • 1 de 330uF 25V remplacé par un 470uF 25V
                        • +
                        • 3 de 820uF 25V remplacé par des 1000uF 50V
                        • +
                        +

                        Pour la réparation, il vous faut un fer à souder avec une panne pas trop grosse mais d’une grosse puissance car les soudures sont très solides (j’ai galéré avec un fer pro qui monte jusqu’à 400°).

                        +

                        Tout remarche nickel après remontage, plus de clignotement pour seulement quelques euros.

                        +

                        edit du 19 aout 2014 : j’ai trouvé le service manuel de l’écran si besoin samsung_2232bw_chassis_lpe22bs_sm

                        + + +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +

                        + 41 commentaires

                        +
                        + +
                        +
                        +
                        +
                        +

                        + c'est_moi + · 30 janvier 2012 à 18 h 57 min +

                        +

                        Mille mercis et mille félicitations pour cette fiche technique si pédagogue.

                        +

                        J’espère que le partiels se passent plus que parfait !!

                        +

                        J’ai gardé l’url de la page pour réparer mon écran dans un petit mois : j’espère que la page soit toujours là ;-)

                        +

                        Merci encore.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Maxime + · 5 mai 2012 à 12 h 31 min +

                        +

                        Bonjour HugoPoi!

                        +

                        Merci pour toutes vos infos et votre topic, je voulais avoir quelques précisions sur les condos à changer pour samsung 2232bw, je veux passer commande mais j’ai un problème avec les dimensions des condos, si vous pouvez m’informer de ce que je pourrais acheter car il y a trop de références. En vous remerciant A+ Maxime

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 14 juin 2012 à 22 h 56 min +

                          +

                          N’importe quel condensateur polarisé avec des caractéristiques proches devrait marché.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + gaubjezj + · 14 juin 2012 à 22 h 32 min +

                        +

                        Merci pour le tuto qui m’a bien aidé.
                        +J’ai utilisé un fer de 40 W avec une panne fine et
                        +une pompe à dessouder et j’ai retiré les condensateurs sans problème.
                        +Merci encore (3€40 pour le dépannage).

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + DragonTribal + · 2 juillet 2012 à 12 h 02 min +

                        +

                        super merci pour manifique tuto.
                        +Est-il possible de changer les 5 condensateurs 820uF 25V par des 1000uF 50V? car moi mes 5 condensateurs sont presque HS ;-)

                        +

                        Cordialement

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 2 juillet 2012 à 12 h 25 min +

                          +

                          Oui je penses que ça marchera étant donné que c’est des valeurs plus grandes.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + FRED + · 11 juillet 2012 à 19 h 11 min +

                        +

                        Bravo, MERCI.
                        +Je n’ai encore rien fait…mais j’ai le même problème, et tu me donnes la solution.
                        +Super.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + daninpet + · 31 août 2012 à 10 h 10 min +

                        +

                        Merci mille fois!

                        +

                        J’avais ce problème, et j’ai emmener la photo des trucs a remplacer chez le réparateur du coin et voila!! Ça m’a coûté 7 Euros (mais j’habite en Thaïlande)

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + moi + · 15 novembre 2012 à 15 h 25 min +

                        +

                        super mon 2232bw vient de lâcher, les 3 + 1 condos sont gonflés j ai trouvé un 330 en 35v qui traîné sur un écran mort et j’ai commander 5 1000uf 35v sur ebay pour moins de 3 dollars, ca devrait le faire j’espere j’attend d’être livré merci! par contre j’ai qu’un gros pistolet a soudure et un gros fil d’étain, c’est pas évident mais bon ca le fait quand même =)

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + moi + · 7 décembre 2012 à 9 h 33 min +

                          +

                          parfait je vient de recevoir les condos; j ai meuler la panne du fer a souder pour la tailler en mine de crayon et j ai reussi a les souder facilement ils étaient un peu plus gros mais ca passe tout juste, mais attention ne pas prendre des plus gros! l écran fonctionne nickel maintenant.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Croco + · 19 janvier 2013 à 18 h 39 min +

                        +

                        Je souhaiterai savoir si tu as utilisé un fer à souder bien précis étant donné que la carte est une multi couche.
                        +Merci

                        + +
                        +
                        + + +
                        + +
                        +
                        +
                        +
                        +

                        + momo + · 10 juin 2013 à 13 h 15 min +

                        +

                        slut je voudrai savoir ou trouvé les condansateur a changer sur mon ecran qui clignote

                        + +
                        +
                        + + +
                        + +
                        +
                        +
                        +
                        +

                        + lokmane + · 5 juillet 2013 à 16 h 08 min +

                        +

                        merci j’avais un ecran rouge ! et c’etais la tresse qui relie mon ecran votre page m’a aider a l’ouvrir et a le reparer merci bien

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + ML + · 21 août 2013 à 19 h 11 min +

                        +

                        Merci ! Ecran réparé. Halte à l’obsolescence programmée.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + raymond + · 31 octobre 2013 à 13 h 20 min +

                        +

                        ai vu votre vidéo et les explications pour la reparation de mon écran , apparemment le méme probléme l écran passe au noir apres quelque seconde , j ai vu un le condensateur en bas a gauche gonflé , je l ai fait changé (10€) les autre condensateur étant toujour bon d après la personne qui me l a changé , mais j ai toujour le méme probléme cela peut il venir de la carte video a gauche ?

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 20 décembre 2013 à 12 h 27 min +

                          +

                          Si la led bleu du bouton power s’éteint aussi c’est un problème d’alimentation sinon c’est plus compliqué et ça peut provenir de condensateurs sur la partie vidéo. Changé tous les plus gros condensateurs sur la partie alimentation pourrait être un bon début même si ils ne paraissent pas endommagé.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + damien + · 4 novembre 2013 à 0 h 29 min +

                        +

                        bonjour,

                        +

                        j’ai des crasses coincées entres l’écran et le truc juste derrière, est ce qu’on sais les enlever en démontant la dalle ?

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 20 décembre 2013 à 12 h 28 min +

                          +

                          Je ne sais si cette partie de la dalle est démontable, je penses que c’est collé mais vous pouvez essayer.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + mac + · 1 décembre 2013 à 17 h 30 min +

                        +

                        Merci HugoPoi, avec ces excellents conseils et tuto vidéo, mon écran est reparti pour une nouvelle vie.
                        +Pour les composants, si vous êtes sur Paris ou proche. La boutique RAM électroniques est une bonne adresse, 138 bd Diderot 75012 Paris (Place de la Nation).

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Bouddhid + · 16 janvier 2014 à 19 h 21 min +

                        +

                        Merci beaucoup pour ces conseils ! J’étais à 2 doigts de jeter mon écran, le voilà comme neuf pour moins de 5€ ! Vive la bricole !

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Vincent + · 17 mai 2014 à 16 h 45 min +

                        +

                        Alors là merci.

                        +

                        Pour ce post, les photos, la vidéo, tout y est.

                        +

                        J’ai démonté l’écran assez vite, enlevé la carte, regarder quel condensateurs étaient gonflés,(il y en avaient 4), un magasin d’électronique sur lyon et une heure de démontage, soudure, remontage plus tard, voilà, c’est tout beau.
                        +Ca ne clignote plus, ça s’allume comme avant, comme neuf.

                        +

                        Et dire que j’allais jeter cet écran et claquer 350 euros pour un neuf…

                        +

                        Coût de l’opération pour 4 condensateurs, du fil d’étain 7 euros.

                        +

                        Je précise que je n’avais jamais fais de soudure sur composant électronique auparavant.
                        +Comme quoi cette opération de réparation est à la portée de tous.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Julot + · 6 juillet 2014 à 13 h 49 min +

                        +

                        Site vraiment détaillé et très claire. J’ai pu dépanner mon écran avec succès. Merci beaucoup pour ces précieuses explications.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + PaniK31 + · 29 juillet 2014 à 9 h 21 min +

                        +

                        Pas besoin d’une grosse puissance pour le fer, il faut au préalable gratter le vernis sur l’étain afin de pouvoir le faire fondre plus facilement

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + R211_IP-45130B + · 20 août 2014 à 14 h 04 min +

                        +

                        Bonjour à tous,

                        +

                        Une âme charitable peut-elle me communiquer ce qui est gravé sur la résistance CMS R211 de la carte d’alimentation/inverter IP-45130B qui équipe le SAMSUNG 2232BW ? Cette résistance a pris un coup de tournevis et je n’arrive pas à déterminer sa valeur de résistance car son marquage est effacé et comme le composant est abimé la mesure à l’ohmmètre indique l’infinie.

                        +

                        Merci par avance.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + roger + · 24 octobre 2014 à 17 h 21 min +

                        +

                        Ca refonctionne après échange de 4 condensateurs :
                        +-un 330uf25v remplacé à l’identique.
                        +-trois 820uf25v remplacés par 1000uf25v.
                        +Le tout pour quelques €. Le plus dur était le dessoudage, la tresse n’était pas très efficace contrairement à la pompe.
                        +Grand merci à HugoPoi.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Max + · 26 février 2015 à 16 h 28 min +

                        +

                        ENORME MERCI!! J’ai réparé mon écran en 20mn pour 3,50€, il était à 2 doigts de partir à la déchetterie. Ca faisait des mois qu’il clignotait, et l’allumage mettait parfois plus d’une demi heure. J’ai changé 5 condos 820uf25v et 1 330uf25v, par exactement les mêmes en neuf, et là il démarre au quart de tour! Ca fait plaisir! :)

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + rocco michelle + · 7 octobre 2015 à 10 h 16 min +

                          +

                          Bonjour je ne sais si vous verrez mon message mais je tente…je cherche quelqu’un qui accepterait de changer mes condensateurs sur mon samsung, les réparateurs me demandent 70 à 80 euros et encore ils n’ont pss envie de le faire et me disent d’acheter un nouvel écran. j’aurais bien tenter mais je n’ai pas de matériel et j’ai lu que les condo pouvaient être très dangereux s’ils avaient de la charge alors j’ai la trouille de bidouiller pq je n’y connais rien. si vous êtes de lyon acccepteriez vous de changer mes condensateurs pour 45 euros? merci de votre réponse.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + lecakeseb + · 27 juillet 2015 à 15 h 26 min +

                        +

                        Bonjour,

                        +

                        J’ai utilisé la vidéo pour démonter mon écran afin de le nettoyer de 4 bêtes d’orage infiltrés entre le premier écran (noir) et la dalle (blanche) de mon samsung SyncMaster 2232W

                        +

                        Petits conseils afin de modérer ce que j’ai pu voir dans cette vidéo :

                        +

                        0 : aspirez, nettoyez l’extérieur de l’écran avant de l’ouvrir et nettoyez la table qui vous servira d’atelier, pour éviter les poussières qui s’infiltreront forcément plus tard si vous ne le faites pas…
                        +1 : pour ouvrir, utilisez plutôt un couteau à enduire pour la première partie (le cadre). Vous n’abîmerez ainsi pas du tout l’écran. Soyez patients, ne forcez pas ! ça viendra doucement, mais ça viendra. Il m’a fallu à peine 10 minutes, sans détériorer l’écran, sans le griffer… Il est encore nickel !
                        +2 : attention à ne pas déconnecter les fils reliant le cadre à la carte. Inutile pour simplement nettoyer l’écran.
                        +3 : pour séparer les deux éléments de la dalle entre lesquels les bêtes se sont infiltrées, les doigts suffisent, pas besoin d’outils qui viendraient les endommager. La dalle blanche reste à l’horizontale, l’écran noir sera tenu à la verticale.
                        +4 : utiliser un chiffon doux ne peluchant pas pour enlever les bêtes (faites-vous aider de quelqu’un qui les enlèvera pendant que vous tenez l’écran extérieur en position verticale).
                        +5 : repositionnez la colle d’étanchéité qui aurait pu se déplacer, avant de repositionner les deux écrans.
                        +6 : commencer par refermer par le bas de l’écran (sinon les éléments de réglage situés au bas de l’écran – luminosité, contraste,…- ne se replaceront pas correctement).
                        +7 : Une fois l’écran refermé, j’ai appliqué un peu de « barrage aux insectes », avec un chiffon à l’arrière de mon écran en insistant surtout sur les bouches d’aération par lesquelles les maudites bestioles ont du s’infiltrer. En espérant ne pas avoir à ouvrir !

                        +

                        Bon courage à vous !

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Michel Jousserandot + · 20 janvier 2017 à 20 h 41 min +

                        +

                        Merci pour les conseils au démontage.
                        +J’avais un problème un peu différent :l’écran ne s’allumait plus du tout. Avec un copain beaucoup plus malin que moi, on a détecté 2 fusibles dont l’un était fichu. On l’a remplacé par un petit fil de cuivre. Et tout a remarché comme avant.
                        +Il faut surtout faire attention quand on teste la partie haute tension
                        +Michel.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Crec + · 14 juillet 2017 à 10 h 20 min +

                        +

                        Bonjour. Très bons conseils avertis. Merci beaucoup.
                        +Peut-on avoir les mêmes conseils pour un écran BX2250.
                        +Merci par avance.
                        +Crec

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 6 août 2017 à 14 h 03 min +

                          +

                          J’ai pas de BX2250 donc dans le détails non mais si c’est les même symptômes ça doit la même procédure.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Ferronnier + · 10 août 2017 à 17 h 42 min +

                        +

                        Un grand merci !
                        +J’ai changé tous les condensateurs de la partie alimentation de la carte, en déportant certains qui n’avaient pas le même format qu’à l’origine, et ça tourne nickel !

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Nours + · 1 décembre 2017 à 15 h 17 min +

                        +

                        Ca fait des années que j’ai cet article enregistré dans un coin, en nourrissant l’espoir d’avoir un jour le courage de réparer ce foutu écran… Après plus de cinq ans c’est chose faite \o/
                        +Un giga, hypra, immense merci pour ce tutoriel tellement bien expliqué et facile d’accès (je n’avais pas touché à un fer à souder depuis… Oh boy 15 ans déjà).
                        +Après une longue pause, l’écran reprend du service… Jusqu’à la prochaine panne /o/

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Alex + · 11 août 2018 à 13 h 28 min +

                        +

                        Quelqu’un sait qui pourrait me le faire svp j ai le même problème mais aucun matériel

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + David + · 5 février 2019 à 21 h 06 min +

                        +

                        Merci Hugo pour ce tuto qui m’a déjà servi en 2013 et qui va me resservir aujourd’hui car mon 2ème 2232bw commence à avoir les mêmes symptômes.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + yvan + · 23 novembre 2019 à 17 h 14 min +

                        +

                        Bonjour
                        +j’ai tenté de changer le condensateur qui avait l’air naze mais ça n’a pas marché … toujours le bouton bleu allumé, l’écran est reconnu par Windows 10 même si l’écran est éteint
                        +grâce au service manuel de l’écran fourni plus haut, j’ai vérifié les tensions jusque sur la carte de la dalle et elles sont correctes, ainsi que sur la carte elle-même, tout est ok, donc je pense que ce n’est plus un problème de condensateur
                        +pour les fusibles, ils ressemblent plutôt à des composants qu’à de simple fusibles, mais comme j’ai les bonnes tension, je ne pense pas que ça vienne de là
                        +j’ai bien peur que ce soit la dalle qui soit naze ? quelqu’un a t il des idées supplémentaires avant que je le jette avec grand regret (c’est un 2032bw, mais c’est la même chose, même si ma carte électronique est un peu différente car plus récente
                        +merci d’avance pour vos conseils

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + yvan + · 24 novembre 2019 à 17 h 26 min +

                        +

                        finalement j’ai trouvé, c’est un petit fusible vert qui ressemble à une résistance mais tout vert avec écrit 4A LF qui assure l’alimentation de la dalle.
                        +En le shuntant, mon écran a retrouvé l’image.
                        +après enquête il s’agit d’un fusible pico de 4ampères de chez little fuse, pas du tout évident à trouver
                        +Résolu !

                        + +
                        +
                        + +
                        +
                        +

                        + Reflow Dell 1546 | HugoPoi + · 22 août 2016 à 16 h 09 min +

                        +

                        […] « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable de marque Dell un 1546 pour être précis. Encore […]

                        + +
                        +
                        + +
                        +
                        +

                        + Reflow Dell Inspiron 1546 – HugoPoi + · 23 juin 2017 à 23 h 18 min +

                        +

                        […] d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un […]

                        + +
                        +
                        + +
                        +
                        +
                        +

                        Répondre à Bouddhid Annuler la réponse

                        Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                        +
                        +
                        +

                        + +

                        +
                        +
                        +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        + + +
                        + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/975f31f809d85c72e47dba4fc2dd8581811a967f.00000688.css b/www/.content.EZtzwPjb/html/975f31f809d85c72e47dba4fc2dd8581811a967f.00000688.css new file mode 100644 index 0000000..20df2bb --- /dev/null +++ b/www/.content.EZtzwPjb/html/975f31f809d85c72e47dba4fc2dd8581811a967f.00000688.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7 .screen-reader-response{position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);height:1px;width:1px;margin:0;padding:0;border:0}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{color:#f00;font-size:1em;display:block}.use-floating-validation-tip span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;border:1px +solid #f00;background:#fff;padding: .2em .8em}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/979abf441e4745ae78cb46ad60619e0b34e10f3d.00000168.html b/www/.content.EZtzwPjb/html/979abf441e4745ae78cb46ad60619e0b34e10f3d.00000168.html new file mode 100644 index 0000000..6a2207f --- /dev/null +++ b/www/.content.EZtzwPjb/html/979abf441e4745ae78cb46ad60619e0b34e10f3d.00000168.html @@ -0,0 +1,869 @@ + + + + + + + + Réparer un Vidéoprojecteur Sony VPL-CX5 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        +

                        Bon les cocos, j’ai récupéré un vidéo projecteur Sony VPL-CX5 en état décédé. Comme je sais que c’est encore et toujours ce problème d’obsolescence programmée j’ai donc décidé de le réparer.

                        +

                        Sony VPL-CX5

                        +

                        Première étape, identifier la panne

                        +

                        Le vidéoprojecteur ne donnait aucun signe de vie, aucune led ne s’allume quand je l’ai branché rien du tout même pas un petit crépitement d’alimentation. Je pense a un problème d’alimentation mais rien est sur tant que je ne l’ai pas démonté. Mais avant le dévissage je vais quand même faire une recherche Google car le Internet il est grand et il est beau. J’ai trouvé un truc qui m’a mis la puce à l’oreille sans même avoir enlever la première visse, sur un forum quelconque que je n’arrive plus à retrouver, un mec dit qu’il a changé un composant (un certain MCZ3001) sur une des cartes d’alimentation, et le vidéoprojecteur remarchait.

                        +

                        Démontage

                        +

                        Sony VPL-CX5

                        +

                        J’ai donc commencé par enlever les quelques visses, puis démonter toutes les cartes une par une, une vrai galère. Pour m’aider j’ai trouvé le « manuel de service » (or Service Manual) que je mets a disposition ici même : sony_vpl-cx5_cs5_servicemanual. J’ai mis dans la suite les références des connecteurs pour les mesures.

                        +

                        1) Premier test vérifier le fusible sur la première carte d’alimentation GA, faire le test avec la carte débranché, j’ai utilisé un voltmètre sur la position test de résistance : test OK.

                        +

                        2) Deuxième test, vérifier la tension continu fournie par cette carte GA sur le connecteur de sortie CN2001 environ 380V DC, DONC FAIRE CECI AVEC PRÉCAUTION (je l’ai fait avec un voltmètre de merde à 5€) : test OK j’ai 380 Volt en sortie. Sur cette carte il y un gros condensateur de 400V donc faire TRÈS ATTENTION MÊME QUAND LA CARTE EST DÉBRANCHÉ DU SECTEUR.(j’ai vérifier le condensateur se décharge assez vite j’ai mesuré 4V 10 secondes après avoir débranché)

                        +

                        3) Maintenant test de la carte GB qui transforme le 400V continu en basse tension continu ici du 24V d’après le SM. Donc j’ai le point de mesure parfait, c’est le connecteur CN3201.

                        +
                        N'oubliez d'ouvrir le manuel de service ça donne des infos précieuses pour le dépannage

                        N’oubliez d’ouvrir le manuel de service ça donne des infos précieuses pour le dépannage

                        +

                        Plusieurs points pour tester le plus pratique étant le petit connecteur blanc de 3 broches qui fournit la masse et VCC 24V. Après mesure sur ce connecteur j’ai une tension stable mais pas du 24VDC, les composants n’ont pas l’air endommagés donc je vérifie à l’entrée du fameux MCZ3001 il est bien alimenté correctement mais ne sort pas 24VDC. Pas de condensateurs chimiques endommagés.

                        +

                        Donc la panne est certainement dû à ce composant, achetons-le !

                        +

                        Trouver le composant de rechange

                        +

                        Au début j’ai cherché chez des e-commerçant d’électronique comme Farnell,Conrad, etc pas trouvé en france, puis j’ai fait les marchants Anglais et je l’ai trouvé mais à 30€ frais de port inclus. Et comme un con j’avais oublié de faire Ebay : encore un coup des chinois 4.27€ avec le support DIP et les frais de port inclus OMFG j’adore la mondialisation. J’en ai pris 2 pour mois de 10€ et comme les chinois ils sont trop fort j’ai tout reçu en moins de 2 semaines.

                        +

                        Capture-ebay-mcz3001

                        +

                        Dés-soudage

                        +

                        Bon j’avais des fer à souder de merde et du coup c’est le #FAIL, j’ai pas réussi à dés-souder proprement, j’ai donc été obligé d’investir dans une merde à 10€ :

                        +

                        Fer à souderEnsuite j’ai finalement réussi à dés-souder :

                        +

                        Carte GB MCZ3001 dés-soudéEt il me semble que sur cette photo j’avais nettoyer avec du dissolvant.

                        +

                        Remontage

                        +

                        Alors je suis désolé mais je n’ai pas de photos pour le MCZ soudé car j’avais déjà remonté le projecteur. Les étapes :

                        +
                          +
                        1. Souder un support fourni (au cas ou ce fameux MCZ rendrais encore l’âme)
                        2. +
                        3. Placer un MCZ neuf dans le support
                        4. +
                        5. Relier la carte GA et GB ensemble
                        6. +
                        7. Brancher sur le 220V
                        8. +
                        9. Tester le 24VDC sur le connecteur CN3201
                        10. +
                        11. #WIN
                        12. +
                        13. Remonter le projecteur
                        14. +
                        15. Tester en vrai
                        16. +
                        17. #WIN2
                        18. +
                        +

                        Conclusion

                        +

                        Oui c’est un WIN d’une valeur 4€ mais je tiens à préciser que ça représente environ 10 heures de travail continu. Entre les recherches Google et la lecture de la documentation, les heures passés au démontage, les quelques fois ou je me suis arraché les cheveux et risquer ma vie avec un voltmètre à 5€.

                        +

                        Mon banc de test

                        +

                        Banc de test chez HugoLa table du salon 2Les Tofs

                        + + +
                        +
                        +
                        + +
                        +
                        + + + + + + + + + +
                        +
                        +
                        +
                        +
                        +
                        +
                        +

                        + 16 commentaires

                        +
                        + +
                        +
                        +
                        +
                        +

                        + Georg + · 30 janvier 2014 à 12 h 22 min +

                        +

                        Hello,
                        +dear Hugo, at first: HAVE MANY THANKS FOR YOUR VERY INTERESTING BLOG!!!

                        +

                        I also have a cx5 and try to repair it.

                        +

                        It has the same problems like your projector…

                        +

                        I’ve measured the CN2001 but in my power supply there are only 320 V (stable).
                        +Are you sure, that there have to be 380V?
                        +In the service manual, I didn’t find a value (either 320V nor 380V)

                        +

                        Best Regards
                        +Your Georg

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 21 février 2014 à 17 h 36 min +

                          +

                          Sorry to be so long to answer,
                          +320V seems to be OK, I have extrapolated the value from the schema ~ 220Vxrootsquare(2) but this depends of the quality of your current source. I think 320 will not impact the power for the next card.

                          +

                          Good repair !
                          +Thanks for the comment :-D

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + henri moine + · 2 février 2014 à 20 h 43 min +

                        +

                        Bonsoir,
                        +Merci beaucoup pour l’explication détaillée et les photos.
                        +Je vais pas tarder de m’attaquer à mon SONY VPL CS7 bizarrement inerte depuis quelques semaines…
                        +Bonne continuation !

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + florian + · 21 avril 2014 à 9 h 09 min +

                          +

                          Bonjour,
                          +Je possède également un sony VPL CS7, et depuis plusieurs mois il a quelques signes de faiblesses.

                          +

                          1) lorsque je le débranche du secteur et que je le rebranche, il faut que j’attende 24 à 48 h pour que le voyant on/off se mette à éclairer, donc je ne peux pas l’allumer pendant ce temps.

                          +

                          2) aujourd’hui j’ai beau le laisser brancher, aucun signe de vie plus rien ne s’allume.

                          +

                          As tu attaqué ton VPL, As tu trouvé quelque chose ?

                          +

                          Merci

                          + +
                          +
                          +
                            +
                            + +
                            +
                            +
                            +
                            +

                            + HugoPoi + · 9 mai 2014 à 17 h 50 min +

                            +

                            Le VPL que j’avais était en panne je l’ai réparé jusqu’à il y a 2 mois ou il retombé en panne. Ton problème d’allumage ressemble à un problème de condensateur cramé. tu peux regarder si tu en vois des gonflés en démontant.

                            + +
                            +
                            + +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Ghent + · 21 septembre 2014 à 12 h 48 min +

                        +

                        Bonjour,

                        +

                        Déjà, super tuto.
                        +Je rencontre un problème à priori similaire avec mon CX5: le bouton de mise sous tension n’est plus éclairé et il ne se passe rien quand j’appuie dessus.

                        +

                        Je me suis donc lancé, et j’ai démonté jusqu’à atteindre les cartes d’alimentation.
                        +J’ai mesuré donc au niveau du CN3201, et là j’ai 22V continu stable.
                        +D’où ma première question, ai-je le même problème que toi avec le MCZ3001, ou dois-je chercher autre part ?
                        +Faut-il 24V exactement ?

                        +

                        Ensuite, j’ai essayé de me rapprocher du composant lui-même, mais je ne sais pas où mesurer. Le diagramme indique le VC1 sur la patte 8, mais je ne sais pas où prendre la masse.
                        +Saurais-tu m’aider ?

                        +

                        J’ai enfin voulu tester la tension en sortie de la carte GB, le point 17V, mais même question, si je teste la patte 1 du connecteur, où prendre la masse pour vérifier qu’il y a bien 17V ?
                        +Cette partie est-elle alimentée malgré que l’appareil soit éteint ?

                        +

                        Dans tous les cas, j’ai commandé le MCZ3001D, mais je voudrais m’assurer qu’il est bien le responsable avant de le changer.

                        +

                        Merci d’avance pour tes réponses, et encore une fois, merci de partager ton travail !

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 26 septembre 2014 à 15 h 01 min +

                          +

                          Je penses que si tu as 22V sur CN3201 le problème est sûrement ailleurs. Même si cela ne coûte rien de changer le MCZ3001D si tu as de quoi dessouder proprement. Regarde sur le service manuel pour tester les autres tensions qui sortent de la carte après les partie d’isolement, de mémoire il y a 3,3 V et du 5V.

                          + +
                          +
                          +
                            +
                            + +
                            +
                            +
                            +
                            +

                            + Neckron + · 12 décembre 2014 à 21 h 32 min +

                            +

                            Bonsoir, je déterre un peu ce vpl-cx5 que je possède et que je vends !!!
                            +Je voie qu’il y a encore des personnes qui s’y intéresse.
                            +Je précise juste que le mien est en excellent état de marche, il y a la télécommande et qu’il n’a servi QUE 220 Heures. Lampe d’origine. Je cherchais pendant un temps un moyen de l’upgrader pour l’image, mais finalement…. je change…

                            + +
                            +
                            + +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Jean-Marie + · 31 décembre 2014 à 14 h 43 min +

                        +

                        Bonjour Hugo.
                        +Merci pour ton partage d’expérience.
                        +Moi aussi, j’ai un VPL-CS7 inerte comme tu dis. Pas la moindre led s’allume ou clignote quand je le branche.
                        +Je l’ai complètement démonté. Je soupçonne un composant sur le bloc d’alim.
                        +As-tu réparé le tien ?
                        +Merci.
                        +JM.

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 31 janvier 2015 à 15 h 13 min +

                          +

                          Moi j’ai bien réparé mon CX5 mais celui-ci est retombé en panne 6 mois plus tard. Cette fois-ci avec plus de composants endommagés :-(
                          +Bon courage pour les réparations.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Sorce + · 14 mars 2015 à 16 h 05 min +

                        +

                        Bonjour ,j’ai un vpl cs6 ,qui ne s’allume pas rien du tous j’ai suivi tes étape et sur le connecteur con 2001 et la 325v bizarre bon je relie la carte gb pour tester au borne du con 3201 et la 15v et sa retombe et sa remonte a 15v peut tu m aider cdt richard (pense tu que je doi changer le mcz)

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 29 avril 2015 à 16 h 18 min +

                          +

                          Vérifiez les autres tensions en sortie de la carte GB, de mémoire il doit y avoir 3,3 V du 5 V et du 15V. Si tout est OK, la carte-mère principale est peut-être endommagé et pas moyen de réparer sans changement.

                          + +
                          +
                          + +
                          + +
                          +
                          +
                          +
                          +

                          + Gilles + · 16 juin 2018 à 13 h 44 min +

                          +

                          Même chose que vous ?
                          +Avez-vous trouvé une solution ?
                          +Est-ce que c’est normal cette tension non stable ?

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Daoud Yacoub + · 20 octobre 2015 à 9 h 54 min +

                        +

                        Je remercie beaucoup l’equipe

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Daoud Yacoub + · 20 octobre 2015 à 10 h 02 min +

                        +

                        Aidez moi à depanner mon vidéo projecteur le tout ne s’allume pas ;jai démonté et nettoyer toutes les plaques alimentation et logique me rien ne se passe mais en toute sincérité si je peux avoir le document technique de réparation m’est indispensable

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 24 octobre 2015 à 13 h 39 min +

                          +

                          Les commentaires n’ont pas pour vocation d’être un forum :-)

                          + +
                          +
                          + +
                        + +
                        +
                        +
                        +

                        Répondre à Gilles Annuler la réponse

                        Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                        +
                        +
                        +

                        + +

                        +
                        +
                        +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        + + +
                        + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/97d0f208e906abdcb31fb0e466ef9756e6960959.00000420.html b/www/.content.EZtzwPjb/html/97d0f208e906abdcb31fb0e466ef9756e6960959.00000420.html new file mode 100644 index 0000000..28cccad --- /dev/null +++ b/www/.content.EZtzwPjb/html/97d0f208e906abdcb31fb0e466ef9756e6960959.00000420.html @@ -0,0 +1,378 @@ + + + + + + + hadopi – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +

                        Download-Day

                        Bon voilà, je vais officialiser ma participation au D-Day organisé par LinuxManua, en date du 1er novembre 2010. Le but de l’opération étant de télécharger 20 Go et cela uniquement sur les réseaux Peer to Peer de préférence pas anonyme : Edonkey2000, Gnutella, Bitorrent, etc. Alors comme je suis joueur, je Lire la suite…

                        +

                        Hello World

                        Bienvenue sur mon blog, voila c’est fait, je voulais depuis un petit moment ouvrir un blog pour m’ exprimer sur l’ actualité geek et raconter ma vie parler technique. Alors j’annonce les couleurs ici je vais pas parler coupe de cheveux ni sous-vêtement mais des sujets orientés internet, réseaux, développement et politique #hadopi #fail.

                        +
                        +
                        + +
                        +
                        +
                        +
                        + +
                        +
                        + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/97eb4f20a9f4ed6834a0373686f51e9961020110.00000035.html b/www/.content.EZtzwPjb/html/97eb4f20a9f4ed6834a0373686f51e9961020110.00000035.html new file mode 100644 index 0000000..5f7666d --- /dev/null +++ b/www/.content.EZtzwPjb/html/97eb4f20a9f4ed6834a0373686f51e9961020110.00000035.html @@ -0,0 +1,661 @@ + + + + + + + + GET to POST – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        +

                        Il est 00h16, comme d’habitude je suis en train de développer un truc useless pour passer le temps donc je vais le mettre histoire de dire que ça va peut-être servir à plus d’une personne.

                        +

                        Language : JavaScript

                        +

                        Dépendance : Aucune

                        +

                        Type d’exécution : Local

                        +

                        Description : Ce script sert à transformer une requête HTTP de type GET via URL en méthode POST.

                        +

                        Fonctionnement : Il prend les arguments passés en get dans l’url et les envois via un formulaire de type hidden créé à la volée.

                        +

                        Exemple : https://blog.hugopoi.net/wp-content/uploads/2010/12/script.html?urlserverpage=http://fr.php.net/search.php&pattern=test&lang=en&show=quickref

                        +

                        Download : Script Get to Post

                        +

                        Note: pour télécharge le fichier en lien ci-dessus faites un clic droit « enregistrer la cible sous ».

                        +
                        +
                        +
                        +
                        +
                        Catégories : DéveloppementNews
                        +
                        +
                        +
                        + + + + + + + + + +
                        +
                        +
                        +
                        +
                        +
                        +
                        +

                        + 9 commentaires

                        +
                        + +
                        +
                        +
                        +
                        +

                        + watchix + · 12 juillet 2011 à 17 h 50 min +

                        +

                        Merci mon bon Hugo :-)
                        +J’étais en train de chercher ce genre de script lorsque je suis tombé sur le blog de Camille Descombes, puis ensuite sur ton commentaire :-)
                        +Internet est petit dans le monde des développeurs ^^

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + mou7a + · 25 mai 2012 à 13 h 01 min +

                        +

                        bonjour, Je sais que l’article date un peu mais je n’arrive pas à récupérer la source elle n’est plus disponible merci!!!

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 14 juin 2012 à 23 h 00 min +

                          +

                          la source est dans le fichier HTML.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + houhou + · 10 juillet 2012 à 9 h 29 min +

                        +

                        Bonjour HugoPoi;
                        +j’ai besoin du script pour récupérer le contenu d’une div généré en js,l’envoyer à une autre page de traitement pour le convertir en pdf.c’est urgent,merci!!!

                        + +
                        +
                        + + +
                        + +
                        +
                        +
                        +
                        +

                        + Geolocalise Ip + · 25 avril 2014 à 10 h 42 min +

                        +

                        Bonjour,
                        +Merci beaucoup pour l’idée, mais ta page : http://blog.hugopoi.net/wp-content/uploads/2010/12/script.html est morte …

                        +

                        Quant à « houhou », il est formidable, je prendrai bien son adresse IP à celui là pour voir de quel pays il vient !!!! Grrr ….
                        +Bon c’était en 2012, il a dû changer de métiers depuis !

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 9 mai 2014 à 18 h 12 min +

                          +

                          Le lien n’est pas mort mais le script se lance même sans paramètres valide donc tu es redirigé quand tu clic.
                          +Fait un clic droit enregistrer sous.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Gab Wink + · 13 février 2015 à 0 h 06 min +

                        +

                        Merci, ceci m’a été utile (et c’est toujours cool de le dire).

                        + +
                        +
                        + +
                        +
                        +
                        +

                        Répondre à watchix Annuler la réponse

                        Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                        +
                        +
                        +

                        + +

                        +
                        +
                        +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        + + +
                        + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/98260e8f20443c7f7e53b5fdb87aa55b56f6e455.00000719.css b/www/.content.EZtzwPjb/html/98260e8f20443c7f7e53b5fdb87aa55b56f6e455.00000719.css new file mode 100644 index 0000000..fe9245c --- /dev/null +++ b/www/.content.EZtzwPjb/html/98260e8f20443c7f7e53b5fdb87aa55b56f6e455.00000719.css @@ -0,0 +1,28 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7 .screen-reader-response{position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);height:1px;width:1px;margin:0;padding:0;border:0}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{color:#f00;font-size:1em;display:block}.use-floating-validation-tip span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;border:1px +solid #f00;background:#fff;padding: .2em .8em}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wpcf7-recaptcha +iframe{margin-bottom:0}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/983e6364b7ac0575e83933d2f3794345a760c6cc.00000755.css b/www/.content.EZtzwPjb/html/983e6364b7ac0575e83933d2f3794345a760c6cc.00000755.css new file mode 100644 index 0000000..41bb0cb --- /dev/null +++ b/www/.content.EZtzwPjb/html/983e6364b7ac0575e83933d2f3794345a760c6cc.00000755.css @@ -0,0 +1,5 @@ +/*! + * Font Awesome Free 5.10.0 by @fontawesome - https://fontawesome.com + * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) + */ +.fa.fa-glass:before{content:"\f000"}.fa.fa-meetup{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-star-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-star-o:before{content:"\f005"}.fa.fa-close:before,.fa.fa-remove:before{content:"\f00d"}.fa.fa-gear:before{content:"\f013"}.fa.fa-trash-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-trash-o:before{content:"\f2ed"}.fa.fa-file-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-o:before{content:"\f15b"}.fa.fa-clock-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-clock-o:before{content:"\f017"}.fa.fa-arrow-circle-o-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-arrow-circle-o-down:before{content:"\f358"}.fa.fa-arrow-circle-o-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-arrow-circle-o-up:before{content:"\f35b"}.fa.fa-play-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-play-circle-o:before{content:"\f144"}.fa.fa-repeat:before,.fa.fa-rotate-right:before{content:"\f01e"}.fa.fa-refresh:before{content:"\f021"}.fa.fa-list-alt{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-dedent:before{content:"\f03b"}.fa.fa-video-camera:before{content:"\f03d"}.fa.fa-picture-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-picture-o:before{content:"\f03e"}.fa.fa-photo{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-photo:before{content:"\f03e"}.fa.fa-image{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-image:before{content:"\f03e"}.fa.fa-pencil:before{content:"\f303"}.fa.fa-map-marker:before{content:"\f3c5"}.fa.fa-pencil-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-pencil-square-o:before{content:"\f044"}.fa.fa-share-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-share-square-o:before{content:"\f14d"}.fa.fa-check-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-check-square-o:before{content:"\f14a"}.fa.fa-arrows:before{content:"\f0b2"}.fa.fa-times-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-times-circle-o:before{content:"\f057"}.fa.fa-check-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-check-circle-o:before{content:"\f058"}.fa.fa-mail-forward:before{content:"\f064"}.fa.fa-eye,.fa.fa-eye-slash{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-warning:before{content:"\f071"}.fa.fa-calendar:before{content:"\f073"}.fa.fa-arrows-v:before{content:"\f338"}.fa.fa-arrows-h:before{content:"\f337"}.fa.fa-bar-chart{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bar-chart:before{content:"\f080"}.fa.fa-bar-chart-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bar-chart-o:before{content:"\f080"}.fa.fa-facebook-square,.fa.fa-twitter-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-gears:before{content:"\f085"}.fa.fa-thumbs-o-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-thumbs-o-up:before{content:"\f164"}.fa.fa-thumbs-o-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-thumbs-o-down:before{content:"\f165"}.fa.fa-heart-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-heart-o:before{content:"\f004"}.fa.fa-sign-out:before{content:"\f2f5"}.fa.fa-linkedin-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-linkedin-square:before{content:"\f08c"}.fa.fa-thumb-tack:before{content:"\f08d"}.fa.fa-external-link:before{content:"\f35d"}.fa.fa-sign-in:before{content:"\f2f6"}.fa.fa-github-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-lemon-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-lemon-o:before{content:"\f094"}.fa.fa-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-square-o:before{content:"\f0c8"}.fa.fa-bookmark-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bookmark-o:before{content:"\f02e"}.fa.fa-facebook,.fa.fa-twitter{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-facebook:before{content:"\f39e"}.fa.fa-facebook-f{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-facebook-f:before{content:"\f39e"}.fa.fa-github{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-credit-card{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-feed:before{content:"\f09e"}.fa.fa-hdd-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hdd-o:before{content:"\f0a0"}.fa.fa-hand-o-right{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-o-right:before{content:"\f0a4"}.fa.fa-hand-o-left{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-o-left:before{content:"\f0a5"}.fa.fa-hand-o-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-o-up:before{content:"\f0a6"}.fa.fa-hand-o-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-o-down:before{content:"\f0a7"}.fa.fa-arrows-alt:before{content:"\f31e"}.fa.fa-group:before{content:"\f0c0"}.fa.fa-chain:before{content:"\f0c1"}.fa.fa-scissors:before{content:"\f0c4"}.fa.fa-files-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-files-o:before{content:"\f0c5"}.fa.fa-floppy-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-floppy-o:before{content:"\f0c7"}.fa.fa-navicon:before,.fa.fa-reorder:before{content:"\f0c9"}.fa.fa-google-plus,.fa.fa-google-plus-square,.fa.fa-pinterest,.fa.fa-pinterest-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-google-plus:before{content:"\f0d5"}.fa.fa-money{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-money:before{content:"\f3d1"}.fa.fa-unsorted:before{content:"\f0dc"}.fa.fa-sort-desc:before{content:"\f0dd"}.fa.fa-sort-asc:before{content:"\f0de"}.fa.fa-linkedin{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-linkedin:before{content:"\f0e1"}.fa.fa-rotate-left:before{content:"\f0e2"}.fa.fa-legal:before{content:"\f0e3"}.fa.fa-dashboard:before,.fa.fa-tachometer:before{content:"\f3fd"}.fa.fa-comment-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-comment-o:before{content:"\f075"}.fa.fa-comments-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-comments-o:before{content:"\f086"}.fa.fa-flash:before{content:"\f0e7"}.fa.fa-clipboard,.fa.fa-paste{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-paste:before{content:"\f328"}.fa.fa-lightbulb-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-lightbulb-o:before{content:"\f0eb"}.fa.fa-exchange:before{content:"\f362"}.fa.fa-cloud-download:before{content:"\f381"}.fa.fa-cloud-upload:before{content:"\f382"}.fa.fa-bell-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bell-o:before{content:"\f0f3"}.fa.fa-cutlery:before{content:"\f2e7"}.fa.fa-file-text-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-text-o:before{content:"\f15c"}.fa.fa-building-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-building-o:before{content:"\f1ad"}.fa.fa-hospital-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hospital-o:before{content:"\f0f8"}.fa.fa-tablet:before{content:"\f3fa"}.fa.fa-mobile-phone:before,.fa.fa-mobile:before{content:"\f3cd"}.fa.fa-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-circle-o:before{content:"\f111"}.fa.fa-mail-reply:before{content:"\f3e5"}.fa.fa-github-alt{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-folder-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-folder-o:before{content:"\f07b"}.fa.fa-folder-open-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-folder-open-o:before{content:"\f07c"}.fa.fa-smile-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-smile-o:before{content:"\f118"}.fa.fa-frown-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-frown-o:before{content:"\f119"}.fa.fa-meh-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-meh-o:before{content:"\f11a"}.fa.fa-keyboard-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-keyboard-o:before{content:"\f11c"}.fa.fa-flag-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-flag-o:before{content:"\f024"}.fa.fa-mail-reply-all:before{content:"\f122"}.fa.fa-star-half-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-star-half-o:before{content:"\f089"}.fa.fa-star-half-empty{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-star-half-empty:before{content:"\f089"}.fa.fa-star-half-full{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-star-half-full:before{content:"\f089"}.fa.fa-code-fork:before{content:"\f126"}.fa.fa-chain-broken:before{content:"\f127"}.fa.fa-shield:before{content:"\f3ed"}.fa.fa-calendar-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-o:before{content:"\f133"}.fa.fa-css3,.fa.fa-html5,.fa.fa-maxcdn{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-ticket:before{content:"\f3ff"}.fa.fa-minus-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-minus-square-o:before{content:"\f146"}.fa.fa-level-up:before{content:"\f3bf"}.fa.fa-level-down:before{content:"\f3be"}.fa.fa-pencil-square:before{content:"\f14b"}.fa.fa-external-link-square:before{content:"\f360"}.fa.fa-compass{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-down:before{content:"\f150"}.fa.fa-toggle-down{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-toggle-down:before{content:"\f150"}.fa.fa-caret-square-o-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-up:before{content:"\f151"}.fa.fa-toggle-up{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-toggle-up:before{content:"\f151"}.fa.fa-caret-square-o-right{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-right:before{content:"\f152"}.fa.fa-toggle-right{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-toggle-right:before{content:"\f152"}.fa.fa-eur:before,.fa.fa-euro:before{content:"\f153"}.fa.fa-gbp:before{content:"\f154"}.fa.fa-dollar:before,.fa.fa-usd:before{content:"\f155"}.fa.fa-inr:before,.fa.fa-rupee:before{content:"\f156"}.fa.fa-cny:before,.fa.fa-jpy:before,.fa.fa-rmb:before,.fa.fa-yen:before{content:"\f157"}.fa.fa-rouble:before,.fa.fa-rub:before,.fa.fa-ruble:before{content:"\f158"}.fa.fa-krw:before,.fa.fa-won:before{content:"\f159"}.fa.fa-bitcoin,.fa.fa-btc{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-bitcoin:before{content:"\f15a"}.fa.fa-file-text:before{content:"\f15c"}.fa.fa-sort-alpha-asc:before{content:"\f15d"}.fa.fa-sort-alpha-desc:before{content:"\f881"}.fa.fa-sort-amount-asc:before{content:"\f160"}.fa.fa-sort-amount-desc:before{content:"\f884"}.fa.fa-sort-numeric-asc:before{content:"\f162"}.fa.fa-sort-numeric-desc:before{content:"\f886"}.fa.fa-xing,.fa.fa-xing-square,.fa.fa-youtube,.fa.fa-youtube-play,.fa.fa-youtube-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-youtube-play:before{content:"\f167"}.fa.fa-adn,.fa.fa-bitbucket,.fa.fa-bitbucket-square,.fa.fa-dropbox,.fa.fa-flickr,.fa.fa-instagram,.fa.fa-stack-overflow{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-bitbucket-square:before{content:"\f171"}.fa.fa-tumblr,.fa.fa-tumblr-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-long-arrow-down:before{content:"\f309"}.fa.fa-long-arrow-up:before{content:"\f30c"}.fa.fa-long-arrow-left:before{content:"\f30a"}.fa.fa-long-arrow-right:before{content:"\f30b"}.fa.fa-android,.fa.fa-apple,.fa.fa-dribbble,.fa.fa-foursquare,.fa.fa-gittip,.fa.fa-gratipay,.fa.fa-linux,.fa.fa-skype,.fa.fa-trello,.fa.fa-windows{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-gittip:before{content:"\f184"}.fa.fa-sun-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-sun-o:before{content:"\f185"}.fa.fa-moon-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-moon-o:before{content:"\f186"}.fa.fa-pagelines,.fa.fa-renren,.fa.fa-stack-exchange,.fa.fa-vk,.fa.fa-weibo{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-arrow-circle-o-right{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-arrow-circle-o-right:before{content:"\f35a"}.fa.fa-arrow-circle-o-left{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-arrow-circle-o-left:before{content:"\f359"}.fa.fa-caret-square-o-left{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-caret-square-o-left:before{content:"\f191"}.fa.fa-toggle-left{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-toggle-left:before{content:"\f191"}.fa.fa-dot-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-dot-circle-o:before{content:"\f192"}.fa.fa-vimeo-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-try:before,.fa.fa-turkish-lira:before{content:"\f195"}.fa.fa-plus-square-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-plus-square-o:before{content:"\f0fe"}.fa.fa-openid,.fa.fa-slack,.fa.fa-wordpress{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-bank:before,.fa.fa-institution:before{content:"\f19c"}.fa.fa-mortar-board:before{content:"\f19d"}.fa.fa-delicious,.fa.fa-digg,.fa.fa-drupal,.fa.fa-google,.fa.fa-joomla,.fa.fa-pied-piper-alt,.fa.fa-pied-piper-pp,.fa.fa-reddit,.fa.fa-reddit-square,.fa.fa-stumbleupon,.fa.fa-stumbleupon-circle,.fa.fa-yahoo{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-spoon:before{content:"\f2e5"}.fa.fa-behance,.fa.fa-behance-square,.fa.fa-steam,.fa.fa-steam-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-automobile:before{content:"\f1b9"}.fa.fa-cab:before{content:"\f1ba"}.fa.fa-envelope-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-envelope-o:before{content:"\f0e0"}.fa.fa-deviantart,.fa.fa-soundcloud{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-file-pdf-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-pdf-o:before{content:"\f1c1"}.fa.fa-file-word-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-word-o:before{content:"\f1c2"}.fa.fa-file-excel-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-excel-o:before{content:"\f1c3"}.fa.fa-file-powerpoint-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-powerpoint-o:before{content:"\f1c4"}.fa.fa-file-image-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-image-o:before{content:"\f1c5"}.fa.fa-file-photo-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-photo-o:before{content:"\f1c5"}.fa.fa-file-picture-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-picture-o:before{content:"\f1c5"}.fa.fa-file-archive-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-archive-o:before{content:"\f1c6"}.fa.fa-file-zip-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-zip-o:before{content:"\f1c6"}.fa.fa-file-audio-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-audio-o:before{content:"\f1c7"}.fa.fa-file-sound-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-sound-o:before{content:"\f1c7"}.fa.fa-file-video-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-video-o:before{content:"\f1c8"}.fa.fa-file-movie-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-movie-o:before{content:"\f1c8"}.fa.fa-file-code-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-file-code-o:before{content:"\f1c9"}.fa.fa-codepen,.fa.fa-jsfiddle,.fa.fa-vine{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-life-bouy,.fa.fa-life-ring{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-life-bouy:before{content:"\f1cd"}.fa.fa-life-buoy{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-life-buoy:before{content:"\f1cd"}.fa.fa-life-saver{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-life-saver:before{content:"\f1cd"}.fa.fa-support{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-support:before{content:"\f1cd"}.fa.fa-circle-o-notch:before{content:"\f1ce"}.fa.fa-ra,.fa.fa-rebel{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-ra:before{content:"\f1d0"}.fa.fa-resistance{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-resistance:before{content:"\f1d0"}.fa.fa-empire,.fa.fa-ge{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-ge:before{content:"\f1d1"}.fa.fa-git,.fa.fa-git-square,.fa.fa-hacker-news,.fa.fa-y-combinator-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-y-combinator-square:before{content:"\f1d4"}.fa.fa-yc-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-yc-square:before{content:"\f1d4"}.fa.fa-qq,.fa.fa-tencent-weibo,.fa.fa-wechat,.fa.fa-weixin{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-wechat:before{content:"\f1d7"}.fa.fa-send:before{content:"\f1d8"}.fa.fa-paper-plane-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-paper-plane-o:before{content:"\f1d8"}.fa.fa-send-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-send-o:before{content:"\f1d8"}.fa.fa-circle-thin{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-circle-thin:before{content:"\f111"}.fa.fa-header:before{content:"\f1dc"}.fa.fa-sliders:before{content:"\f1de"}.fa.fa-futbol-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-futbol-o:before{content:"\f1e3"}.fa.fa-soccer-ball-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-soccer-ball-o:before{content:"\f1e3"}.fa.fa-slideshare,.fa.fa-twitch,.fa.fa-yelp{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-newspaper-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-newspaper-o:before{content:"\f1ea"}.fa.fa-cc-amex,.fa.fa-cc-discover,.fa.fa-cc-mastercard,.fa.fa-cc-paypal,.fa.fa-cc-stripe,.fa.fa-cc-visa,.fa.fa-google-wallet,.fa.fa-paypal{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-bell-slash-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-bell-slash-o:before{content:"\f1f6"}.fa.fa-trash:before{content:"\f2ed"}.fa.fa-copyright{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-eyedropper:before{content:"\f1fb"}.fa.fa-area-chart:before{content:"\f1fe"}.fa.fa-pie-chart:before{content:"\f200"}.fa.fa-line-chart:before{content:"\f201"}.fa.fa-angellist,.fa.fa-ioxhost,.fa.fa-lastfm,.fa.fa-lastfm-square{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-cc{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-cc:before{content:"\f20a"}.fa.fa-ils:before,.fa.fa-shekel:before,.fa.fa-sheqel:before{content:"\f20b"}.fa.fa-meanpath{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-meanpath:before{content:"\f2b4"}.fa.fa-buysellads,.fa.fa-connectdevelop,.fa.fa-dashcube,.fa.fa-forumbee,.fa.fa-leanpub,.fa.fa-sellsy,.fa.fa-shirtsinbulk,.fa.fa-simplybuilt,.fa.fa-skyatlas{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-diamond{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-diamond:before{content:"\f3a5"}.fa.fa-intersex:before{content:"\f224"}.fa.fa-facebook-official{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-facebook-official:before{content:"\f09a"}.fa.fa-pinterest-p,.fa.fa-whatsapp{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-hotel:before{content:"\f236"}.fa.fa-medium,.fa.fa-viacoin,.fa.fa-y-combinator,.fa.fa-yc{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-yc:before{content:"\f23b"}.fa.fa-expeditedssl,.fa.fa-opencart,.fa.fa-optin-monster{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-battery-4:before,.fa.fa-battery:before{content:"\f240"}.fa.fa-battery-3:before{content:"\f241"}.fa.fa-battery-2:before{content:"\f242"}.fa.fa-battery-1:before{content:"\f243"}.fa.fa-battery-0:before{content:"\f244"}.fa.fa-object-group,.fa.fa-object-ungroup,.fa.fa-sticky-note-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-sticky-note-o:before{content:"\f249"}.fa.fa-cc-diners-club,.fa.fa-cc-jcb{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-clone,.fa.fa-hourglass-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hourglass-o:before{content:"\f254"}.fa.fa-hourglass-1:before{content:"\f251"}.fa.fa-hourglass-2:before{content:"\f252"}.fa.fa-hourglass-3:before{content:"\f253"}.fa.fa-hand-rock-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-rock-o:before{content:"\f255"}.fa.fa-hand-grab-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-grab-o:before{content:"\f255"}.fa.fa-hand-paper-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-paper-o:before{content:"\f256"}.fa.fa-hand-stop-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-stop-o:before{content:"\f256"}.fa.fa-hand-scissors-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-scissors-o:before{content:"\f257"}.fa.fa-hand-lizard-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-lizard-o:before{content:"\f258"}.fa.fa-hand-spock-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-spock-o:before{content:"\f259"}.fa.fa-hand-pointer-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-pointer-o:before{content:"\f25a"}.fa.fa-hand-peace-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-hand-peace-o:before{content:"\f25b"}.fa.fa-registered{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-chrome,.fa.fa-creative-commons,.fa.fa-firefox,.fa.fa-get-pocket,.fa.fa-gg,.fa.fa-gg-circle,.fa.fa-internet-explorer,.fa.fa-odnoklassniki,.fa.fa-odnoklassniki-square,.fa.fa-opera,.fa.fa-safari,.fa.fa-tripadvisor,.fa.fa-wikipedia-w{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-television:before{content:"\f26c"}.fa.fa-500px,.fa.fa-amazon,.fa.fa-contao{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-calendar-plus-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-plus-o:before{content:"\f271"}.fa.fa-calendar-minus-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-minus-o:before{content:"\f272"}.fa.fa-calendar-times-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-times-o:before{content:"\f273"}.fa.fa-calendar-check-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-calendar-check-o:before{content:"\f274"}.fa.fa-map-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-map-o:before{content:"\f279"}.fa.fa-commenting:before{content:"\f4ad"}.fa.fa-commenting-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-commenting-o:before{content:"\f4ad"}.fa.fa-houzz,.fa.fa-vimeo{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-vimeo:before{content:"\f27d"}.fa.fa-black-tie,.fa.fa-edge,.fa.fa-fonticons,.fa.fa-reddit-alien{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-credit-card-alt:before{content:"\f09d"}.fa.fa-codiepie,.fa.fa-fort-awesome,.fa.fa-mixcloud,.fa.fa-modx,.fa.fa-product-hunt,.fa.fa-scribd,.fa.fa-usb{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-pause-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-pause-circle-o:before{content:"\f28b"}.fa.fa-stop-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-stop-circle-o:before{content:"\f28d"}.fa.fa-bluetooth,.fa.fa-bluetooth-b,.fa.fa-envira,.fa.fa-gitlab,.fa.fa-wheelchair-alt,.fa.fa-wpbeginner,.fa.fa-wpforms{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-wheelchair-alt:before{content:"\f368"}.fa.fa-question-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-question-circle-o:before{content:"\f059"}.fa.fa-volume-control-phone:before{content:"\f2a0"}.fa.fa-asl-interpreting:before{content:"\f2a3"}.fa.fa-deafness:before,.fa.fa-hard-of-hearing:before{content:"\f2a4"}.fa.fa-glide,.fa.fa-glide-g{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-signing:before{content:"\f2a7"}.fa.fa-first-order,.fa.fa-google-plus-official,.fa.fa-pied-piper,.fa.fa-snapchat,.fa.fa-snapchat-ghost,.fa.fa-snapchat-square,.fa.fa-themeisle,.fa.fa-viadeo,.fa.fa-viadeo-square,.fa.fa-yoast{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-google-plus-official:before{content:"\f2b3"}.fa.fa-google-plus-circle{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-google-plus-circle:before{content:"\f2b3"}.fa.fa-fa,.fa.fa-font-awesome{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-fa:before{content:"\f2b4"}.fa.fa-handshake-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-handshake-o:before{content:"\f2b5"}.fa.fa-envelope-open-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-envelope-open-o:before{content:"\f2b6"}.fa.fa-linode{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-address-book-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-address-book-o:before{content:"\f2b9"}.fa.fa-vcard:before{content:"\f2bb"}.fa.fa-address-card-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-address-card-o:before{content:"\f2bb"}.fa.fa-vcard-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-vcard-o:before{content:"\f2bb"}.fa.fa-user-circle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-user-circle-o:before{content:"\f2bd"}.fa.fa-user-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-user-o:before{content:"\f007"}.fa.fa-id-badge{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-drivers-license:before{content:"\f2c2"}.fa.fa-id-card-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-id-card-o:before{content:"\f2c2"}.fa.fa-drivers-license-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-drivers-license-o:before{content:"\f2c2"}.fa.fa-free-code-camp,.fa.fa-quora,.fa.fa-telegram{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-thermometer-4:before,.fa.fa-thermometer:before{content:"\f2c7"}.fa.fa-thermometer-3:before{content:"\f2c8"}.fa.fa-thermometer-2:before{content:"\f2c9"}.fa.fa-thermometer-1:before{content:"\f2ca"}.fa.fa-thermometer-0:before{content:"\f2cb"}.fa.fa-bathtub:before,.fa.fa-s15:before{content:"\f2cd"}.fa.fa-window-maximize,.fa.fa-window-restore{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-times-rectangle:before{content:"\f410"}.fa.fa-window-close-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-window-close-o:before{content:"\f410"}.fa.fa-times-rectangle-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-times-rectangle-o:before{content:"\f410"}.fa.fa-bandcamp,.fa.fa-eercast,.fa.fa-etsy,.fa.fa-grav,.fa.fa-imdb,.fa.fa-ravelry{font-family:"Font Awesome 5 Brands";font-weight:400}.fa.fa-eercast:before{content:"\f2da"}.fa.fa-snowflake-o{font-family:"Font Awesome 5 Free";font-weight:400}.fa.fa-snowflake-o:before{content:"\f2dc"}.fa.fa-spotify,.fa.fa-superpowers,.fa.fa-wpexplorer{font-family:"Font Awesome 5 Brands";font-weight:400} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/98872282c5b3c191064755c0e3209a0fc1a458ee.00000455.html b/www/.content.EZtzwPjb/html/98872282c5b3c191064755c0e3209a0fc1a458ee.00000455.html new file mode 100644 index 0000000..bf4c3a6 --- /dev/null +++ b/www/.content.EZtzwPjb/html/98872282c5b3c191064755c0e3209a0fc1a458ee.00000455.html @@ -0,0 +1,364 @@ + + + + + + + musique – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +

                        Pascal Negre tu m’emmerdes

                        Bon sérieux, Pascal Negre il commence à me les briser sec. Après Deezer qui est devenu une belle merde car il n’y a plus que les Black Eyed Peas, Justin et Britney, la plateforme est devenue complètement payante et cela reste cher au vu du catalogue proposé. Puis l’année dernière Lire la suite…

                        +
                        Par HugoPoi, il y a
                        +
                        + +
                        +
                        +
                        +
                        + +
                        +
                        + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/988ea436540f3675901cec5f421a96c56cc1c652.00000337.html b/www/.content.EZtzwPjb/html/988ea436540f3675901cec5f421a96c56cc1c652.00000337.html new file mode 100644 index 0000000..475b267 --- /dev/null +++ b/www/.content.EZtzwPjb/html/988ea436540f3675901cec5f421a96c56cc1c652.00000337.html @@ -0,0 +1,364 @@ + + + + + + + Antec Solo – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        + +
                        +
                        + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/98ebfcb9f84b151cc333fc6bdafab68c2278a83c.00000053.html b/www/.content.EZtzwPjb/html/98ebfcb9f84b151cc333fc6bdafab68c2278a83c.00000053.html new file mode 100644 index 0000000..2f7b8a4 --- /dev/null +++ b/www/.content.EZtzwPjb/html/98ebfcb9f84b151cc333fc6bdafab68c2278a83c.00000053.html @@ -0,0 +1,533 @@ + + + + + + + + Stockage numérique pour tous – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        +

                        Ce blog parle très technique comme en témoigne mon dernier article mais aujourd’hui je vais faire un petit topo sur les disques-dur ou plutôt le stockage de vos données numériques en général. Dans cet article je vais m’adresser à tout le monde de papi-geek à tante-photo et pas uniquement à tous les geeks.

                        +

                        Je me suis aperçu, dans mon entourage proche mais aussi sur des forums ou je traîne parfois, que beaucoup n’ont aucune notion sur comment est stockée l’information sur nos ordinateurs et ce qu’il y a dans un disque USB que l’on achète à la Fnac pour ne citer que ces abrutis.

                        +

                        Retour en arrière, le fameux disque-dur que tout le monde utilise (peut-être sans le savoir) a été inventé en 1953 par IBM. Les premiers modèles avaient une capacité de quelques mégaoctets pour un prix de 10 000$. Aujourd’hui, il existe des modèles allant jusqu’à plus de 2 Téraoctets de capacité soit un million de fois plus.

                        +

                        Le disque-dur stocke les informations de façon magnétique sur des plateaux qui ressemblent à des CDs qui sont en rotation. Des petits bras viennent se positionner au dessus des disques pour écrire/lire les informations. ça ressemble à cela :

                        +

                        +

                        et l’intérieur c’est comme cela :

                        +

                        +

                        Mais comment est branché ce truc ?

                        +

                        Par deux connecteurs: l’alimentation(à droite) et le câble de données (à gauche).

                        +

                        +

                        Vos photos de famille, vos documents textuels, de la musique et des vidéos, tous ces fichiers sont stockés sur votre disque-dur qui lui est connecté à votre ordinateur grâce à une interface qui se nomme SATA ou Serial ATA (si votre ordinateur a moins de 5 ans sinon c’est de l’IDE). Le disque qui est dans votre ordinateur est le même que celui dans vos disques-dur externes USB, c’est juste que le disque externe contient une petite carte qui convertit le signal SATA en USB.

                        +

                        Qui utilise ça ?

                        +

                        Tout le monde, vous lecteurs, l’ordinateur que vous êtes en train d’utiliser pour lire cet article a de très grandes chance d’utiliser un disque-dur pour stocker les informations dont il a besoin pour fonctionner. Votre système d’exploitation Windows, Mac OSX ou encore Ubuntu, Debian mais aussi vos programmes comme le navigateur internet que vous utilisez Mozilla Firefox, Internet Explorer, Safari, Chrome ; et pour finir vos données personnelles.

                        +

                        Mais aussi les sociétés comme Google et Facebook, pour stocker vos profils grâce à des armoire à disques SAN (Storage Area Network).

                        +

                        +

                        La majorité des données d’Internet sont stockées sur des millions de disques-dur ! C’est pour ça que l’expression Cloud Computing me fait bien marrer parce qu’un nuage ça produit pas de CO2, à comparer avec un petit milliard de disques-dur pour héberger le « cloud ».

                        +

                        Acheter un disque-dur externe en france :

                        +

                        Alors vous ne le savez peut-être pas, mais quand vous achetez un disque-dur externe dans le commerce, vous payez une taxe spéciale dessus, la taxe de copie privée. En résumé, c’est une taxe qui vous donne le droit de mettre le mp3 que vous achetez sur votre baladeur. Cette taxe est reversée à certains artistes et surtout aux majors ( Sacem et compagnie), elle représente 20€ pour un disque-dur externe de 1 To. Le montant total reversé aux ayants droits a été de 762 Million d’ euros pour 2009. Pour éviter de payer cette taxe de merde suivez le guide ci-dessous.

                        +

                        Faire son disque dur externe soit même, c’est pas dur !

                        +

                        Eh oui le gros #fail de la taxe pour copie privée c’est qu’elle se base sur un prix par Go donc pas applicable sur des boitiers sans disque. Donc comme les disques-dur nus ne sont pas concernés par cette taxe, vous pouvez acheter un boitier externe sans disque et le disque de la capacité que vous voulez à part. Vous assemblez les deux avec vos mains et un tournevis #DIY. Pour acheter un boitier externe sans disque il y en a sur ldlc.com pour tous les prix et aussi multimedia. Les critères sont la connectique (USB 3.0, e-SATA, HDMI, …) prenez systématiquement de l’interface SATA interne et vous pouvez faire une petite recherche sur internet pour trouver un petit test du boitier (ex : « ICY BOX IB-290STUS-B test« ). Pour le disque-dur il y a plein de références sur ldlc.com . Préférez les modèles de dernières génération qui auront de bien meilleures performances. Attention au format du disque puisque qu’il y a deux tailles différentes: les 3.5 pouces qui sont pour PC fixe et les 2.5 pouces pour ordinateurs portables. Voilà vous êtes près pour acheter ! Si vous voulez des conseils : commentaires, twitter, facebook … ;)

                        +

                        What is Next ?

                        +

                        Maintenant que vous savez presque tout sur les disques-dur, il va falloir oublier puis se pencher sur les nouvelles technologies qui vont le remplacer. Cette nouvelle techno, c’est le SSD ou Solid State Disk en gros c’est de la mémoire flash, celle qu’il y a dans vos petites clés USB ou cartes mémoires, sauf que celle-ci est plus rapide et de plus grande capacité. Et c’est déjà en vente sur internet depuis 2 ans environ, c’est maintenant disponible à des tarifs accessibles, et je vous parie que ça va faire fureur dans les prochains arrivages de la Fnac dans quelques mois.

                        +
                        +
                        +
                        + +
                        +
                        + + + + + + + + + +
                        +
                        +
                        +
                        +
                        +
                        +
                        +

                        + 2 commentaires

                        +
                        +
                        +

                        + Tweets that mention Stockage numérique pour tous | HugoPoi -- Topsy.com + · 26 janvier 2011 à 23 h 58 min +

                        +

                        […] This post was mentioned on Twitter by HugoPoi, HugoPoi. HugoPoi said: [blog] Stockage numérique http://bim.im/wN […]

                        + +
                        +
                        + +
                        +
                        +

                        + Vos données sauvegardées | HugoPoi + · 10 décembre 2011 à 1 h 00 min +

                        +

                        […] même le faire, vous pouvez récupérer les disques-dur que vous possédez déjà, vous pouvez démonter vos disques-dur externes et les placer dans un NAS.(Le Netgear Stora est trouvable pour 70€) Moi, j’ai opté pour […]

                        + +
                        +
                        + +
                        +
                        +
                        +

                        Répondre à Tweets that mention Stockage numérique pour tous | HugoPoi -- Topsy.com Annuler la réponse

                        Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                        +
                        +
                        +

                        + +

                        +
                        +
                        +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        + + +
                        + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/9905b469a4ca961701f3e5f0b5a3d7969dd2fdde.00000511.html b/www/.content.EZtzwPjb/html/9905b469a4ca961701f3e5f0b5a3d7969dd2fdde.00000511.html new file mode 100644 index 0000000..439d78d --- /dev/null +++ b/www/.content.EZtzwPjb/html/9905b469a4ca961701f3e5f0b5a3d7969dd2fdde.00000511.html @@ -0,0 +1,364 @@ + + + + + + + SFR – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        + +
                        +
                        + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/991a77962cf83eae5e8e7c80d9c83387def29089.00000244.html b/www/.content.EZtzwPjb/html/991a77962cf83eae5e8e7c80d9c83387def29089.00000244.html new file mode 100644 index 0000000..eaca72b --- /dev/null +++ b/www/.content.EZtzwPjb/html/991a77962cf83eae5e8e7c80d9c83387def29089.00000244.html @@ -0,0 +1,674 @@ + + + + + + + + Le cloud maison – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        +
                        +

                        Voilà un petit moment que je me devais de faire cet article pour vous en dire un peu plus sur comment je gère mes données numériques au quotidien.

                        +

                        Et après plusieurs essais et échecs, je peux enfin dire que j’ai trouvé des outils simples et maintenus pour cette quête. Même si ce n’est pas encore parfait ni à la porté de tous.

                        +

                        Ma philosophie

                        +

                        C’est celle de Framasoft Dégooglelisons l’Internet ! Dans un monde ou si c’est gratuit, c’est vous le produit. Je me devais d’éviter d’aller à la simplicité et utiliser les Gmail, Dropbox, Spotify, iCloud et autres merdes du genre. On peut se dire que c’est cool, c’est simple mais vous ne contrôlez plus rien, et au final les GAFAM se serviront de vos données pour vous faire devenir des moutons consommateurs au service des actionnaires. Et j’entends déjà dire que « oui mais moi je sais mais je m’en fout » !

                        +

                        Le matos

                        +

                        Oui c’est chiant mais pour faire du hors cloud, il faut le construire chez soi ou chez le voisin le nuage. L’avantage de le faire chez soi c’est qu’on dépend de personne et aussi plus c’est proche plus on a de débit donc la donnée locale devient la donnée accessible rapidement.

                        +

                        J’ai viré ma box

                        +

                        Pour ne plus dépendre de mon opérateur en terme de matos, j’ai remplacé le routeur (une NeufBox v6) par Netgear R8000 flashé sous DD-WRT mod Kong. Avantages :

                        +
                        • Meilleur wifi 30Mo/s sur la bande AC 5Ghz
                        • Peu de changement de configuration si changement d’opérateur
                        • Beaucoup paramétrage avancés possible
                        • Si votre opérateur est en carafe, votre routeur marche toujours.
                        +

                        Par ici pour voir comment se passer de la neufbox v6 de SFR.

                        +

                        Le NAS

                        +

                        Là vous avez plein de solution pour stocker des données. Mais pour avoir un truc flexible surtout si vous avez de gros besoin, il faut faire du sur mesure. Vous pouvez faire avec du Synology ou concurrents mais c’est plutôt cher et en plus ils se font du blé sur des logiciels libres dont ils ne reversent jamais le code, bref des enculés hors la loi.

                        +

                        Donc il vous faut un PC x86 de préférence, moi je suis parti sur une configuration maison avec dans l’idée de faire un truc très compacte.

                        +
                        • Intel Pentium G4400
                        • 24 Go de RAM ( je vous explique après )
                        • 4 x Disque de 3 To
                        • 1 Disque de merde pour l’OS de base
                        • Boîtier compacte In Win IW-MS04 ( Vous pouvez jeter un œil sur le SilverStone CS01-HS )
                        +

                        Et tous ça tient dans mon meuble de salon.

                        +
                        NAS dans le meuble TV
                        +

                        Donc si on fait les compte ça fait :

                        +
                        • 200€ de routeur
                        • Grosso modo 900€ de NAS
                        +

                        Ouai ça fait un budget après faut mettre en parallèle avec le coût du service rendu, pour avoir l’équivalent chez Dropbox c’est l’offre pro à 18€ par mois sauf qu’il faut prendre minimum 3 licences. Cela donne en annuel avec les remises si vous payez comptant 540€. Chez Google on est à 100€ par mois pour 10To soit 1200€ l’année. Après il y a en plus moyen de faire du recyclage de vieux composants ou acheter des trucs d’occasion ce que j’ai fait en partie. Pour ce qui est des solutions clé en main comme les Synology, on est au double du prix pour la même configuration.

                        +

                        Les logiciels

                        +

                        Dans l’idée d’avoir un truc souple et plutôt performant la première étape est de savoir comment vous allez exploiter vos disques-durs :

                        +
                        • Es que l’on va faire du RAID 1/5/6/10 ?
                        • Si du RAID logiciel ou matériel ?
                        • Quel système d’exploitation ?
                        +

                        J’ai utilisé pendant longtemps des NAS maison sous Debian avec du raid 5 logiciel, les performances sont correctes (>100Mo/s en écriture) mais il y a pas mal d’inconvénients à cette solution. Comme devoir souvent recourir à la ligne de commande pour installer ou configurer des logiciels, pas de gestion simplifier se rapprochant d’une solution Synology. Au niveau du stockage vous ne pouvez pas augmenter facilement la taille ou le nombre de disque sans devoir recourir à des opérations complexe. Et une simple monté de version de l’OS se transforme rapidement en cauchemar.

                        +

                        Donc pour la base de mon NAS je me suis dit que j’allais devoir choisir une solution d’OS plus proche de l’objectif que juste une simple distribution Linux ou il faut tout configurer de 0. Inventaire du possible :

                        +

                        FreeNAS

                        +

                        Basé sur FreeBSD, solution pour NAS avec interface web avec gestion du stockage via ZFS.

                        +

                        OpenMediaVault

                        +

                        Basé sur Debian, solution pour NAS avec interface web avec gestion du RAID logiciel via mdadm.

                        +

                        Syncloud

                        +

                        Basé sur Raspian/Debian, distribution minimaliste pour Raspberry Pi et autres joyeusetés.

                        +

                        Yunohost

                        +

                        Petit nouveau dans le game, basé sur Debian, solution pour NAS avec interface web sans solution de gestion du stockage.

                        +

                        Proxmox

                        +

                        Basé sur Debian distribution commercial, environnement complet de stockage et de virtualisation avec interface web.

                        +

                        UnRaid
                        Distribution Linux commercial proposant un solution de RAID propriétaire. Interface Web et virtualisation.

                        +

                        En faisant cet article je suis tombé sur snapraid qui fournit un comparatif des différentes solutions de RAID logiciel au niveau du système de fichier.

                        +

                        J’ai opté pour FreeNAS comme OS de base. Pour les raisons suivantes :

                        +
                        • Support natif de ZFS qui permet de faire du RAIDZ2 avec tolérance de panne de 2 disques, et gère les checksum sur fichier ainsi qu’une correction d’erreur. Gestion des snapshot comme LVM et permet de faire du stockage block pour d’autre système de fichier.
                        • Gère le chiffrement sur disque en natif.
                        • Robustesse et maintenue pour du commercial.
                        • Possibilité de faire de la virtualisation ainsi qu’un système de JAIL.
                        • L’interface WEB qui marche et est complète.
                        • Mise à jour hyper simple via l’interface Web
                        • Backup de la configuration via un simple fichier
                        +

                        FreeNAS

                        +

                        Déjà la mauvaise nouvelle c’est que pour avoir de bonne performance de stockage avec ZFS c’est qu’il vous faut de la RAM beaucoup de RAM car elle utilisé pour faire du cache et gérer les opérations interne de ZFS. J’en ai un peu plus que nécessaire car je prévois de faire de la virtualisation et ajouter d’autres fonctions sur mon NAS. Pour l’installation je vous recommande d’utiliser un device de merde pour le système car j’ai utilisé un SSD mais cela ne sert à rien, votre SSD sera beaucoup plus utile pour faire du cache pour ZFS. Vous pouvez utiliser une clé USB ou une carte SD.

                        +

                        NDLR: je vous laisse lire la doc de FreeNAS pour savoir comment installer le merdier. #RTFM

                        +

                        Ci-dessous un petit benchmark des performances disques sur du RAIDZ2 avec 4 disques de 3To, environ 400Mo/s de moyenne en écriture très correcte sans cache.

                        +
                        % fio --name TEST --eta-newline=5s --filename=fio-tempfile.dat --rw=write --size=500m --io_size=10g --blocksize=64k --fsync=10000 --iodepth=32 --direct=1 --numjobs=1 --runtime=60 --group_reporting
                        + TEST: (g=0): rw=write, bs=(R) 64.0KiB-64.0KiB, (W) 64.0KiB-64.0KiB, (T) 64.0KiB-64.0KiB, ioengine=psync, iodepth=32
                        + fio-3.0
                        + Starting 1 process
                        + Jobs: 1 (f=1): [W(1)][31.8%][r=0KiB/s,w=626MiB/s][r=0,w=10.0k IOPS][eta 00m:15s]
                        + Jobs: 1 (f=1): [W(1)][58.3%][r=0KiB/s,w=0KiB/s][r=0,w=0 IOPS][eta 00m:10s]
                        + Jobs: 1 (f=1): [W(1)][83.3%][r=0KiB/s,w=625MiB/s][r=0,w=10.0k IOPS][eta 00m:04s]
                        + Jobs: 1 (f=1): [W(1)][100.0%][r=0KiB/s,w=0KiB/s][r=0,w=0 IOPS][eta 00m:00s]
                        + TEST: (groupid=0, jobs=1): err= 0: pid=20290: Sun Mar 17 17:01:13 2019
                        +   write: IOPS=6702, BW=419MiB/s (439MB/s)(10.0GiB/24445msec)
                        +     clat (usec): min=5, max=17384, avg=10.20, stdev=96.40
                        +      lat (usec): min=6, max=17440, avg=10.76, stdev=105.67
                        +     clat percentiles (usec):
                        +      |  1.00th=[    8],  5.00th=[    8], 10.00th=[    8], 20.00th=[    9],
                        +      | 30.00th=[    9], 40.00th=[    9], 50.00th=[    9], 60.00th=[   10],
                        +      | 70.00th=[   10], 80.00th=[   10], 90.00th=[   11], 95.00th=[   11],
                        +      | 99.00th=[   21], 99.50th=[   30], 99.90th=[   75], 99.95th=[  165],
                        +      | 99.99th=[ 2999]
                        +    bw (  MiB/s): min=  105, max= 1250, per=100.00%, avg=1104.55, stdev=362.70, samples=18
                        +    iops        : min= 1688, max=20000, avg=17672.50, stdev=5803.29, samples=18
                        +   lat (usec)   : 10=90.15%, 20=8.83%, 50=0.87%, 100=0.07%, 250=0.04%
                        +   lat (usec)   : 500=0.01%, 750=0.01%, 1000=0.01%
                        +   lat (msec)   : 2=0.01%, 4=0.01%, 10=0.01%, 20=0.01%
                        +   cpu          : usr=0.68%, sys=7.26%, ctx=3362, majf=0, minf=1
                        +   IO depths    : 1=100.0%, 2=0.0%, 4=0.0%, 8=0.0%, 16=0.0%, 32=0.0%, >=64=0.0%
                        +      submit    : 0=0.0%, 4=100.0%, 8=0.0%, 16=0.0%, 32=0.0%, 64=0.0%, >=64=0.0%
                        +      complete  : 0=0.0%, 4=100.0%, 8=0.0%, 16=0.0%, 32=0.0%, 64=0.0%, >=64=0.0%
                        +      issued rwt: total=0,163840,0, short=0,0,0, dropped=0,0,0
                        +      latency   : target=0, window=0, percentile=100.00%, depth=32
                        +Run status group 0 (all jobs):
                        + WRITE: bw=419MiB/s (439MB/s), 419MiB/s-419MiB/s (439MB/s-439MB/s), io=10.0GiB (10.7GB), run=24445-24445msec
                        +
                        Capture FreeNAS écran des disques
                        +

                        Donc à partir de cette étape vous avez du stockage utilisable en 3 cliques vous pouvez l’utiliser en réseau.

                        +
                        • Partage NFS
                        • Partage SMB pour Windaube
                        • Partage MacOS avec AFP
                        • Et bien-sur aussi via SFTP
                        • Et aussi iSCSI
                        +

                        Vous allez me dire ouai c’est cool mais comment je fais pour utiliser mes données en dehors de chez moi comme dans le nuage. Vous pouvez mettre en place un VPN mais ça solutionne pas vraiment le problème de la mobilité

                        +

                        Les JAILs et la virtu

                        +

                        FreeNAS fournit des plugins basés sur les JAIL ancestre des containers Docker. Le truc assez cool vous pouvez installer Nextcloud, Owncloud et une dizaines d’autres donc si vos besoins sont limités et que vous voulez pas vous faire chier les plugins FreeNAS c’est la vie.

                        +
                        FreeNAS liste des plugins
                        +

                        Moi j’avais besoin de plus de souplesse et surtout de plus d’outils que ceux disponibles, et certains outils que je voulais avoir que j’utilisais déjà auparavant. C’est pour ça que mon usage des plugins est limité. J’utilise uniquement les plugins Transmission, SickRage et CouchPotato. Si vous voulez vous amusez le tuto ici est très bien fait pour configurer les différents plugins. J’utilise aussi une jail pour faire tourner Unbound comme résolveur DNS pour mon réseau local très pratique.

                        +

                        Yunohost

                        +

                        Comme FreeNAS ne fait pas tout, il me fallait une solution pour exploiter pleinement mon NAS et lui ajouter des features digne d’un cloud maison. Et Yunohost est vraiment super cool pour ça !

                        +
                        Page d’accueil utilisateur de Yunohost
                        +

                        Yunohost c’est faire plein de trucs !

                        +
                        • Les courriels en natif oui oui ! Multi-domaines multi-utilisateurs avec une interface web du bonheur !
                        • Baikal pour gérer la synchronisation Agenda / Contact sur tout mes devices en CardDav/CalDav
                        • Roundcube pour l’accès webmail
                        • Ampache pour gérer ma bibliothèque musical
                        • Wallabag pour gérer mes liens favoris à lire plus tard
                        • Tiny Tiny RSS pour gérer mes flux RSS
                        • Gitea pour gérer mes dépôts git
                        • Lufi pour uploader simplement des fichiers de manière temporaire et sécurisé
                        • Seafile pour faire comme Dropbox, ce soft est TRÈS PERFORMANT surtout quand vous devez synchroniser de gros volume de fichier aussi bien en taille que en nombre !
                        • Piwigo pour partager des albums photos pour la famille
                        • Riot pour tchater !
                        • Mastodon ( Je déconseille fortement car bouffe à mort de RAM ) pour remplacer Twitter
                        +

                        Pour installer Yunohost il vous faut une VM dans Freenas et vous installez Debian dedans, une fois Debian installé vous pouvez suivre la procédure pour installer Yunohost.

                        +

                        Je vous recommande de faire comme ça pour le partitionnement de votre VM Debian. Vous créez 2 disques virtuels un pour / et swap. Et le deuxième pour toutes les données donc /home /var.

                        +
                        FreeNAS volume pour yunohost
                        +

                        Pour le deuxième disque vous allez faire un truc un peu particulier, vous allez l’utiliser comme LVM mais sans table de partition si qui permettra de faire grossir le volume à chaud sans éditer la table de partition comme il y en aura pas ! Je suis pas sur que se soit supporté par Bhyve de FreeBSD donc faudra à minima que votre VM reboot une fois après le changement de taille.

                        +
                        Partitionnement VM Debian
                        +

                        Donc on a vda partitionné normalement avec une partition de boot EFI et le système dans un LVM mais pas indispensable. Le deuxième disque vdb n’a pas de table des partitions et a directement un LVM avec /var et /home Yunohost utilise principalement ces points de montages pour stocker les donnée des applications installées. Cette solution n’est pas parfaite car vous n’avez pas de moyen simple pour accéder au fichier de la machine Yunohost depuis FreeNas. Par contre l’inverse est possible rendre disponible vos fichiers et partages FreeNas dans Yunohost en utilisant un point de montage NFS. Ci-dessous mon fichier /etc/fstab.

                        +
                        # /etc/fstab: static file system information.
                        +#
                        +# Use 'blkid' to print the universally unique identifier for a
                        +# device; this may be used with UUID= as a more robust way to name devices
                        +# that works even if disks are added and removed. See fstab(5).
                        +#
                        +# <file system> <mount point>   <type>  <options>       <dump>  <pass>
                        +/dev/mapper/osvg-root /               ext4    errors=remount-ro 0       1
                        +# /boot/efi was on /dev/vda1 during installation
                        +UUID=4CFA-31EB  /boot/efi       vfat    umask=0077      0       1
                        +/dev/mapper/datasvg-home /home           ext4    defaults        0       2
                        +/dev/mapper/datasvg-var /var            xfs     defaults        0       0
                        +/dev/mapper/osvg-swap none            swap    sw              0       0
                        +192.168.1.35:/mnt/Mainraidz2/medias	/home/yunohost.multimedia/share	nfs	auto,x-systemd.automount,x-systemd.device-timeout=10,timeo=14,x-systemd.idle-timeout=1min	0	0
                        +

                        Pour revenir aux avantages de cette solution en machine virtuelle, cela permet une grande facilite de maintenance grâce a la possibilité de snapshot de la VM quand on le souhaite. Promis je vous fais un script de déploiement de Yunohost pour FreeNas, je ne sais si c’est possible que j’en fasse un plugin car Yunohost s’appuie beaucoup sur Debian, et on ne pas faire de plugin de VM dans FreeNas pour l’instant. J’ai aussi commencé à investiguer une autre solution plus élégante qui serait d’utiliser le sous-système d’émulation linux dans une Jail BSD pour monter Debian+Yunohost sauf que cette méthode ne permet que d’installer Wheezy comme version de Debian donc pas possible. La solution la plus probable serait d’utiliser Docker pour FreeBSD c’est encore en expérimental.

                        +

                        Schéma du merdier

                        +
                        Schéma de mon réseau à la maison
                        +

                        Améliorations et travaux en cours

                        +

                        Tout se merdier je le fais sur mon temps libre et tout est loin d’être parfait donc voici la liste des travaux à faire ou en cours :

                        +
                        • Secondary SMTP entry point has fail safe
                        • External offsite backup via ZFS Sync or S3 protocol
                        • Monitoring stuff (Premetheus, Grafana, snmp)
                        • Upgrade Router firmware
                        • Torrent stuff available on network trought SMB and other protocol
                        • Add a reverse proxy over transmission web and other freenas apps
                        • Use SSD for ZFS caching
                        • Add 4G fallback connection on the router
                        • Mastodon to Pleroma (save lot of ressource)
                        • Configure HDD hidle for saving some juice
                        • DNS-over-TLS
                        • VPN ? already have ssh … usefull only for UDP
                        • Have a haproxy in front of yunohost and the other stuff for manage ressource easily for sharing port like 443
                        • IPv6 !
                        +

                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +

                        + 4 commentaires

                        +
                        + +
                        +
                        +
                        +
                        +

                        + clement + · 11 juillet 2019 à 22 h 15 min +

                        +

                        Merci pour le retour d’expérience (et l’humour sur le blog!) ^^. Chez moi, c’est Synology avec l’OS d’origine et Yunohost sur RASPI! #fun

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + emilien mougeat + · 27 janvier 2020 à 22 h 42 min +

                        +

                        Salut !
                        +Merci pour ce retour d’experience.
                        +J’ai également passé le pas ! freenas + yunohost en iohyve ( debian9+yunohost). plutot cool.
                        +Par contre j’ai une petite galere que je n’arrive pas à resoudre, et je voulais savoir si tu avais rencontré la meme problematique.
                        +En effet quand j’essaye de monter le NFS entre le yuno et le freenas, impossible.
                        +Ma conf « semble » bonne maiiiiiiis je n’y arrive pas.
                        +Qu niveau de la conf nfs du freenas, quels paramètres as tu ?
                        +++

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + emilien mougeat + · 27 janvier 2020 à 23 h 44 min +

                        +

                        Bon Je viens de comprendre le probleme NFS, les droits configurés sur le volume etaient des droits windaube ….. SERIEUX Oo

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + T'es pas sérieux + · 19 septembre 2020 à 15 h 46 min +

                        +

                        Comment peut-on confondre « sait » et « c’est » ? Ce et se? Mon dieu…

                        + +
                        +
                        + +
                        +
                        +
                        +

                        Répondre à T'es pas sérieux Annuler la réponse

                        Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                        +
                        +
                        +

                        + +

                        +
                        +
                        +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        + + +
                        + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/99fa9a839d411aeddef6dc75f243028d0edc3b80.00001215.js b/www/.content.EZtzwPjb/html/99fa9a839d411aeddef6dc75f243028d0edc3b80.00001215.js new file mode 100644 index 0000000..340ce0a --- /dev/null +++ b/www/.content.EZtzwPjb/html/99fa9a839d411aeddef6dc75f243028d0edc3b80.00001215.js @@ -0,0 +1,6 @@ +/*! jQuery v1.12.4 | (c) jQuery Foundation | jquery.org/license | WordPress 2019-05-16 */ +!function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=a.document,e=c.slice,f=c.concat,g=c.push,h=c.indexOf,i={},j=i.toString,k=i.hasOwnProperty,l={},m="1.12.4",n=function(a,b){return new n.fn.init(a,b)},o=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,p=/^-ms-/,q=/-([\da-z])/gi,r=function(a,b){return b.toUpperCase()};n.fn=n.prototype={jquery:m,constructor:n,selector:"",length:0,toArray:function(){return e.call(this)},get:function(a){return null!=a?a<0?this[a+this.length]:this[a]:e.call(this)},pushStack:function(a){var b=n.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a){return n.each(this,a)},map:function(a){return this.pushStack(n.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(e.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(a<0?b:0);return this.pushStack(c>=0&&c=0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},isPlainObject:function(a){var b;if(!a||"object"!==n.type(a)||a.nodeType||n.isWindow(a))return!1;try{if(a.constructor&&!k.call(a,"constructor")&&!k.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}if(!l.ownFirst)for(b in a)return k.call(a,b);for(b in a);return void 0===b||k.call(a,b)},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?i[j.call(a)]||"object":typeof a},globalEval:function(b){b&&n.trim(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(p,"ms-").replace(q,r)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b){var c,d=0;if(s(a)){for(c=a.length;d0&&b-1 in a)}var t=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+1*new Date,v=a.document,w=0,x=0,y=fa(),z=fa(),A=fa(),B=function(a,b){return a===b&&(l=!0),0},C=1<<31,D={}.hasOwnProperty,E=[],F=E.pop,G=E.push,H=E.push,I=E.slice,J=function(a,b){for(var c=0,d=a.length;c+~]|"+L+")"+L+"*"),T=new RegExp("="+L+"*([^\\]'\"]*?)"+L+"*\\]","g"),U=new RegExp(O),V=new RegExp("^"+M+"$"),W={ID:new RegExp("^#("+M+")"),CLASS:new RegExp("^\\.("+M+")"),TAG:new RegExp("^("+M+"|[*])"),ATTR:new RegExp("^"+N),PSEUDO:new RegExp("^"+O),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+L+"*(even|odd|(([+-]|)(\\d*)n|)"+L+"*(?:([+-]|)"+L+"*(\\d+)|))"+L+"*\\)|)","i"),bool:new RegExp("^(?:"+K+")$","i"),needsContext:new RegExp("^"+L+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+L+"*((?:-\\d)?\\d*)"+L+"*\\)|)(?=[^-]|$)","i")},X=/^(?:input|select|textarea|button)$/i,Y=/^h\d$/i,Z=/^[^{]+\{\s*\[native \w/,$=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,_=/[+~]/,aa=/'|\\/g,ba=new RegExp("\\\\([\\da-f]{1,6}"+L+"?|("+L+")|.)","ig"),ca=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:d<0?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)},da=function(){m()};try{H.apply(E=I.call(v.childNodes),v.childNodes),E[v.childNodes.length].nodeType}catch(xa){H={apply:E.length?function(a,b){G.apply(a,I.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function ea(a,b,d,e){var f,h,j,k,l,o,r,s,w=b&&b.ownerDocument,x=b?b.nodeType:9;if(d=d||[],"string"!=typeof a||!a||1!==x&&9!==x&&11!==x)return d;if(!e&&((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,p)){if(11!==x&&(o=$.exec(a)))if(f=o[1]){if(9===x){if(!(j=b.getElementById(f)))return d;if(j.id===f)return d.push(j),d}else if(w&&(j=w.getElementById(f))&&t(b,j)&&j.id===f)return d.push(j),d}else{if(o[2])return H.apply(d,b.getElementsByTagName(a)),d;if((f=o[3])&&c.getElementsByClassName&&b.getElementsByClassName)return H.apply(d,b.getElementsByClassName(f)),d}if(c.qsa&&!A[a+" "]&&(!q||!q.test(a))){if(1!==x)w=b,s=a;else if("object"!==b.nodeName.toLowerCase()){(k=b.getAttribute("id"))?k=k.replace(aa,"\\$&"):b.setAttribute("id",k=u),r=g(a),h=r.length,l=V.test(k)?"#"+k:"[id='"+k+"']";while(h--)r[h]=l+" "+pa(r[h]);s=r.join(","),w=_.test(a)&&na(b.parentNode)||b}if(s)try{return H.apply(d,w.querySelectorAll(s)),d}catch(y){}finally{k===u&&b.removeAttribute("id")}}}return i(a.replace(Q,"$1"),b,d,e)}function fa(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function ga(a){return a[u]=!0,a}function ha(a){var b=n.createElement("div");try{return!!a(b)}catch(xa){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function ia(a,b){var c=a.split("|"),e=c.length;while(e--)d.attrHandle[c[e]]=b}function ja(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||C)-(~a.sourceIndex||C);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function ka(a){return function(b){return"input"===b.nodeName.toLowerCase()&&b.type===a}}function la(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function ma(a){return ga(function(b){return b=+b,ga(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function na(a){return a&&void 0!==a.getElementsByTagName&&a}c=ea.support={},f=ea.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return!!b&&"HTML"!==b.nodeName},m=ea.setDocument=function(a){var b,e,g=a?a.ownerDocument||a:v;return g!==n&&9===g.nodeType&&g.documentElement?(n=g,o=n.documentElement,p=!f(n),(e=n.defaultView)&&e.top!==e&&(e.addEventListener?e.addEventListener("unload",da,!1):e.attachEvent&&e.attachEvent("onunload",da)),c.attributes=ha(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ha(function(a){return a.appendChild(n.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=Z.test(n.getElementsByClassName),c.getById=ha(function(a){return o.appendChild(a).id=u,!n.getElementsByName||!n.getElementsByName(u).length}),c.getById?(d.find.ID=function(a,b){if(void 0!==b.getElementById&&p){var c=b.getElementById(a);return c?[c]:[]}},d.filter.ID=function(a){var b=a.replace(ba,ca);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(ba,ca);return function(a){var c=void 0!==a.getAttributeNode&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return void 0!==b.getElementsByTagName?b.getElementsByTagName(a):c.qsa?b.querySelectorAll(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){if(void 0!==b.getElementsByClassName&&p)return b.getElementsByClassName(a)},r=[],q=[],(c.qsa=Z.test(n.querySelectorAll))&&(ha(function(a){o.appendChild(a).innerHTML="",a.querySelectorAll("[msallowcapture^='']").length&&q.push("[*^$]="+L+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+L+"*(?:value|"+K+")"),a.querySelectorAll("[id~="+u+"-]").length||q.push("~="),a.querySelectorAll(":checked").length||q.push(":checked"),a.querySelectorAll("a#"+u+"+*").length||q.push(".#.+[+~]")}),ha(function(a){var b=n.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+L+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=Z.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ha(function(a){c.disconnectedMatch=s.call(a,"div"),s.call(a,"[s!='']:x"),r.push("!=",O)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=Z.test(o.compareDocumentPosition),t=b||Z.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d||(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===n||a.ownerDocument===v&&t(v,a)?-1:b===n||b.ownerDocument===v&&t(v,b)?1:k?J(k,a)-J(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,e=a.parentNode,f=b.parentNode,g=[a],h=[b];if(!e||!f)return a===n?-1:b===n?1:e?-1:f?1:k?J(k,a)-J(k,b):0;if(e===f)return ja(a,b);c=a;while(c=c.parentNode)g.unshift(c);c=b;while(c=c.parentNode)h.unshift(c);while(g[d]===h[d])d++;return d?ja(g[d],h[d]):g[d]===v?-1:h[d]===v?1:0},n):n},ea.matches=function(a,b){return ea(a,null,null,b)},ea.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(T,"='$1']"),c.matchesSelector&&p&&!A[b+" "]&&(!r||!r.test(b))&&(!q||!q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(xa){}return ea(b,n,null,[a]).length>0},ea.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},ea.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&D.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},ea.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},ea.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=ea.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=ea.selectors={cacheLength:50,createPseudo:ga,match:W,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(ba,ca),a[3]=(a[3]||a[4]||a[5]||"").replace(ba,ca),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||ea.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&ea.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return W.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&U.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(ba,ca).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+L+")"+a+"("+L+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||void 0!==a.getAttribute&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=ea.attr(d,a);return null==e?"!="===b:!b||(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e.replace(P," ")+" ").indexOf(c)>-1:"|="===b&&(e===c||e.slice(0,c.length+1)===c+"-"))}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h,t=!1;if(q){if(f){while(p){m=b;while(m=m[p])if(h?m.nodeName.toLowerCase()===r:1===m.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){m=q,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n&&j[2],m=n&&q.childNodes[n];while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if(1===m.nodeType&&++t&&m===b){k[a]=[w,n,t];break}}else if(s&&(m=b,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n),!1===t)while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if((h?m.nodeName.toLowerCase()===r:1===m.nodeType)&&++t&&(s&&(l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),k[a]=[w,t]),m===b))break;return(t-=e)===d||t%d==0&&t/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||ea.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?ga(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=J(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:ga(function(a){var b=[],c=[],d=h(a.replace(Q,"$1"));return d[u]?ga(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),b[0]=null,!c.pop()}}),has:ga(function(a){return function(b){return ea(a,b).length>0}}),contains:ga(function(a){return a=a.replace(ba,ca),function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:ga(function(a){return V.test(a||"")||ea.error("unsupported lang: "+a),a=a.replace(ba,ca).toLowerCase(),function(b){var c;do{if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return(c=c.toLowerCase())===a||0===c.indexOf(a+"-")}while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return!1===a.disabled},disabled:function(a){return!0===a.disabled},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,!0===a.selected},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return Y.test(a.nodeName)},input:function(a){return X.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:ma(function(){return[0]}),last:ma(function(a,b){return[b-1]}),eq:ma(function(a,b,c){return[c<0?c+b:c]}),even:ma(function(a,b){for(var c=0;c=0;)a.push(d);return a}),gt:ma(function(a,b,c){for(var d=c<0?c+b:c;++d1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function sa(a,b,c){for(var d=0,e=b.length;d-1&&(f[j]=!(g[j]=l))}}else r=ta(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):H.apply(g,r)})}function va(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=qa(function(a){return a===b},h,!0),l=qa(function(a){return J(b,a)>-1},h,!0),m=[function(a,c,d){var e=!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d));return b=null,e}];i1&&ra(m),i>1&&pa(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(Q,"$1"),c,i0,e=a.length>0,f=function(f,g,h,i,k){var l,o,q,r=0,s="0",t=f&&[],u=[],v=j,x=f||e&&d.find.TAG("*",k),y=w+=null==v?1:Math.random()||.1,z=x.length;for(k&&(j=g===n||g||k);s!==z&&null!=(l=x[s]);s++){if(e&&l){o=0,g||l.ownerDocument===n||(m(l),h=!p);while(q=a[o++])if(q(l,g||n,h)){i.push(l);break}k&&(w=y)}c&&((l=!q&&l)&&r--,f&&t.push(l))}if(r+=s,c&&s!==r){o=0;while(q=b[o++])q(t,u,g,h);if(f){if(r>0)while(s--)t[s]||u[s]||(u[s]=F.call(i));u=ta(u)}H.apply(i,u),k&&!f&&u.length>0&&r+b.length>1&&ea.uniqueSort(i)}return k&&(w=y,j=v),t};return c?ga(f):f}return h=ea.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=va(b[c]),f[u]?d.push(f):e.push(f);f=A(a,wa(e,d)),f.selector=a}return f},i=ea.select=function(a,b,e,f){var i,j,k,l,m,n="function"==typeof a&&a,o=!f&&g(a=n.selector||a);if(e=e||[],1===o.length){if(j=o[0]=o[0].slice(0),j.length>2&&"ID"===(k=j[0]).type&&c.getById&&9===b.nodeType&&p&&d.relative[j[1].type]){if(!(b=(d.find.ID(k.matches[0].replace(ba,ca),b)||[])[0]))return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=W.needsContext.test(a)?0:j.length;while(i--){if(k=j[i],d.relative[l=k.type])break;if((m=d.find[l])&&(f=m(k.matches[0].replace(ba,ca),_.test(j[0].type)&&na(b.parentNode)||b))){if(j.splice(i,1),!(a=f.length&&pa(j)))return H.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,!b||_.test(a)&&na(b.parentNode)||b),e},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ha(function(a){return 1&a.compareDocumentPosition(n.createElement("div"))}),ha(function(a){return a.innerHTML="","#"===a.firstChild.getAttribute("href")})||ia("type|href|height|width",function(a,b,c){if(!c)return a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ha(function(a){return a.innerHTML="",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||ia("value",function(a,b,c){if(!c&&"input"===a.nodeName.toLowerCase())return a.defaultValue}),ha(function(a){return null==a.getAttribute("disabled")})||ia(K,function(a,b,c){var d;if(!c)return!0===a[b]?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),ea}(a);n.find=t,n.expr=t.selectors,n.expr[":"]=n.expr.pseudos,n.uniqueSort=n.unique=t.uniqueSort,n.text=t.getText,n.isXMLDoc=t.isXML,n.contains=t.contains;var u=function(a,b,c){var d=[],e=void 0!==c;while((a=a[b])&&9!==a.nodeType)if(1===a.nodeType){if(e&&n(a).is(c))break;d.push(a)}return d},v=function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c},w=n.expr.match.needsContext,x=/^<([\w-]+)\s*\/?>(?:<\/\1>|)$/,y=/^.[^:#\[\.,]*$/;function z(a,b,c){if(n.isFunction(b))return n.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return n.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(y.test(b))return n.filter(b,a,c);b=n.filter(b,a)}return n.grep(a,function(a){return n.inArray(a,b)>-1!==c})}n.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?n.find.matchesSelector(d,a)?[d]:[]:n.find.matches(a,n.grep(b,function(a){return 1===a.nodeType}))},n.fn.extend({find:function(a){var b,c=[],d=this,e=d.length;if("string"!=typeof a)return this.pushStack(n(a).filter(function(){for(b=0;b1?n.unique(c):c),c.selector=this.selector?this.selector+" "+a:a,c},filter:function(a){return this.pushStack(z(this,a||[],!1))},not:function(a){return this.pushStack(z(this,a||[],!0))},is:function(a){return!!z(this,"string"==typeof a&&w.test(a)?n(a):a||[],!1).length}});var A,B=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/;(n.fn.init=function(a,b,c){var e,f;if(!a)return this;if(c=c||A,"string"==typeof a){if(!(e="<"===a.charAt(0)&&">"===a.charAt(a.length-1)&&a.length>=3?[null,a,null]:B.exec(a))||!e[1]&&b)return!b||b.jquery?(b||c).find(a):this.constructor(b).find(a);if(e[1]){if(b=b instanceof n?b[0]:b,n.merge(this,n.parseHTML(e[1],b&&b.nodeType?b.ownerDocument||b:d,!0)),x.test(e[1])&&n.isPlainObject(b))for(e in b)n.isFunction(this[e])?this[e](b[e]):this.attr(e,b[e]);return this}if((f=d.getElementById(e[2]))&&f.parentNode){if(f.id!==e[2])return A.find(a);this.length=1,this[0]=f}return this.context=d,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):n.isFunction(a)?void 0!==c.ready?c.ready(a):a(n):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),n.makeArray(a,this))}).prototype=n.fn,A=n(d);var C=/^(?:parents|prev(?:Until|All))/,D={children:!0,contents:!0,next:!0,prev:!0};n.fn.extend({has:function(a){var b,c=n(a,this),d=c.length;return this.filter(function(){for(b=0;b-1:1===c.nodeType&&n.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?n.uniqueSort(f):f)},index:function(a){return a?"string"==typeof a?n.inArray(this[0],n(a)):n.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(n.uniqueSort(n.merge(this.get(),n(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function E(a,b){do{a=a[b]}while(a&&1!==a.nodeType);return a}n.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return u(a,"parentNode")},parentsUntil:function(a,b,c){return u(a,"parentNode",c)},next:function(a){return E(a,"nextSibling")},prev:function(a){return E(a,"previousSibling")},nextAll:function(a){return u(a,"nextSibling")},prevAll:function(a){return u(a,"previousSibling")},nextUntil:function(a,b,c){return u(a,"nextSibling",c)},prevUntil:function(a,b,c){return u(a,"previousSibling",c)},siblings:function(a){return v((a.parentNode||{}).firstChild,a)},children:function(a){return v(a.firstChild)},contents:function(a){return n.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:n.merge([],a.childNodes)}},function(a,b){n.fn[a]=function(c,d){var e=n.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=n.filter(d,e)),this.length>1&&(D[a]||(e=n.uniqueSort(e)),C.test(a)&&(e=e.reverse())),this.pushStack(e)}});var F=/\S+/g;function G(a){var b={};return n.each(a.match(F)||[],function(a,c){b[c]=!0}),b}n.Callbacks=function(a){a="string"==typeof a?G(a):n.extend({},a);var b,c,d,e,f=[],g=[],h=-1,i=function(){for(e=a.once,d=b=!0;g.length;h=-1){c=g.shift();while(++h-1)f.splice(c,1),c<=h&&h--}),this},has:function(a){return a?n.inArray(a,f)>-1:f.length>0},empty:function(){return f&&(f=[]),this},disable:function(){return e=g=[],f=c="",this},disabled:function(){return!f},lock:function(){return e=!0,c||j.disable(),this},locked:function(){return!!e},fireWith:function(a,c){return e||(c=c||[],c=[a,c.slice?c.slice():c],g.push(c),b||i()),this},fire:function(){return j.fireWith(this,arguments),this},fired:function(){return!!d}};return j},n.extend({Deferred:function(a){var b=[["resolve","done",n.Callbacks("once memory"),"resolved"],["reject","fail",n.Callbacks("once memory"),"rejected"],["notify","progress",n.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return n.Deferred(function(c){n.each(b,function(b,f){var g=n.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&n.isFunction(a.promise)?a.promise().progress(c.notify).done(c.resolve).fail(c.reject):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?n.extend(a,d):d}},e={};return d.pipe=d.then,n.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=e.call(arguments),d=c.length,f=1!==d||a&&n.isFunction(a.promise)?d:0,g=1===f?a:n.Deferred(),h=function(a,b,c){return function(d){b[a]=this,c[a]=arguments.length>1?e.call(arguments):d,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(d>1)for(i=new Array(d),j=new Array(d),k=new Array(d);b0||(H.resolveWith(d,[n]),n.fn.triggerHandler&&(n(d).triggerHandler("ready"),n(d).off("ready"))))}});function I(){d.addEventListener?(d.removeEventListener("DOMContentLoaded",J),a.removeEventListener("load",J)):(d.detachEvent("onreadystatechange",J),a.detachEvent("onload",J))}function J(){(d.addEventListener||"load"===a.event.type||"complete"===d.readyState)&&(I(),n.ready())}n.ready.promise=function(b){if(!H)if(H=n.Deferred(),"complete"===d.readyState||"loading"!==d.readyState&&!d.documentElement.doScroll)a.setTimeout(n.ready);else if(d.addEventListener)d.addEventListener("DOMContentLoaded",J),a.addEventListener("load",J);else{d.attachEvent("onreadystatechange",J),a.attachEvent("onload",J);var c=!1;try{c=null==a.frameElement&&d.documentElement}catch(e){}c&&c.doScroll&&function b(){if(!n.isReady){try{c.doScroll("left")}catch(e){return a.setTimeout(b,50)}I(),n.ready()}}()}return H.promise(b)},n.ready.promise();var K;for(K in n(l))break;l.ownFirst="0"===K,l.inlineBlockNeedsLayout=!1,n(function(){var a,b,c,e;(c=d.getElementsByTagName("body")[0])&&c.style&&(b=d.createElement("div"),e=d.createElement("div"),e.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",c.appendChild(e).appendChild(b),void 0!==b.style.zoom&&(b.style.cssText="display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1",l.inlineBlockNeedsLayout=a=3===b.offsetWidth,a&&(c.style.zoom=1)),c.removeChild(e))}),function(){var a=d.createElement("div");l.deleteExpando=!0;try{delete a.test}catch(b){l.deleteExpando=!1}a=null}();var L=function(a){var b=n.noData[(a.nodeName+" ").toLowerCase()],c=+a.nodeType||1;return(1===c||9===c)&&(!b||!0!==b&&a.getAttribute("classid")===b)},M=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,N=/([A-Z])/g;function O(a,b,c){if(void 0===c&&1===a.nodeType){var d="data-"+b.replace(N,"-$1").toLowerCase();if("string"==typeof(c=a.getAttribute(d))){try{c="true"===c||"false"!==c&&("null"===c?null:+c+""===c?+c:M.test(c)?n.parseJSON(c):c)}catch(e){}n.data(a,b,c)}else c=void 0}return c}function P(a){var b +;for(b in a)if(("data"!==b||!n.isEmptyObject(a[b]))&&"toJSON"!==b)return!1;return!0}function Q(a,b,d,e){if(L(a)){var f,g,h=n.expando,i=a.nodeType,j=i?n.cache:a,k=i?a[h]:a[h]&&h;if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a[h]=c.pop()||n.guid++:h),j[k]||(j[k]=i?{}:{toJSON:n.noop}),"object"!=typeof b&&"function"!=typeof b||(e?j[k]=n.extend(j[k],b):j[k].data=n.extend(j[k].data,b)),g=j[k],e||(g.data||(g.data={}),g=g.data),void 0!==d&&(g[n.camelCase(b)]=d),"string"==typeof b?null==(f=g[b])&&(f=g[n.camelCase(b)]):f=g,f}}function R(a,b,c){if(L(a)){var d,e,f=a.nodeType,g=f?n.cache:a,h=f?a[n.expando]:n.expando;if(g[h]){if(b&&(d=c?g[h]:g[h].data)){n.isArray(b)?b=b.concat(n.map(b,n.camelCase)):b in d?b=[b]:(b=n.camelCase(b),b=b in d?[b]:b.split(" ")),e=b.length;while(e--)delete d[b[e]];if(c?!P(d):!n.isEmptyObject(d))return}(c||(delete g[h].data,P(g[h])))&&(f?n.cleanData([a],!0):l.deleteExpando||g!=g.window?delete g[h]:g[h]=void 0)}}}n.extend({cache:{},noData:{"applet ":!0,"embed ":!0,"object ":"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"},hasData:function(a){return!!(a=a.nodeType?n.cache[a[n.expando]]:a[n.expando])&&!P(a)},data:function(a,b,c){return Q(a,b,c)},removeData:function(a,b){return R(a,b)},_data:function(a,b,c){return Q(a,b,c,!0)},_removeData:function(a,b){return R(a,b,!0)}}),n.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=n.data(f),1===f.nodeType&&!n._data(f,"parsedAttrs"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=n.camelCase(d.slice(5)),O(f,d,e[d])));n._data(f,"parsedAttrs",!0)}return e}return"object"==typeof a?this.each(function(){n.data(this,a)}):arguments.length>1?this.each(function(){n.data(this,a,b)}):f?O(f,a,n.data(f,a)):void 0},removeData:function(a){return this.each(function(){n.removeData(this,a)})}}),n.extend({queue:function(a,b,c){var d;if(a)return b=(b||"fx")+"queue",d=n._data(a,b),c&&(!d||n.isArray(c)?d=n._data(a,b,n.makeArray(c)):d.push(c)),d||[]},dequeue:function(a,b){b=b||"fx";var c=n.queue(a,b),d=c.length,e=c.shift(),f=n._queueHooks(a,b),g=function(){n.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return n._data(a,c)||n._data(a,c,{empty:n.Callbacks("once memory").add(function(){n._removeData(a,b+"queue"),n._removeData(a,c)})})}}),n.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.length
                        a",l.leadingWhitespace=3===a.firstChild.nodeType,l.tbody=!a.getElementsByTagName("tbody").length,l.htmlSerialize=!!a.getElementsByTagName("link").length,l.html5Clone="<:nav>"!==d.createElement("nav").cloneNode(!0).outerHTML,c.type="checkbox",c.checked=!0,b.appendChild(c),l.appendChecked=c.checked,a.innerHTML="",l.noCloneChecked=!!a.cloneNode(!0).lastChild.defaultValue,b.appendChild(a),c=d.createElement("input"),c.setAttribute("type","radio"),c.setAttribute("checked","checked"),c.setAttribute("name","t"),a.appendChild(c),l.checkClone=a.cloneNode(!0).cloneNode(!0).lastChild.checked,l.noCloneEvent=!!a.addEventListener,a[n.expando]=1,l.attributes=!a.getAttribute(n.expando)}();var ca={option:[1,""],legend:[1,"
                        ","
                        "],area:[1,"",""],param:[1,"",""],thead:[1,"","
                        "],tr:[2,"","
                        "],col:[2,"","
                        "],td:[3,"","
                        "],_default:l.htmlSerialize?[0,"",""]:[1,"X
                        ","
                        "]};ca.optgroup=ca.option,ca.tbody=ca.tfoot=ca.colgroup=ca.caption=ca.thead,ca.th=ca.td;function da(a,b){var c,d,e=0,f=void 0!==a.getElementsByTagName?a.getElementsByTagName(b||"*"):void 0!==a.querySelectorAll?a.querySelectorAll(b||"*"):void 0;if(!f)for(f=[],c=a.childNodes||a;null!=(d=c[e]);e++)!b||n.nodeName(d,b)?f.push(d):n.merge(f,da(d,b));return void 0===b||b&&n.nodeName(a,b)?n.merge([a],f):f}function ea(a,b){for(var c,d=0;null!=(c=a[d]);d++)n._data(c,"globalEval",!b||n._data(b[d],"globalEval"))}var fa=/<|&#?\w+;/,ga=/"!==m[1]||ga.test(g)?0:i:i.firstChild,f=g&&g.childNodes.length;while(f--)n.nodeName(k=g.childNodes[f],"tbody")&&!k.childNodes.length&&g.removeChild(k)}n.merge(q,i.childNodes),i.textContent="";while(i.firstChild)i.removeChild(i.firstChild);i=p.lastChild}else q.push(b.createTextNode(g));i&&p.removeChild(i),l.appendChecked||n.grep(da(q,"input"),ha),r=0;while(g=q[r++])if(d&&n.inArray(g,d)>-1)e&&e.push(g);else if(h=n.contains(g.ownerDocument,g),i=da(p.appendChild(g),"script"),h&&ea(i),c){f=0;while(g=i[f++])$.test(g.type||"")&&c.push(g)}return i=null,p}!function(){var b,c,e=d.createElement("div");for(b in{submit:!0,change:!0,focusin:!0})c="on"+b,(l[b]=c in a)||(e.setAttribute(c,"t"),l[b]=!1===e.attributes[c].expando);e=null}();var ja=/^(?:input|select|textarea)$/i,ka=/^key/,la=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,ma=/^(?:focusinfocus|focusoutblur)$/,na=/^([^.]*)(?:\.(.+)|)/;function oa(){return!0}function pa(){return!1}function qa(){try{return d.activeElement}catch(a){}}function ra(a,b,c,d,e,f){var g,h;if("object"==typeof b){"string"!=typeof c&&(d=d||c,c=void 0);for(h in b)ra(a,h,c,d,b[h],f);return a}if(null==d&&null==e?(e=c,d=c=void 0):null==e&&("string"==typeof c?(e=d,d=void 0):(e=d,d=c,c=void 0)),!1===e)e=pa;else if(!e)return a;return 1===f&&(g=e,e=function(a){return n().off(a),g.apply(this,arguments)},e.guid=g.guid||(g.guid=n.guid++)),a.each(function(){n.event.add(this,b,e,d,c)})}n.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=n._data(a);if(r){c.handler&&(i=c,c=i.handler,e=i.selector),c.guid||(c.guid=n.guid++),(g=r.events)||(g=r.events={}),(k=r.handle)||(k=r.handle=function(a){return void 0===n||a&&n.event.triggered===a.type?void 0:n.event.dispatch.apply(k.elem,arguments)},k.elem=a),b=(b||"").match(F)||[""],h=b.length;while(h--)f=na.exec(b[h])||[],o=q=f[1],p=(f[2]||"").split(".").sort(),o&&(j=n.event.special[o]||{},o=(e?j.delegateType:j.bindType)||o,j=n.event.special[o]||{},l=n.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&n.expr.match.needsContext.test(e),namespace:p.join(".")},i),(m=g[o])||(m=g[o]=[],m.delegateCount=0,j.setup&&!1!==j.setup.call(a,d,p,k)||(a.addEventListener?a.addEventListener(o,k,!1):a.attachEvent&&a.attachEvent("on"+o,k))),j.add&&(j.add.call(a,l),l.handler.guid||(l.handler.guid=c.guid)),e?m.splice(m.delegateCount++,0,l):m.push(l),n.event.global[o]=!0);a=null}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=n.hasData(a)&&n._data(a);if(r&&(k=r.events)){b=(b||"").match(F)||[""],j=b.length;while(j--)if(h=na.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=n.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,m=k[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),i=f=m.length;while(f--)g=m[f],!e&&q!==g.origType||c&&c.guid!==g.guid||h&&!h.test(g.namespace)||d&&d!==g.selector&&("**"!==d||!g.selector)||(m.splice(f,1),g.selector&&m.delegateCount--,l.remove&&l.remove.call(a,g));i&&!m.length&&(l.teardown&&!1!==l.teardown.call(a,p,r.handle)||n.removeEvent(a,o,r.handle),delete k[o])}else for(o in k)n.event.remove(a,o+b[j],c,d,!0);n.isEmptyObject(k)&&(delete r.handle,n._removeData(a,"events"))}},trigger:function(b,c,e,f){var g,h,i,j,l,m,o,p=[e||d],q=k.call(b,"type")?b.type:b,r=k.call(b,"namespace")?b.namespace.split("."):[];if(i=m=e=e||d,3!==e.nodeType&&8!==e.nodeType&&!ma.test(q+n.event.triggered)&&(q.indexOf(".")>-1&&(r=q.split("."),q=r.shift(),r.sort()),h=q.indexOf(":")<0&&"on"+q,b=b[n.expando]?b:new n.Event(q,"object"==typeof b&&b),b.isTrigger=f?2:3,b.namespace=r.join("."),b.rnamespace=b.namespace?new RegExp("(^|\\.)"+r.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=e),c=null==c?[b]:n.makeArray(c,[b]),l=n.event.special[q]||{},f||!l.trigger||!1!==l.trigger.apply(e,c))){if(!f&&!l.noBubble&&!n.isWindow(e)){for(j=l.delegateType||q,ma.test(j+q)||(i=i.parentNode);i;i=i.parentNode)p.push(i),m=i;m===(e.ownerDocument||d)&&p.push(m.defaultView||m.parentWindow||a)}o=0;while((i=p[o++])&&!b.isPropagationStopped())b.type=o>1?j:l.bindType||q,g=(n._data(i,"events")||{})[b.type]&&n._data(i,"handle"),g&&g.apply(i,c),(g=h&&i[h])&&g.apply&&L(i)&&(b.result=g.apply(i,c),!1===b.result&&b.preventDefault());if(b.type=q,!f&&!b.isDefaultPrevented()&&(!l._default||!1===l._default.apply(p.pop(),c))&&L(e)&&h&&e[q]&&!n.isWindow(e)){m=e[h],m&&(e[h]=null),n.event.triggered=q;try{e[q]()}catch(s){}n.event.triggered=void 0,m&&(e[h]=m)}return b.result}},dispatch:function(a){a=n.event.fix(a);var b,c,d,f,g,h=[],i=e.call(arguments),j=(n._data(this,"events")||{})[a.type]||[],k=n.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||!1!==k.preDispatch.call(this,a)){h=n.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,c=0;while((g=f.handlers[c++])&&!a.isImmediatePropagationStopped())a.rnamespace&&!a.rnamespace.test(g.namespace)||(a.handleObj=g,a.data=g.data,void 0!==(d=((n.event.special[g.origType]||{}).handle||g.handler).apply(f.elem,i))&&!1===(a.result=d)&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&("click"!==a.type||isNaN(a.button)||a.button<1))for(;i!=this;i=i.parentNode||this)if(1===i.nodeType&&(!0!==i.disabled||"click"!==a.type)){for(d=[],c=0;c-1:n.find(e,this,null,[i]).length),d[e]&&d.push(f);d.length&&g.push({elem:i,handlers:d})}return h]","i"),ua=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:-]+)[^>]*)\/>/gi,va=/\s*$/g,za=ba(d),Aa=za.appendChild(d.createElement("div"));function Ba(a,b){return n.nodeName(a,"table")&&n.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function Ca(a){return a.type=(null!==n.find.attr(a,"type"))+"/"+a.type,a}function Da(a){var b=xa.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function Ea(a,b){if(1===b.nodeType&&n.hasData(a)){var c,d,e,f=n._data(a),g=n._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;d1&&"string"==typeof q&&!l.checkClone&&wa.test(q))return a.each(function(e){var f=a.eq(e);r&&(b[0]=q.call(this,e,f.html())),Ga(f,b,c,d)});if(o&&(k=ia(b,a[0].ownerDocument,!1,a,d),e=k.firstChild,1===k.childNodes.length&&(k=e),e||d)){for(i=n.map(da(k,"script"),Ca),h=i.length;m")},clone:function(a,b,c){var d,e,f,g,h,i=n.contains(a.ownerDocument,a);if(l.html5Clone||n.isXMLDoc(a)||!ta.test("<"+a.nodeName+">")?f=a.cloneNode(!0):(Aa.innerHTML=a.outerHTML,Aa.removeChild(f=Aa.firstChild)),!(l.noCloneEvent&&l.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||n.isXMLDoc(a)))for(d=da(f),h=da(a),g=0;null!=(e=h[g]);++g)d[g]&&Fa(e,d[g]);if(b)if(c)for(h=h||da(a),d=d||da(f),g=0;null!=(e=h[g]);g++)Ea(e,d[g]);else Ea(a,f);return d=da(f,"script"),d.length>0&&ea(d,!i&&da(a,"script")),d=h=e=null,f},cleanData:function(a,b){for(var d,e,f,g,h=0,i=n.expando,j=n.cache,k=l.attributes,m=n.event.special;null!=(d=a[h]);h++)if((b||L(d))&&(f=d[i],g=f&&j[f])){if(g.events)for(e in g.events)m[e]?n.event.remove(d,e):n.removeEvent(d,e,g.handle);j[f]&&(delete j[f],k||void 0===d.removeAttribute?d[i]=void 0:d.removeAttribute(i),c.push(f))}}}),n.fn.extend({domManip:Ga,detach:function(a){return Ha(this,a,!0)},remove:function(a){return Ha(this,a)},text:function(a){return X(this,function(a){return void 0===a?n.text(this):this.empty().append((this[0]&&this[0].ownerDocument||d).createTextNode(a))},null,a,arguments.length)},append:function(){return Ga(this,arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){Ba(this,a).appendChild(a)}})},prepend:function(){return Ga(this,arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=Ba(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return Ga(this,arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return Ga(this,arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},empty:function(){for(var a,b=0;null!=(a=this[b]);b++){1===a.nodeType&&n.cleanData(da(a,!1));while(a.firstChild)a.removeChild(a.firstChild);a.options&&n.nodeName(a,"select")&&(a.options.length=0)}return this},clone:function(a,b){return a=null!=a&&a,b=null==b?a:b,this.map(function(){return n.clone(this,a,b)})},html:function(a){return X(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a)return 1===b.nodeType?b.innerHTML.replace(sa,""):void 0;if("string"==typeof a&&!va.test(a)&&(l.htmlSerialize||!ta.test(a))&&(l.leadingWhitespace||!_.test(a))&&!ca[(Z.exec(a)||["",""])[1].toLowerCase()]){a=n.htmlPrefilter(a);try{for(;c")).appendTo(b.documentElement),b=(Ia[0].contentWindow||Ia[0].contentDocument).document,b.write(),b.close(),c=Ka(a,b),Ia.detach()),Ja[a]=c),c}var Ma=/^margin/,Na=new RegExp("^("+S+")(?!px)[a-z%]+$","i"),Oa=function(a,b,c,d){var e,f,g={};for(f in b)g[f]=a.style[f],a.style[f]=b[f];e=c.apply(a,d||[]);for(f in b)a.style[f]=g[f];return e},Pa=d.documentElement;!function(){var b,c,e,f,g,h,i=d.createElement("div"),j=d.createElement("div");function k(){var k,l,m=d.documentElement;m.appendChild(i),j.style.cssText="-webkit-box-sizing:border-box;box-sizing:border-box;position:relative;display:block;margin:auto;border:1px;padding:1px;top:1%;width:50%",b=e=h=!1,c=g=!0,a.getComputedStyle&&(l=a.getComputedStyle(j),b="1%"!==(l||{}).top,h="2px"===(l||{}).marginLeft,e="4px"===(l||{width:"4px"}).width,j.style.marginRight="50%",c="4px"===(l||{marginRight:"4px"}).marginRight,k=j.appendChild(d.createElement("div")),k.style.cssText=j.style.cssText="-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:0",k.style.marginRight=k.style.width="0",j.style.width="1px",g=!parseFloat((a.getComputedStyle(k)||{}).marginRight),j.removeChild(k)),j.style.display="none",f=0===j.getClientRects().length,f&&(j.style.display="",j.innerHTML="
                        t
                        ",j.childNodes[0].style.borderCollapse="separate",k=j.getElementsByTagName("td"),k[0].style.cssText="margin:0;border:0;padding:0;display:none",(f=0===k[0].offsetHeight)&&(k[0].style.display="",k[1].style.display="none",f=0===k[0].offsetHeight)),m.removeChild(i)}j.style&&(j.style.cssText="float:left;opacity:.5",l.opacity="0.5"===j.style.opacity,l.cssFloat=!!j.style.cssFloat,j.style.backgroundClip="content-box",j.cloneNode(!0).style.backgroundClip="",l.clearCloneStyle="content-box"===j.style.backgroundClip,i=d.createElement("div"),i.style.cssText="border:0;width:8px;height:0;top:0;left:-9999px;padding:0;margin-top:1px;position:absolute",j.innerHTML="",i.appendChild(j),l.boxSizing=""===j.style.boxSizing||""===j.style.MozBoxSizing||""===j.style.WebkitBoxSizing,n.extend(l,{reliableHiddenOffsets:function(){return null==b&&k(),f},boxSizingReliable:function(){return null==b&&k(),e},pixelMarginRight:function(){return null==b&&k(),c},pixelPosition:function(){return null==b&&k(),b},reliableMarginRight:function(){return null==b&&k(),g},reliableMarginLeft:function(){return null==b&&k(),h}}))}();var Qa,Ra,Sa=/^(top|right|bottom|left)$/;a.getComputedStyle?(Qa=function(b){var c=b.ownerDocument.defaultView;return c&&c.opener||(c=a),c.getComputedStyle(b)},Ra=function(a,b,c){var d,e,f,g,h=a.style;return c=c||Qa(a),g=c?c.getPropertyValue(b)||c[b]:void 0,""!==g&&void 0!==g||n.contains(a.ownerDocument,a)||(g=n.style(a,b)),c&&!l.pixelMarginRight()&&Na.test(g)&&Ma.test(b)&&(d=h.width,e=h.minWidth,f=h.maxWidth,h.minWidth=h.maxWidth=h.width=g,g=c.width,h.width=d,h.minWidth=e,h.maxWidth=f),void 0===g?g:g+""}):Pa.currentStyle&&(Qa=function(a){return a.currentStyle},Ra=function(a,b,c){var d,e,f,g,h=a.style;return c=c||Qa(a),g=c?c[b]:void 0,null==g&&h&&h[b]&&(g=h[b]),Na.test(g)&&!Sa.test(b)&&(d=h.left,e=a.runtimeStyle,f=e&&e.left,f&&(e.left=a.currentStyle.left),h.left="fontSize"===b?"1em":g,g=h.pixelLeft+"px",h.left=d,f&&(e.left=f)),void 0===g?g:g+""||"auto"});function Ta(a,b){return{get:function(){return a()?void delete this.get:(this.get=b).apply(this,arguments)}}}var Ua=/alpha\([^)]*\)/i,Va=/opacity\s*=\s*([^)]*)/i,Wa=/^(none|table(?!-c[ea]).+)/,Xa=new RegExp("^("+S+")(.*)$","i"),Ya={position:"absolute",visibility:"hidden",display:"block"},Za={letterSpacing:"0",fontWeight:"400"},$a=["Webkit","O","Moz","ms"],_a=d.createElement("div").style;function ab(a){if(a in _a)return a;var b=a.charAt(0).toUpperCase()+a.slice(1),c=$a.length;while(c--)if((a=$a[c]+b)in _a)return a}function bb(a,b){for(var c,d,e,f=[],g=0,h=a.length;g=1||""===b)&&""===n.trim(f.replace(Ua,""))&&c.removeAttribute&&(c.removeAttribute("filter"),""===b||d&&!d.filter)||(c.filter=Ua.test(f)?f.replace(Ua,e):f+" "+e)}}),n.cssHooks.marginRight=Ta(l.reliableMarginRight,function(a,b){if(b)return Oa(a,{display:"inline-block"},Ra,[a,"marginRight"])}),n.cssHooks.marginLeft=Ta(l.reliableMarginLeft,function(a,b){if(b)return(parseFloat(Ra(a,"marginLeft"))||(n.contains(a.ownerDocument,a)?a.getBoundingClientRect().left-Oa(a,{marginLeft:0},function(){return a.getBoundingClientRect().left}):0))+"px"}),n.each({ +margin:"",padding:"",border:"Width"},function(a,b){n.cssHooks[a+b]={expand:function(c){for(var d=0,e={},f="string"==typeof c?c.split(" "):[c];d<4;d++)e[a+U[d]+b]=f[d]||f[d-2]||f[0];return e}},Ma.test(a)||(n.cssHooks[a+b].set=cb)}),n.fn.extend({css:function(a,b){return X(this,function(a,b,c){var d,e,f={},g=0;if(n.isArray(b)){for(d=Qa(a),e=b.length;g1)},show:function(){return bb(this,!0)},hide:function(){return bb(this)},toggle:function(a){return"boolean"==typeof a?a?this.show():this.hide():this.each(function(){V(this)?n(this).show():n(this).hide()})}});function fb(a,b,c,d,e){return new fb.prototype.init(a,b,c,d,e)}n.Tween=fb,fb.prototype={constructor:fb,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||n.easing._default,this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(n.cssNumber[c]?"":"px")},cur:function(){var a=fb.propHooks[this.prop];return a&&a.get?a.get(this):fb.propHooks._default.get(this)},run:function(a){var b,c=fb.propHooks[this.prop];return this.options.duration?this.pos=b=n.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration):this.pos=b=a,this.now=(this.end-this.start)*b+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),c&&c.set?c.set(this):fb.propHooks._default.set(this),this}},fb.prototype.init.prototype=fb.prototype,fb.propHooks={_default:{get:function(a){var b;return 1!==a.elem.nodeType||null!=a.elem[a.prop]&&null==a.elem.style[a.prop]?a.elem[a.prop]:(b=n.css(a.elem,a.prop,""),b&&"auto"!==b?b:0)},set:function(a){n.fx.step[a.prop]?n.fx.step[a.prop](a):1!==a.elem.nodeType||null==a.elem.style[n.cssProps[a.prop]]&&!n.cssHooks[a.prop]?a.elem[a.prop]=a.now:n.style(a.elem,a.prop,a.now+a.unit)}}},fb.propHooks.scrollTop=fb.propHooks.scrollLeft={set:function(a){a.elem.nodeType&&a.elem.parentNode&&(a.elem[a.prop]=a.now)}},n.easing={linear:function(a){return a},swing:function(a){return.5-Math.cos(a*Math.PI)/2},_default:"swing"},n.fx=fb.prototype.init,n.fx.step={};var gb,hb,ib=/^(?:toggle|show|hide)$/,jb=/queueHooks$/;function kb(){return a.setTimeout(function(){gb=void 0}),gb=n.now()}function lb(a,b){var c,d={height:a},e=0;for(b=b?1:0;e<4;e+=2-b)c=U[e],d["margin"+c]=d["padding"+c]=a;return b&&(d.opacity=d.width=a),d}function mb(a,b,c){for(var d,e=(pb.tweeners[b]||[]).concat(pb.tweeners["*"]),f=0,g=e.length;f
                        a",a=c.getElementsByTagName("a")[0],b.setAttribute("type","checkbox"),c.appendChild(b),a=c.getElementsByTagName("a")[0],a.style.cssText="top:1px",l.getSetAttribute="t"!==c.className,l.style=/top/.test(a.getAttribute("style")),l.hrefNormalized="/a"===a.getAttribute("href"),l.checkOn=!!b.value,l.optSelected=f.selected,l.enctype=!!d.createElement("form").enctype,e.disabled=!0,l.optDisabled=!f.disabled,b=d.createElement("input"),b.setAttribute("value",""),l.input=""===b.getAttribute("value"),b.value="t",b.setAttribute("type","radio"),l.radioValue="t"===b.value}();var qb=/\r/g,rb=/[\x20\t\r\n\f]+/g;n.fn.extend({val:function(a){var b,c,d,e=this[0];{if(arguments.length)return d=n.isFunction(a),this.each(function(c){var e;1===this.nodeType&&(e=d?a.call(this,c,n(this).val()):a,null==e?e="":"number"==typeof e?e+="":n.isArray(e)&&(e=n.map(e,function(a){return null==a?"":a+""})),(b=n.valHooks[this.type]||n.valHooks[this.nodeName.toLowerCase()])&&"set"in b&&void 0!==b.set(this,e,"value")||(this.value=e))});if(e)return(b=n.valHooks[e.type]||n.valHooks[e.nodeName.toLowerCase()])&&"get"in b&&void 0!==(c=b.get(e,"value"))?c:(c=e.value,"string"==typeof c?c.replace(qb,""):null==c?"":c)}}}),n.extend({valHooks:{option:{get:function(a){var b=n.find.attr(a,"value");return null!=b?b:n.trim(n.text(a)).replace(rb," ")}},select:{get:function(a){for(var b,c,d=a.options,e=a.selectedIndex,f="select-one"===a.type||e<0,g=f?null:[],h=f?e+1:d.length,i=e<0?h:f?e:0;i-1)try{d.selected=c=!0}catch(h){d.scrollHeight}else d.selected=!1;return c||(a.selectedIndex=-1),e}}}}),n.each(["radio","checkbox"],function(){n.valHooks[this]={set:function(a,b){if(n.isArray(b))return a.checked=n.inArray(n(a).val(),b)>-1}},l.checkOn||(n.valHooks[this].get=function(a){return null===a.getAttribute("value")?"on":a.value})});var sb,tb,ub=n.expr.attrHandle,vb=/^(?:checked|selected)$/i,wb=l.getSetAttribute,xb=l.input;n.fn.extend({attr:function(a,b){return X(this,n.attr,a,b,arguments.length>1)},removeAttr:function(a){return this.each(function(){n.removeAttr(this,a)})}}),n.extend({attr:function(a,b,c){var d,e,f=a.nodeType;if(3!==f&&8!==f&&2!==f)return void 0===a.getAttribute?n.prop(a,b,c):(1===f&&n.isXMLDoc(a)||(b=b.toLowerCase(),e=n.attrHooks[b]||(n.expr.match.bool.test(b)?tb:sb)),void 0!==c?null===c?void n.removeAttr(a,b):e&&"set"in e&&void 0!==(d=e.set(a,c,b))?d:(a.setAttribute(b,c+""),c):e&&"get"in e&&null!==(d=e.get(a,b))?d:(d=n.find.attr(a,b),null==d?void 0:d))},attrHooks:{type:{set:function(a,b){if(!l.radioValue&&"radio"===b&&n.nodeName(a,"input")){var c=a.value;return a.setAttribute("type",b),c&&(a.value=c),b}}}},removeAttr:function(a,b){var c,d,e=0,f=b&&b.match(F);if(f&&1===a.nodeType)while(c=f[e++])d=n.propFix[c]||c,n.expr.match.bool.test(c)?xb&&wb||!vb.test(c)?a[d]=!1:a[n.camelCase("default-"+c)]=a[d]=!1:n.attr(a,c,""),a.removeAttribute(wb?c:d)}}),tb={set:function(a,b,c){return!1===b?n.removeAttr(a,c):xb&&wb||!vb.test(c)?a.setAttribute(!wb&&n.propFix[c]||c,c):a[n.camelCase("default-"+c)]=a[c]=!0,c}},n.each(n.expr.match.bool.source.match(/\w+/g),function(a,b){var c=ub[b]||n.find.attr;xb&&wb||!vb.test(b)?ub[b]=function(a,b,d){var e,f;return d||(f=ub[b],ub[b]=e,e=null!=c(a,b,d)?b.toLowerCase():null,ub[b]=f),e}:ub[b]=function(a,b,c){if(!c)return a[n.camelCase("default-"+b)]?b.toLowerCase():null}}),xb&&wb||(n.attrHooks.value={set:function(a,b,c){if(!n.nodeName(a,"input"))return sb&&sb.set(a,b,c);a.defaultValue=b}}),wb||(sb={set:function(a,b,c){var d=a.getAttributeNode(c);if(d||a.setAttributeNode(d=a.ownerDocument.createAttribute(c)),d.value=b+="","value"===c||b===a.getAttribute(c))return b}},ub.id=ub.name=ub.coords=function(a,b,c){var d;if(!c)return(d=a.getAttributeNode(b))&&""!==d.value?d.value:null},n.valHooks.button={get:function(a,b){var c=a.getAttributeNode(b);if(c&&c.specified)return c.value},set:sb.set},n.attrHooks.contenteditable={set:function(a,b,c){sb.set(a,""!==b&&b,c)}},n.each(["width","height"],function(a,b){n.attrHooks[b]={set:function(a,c){if(""===c)return a.setAttribute(b,"auto"),c}}})),l.style||(n.attrHooks.style={get:function(a){return a.style.cssText||void 0},set:function(a,b){return a.style.cssText=b+""}});var yb=/^(?:input|select|textarea|button|object)$/i,zb=/^(?:a|area)$/i;n.fn.extend({prop:function(a,b){return X(this,n.prop,a,b,arguments.length>1)},removeProp:function(a){return a=n.propFix[a]||a,this.each(function(){try{this[a]=void 0,delete this[a]}catch(b){}})}}),n.extend({prop:function(a,b,c){var d,e,f=a.nodeType;if(3!==f&&8!==f&&2!==f)return 1===f&&n.isXMLDoc(a)||(b=n.propFix[b]||b,e=n.propHooks[b]),void 0!==c?e&&"set"in e&&void 0!==(d=e.set(a,c,b))?d:a[b]=c:e&&"get"in e&&null!==(d=e.get(a,b))?d:a[b]},propHooks:{tabIndex:{get:function(a){var b=n.find.attr(a,"tabindex");return b?parseInt(b,10):yb.test(a.nodeName)||zb.test(a.nodeName)&&a.href?0:-1}}},propFix:{for:"htmlFor",class:"className"}}),l.hrefNormalized||n.each(["href","src"],function(a,b){n.propHooks[b]={get:function(a){return a.getAttribute(b,4)}}}),l.optSelected||(n.propHooks.selected={get:function(a){var b=a.parentNode;return b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex),null},set:function(a){var b=a.parentNode;b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex)}}),n.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){n.propFix[this.toLowerCase()]=this}),l.enctype||(n.propFix.enctype="encoding");var Ab=/[\t\r\n\f]/g;function Bb(a){return n.attr(a,"class")||""}n.fn.extend({addClass:function(a){var b,c,d,e,f,g,h,i=0;if(n.isFunction(a))return this.each(function(b){n(this).addClass(a.call(this,b,Bb(this)))});if("string"==typeof a&&a){b=a.match(F)||[];while(c=this[i++])if(e=Bb(c),d=1===c.nodeType&&(" "+e+" ").replace(Ab," ")){g=0;while(f=b[g++])d.indexOf(" "+f+" ")<0&&(d+=f+" ");h=n.trim(d),e!==h&&n.attr(c,"class",h)}}return this},removeClass:function(a){var b,c,d,e,f,g,h,i=0;if(n.isFunction(a))return this.each(function(b){n(this).removeClass(a.call(this,b,Bb(this)))});if(!arguments.length)return this.attr("class","");if("string"==typeof a&&a){b=a.match(F)||[];while(c=this[i++])if(e=Bb(c),d=1===c.nodeType&&(" "+e+" ").replace(Ab," ")){g=0;while(f=b[g++])while(d.indexOf(" "+f+" ")>-1)d=d.replace(" "+f+" "," ");h=n.trim(d),e!==h&&n.attr(c,"class",h)}}return this},toggleClass:function(a,b){var c=typeof a;return"boolean"==typeof b&&"string"===c?b?this.addClass(a):this.removeClass(a):n.isFunction(a)?this.each(function(c){n(this).toggleClass(a.call(this,c,Bb(this),b),b)}):this.each(function(){var b,d,e,f;if("string"===c){d=0,e=n(this),f=a.match(F)||[];while(b=f[d++])e.hasClass(b)?e.removeClass(b):e.addClass(b)}else void 0!==a&&"boolean"!==c||(b=Bb(this),b&&n._data(this,"__className__",b),n.attr(this,"class",b||!1===a?"":n._data(this,"__className__")||""))})},hasClass:function(a){var b,c,d=0;b=" "+a+" ";while(c=this[d++])if(1===c.nodeType&&(" "+Bb(c)+" ").replace(Ab," ").indexOf(b)>-1)return!0;return!1}}),n.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(a,b){n.fn[b]=function(a,c){return arguments.length>0?this.on(b,null,a,c):this.trigger(b)}}),n.fn.extend({hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}});var Cb=a.location,Db=n.now(),Eb=/\?/,Fb=/(,)|(\[|{)|(}|])|"(?:[^"\\\r\n]|\\["\\\/bfnrt]|\\u[\da-fA-F]{4})*"\s*:?|true|false|null|-?(?!0\d)\d+(?:\.\d+|)(?:[eE][+-]?\d+|)/g;n.parseJSON=function(b){if(a.JSON&&a.JSON.parse)return a.JSON.parse(b+"");var c,d=null,e=n.trim(b+"");return e&&!n.trim(e.replace(Fb,function(a,b,e,f){return c&&b&&(d=0),0===d?a:(c=e||b,d+=!f-!e,"")}))?Function("return "+e)():n.error("Invalid JSON: "+b)},n.parseXML=function(b){var c,d;if(!b||"string"!=typeof b)return null;try{a.DOMParser?(d=new a.DOMParser,c=d.parseFromString(b,"text/xml")):(c=new a.ActiveXObject("Microsoft.XMLDOM"),c.async="false",c.loadXML(b))}catch(e){c=void 0}return c&&c.documentElement&&!c.getElementsByTagName("parsererror").length||n.error("Invalid XML: "+b),c};var Gb=/#.*$/,Hb=/([?&])_=[^&]*/,Ib=/^(.*?):[ \t]*([^\r\n]*)\r?$/gm,Jb=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Kb=/^(?:GET|HEAD)$/,Lb=/^\/\//,Mb=/^([\w.+-]+:)(?:\/\/(?:[^\/?#]*@|)([^\/?#:]*)(?::(\d+)|)|)/,Nb={},Ob={},Pb="*/".concat("*"),Qb=Cb.href,Rb=Mb.exec(Qb.toLowerCase())||[];function Sb(a){return function(b,c){"string"!=typeof b&&(c=b,b="*");var d,e=0,f=b.toLowerCase().match(F)||[];if(n.isFunction(c))while(d=f[e++])"+"===d.charAt(0)?(d=d.slice(1)||"*",(a[d]=a[d]||[]).unshift(c)):(a[d]=a[d]||[]).push(c)}}function Tb(a,b,c,d){var e={},f=a===Ob;function g(h){var i;return e[h]=!0,n.each(a[h]||[],function(a,h){var j=h(b,c,d);return"string"!=typeof j||f||e[j]?f?!(i=j):void 0:(b.dataTypes.unshift(j),g(j),!1)}),i}return g(b.dataTypes[0])||!e["*"]&&g("*")}function Ub(a,b){var c,d,e=n.ajaxSettings.flatOptions||{};for(d in b)void 0!==b[d]&&((e[d]?a:c||(c={}))[d]=b[d]);return c&&n.extend(!0,a,c),a}function Vb(a,b,c){var d,e,f,g,h=a.contents,i=a.dataTypes;while("*"===i[0])i.shift(),void 0===e&&(e=a.mimeType||b.getResponseHeader("Content-Type"));if(e)for(g in h)if(h[g]&&h[g].test(e)){i.unshift(g);break}if(i[0]in c)f=i[0];else{for(g in c){if(!i[0]||a.converters[g+" "+i[0]]){f=g;break}d||(d=g)}f=f||d}if(f)return f!==i[0]&&i.unshift(f),c[f]}function Wb(a,b,c,d){var e,f,g,h,i,j={},k=a.dataTypes.slice();if(k[1])for(g in a.converters)j[g.toLowerCase()]=a.converters[g];f=k.shift();while(f)if(a.responseFields[f]&&(c[a.responseFields[f]]=b),!i&&d&&a.dataFilter&&(b=a.dataFilter(b,a.dataType)),i=f,f=k.shift())if("*"===f)f=i;else if("*"!==i&&i!==f){if(!(g=j[i+" "+f]||j["* "+f]))for(e in j)if(h=e.split(" "),h[1]===f&&(g=j[i+" "+h[0]]||j["* "+h[0]])){!0===g?g=j[e]:!0!==j[e]&&(f=h[0],k.unshift(h[1]));break}if(!0!==g)if(g&&a.throws)b=g(b);else try{b=g(b)}catch(l){return{state:"parsererror",error:g?l:"No conversion from "+i+" to "+f}}}return{state:"success",data:b}}n.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:Qb,type:"GET",isLocal:Jb.test(Rb[1]),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Pb,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":n.parseJSON,"text xml":n.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(a,b){return b?Ub(Ub(a,n.ajaxSettings),b):Ub(n.ajaxSettings,a)},ajaxPrefilter:Sb(Nb),ajaxTransport:Sb(Ob),ajax:function(b,c){"object"==typeof b&&(c=b,b=void 0),c=c||{};var d,e,f,g,h,i,j,k,l=n.ajaxSetup({},c),m=l.context||l,o=l.context&&(m.nodeType||m.jquery)?n(m):n.event,p=n.Deferred(),q=n.Callbacks("once memory"),r=l.statusCode||{},s={},t={},u=0,v="canceled",w={readyState:0,getResponseHeader:function(a){var b;if(2===u){if(!k){k={};while(b=Ib.exec(g))k[b[1].toLowerCase()]=b[2]}b=k[a.toLowerCase()]}return null==b?null:b},getAllResponseHeaders:function(){return 2===u?g:null},setRequestHeader:function(a,b){var c=a.toLowerCase();return u||(a=t[c]=t[c]||a,s[a]=b),this},overrideMimeType:function(a){return u||(l.mimeType=a),this},statusCode:function(a){var b;if(a)if(u<2)for(b in a)r[b]=[r[b],a[b]];else w.always(a[w.status]);return this},abort:function(a){var b=a||v;return j&&j.abort(b),x(0,b),this}};if(p.promise(w).complete=q.add,w.success=w.done,w.error=w.fail,l.url=((b||l.url||Qb)+"").replace(Gb,"").replace(Lb,Rb[1]+"//"),l.type=c.method||c.type||l.method||l.type,l.dataTypes=n.trim(l.dataType||"*").toLowerCase().match(F)||[""],null==l.crossDomain&&(d=Mb.exec(l.url.toLowerCase()),l.crossDomain=!(!d||d[1]===Rb[1]&&d[2]===Rb[2]&&(d[3]||("http:"===d[1]?"80":"443"))===(Rb[3]||("http:"===Rb[1]?"80":"443")))),l.data&&l.processData&&"string"!=typeof l.data&&(l.data=n.param(l.data,l.traditional)),Tb(Nb,l,c,w),2===u)return w;i=n.event&&l.global,i&&0==n.active++&&n.event.trigger("ajaxStart"),l.type=l.type.toUpperCase(),l.hasContent=!Kb.test(l.type),f=l.url,l.hasContent||(l.data&&(f=l.url+=(Eb.test(f)?"&":"?")+l.data,delete l.data),!1===l.cache&&(l.url=Hb.test(f)?f.replace(Hb,"$1_="+Db++):f+(Eb.test(f)?"&":"?")+"_="+Db++)),l.ifModified&&(n.lastModified[f]&&w.setRequestHeader("If-Modified-Since",n.lastModified[f]),n.etag[f]&&w.setRequestHeader("If-None-Match",n.etag[f])),(l.data&&l.hasContent&&!1!==l.contentType||c.contentType)&&w.setRequestHeader("Content-Type",l.contentType),w.setRequestHeader("Accept",l.dataTypes[0]&&l.accepts[l.dataTypes[0]]?l.accepts[l.dataTypes[0]]+("*"!==l.dataTypes[0]?", "+Pb+"; q=0.01":""):l.accepts["*"]);for(e in l.headers)w.setRequestHeader(e,l.headers[e]);if(l.beforeSend&&(!1===l.beforeSend.call(m,w,l)||2===u))return w.abort();v="abort";for(e in{success:1,error:1,complete:1})w[e](l[e]);if(j=Tb(Ob,l,c,w)){if(w.readyState=1,i&&o.trigger("ajaxSend",[w,l]),2===u)return w;l.async&&l.timeout>0&&(h=a.setTimeout(function(){w.abort("timeout")},l.timeout));try{u=1,j.send(s,x)}catch(y){if(!(u<2))throw y;x(-1,y)}}else x(-1,"No Transport");function x(b,c,d,e){var k,s,t,v,x,y=c;2!==u&&(u=2,h&&a.clearTimeout(h),j=void 0,g=e||"",w.readyState=b>0?4:0,k=b>=200&&b<300||304===b,d&&(v=Vb(l,w,d)),v=Wb(l,v,w,k),k?(l.ifModified&&(x=w.getResponseHeader("Last-Modified"),x&&(n.lastModified[f]=x),(x=w.getResponseHeader("etag"))&&(n.etag[f]=x)),204===b||"HEAD"===l.type?y="nocontent":304===b?y="notmodified":(y=v.state,s=v.data,t=v.error,k=!t)):(t=y,!b&&y||(y="error",b<0&&(b=0))),w.status=b,w.statusText=(c||y)+"",k?p.resolveWith(m,[s,y,w]):p.rejectWith(m,[w,y,t]),w.statusCode(r),r=void 0,i&&o.trigger(k?"ajaxSuccess":"ajaxError",[w,l,k?s:t]),q.fireWith(m,[w,y]),i&&(o.trigger("ajaxComplete",[w,l]),--n.active||n.event.trigger("ajaxStop")))}return w},getJSON:function(a,b,c){return n.get(a,b,c,"json")},getScript:function(a,b){return n.get(a,void 0,b,"script")}}),n.each(["get","post"],function(a,b){n[b]=function(a,c,d,e){return n.isFunction(c)&&(e=e||d,d=c,c=void 0),n.ajax(n.extend({url:a,type:b,dataType:e,data:c,success:d},n.isPlainObject(a)&&a))}}),n._evalUrl=function(a){return n.ajax({url:a,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,throws:!0})},n.fn.extend({wrapAll:function(a){if(n.isFunction(a))return this.each(function(b){n(this).wrapAll(a.call(this,b))});if(this[0]){var b=n(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&1===a.firstChild.nodeType)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){return n.isFunction(a)?this.each(function(b){n(this).wrapInner(a.call(this,b))}):this.each(function(){var b=n(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=n.isFunction(a);return this.each(function(c){n(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){n.nodeName(this,"body")||n(this).replaceWith(this.childNodes)}).end()}});function Xb(a){return a.style&&a.style.display||n.css(a,"display")}function Yb(a){if(!n.contains(a.ownerDocument||d,a))return!0;while(a&&1===a.nodeType){if("none"===Xb(a)||"hidden"===a.type)return!0;a=a.parentNode}return!1}n.expr.filters.hidden=function(a){return l.reliableHiddenOffsets()?a.offsetWidth<=0&&a.offsetHeight<=0&&!a.getClientRects().length:Yb(a)},n.expr.filters.visible=function(a){return!n.expr.filters.hidden(a)};var Zb=/%20/g,$b=/\[\]$/,_b=/\r?\n/g,ac=/^(?:submit|button|image|reset|file)$/i,bc=/^(?:input|select|textarea|keygen)/i;function cc(a,b,c,d){var e;if(n.isArray(b))n.each(b,function(b,e){c||$b.test(a)?d(a,e):cc(a+"["+("object"==typeof e&&null!=e?b:"")+"]",e,c,d)});else if(c||"object"!==n.type(b))d(a,b);else for(e in b)cc(a+"["+e+"]",b[e],c,d)}n.param=function(a,b){var c,d=[],e=function(a,b){b=n.isFunction(b)?b():null==b?"":b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};if(void 0===b&&(b=n.ajaxSettings&&n.ajaxSettings.traditional),n.isArray(a)||a.jquery&&!n.isPlainObject(a))n.each(a,function(){e(this.name,this.value)});else for(c in a)cc(c,a[c],b,e);return d.join("&").replace(Zb,"+")},n.fn.extend({serialize:function(){return n.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var a=n.prop(this,"elements");return a?n.makeArray(a):this}).filter(function(){var a=this.type;return this.name&&!n(this).is(":disabled")&&bc.test(this.nodeName)&&!ac.test(a)&&(this.checked||!Y.test(a))}).map(function(a,b){var c=n(this).val();return null==c?null:n.isArray(c)?n.map(c,function(a){return{name:b.name,value:a.replace(_b,"\r\n")}}):{name:b.name,value:c.replace(_b,"\r\n")}}).get()}}),n.ajaxSettings.xhr=void 0!==a.ActiveXObject?function(){return this.isLocal?hc():d.documentMode>8?gc():/^(get|post|head|put|delete|options)$/i.test(this.type)&&gc()||hc()}:gc;var dc=0,ec={},fc=n.ajaxSettings.xhr();a.attachEvent&&a.attachEvent("onunload",function(){for(var a in ec)ec[a](void 0,!0)}),l.cors=!!fc&&"withCredentials"in fc,(fc=l.ajax=!!fc)&&n.ajaxTransport(function(b){if(!b.crossDomain||l.cors){var c;return{send:function(d,e){var f,g=b.xhr(),h=++dc;if(g.open(b.type,b.url,b.async,b.username,b.password),b.xhrFields)for(f in b.xhrFields)g[f]=b.xhrFields[f];b.mimeType&&g.overrideMimeType&&g.overrideMimeType(b.mimeType),b.crossDomain||d["X-Requested-With"]||(d["X-Requested-With"]="XMLHttpRequest");for(f in d)void 0!==d[f]&&g.setRequestHeader(f,d[f]+"");g.send(b.hasContent&&b.data||null),c=function(a,d){var f,i,j;if(c&&(d||4===g.readyState))if(delete ec[h],c=void 0,g.onreadystatechange=n.noop,d)4!==g.readyState&&g.abort();else{j={},f=g.status,"string"==typeof g.responseText&&(j.text=g.responseText);try{i=g.statusText}catch(k){i=""}f||!b.isLocal||b.crossDomain?1223===f&&(f=204):f=j.text?200:404}j&&e(f,i,j,g.getAllResponseHeaders())},b.async?4===g.readyState?a.setTimeout(c):g.onreadystatechange=ec[h]=c:c()},abort:function(){c&&c(void 0,!0)}}}});function gc(){try{return new a.XMLHttpRequest}catch(b){}}function hc(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}n.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(a){return n.globalEval(a),a}}}),n.ajaxPrefilter("script",function(a){void 0===a.cache&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),n.ajaxTransport("script",function(a){if(a.crossDomain){var b,c=d.head||n("head")[0]||d.documentElement;return{send:function(e,f){b=d.createElement("script"),b.async=!0,a.scriptCharset&&(b.charset=a.scriptCharset),b.src=a.url,b.onload=b.onreadystatechange=function(a,c){(c||!b.readyState||/loaded|complete/.test(b.readyState))&&(b.onload=b.onreadystatechange=null,b.parentNode&&b.parentNode.removeChild(b),b=null,c||f(200,"success"))},c.insertBefore(b,c.firstChild)},abort:function(){b&&b.onload(void 0,!0)}}}});var ic=[],jc=/(=)\?(?=&|$)|\?\?/;n.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=ic.pop()||n.expando+"_"+Db++;return this[a]=!0,a}}),n.ajaxPrefilter("json jsonp",function(b,c,d){var e,f,g,h=!1!==b.jsonp&&(jc.test(b.url)?"url":"string"==typeof b.data&&0===(b.contentType||"").indexOf("application/x-www-form-urlencoded")&&jc.test(b.data)&&"data");if(h||"jsonp"===b.dataTypes[0])return e=b.jsonpCallback=n.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,h?b[h]=b[h].replace(jc,"$1"+e):!1!==b.jsonp&&(b.url+=(Eb.test(b.url)?"&":"?")+b.jsonp+"="+e),b.converters["script json"]=function(){return g||n.error(e+" was not called"),g[0]},b.dataTypes[0]="json",f=a[e],a[e]=function(){g=arguments},d.always(function(){void 0===f?n(a).removeProp(e):a[e]=f,b[e]&&(b.jsonpCallback=c.jsonpCallback,ic.push(e)),g&&n.isFunction(f)&&f(g[0]),g=f=void 0}),"script"}),n.parseHTML=function(a,b,c){if(!a||"string"!=typeof a)return null;"boolean"==typeof b&&(c=b,b=!1),b=b||d;var e=x.exec(a),f=!c&&[];return e?[b.createElement(e[1])]:(e=ia([a],b,f),f&&f.length&&n(f).remove(),n.merge([],e.childNodes))};var kc=n.fn.load;n.fn.load=function(a,b,c){if("string"!=typeof a&&kc)return kc.apply(this,arguments);var d,e,f,g=this,h=a.indexOf(" ");return h>-1&&(d=n.trim(a.slice(h,a.length)),a=a.slice(0,h)),n.isFunction(b)?(c=b,b=void 0):b&&"object"==typeof b&&(e="POST"),g.length>0&&n.ajax({url:a,type:e||"GET",dataType:"html",data:b}).done(function(a){f=arguments,g.html(d?n("
                        ").append(n.parseHTML(a)).find(d):a)}).always(c&&function(a,b){g.each(function(){c.apply(this,f||[a.responseText,b,a])})}),this},n.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(a,b){n.fn[b]=function(a){return this.on(b,a)}}),n.expr.filters.animated=function(a){return n.grep(n.timers,function(b){return a===b.elem}).length};function lc(a){return n.isWindow(a)?a:9===a.nodeType&&(a.defaultView||a.parentWindow)}n.offset={setOffset:function(a,b,c){var d,e,f,g,h,i,j,k=n.css(a,"position"),l=n(a),m={};"static"===k&&(a.style.position="relative"),h=l.offset(),f=n.css(a,"top"),i=n.css(a,"left"),j=("absolute"===k||"fixed"===k)&&n.inArray("auto",[f,i])>-1,j?(d=l.position(),g=d.top,e=d.left):(g=parseFloat(f)||0,e=parseFloat(i)||0),n.isFunction(b)&&(b=b.call(a,c,n.extend({},h))),null!=b.top&&(m.top=b.top-h.top+g),null!=b.left&&(m.left=b.left-h.left+e),"using"in b?b.using.call(a,m):l.css(m)}},n.fn.extend({offset:function(a){if(arguments.length)return void 0===a?this:this.each(function(b){n.offset.setOffset(this,a,b)});var b,c,d={top:0,left:0},e=this[0],f=e&&e.ownerDocument;if(f)return b=f.documentElement,n.contains(b,e)?(void 0!==e.getBoundingClientRect&&(d=e.getBoundingClientRect()),c=lc(f),{top:d.top+(c.pageYOffset||b.scrollTop)-(b.clientTop||0),left:d.left+(c.pageXOffset||b.scrollLeft)-(b.clientLeft||0)}):d},position:function(){if(this[0]){var a,b,c={top:0,left:0},d=this[0];return"fixed"===n.css(d,"position")?b=d.getBoundingClientRect():(a=this.offsetParent(),b=this.offset(),n.nodeName(a[0],"html")||(c=a.offset()),c.top+=n.css(a[0],"borderTopWidth",!0),c.left+=n.css(a[0],"borderLeftWidth",!0)),{top:b.top-c.top-n.css(d,"marginTop",!0),left:b.left-c.left-n.css(d,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var a=this.offsetParent;while(a&&!n.nodeName(a,"html")&&"static"===n.css(a,"position"))a=a.offsetParent;return a||Pa})}}),n.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,b){var c=/Y/.test(b);n.fn[a]=function(d){return X(this,function(a,d,e){var f=lc(a);if(void 0===e)return f?b in f?f[b]:f.document.documentElement[d]:a[d];f?f.scrollTo(c?n(f).scrollLeft():e,c?e:n(f).scrollTop()):a[d]=e},a,d,arguments.length,null)}}),n.each(["top","left"],function(a,b){n.cssHooks[b]=Ta(l.pixelPosition,function(a,c){if(c)return c=Ra(a,b),Na.test(c)?n(a).position()[b]+"px":c})}),n.each({Height:"height",Width:"width"},function(a,b){n.each({padding:"inner"+a,content:b,"":"outer"+a},function(c,d){n.fn[d]=function(d,e){var f=arguments.length&&(c||"boolean"!=typeof d),g=c||(!0===d||!0===e?"margin":"border") +;return X(this,function(b,c,d){var e;return n.isWindow(b)?b.document.documentElement["client"+a]:9===b.nodeType?(e=b.documentElement,Math.max(b.body["scroll"+a],e["scroll"+a],b.body["offset"+a],e["offset"+a],e["client"+a])):void 0===d?n.css(b,c,g):n.style(b,c,d,g)},b,f?d:void 0,f,null)}})}),n.fn.extend({bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return 1===arguments.length?this.off(a,"**"):this.off(b,a||"**",c)}}),n.fn.size=function(){return this.length},n.fn.andSelf=n.fn.addBack,"function"==typeof define&&define.amd&&define("jquery",[],function(){return n});var mc=a.jQuery,nc=a.$;return n.noConflict=function(b){return a.$===n&&(a.$=nc),b&&a.jQuery===n&&(a.jQuery=mc),n},b||(a.jQuery=a.$=n),n}); +jQuery.noConflict(); \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/9a06ee6e098c690d72ff2cf3338406afbee4c0f7.00000303.html b/www/.content.EZtzwPjb/html/9a06ee6e098c690d72ff2cf3338406afbee4c0f7.00000303.html new file mode 100644 index 0000000..724b2f5 --- /dev/null +++ b/www/.content.EZtzwPjb/html/9a06ee6e098c690d72ff2cf3338406afbee4c0f7.00000303.html @@ -0,0 +1,400 @@ + + + + + + + Hardware – Page 2 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +

                        Écran miraculé d’un Asus N53SN

                        Comme d’habitude tantine vient me voir pour me dire que son écran d’ordinateur ne marche plus. Le pc portable, un Asus N53SN d’un plus de 2 ans de services, présente un écran noir complètement éteint mais le portable fonctionne parfaitement sur un écran externe. Ni une ni deux je commence par démonter la bête pour récupérer la référence exacte du moniteur.

                        +

                        asusn53sn_open_lcd_front (suite…)

                        +
                        Par HugoPoi, il y a

                        Démonter un Switch Cisco 2950T

                        Après avoir tout tenté sur le port console, le switch semblait mort donc démontage. J’ai donc ouvert ce petit switch 24 ports. C’est assez simple, il y a quelques vis à l’arrière ensuite faire coulisser le châssis.

                        +

                        Cisco 2950T-24

                        +

                        (suite…)

                        +
                        Par HugoPoi, il y a

                        Home Cinéma

                        Bientôt fini mais peut-être jamais terminé tellement il y a de boulot autour d’un système home-cinema complet et parfait. Cela fait bientôt deux semaines que je suis dans mes travaux et ma configuration HTPC. Première semaine, je suis parti de rien, aucun câble posé, pas de pc installé et pas de meuble. Du coup, le lundi, je suis allé à Ikea et j’ai trouvé à peu près ce que je voulais pour pas trop cher (120 € pour de l’aggloméré de merde). Le mardi, je venais de recevoir tout le matos, à savoir :

                        +
                          +
                        • Un Amplificateur Yamaha RX-671
                        • +
                        • Un kit d’enceinte Jamo 5.1
                        • +
                        • Un boitier Antec Remote black et les 2-3 composants qui vont bien
                        • +
                        +

                        Salon Wii

                        +

                         

                        + +
                        Par HugoPoi, il y a

                        Liste de Noël

                        Bonjour cher Père Noël des Internets 2.0,

                        +

                        Alors je me permets de te déposer ma liste de noël sur mon blog car je suis sûr que tu as demandé à Google et Facebook de t’aider pour satisfaire tout le monde sur la terre(N’oublie pas les petits africains qui crèvent la dalle). Comme je suis égoïste un minimum humain et que je ne saurais dire ce que représente noël pour moi à part manger, boire, dormir, du sexe, avoir des cadeaux et en offrir, cela fait de bonnes raisons pour faire une liste de noël. (suite…)

                        +
                        Par HugoPoi, il y a
                        +
                        +
                        + +
                        +
                        +
                        +
                        + +
                        +
                        + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/9ac4de8a3675fd56456ac84e1fb49de6e75b6d78.00000358.html b/www/.content.EZtzwPjb/html/9ac4de8a3675fd56456ac84e1fb49de6e75b6d78.00000358.html new file mode 100644 index 0000000..cc7f771 --- /dev/null +++ b/www/.content.EZtzwPjb/html/9ac4de8a3675fd56456ac84e1fb49de6e75b6d78.00000358.html @@ -0,0 +1,364 @@ + + + + + + + caramel – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        + +
                        +
                        + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/9b0711a488a470761d7f4d39bdb72815d0bf78d8.00001231.css b/www/.content.EZtzwPjb/html/9b0711a488a470761d7f4d39bdb72815d0bf78d8.00001231.css new file mode 100644 index 0000000..2fe2327 --- /dev/null +++ b/www/.content.EZtzwPjb/html/9b0711a488a470761d7f4d39bdb72815d0bf78d8.00001231.css @@ -0,0 +1 @@ +.mejs-offscreen{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal}.mejs-container{background:#000;font-family:Helvetica,Arial,serif;position:relative;text-align:left;text-indent:0;vertical-align:top}.mejs-container,.mejs-container *{box-sizing:border-box}.mejs-container video::-webkit-media-controls,.mejs-container video::-webkit-media-controls-panel,.mejs-container video::-webkit-media-controls-panel-container,.mejs-container video::-webkit-media-controls-start-playback-button{-webkit-appearance:none;display:none!important}.mejs-fill-container,.mejs-fill-container .mejs-container{height:100%;width:100%}.mejs-fill-container{background:transparent;margin:0 auto;overflow:hidden;position:relative}.mejs-container:focus{outline:none}.mejs-iframe-overlay{height:100%;position:absolute;width:100%}.mejs-embed,.mejs-embed body{background:#000;height:100%;margin:0;overflow:hidden;padding:0;width:100%}.mejs-fullscreen{overflow:hidden!important}.mejs-container-fullscreen{bottom:0;left:0;overflow:hidden;position:fixed;right:0;top:0;z-index:1000}.mejs-container-fullscreen .mejs-mediaelement,.mejs-container-fullscreen video{height:100%!important;width:100%!important}.mejs-background,.mejs-mediaelement{left:0;position:absolute;top:0}.mejs-mediaelement{height:100%;width:100%;z-index:0}.mejs-poster{background-position:50% 50%;background-repeat:no-repeat;background-size:cover;left:0;position:absolute;top:0;z-index:1}:root .mejs-poster-img{display:none}.mejs-poster-img{border:0;padding:0}.mejs-overlay{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;left:0;position:absolute;top:0}.mejs-layer{z-index:1}.mejs-overlay-play{cursor:pointer}.mejs-overlay-button{background:url(mejs-controls.svg) no-repeat;background-position:0 -39px;height:80px;width:80px}.mejs-overlay:hover>.mejs-overlay-button{background-position:-80px -39px}.mejs-overlay-loading{height:80px;width:80px}.mejs-overlay-loading-bg-img{-webkit-animation:a 1s linear infinite;animation:a 1s linear infinite;background:transparent url(mejs-controls.svg) -160px -40px no-repeat;display:block;height:80px;width:80px;z-index:1}@-webkit-keyframes a{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes a{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.mejs-controls{bottom:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;height:40px;left:0;list-style-type:none;margin:0;padding:0 10px;position:absolute;width:100%;z-index:3}.mejs-controls:not([style*="display: none"]){background:rgba(255,0,0,.7);background:-webkit-linear-gradient(transparent,rgba(0,0,0,.35));background:linear-gradient(transparent,rgba(0,0,0,.35))}.mejs-button,.mejs-time,.mejs-time-rail{font-size:10px;height:40px;line-height:10px;margin:0;width:32px}.mejs-button>button{background:transparent url(mejs-controls.svg);border:0;cursor:pointer;display:block;font-size:0;height:20px;line-height:0;margin:10px 6px;overflow:hidden;padding:0;position:absolute;text-decoration:none;width:20px}.mejs-button>button:focus{outline:1px dotted #999}.mejs-container-keyboard-inactive [role=slider],.mejs-container-keyboard-inactive [role=slider]:focus,.mejs-container-keyboard-inactive a,.mejs-container-keyboard-inactive a:focus,.mejs-container-keyboard-inactive button,.mejs-container-keyboard-inactive button:focus{outline:0}.mejs-time{box-sizing:content-box;color:#fff;font-size:11px;font-weight:700;height:24px;overflow:hidden;padding:16px 6px 0;text-align:center;width:auto}.mejs-play>button{background-position:0 0}.mejs-pause>button{background-position:-20px 0}.mejs-replay>button{background-position:-160px 0}.mejs-time-rail{direction:ltr;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;height:40px;margin:0 10px;padding-top:10px;position:relative}.mejs-time-buffering,.mejs-time-current,.mejs-time-float,.mejs-time-float-corner,.mejs-time-float-current,.mejs-time-hovered,.mejs-time-loaded,.mejs-time-marker,.mejs-time-total{border-radius:2px;cursor:pointer;display:block;height:10px;position:absolute}.mejs-time-total{background:hsla(0,0%,100%,.3);margin:5px 0 0;width:100%}.mejs-time-buffering{-webkit-animation:b 2s linear infinite;animation:b 2s linear infinite;background:-webkit-linear-gradient(135deg,hsla(0,0%,100%,.4) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.4) 0,hsla(0,0%,100%,.4) 75%,transparent 0,transparent);background:linear-gradient(-45deg,hsla(0,0%,100%,.4) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.4) 0,hsla(0,0%,100%,.4) 75%,transparent 0,transparent);background-size:15px 15px;width:100%}@-webkit-keyframes b{0%{background-position:0 0}to{background-position:30px 0}}@keyframes b{0%{background-position:0 0}to{background-position:30px 0}}.mejs-time-loaded{background:hsla(0,0%,100%,.3)}.mejs-time-current,.mejs-time-handle-content{background:hsla(0,0%,100%,.9)}.mejs-time-hovered{background:hsla(0,0%,100%,.5);z-index:10}.mejs-time-hovered.negative{background:rgba(0,0,0,.2)}.mejs-time-buffering,.mejs-time-current,.mejs-time-hovered,.mejs-time-loaded{left:0;-webkit-transform:scaleX(0);-ms-transform:scaleX(0);transform:scaleX(0);-webkit-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0;-webkit-transition:all .15s ease-in;transition:all .15s ease-in;width:100%}.mejs-time-buffering{-webkit-transform:scaleX(1);-ms-transform:scaleX(1);transform:scaleX(1)}.mejs-time-hovered{-webkit-transition:height .1s cubic-bezier(.44,0,1,1);transition:height .1s cubic-bezier(.44,0,1,1)}.mejs-time-hovered.no-hover{-webkit-transform:scaleX(0)!important;-ms-transform:scaleX(0)!important;transform:scaleX(0)!important}.mejs-time-handle,.mejs-time-handle-content{border:4px solid transparent;cursor:pointer;left:0;position:absolute;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);z-index:11}.mejs-time-handle-content{border:4px solid hsla(0,0%,100%,.9);border-radius:50%;height:10px;left:-7px;top:-4px;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);width:10px}.mejs-time-rail .mejs-time-handle-content:active,.mejs-time-rail .mejs-time-handle-content:focus,.mejs-time-rail:hover .mejs-time-handle-content{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.mejs-time-float{background:#eee;border:1px solid #333;bottom:100%;color:#111;display:none;height:17px;margin-bottom:9px;position:absolute;text-align:center;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:36px}.mejs-time-float-current{display:block;left:0;margin:2px;text-align:center;width:30px}.mejs-time-float-corner{border:5px solid #eee;border-color:#eee transparent transparent;border-radius:0;display:block;height:0;left:50%;line-height:0;position:absolute;top:100%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:0}.mejs-long-video .mejs-time-float{margin-left:-23px;width:64px}.mejs-long-video .mejs-time-float-current{width:60px}.mejs-broadcast{color:#fff;height:10px;position:absolute;top:15px;width:100%}.mejs-fullscreen-button>button{background-position:-80px 0}.mejs-unfullscreen>button{background-position:-100px 0}.mejs-mute>button{background-position:-60px 0}.mejs-unmute>button{background-position:-40px 0}.mejs-volume-button{position:relative}.mejs-volume-button>.mejs-volume-slider{-webkit-backface-visibility:hidden;background:rgba(50,50,50,.7);border-radius:0;bottom:100%;display:none;height:115px;left:50%;margin:0;position:absolute;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:25px;z-index:1}.mejs-volume-button:hover{border-radius:0 0 4px 4px}.mejs-volume-total{background:hsla(0,0%,100%,.5);height:100px;left:50%;margin:0;position:absolute;top:8px;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:2px}.mejs-volume-current{left:0;margin:0;width:100%}.mejs-volume-current,.mejs-volume-handle{background:hsla(0,0%,100%,.9);position:absolute}.mejs-volume-handle{border-radius:1px;cursor:ns-resize;height:6px;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:16px}.mejs-horizontal-volume-slider{display:block;height:36px;position:relative;vertical-align:middle;width:56px}.mejs-horizontal-volume-total{background:rgba(50,50,50,.8);height:8px;top:16px;width:50px}.mejs-horizontal-volume-current,.mejs-horizontal-volume-total{border-radius:2px;font-size:1px;left:0;margin:0;padding:0;position:absolute}.mejs-horizontal-volume-current{background:hsla(0,0%,100%,.8);height:100%;top:0;width:100%}.mejs-horizontal-volume-handle{display:none}.mejs-captions-button,.mejs-chapters-button{position:relative}.mejs-captions-button>button{background-position:-140px 0}.mejs-chapters-button>button{background-position:-180px 0}.mejs-captions-button>.mejs-captions-selector,.mejs-chapters-button>.mejs-chapters-selector{background:rgba(50,50,50,.7);border:1px solid transparent;border-radius:0;bottom:100%;margin-right:-43px;overflow:hidden;padding:0;position:absolute;right:50%;visibility:visible;width:86px}.mejs-chapters-button>.mejs-chapters-selector{margin-right:-55px;width:110px}.mejs-captions-selector-list,.mejs-chapters-selector-list{list-style-type:none!important;margin:0;overflow:hidden;padding:0}.mejs-captions-selector-list-item,.mejs-chapters-selector-list-item{color:#fff;cursor:pointer;display:block;list-style-type:none!important;margin:0 0 6px;overflow:hidden;padding:0}.mejs-captions-selector-list-item:hover,.mejs-chapters-selector-list-item:hover{background-color:#c8c8c8!important;background-color:hsla(0,0%,100%,.4)!important}.mejs-captions-selector-input,.mejs-chapters-selector-input{clear:both;float:left;left:-1000px;margin:3px 3px 0 5px;position:absolute}.mejs-captions-selector-label,.mejs-chapters-selector-label{cursor:pointer;float:left;font-size:10px;line-height:15px;padding:4px 10px 0;width:100%}.mejs-captions-selected,.mejs-chapters-selected{color:#21f8f8}.mejs-captions-translations{font-size:10px;margin:0 0 5px}.mejs-captions-layer{bottom:0;color:#fff;font-size:16px;left:0;line-height:20px;position:absolute;text-align:center}.mejs-captions-layer a{color:#fff;text-decoration:underline}.mejs-captions-layer[lang=ar]{font-size:20px;font-weight:400}.mejs-captions-position{bottom:15px;left:0;position:absolute;width:100%}.mejs-captions-position-hover{bottom:35px}.mejs-captions-text,.mejs-captions-text *{background:hsla(0,0%,8%,.5);box-shadow:5px 0 0 hsla(0,0%,8%,.5),-5px 0 0 hsla(0,0%,8%,.5);padding:0;white-space:pre-wrap}.mejs-container.mejs-hide-cues video::-webkit-media-text-track-container{display:none}.mejs-overlay-error{position:relative}.mejs-overlay-error>img{left:0;max-width:100%;position:absolute;top:0;z-index:-1}.mejs-cannotplay,.mejs-cannotplay a{color:#fff;font-size:.8em}.mejs-cannotplay{position:relative}.mejs-cannotplay a,.mejs-cannotplay p{display:inline-block;padding:0 15px;width:100%} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/9b25c11f986cda7d332570d95ffb399ddec0552d.00000677.css b/www/.content.EZtzwPjb/html/9b25c11f986cda7d332570d95ffb399ddec0552d.00000677.css new file mode 100644 index 0000000..20df2bb --- /dev/null +++ b/www/.content.EZtzwPjb/html/9b25c11f986cda7d332570d95ffb399ddec0552d.00000677.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7 .screen-reader-response{position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);height:1px;width:1px;margin:0;padding:0;border:0}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{color:#f00;font-size:1em;display:block}.use-floating-validation-tip span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;border:1px +solid #f00;background:#fff;padding: .2em .8em}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/9b345e3d0035a482b5de7a97648fa4f7d1454633.00000201.html b/www/.content.EZtzwPjb/html/9b345e3d0035a482b5de7a97648fa4f7d1454633.00000201.html new file mode 100644 index 0000000..13e3330 --- /dev/null +++ b/www/.content.EZtzwPjb/html/9b345e3d0035a482b5de7a97648fa4f7d1454633.00000201.html @@ -0,0 +1,542 @@ + + + + + + + + Orange et consort, impossible d’obtenir le désimlockage – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        +

                        J’en ai marre à chaque fois c’est le même problème. Je galère pour obtenir le code de désimlockage de téléphones même ceux de première main.

                        +

                        Ma petite conversation avec le tchat Orange de ce matin :

                        +

                        Bienvenue ! Merci de patienter pendant que l’on contacte un conseiller client disponible…
                        +Nous vous demandons de bien vouloir patienter pour être mis en relation avec un conseiller.
                        +Le temps d’attente est estimé à 1 minute(s)
                        +Vous êtes en relation avec André.
                        +André:  Bonjour, bienvenue sur l’echat d’Orange.fr, que puis-je faire pour vous ?
                        +Hugo Poissonnet:  Bonjour, voila je ne suis plus client Orange mais j’ai un telephone que je souhaiterais desimlocker, Je peux vous fournir l’IMEI , et mon ancienne ligne est le 06********
                        +André:  Veuillez, s’il vous plait, me communiquer le numéro de mobile Orange avec lequel vous avez acquis ou utilisé ce mobile et votre numéro imei.
                        +Hugo Poissonnet:  Tel:0684****** IMEI:3588480********
                        +André:  Avez-vous une fois reçu le code de désimlockage?
                        +Hugo Poissonnet:  Non
                        +André:  Veuillez, s’il vous plait, me communiquer votre adresse mail.
                        +Hugo Poissonnet:  hu*************@********.***
                        +André:  Je n’arrive pas à vous identifier comme titulaire de cette ligne mobile.
                        +Veuillez, s’il vous plait, me confirmer le nom et prénom du titulaire de la ligne ?
                        +Hugo Poissonnet:  Oui exact la ligne doit être au nom de mon père donc ********* Poissonnet *********.poissonnet@free.fr
                        +André:  Désolé, ce mobile n’est pas renseigné dans son dossier.
                        +André:  Avez-vous la facture d’achat de ce mobile?
                        +Hugo Poissonnet:  Je ne dispose pas de la facture Orange de ce mobile, rachat d’occasion
                        +André:  Je vous invite à nous recontacter lorsque vous aurez à disposition toutes les informations (nom et prénom, numéro de mobile, IMEI, ainsi que l’adresse postale de l’ancien propriétaire du mobile)
                        +nécessaires au désimlockage de votre mobile.
                        +André:  Avez-vous une autre question?
                        +André:  Nous restons à votre disposition via notre assistance en ligne avec les bonnes informations.
                        +Orange vous remercie de votre confiance et je vous souhaite une bonne journée.
                        +Votre chat est terminé. Merci d’avoir discuté avec nous.
                        +Votre session est terminée. Vous pouvez à présent fermer cette fenêtre.

                        +

                        Je précise que ma session a été fermé au bout d’une minute à peine alors que j’étais en train de composer un message salé à notre cher André. Comme vous pouvez le voir il m’a été impossible d’obtenir de façon simple le code de désimlockage d’un Galaxy S2 dont je ne suis pas le propriétaire d’origine. Mais pourquoi est-il nécessaire d’avoir la facture d’origine du téléphone car cela ne protège en rien contre le vol de téléphone car si le téléphone a été volé celui-ci sera de toute manière en blacklist sur les réseau mobile Européens (Pensez à le déclarer volé au près de la gendarmerie !). Surtout que les voleurs utilisent des réseaux de redistribution des téléphones volés à l’étranger et je penses qu’ils se servent de ce genre d’outils pour changer l’IMEI des téléphones donc la revente devient même possible en France ! Donc tout est fait pour juste emmerder le consommateur.

                        +

                        Donc pour désimlocker votre Galaxy S2 sans Orange et sans arnaques (Note pour Orange, cet méthode marche aussi pour un téléphone volé, et j’ai pas trop cherché mais ça doit pouvoir ce trouver les bouts de code pour changer les IMEI aussi ;-) :

                        +

                        Première chose vous devez rooter votre SGS2.

                        +

                        La première méthode est un brut force du code tout simplement mais cette méthode n’a pas marché chez moi : https://play.google.com/store/apps/details?id=eu.chainfire.sgs2simunlockcode&hl=fr

                        +

                        La seconde est plus bourrin, c’est juste un patch du driver réseau qui bypass le désimlock, cet méthode est efficace mais faire gaffe à toujours garder un backup de la partition efs surtout en cas de d’upgrade marche parfaitement sous ICS 4.0.4 :

                        +

                        https://play.google.com/store/apps/details?id=com.helroz.galaxysunlock&hl=fr

                        +

                        Pour le galaxy S2 en question j’ai trouvé le patch qui marche sous Jelly Bean 4.2.2 ( CyanogenMod 10.1.3-RC2 ) : http://forum.xda-developers.com/attachment.php?attachmentid=1484874&d=1353018708

                        +

                        Les méthodes ci-dessus marche sur beaucoup de Galaxy dont : Ace, S, S2 , S3 les apk sont trouvables sur le market Play ou sur XDA.

                        +

                        Donc au final gros doigt d’honneur à Orange et ses potes SFR et Bouygues.

                        +
                        Flickr, Archive Floride (The Commons)

                        Flickr, Archive Floride (The Commons)

                        +
                        +
                        +
                        +
                        +
                        Catégories : #FAILNews
                        +
                        +
                        +
                        + + + + + + + + + +
                        +
                        +
                        +
                        +
                        +
                        +
                        +

                        + 1 commentaire

                        +
                        + +
                        +
                        +
                        +
                        +

                        + Jibé + · 1 février 2015 à 0 h 35 min +

                        +

                        Merci !
                        +La 3ème méthode fut la bonne…
                        +que de galère.
                        +JB

                        + +
                        +
                        + +
                        +
                        +
                        +

                        Répondre à Jibé Annuler la réponse

                        Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                        +
                        +
                        +

                        + +

                        +
                        +
                        +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        + + +
                        + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/9bbeef1812517ca6cc7ec5066e0322ad958d9631.00000253.html b/www/.content.EZtzwPjb/html/9bbeef1812517ca6cc7ec5066e0322ad958d9631.00000253.html new file mode 100644 index 0000000..18d311b --- /dev/null +++ b/www/.content.EZtzwPjb/html/9bbeef1812517ca6cc7ec5066e0322ad958d9631.00000253.html @@ -0,0 +1,817 @@ + + + + + + + + Install RancherOs on FreeNas 11.3 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        +

                        Install RancherOs on FreeNas 11.3

                        +
                          +
                        • The automated RancherOs installation aka Docker VM has been removed in
                          +11.3
                        • +
                        • RancherOs doesn’t support EFI boot out of the box
                        • +
                        • Thanks to MKinney howto
                        • +
                        • This howto is provided without warranty
                        • +
                        • TODO the proper way of doing it is somewhere here
                        • +
                        • Some stuff about losetup
                        • +
                        +

                        1. Make a EFI bootable RancherOs image

                        + +
                          +
                        1. wget https://releases.rancher.com/os/v1.5.5/rancheros.iso
                        2. +
                        3. wget http://releases.ubuntu.com/18.04/ubuntu-18.04.4-live-server-amd64.iso
                        4. +
                        5. mkdir tmpubuntu tmprancheros tmprancheros_dest
                        6. +
                        7. sudo mount ubuntuserverlive.iso tmpubuntu
                        8. +
                        9. sudo mount rancheros.iso tmprancheros
                        10. +
                        11. fallocate -l 150M rancheros.img
                        12. +
                        13. gdisk rancheros.img o,y,n,enter,enter,ef00,w,Y
                        14. +
                        15. sudo losetup --partscan --show --find rancheros.img
                        16. +
                        17. sudo mkfs.fat /dev/loop2p1
                        18. +
                        19. sudo mount /dev/loop2p1 rancheros_dest
                        20. +
                        21. sudo cp -r tmprancheros/* tmprancheros_dest/
                        22. +
                        23. sudo cp -r tmpubuntu/EFI tmprancheros_dest/
                        24. +
                        25. Replace the content of tmprancheros_dest/boot/grub/grub.cfg with:
                        26. +
                        +
                        set timeout=5
                        +menuentry "Install Rancher" {
                        +    linux   /boot/vmlinuz-4.14.138-rancher rancher.autologin=tty1 rancher.autologin=ttyS0 rancher.autologin=ttyS1 console=tty1 console=ttyS0 console=ttyS1 printk.devkmsg=on panic=10 ---
                        +    initrd  /boot/initrd-v1.5.5
                        +}
                        +
                        +
                          +
                        1. sudo umount tmprancheros_dest
                        2. +
                        3. sudo losetup -d /dev/loop2
                        4. +
                        5. sudo umount tmpubuntu tmprancheros
                        6. +
                        +

                        2. Installation in FreeNas as Vm

                        +
                          +
                        1. Create a VM with EFI boot 2GB RAM choose virtio for all the driver
                          +better performance with linux
                        2. +
                        3. Add a RAW device and select your rancheros.img
                        4. +
                        5. Start the VM
                        6. +
                        7. Go to serial and in the shell cu -l /dev/nmdmXX at this point you should
                          +have a rancher shell
                        8. +
                        9. sudo fdisk /dev/vda then g,n,1,+200M,t,1,n,enter,enter,w you
                          +should something like at the end
                        10. +
                        +
                        Disk /dev/vda: 10 GiB, 10737418240 bytes, 20971520 sectors
                        +Units: sectors of 1 * 512 = 512 bytes
                        +Sector size (logical/physical): 512 bytes / 16384 bytes
                        +I/O size (minimum/optimal): 16384 bytes / 16384 bytes
                        +Disklabel type: gpt
                        +Disk identifier: 2B56EE14-44BF-6443-A197-EF73723B715F
                        +Device      Start      End  Sectors  Size Type
                        +/dev/vda1    2048   411647   409600  200M EFI System
                        +/dev/vda2  411648 20971486 20559839  9.8G Linux filesystem
                        +
                        +
                          +
                        1. Format the boot partition sudo mkdosfs -n RANCHER -F 32 /dev/vda1
                        2. +
                        3. Format the main filesystem sudo mkfs.ext4 -L RANCHER_STATE /dev/vda2
                        4. +
                        5. Create a cloud-config.yml see https://rancher.com/docs/os/v1.x/en/installation/running-rancheros/server/install-to-disk/ for minimum content
                        6. +
                        7. sudo mkdir /dev/sr0 for installer checking about iso mounted before
                          +install
                        8. +
                        9. Install ros with sudo ros install -t gptsyslinux -c cloud-config.yml -d /dev/vda -p /dev/vda2
                        10. +
                        11. mkdir /mnt/efipart && sudo mount /dev/vda1 /mnt/efipart
                        12. +
                        13. mkdir /mnt/installer && sudo mount /dev/vdb1 /mnt/installer
                        14. +
                        15. sudo cp -r /mnt/installer/EFI /mnt/efipart
                        16. +
                        17. Add a grub.cfg in /mnt/efipart/EFI/BOOT/grub.cfg with in it:
                          +You might want to add/remove autologin as you wish below

                          +
                            +
                          • tty0 I think is VNC but I havent tested it
                          • +
                          • ttyS0 is serial (I have autologin enable in serial see below)
                          • +
                          +
                        18. +
                        +
                        set timeout=1
                        +menuentry "Rancher from GPT" {
                        +    search --no-floppy --set=root --label RANCHER_STATE
                        +    linux    /boot/vmlinuz-4.14.138-rancher printk.devkmsg=on rancher.state.dev=LABEL=RANCHER_STATE rancher.state.wait panic=10 console=tty0 console=ttyS0 rancher.autologin=ttyS0
                        +    initrd    /boot/initrd-v1.5.5
                        +}
                        +
                        +
                          +
                        1. sudo umount /mnt/*
                        2. +
                        3. sudo reboot
                        4. +
                        5. You are good to go
                        6. +
                        7. You can remove the RAW device in the VM config in FreeNas
                        8. +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +

                        + 12 commentaires

                        +
                        + +
                        +
                        +
                        +
                        +

                        + Rudi Pittman + · 18 mars 2020 à 17 h 46 min +

                        +

                        Can I or can I not use my existing rancher img that was previously being used by freenas? ie

                        +

                        -rw-r–r– 1 root wheel 21474836480 Mar 18 02:13 rancher.img_docker1

                        +

                        I have around 10 different docker containers defined inside and I really don’t want to have to redo all of them.

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 11 avril 2020 à 16 h 32 min +

                          +

                          If the image is a VM image like a zvol, I think it will work, but I’m not sure, it will only work if the 11.2 behavior is EFI compatible.
                          +You may patch your existing image/snapshot by justing installing the efi bootloader aka grub in it.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Rob RD + · 4 avril 2020 à 19 h 36 min +

                        +

                        Parfait – Merci Beaucoup! :)

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + dario + · 12 avril 2020 à 14 h 07 min +

                        +

                        Thanks for this guide. I am stuck at Step 12:
                        +> sudo mount /dev/vdb1 /mnt/installer
                        +ther is no /dev/vdb1, regardingless if I choose to boot at step 10 or not

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 22 avril 2020 à 23 h 34 min +

                          +

                          Your installer may be on a different disk if you choose SCSI in place of virtio when you add the raw image device in Freenas, you can identified with

                          +

                          cat /proc/partitions

                          +

                          and

                          +

                          mount

                          +

                          it should be /dev/sda1 maybe

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + somebody + · 19 avril 2020 à 13 h 07 min +

                        +

                        Thank you so much for the step by step guide, it was very helpful. With this I can finally transition from my old Docker VM inherited from FreeNAS 11.1.

                        +

                        Going to state the obvious (for some) and mention that when new version gets released and you run

                        +

                        sudo ros os upgrade

                        +

                        to upgrade you’ll also need to update initrd command in your grub.cfg file on EFI partition, otherwise you’re just going to boot into the same version.

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + Rudi Pittman + · 1 juin 2020 à 1 h 58 min +

                          +

                          The problem I have is even though grub is specifying 4.14.138 and initird-v1.5.5 on reboot it tells me those don’t exist. Doing a grub edit and using autocomplete the files it ACTUALLY find are /boot/vmlinuz-4.14.73-rancher and /boot/initrd-v1.4.2. Where the heck are those coming from? When I look on /dev/vda2/boot I see the 4.14.138 and initrd-v1.5.5 as the grub reflects. /mnt/efipart/EFI/BOOT has:

                          +

                          -rwxr-xr-x 1 root root 1334816 May 30 15:13 BOOTx64.EFI
                          +-rwxr-xr-x 1 root root 316 May 30 15:15 grub.cfg
                          +-rwxr-xr-x 1 root root 1146744 May 30 15:13 grubx64.efi

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Max + · 3 mai 2020 à 16 h 40 min +

                        +

                        The image i downloaded does not start. Stuck at step4 in the bhyve shell. Any idea how to proceed from there?

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 10 mai 2020 à 14 h 53 min +

                          +

                          Try to change the device order to a lower or higher number to be sure it try to load the good bootloader.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Rudi Pittman + · 1 juin 2020 à 18 h 28 min +

                        +

                        If you do a « ros os version » on your efi image it’s NOT v1.5.5. It’s v1.4.2 and running the command although it MAY download the files does nothing to actually make the grub.cfg FIND those new files. It’s still looking for vmlinuz-4.14.73 and initrd-v1.4.2.

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + Johnny Z + · 25 juin 2020 à 8 h 49 min +

                          +

                          I found them. The guide doesn’t necessarily state where or when to get the files. You should be able to do this to find and copy the files

                          +

                          cd /mnt/installer/boot/
                          +ls -asl
                          +(here you will find the two files)
                          +cp vmlinuz-4.14.138-rancher ../../efipart/efi/boot/
                          +cp initrd-v1.5.5.5 ../../efipart/efi/boot

                          +

                          Double check my paths here but that should basically get you the files so the kernel can load proper

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Toohai + · 16 septembre 2020 à 8 h 18 min +

                        +

                        Missing step after 12 in part 1?

                        +

                        sudo cp -r tmpubuntu/boot/grub tmprancheros_dest/boot/

                        + +
                        +
                        + +
                        +
                        +
                        +

                        Répondre à HugoPoi Annuler la réponse

                        Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                        +
                        +
                        +

                        + +

                        +
                        +
                        +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        + + +
                        + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/9c5c2da012471265f946fef6d246f57f1ef99433.00000464.html b/www/.content.EZtzwPjb/html/9c5c2da012471265f946fef6d246f57f1ef99433.00000464.html new file mode 100644 index 0000000..4ad148f --- /dev/null +++ b/www/.content.EZtzwPjb/html/9c5c2da012471265f946fef6d246f57f1ef99433.00000464.html @@ -0,0 +1,364 @@ + + + + + + + Noctua – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        + +
                        +
                        + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/9cad656ccaf171f329bf8d12ec6853f1f6ab49f3.00001243.js b/www/.content.EZtzwPjb/html/9cad656ccaf171f329bf8d12ec6853f1f6ab49f3.00001243.js new file mode 100644 index 0000000..69c1f01 --- /dev/null +++ b/www/.content.EZtzwPjb/html/9cad656ccaf171f329bf8d12ec6853f1f6ab49f3.00001243.js @@ -0,0 +1 @@ +!function(a,b){"use strict";function c(){if(!e){e=!0;var a,c,d,f,g=-1!==navigator.appVersion.indexOf("MSIE 10"),h=!!navigator.userAgent.match(/Trident.*rv:11\./),i=b.querySelectorAll("iframe.wp-embedded-content");for(c=0;c1e3)g=1e3;else if(~~g<200)g=200;f.height=g}if("link"===d.message)if(h=b.createElement("a"),i=b.createElement("a"),h.href=f.getAttribute("src"),i.href=d.value,i.host===h.host)if(b.activeElement===f)a.top.location.href=d.value}else;}},d)a.addEventListener("message",a.wp.receiveEmbedMessage,!1),b.addEventListener("DOMContentLoaded",c,!1),a.addEventListener("load",c,!1)}(window,document); \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/9d5a2823d830f009dbe62f1f2f2cc59b3c2b81e2.00000100.html b/www/.content.EZtzwPjb/html/9d5a2823d830f009dbe62f1f2f2cc59b3c2b81e2.00000100.html new file mode 100644 index 0000000..ce42d85 --- /dev/null +++ b/www/.content.EZtzwPjb/html/9d5a2823d830f009dbe62f1f2f2cc59b3c2b81e2.00000100.html @@ -0,0 +1,1369 @@ + + + + + + + + Réparations Samsung SyncMaster 2232BW – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        +

                        Allô docteur on a un problème,

                        +

                        En ce dimanche calme avant la fin de mes partiels, mon écran Samsung SyncMaster 2232BW commençait à faire des siennes. Celui-ci depuis un mois ou deux clignotait de façon systématique au démarrage, au début pendant seulement quelques secondes, puis au fur et à mesure, de plus en plus jusqu’à devoir attendre 10 minutes pour que je puisse l’utiliser. Après 3 ans et 4 mois de bons et loyaux services, il voulait me quitter. J’ai tenté le support Samsung par email avec peu d’espoir car l’écran a dépassé sa garantie de 4 mois (oui oui les bâtards -> obsolescence programmée). Et donc j’ai eu le droit à un joli mail automatique me disant de contacter un numéro non surtaxé (mais avec combien de temps d’attente ?), ce que je n’ai pas fait car je n’avais pas envie de passer 30min au téléphone pour au final avoir un « On est désolé mais on ne peut rien faire pour vous car la garantie est dépassée, mais on peut envoyer votre écran en SAV pour faire un devis pour seulement 50 boules ». Concernant le support email de Samsung France, je leur donne une note de 0/20 puisque ce n’est pas un support mais une redirection vers le téléphone.

                        +

                        +

                        Symptômes

                        +

                        Clignotements de l’écran et de la LED power systématiques à chaque démarrage de l’écran. Je me suis tout de suite douté d’un problème d’alimentation et après quelques recherches sur google, confirmation du problème sur beaucoup d’écrans et téléviseurs. Dans 99% des cas ce clignotement est dû à des condensateurs défectueux qu’il faut simplement changer :-D

                        +

                        Démontage

                        +

                        Donc après avoir cerné le problème, j’ai ouvert l’écran pour chercher les condos défectueux. J’ai trouvé une petite vidéo pour mon écran :

                        +

                        +

                        Voici quelques photos en plus pour vous aider :

                        +

                        Les outils que j’ai utilisé pour le démontage

                        +

                        Position des clips

                        +

                        Carte d’alimentation dans son emplacement

                        +

                        Et voici les condensateurs qui posent problèmes. Comme vous pouvez le voir sur la photo, ils sont très facilement identifiable car ils sont bombés sur le dessus.

                        +

                        Condensateurs défectueux

                        +

                        Vous devez donc acheter des condensateurs de remplacement, par exemple sur Conrad.

                        +

                        Mes condensateurs suivant étaient endommagés:

                        +
                          +
                        • 1 de 330uF 25V remplacé par un 470uF 25V
                        • +
                        • 3 de 820uF 25V remplacé par des 1000uF 50V
                        • +
                        +

                        Pour la réparation, il vous faut un fer à souder avec une panne pas trop grosse mais d’une grosse puissance car les soudures sont très solides (j’ai galéré avec un fer pro qui monte jusqu’à 400°).

                        +

                        Tout remarche nickel après remontage, plus de clignotement pour seulement quelques euros.

                        +

                        edit du 19 aout 2014 : j’ai trouvé le service manuel de l’écran si besoin samsung_2232bw_chassis_lpe22bs_sm

                        + + +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +

                        + 41 commentaires

                        +
                        + +
                        +
                        +
                        +
                        +

                        + c'est_moi + · 30 janvier 2012 à 18 h 57 min +

                        +

                        Mille mercis et mille félicitations pour cette fiche technique si pédagogue.

                        +

                        J’espère que le partiels se passent plus que parfait !!

                        +

                        J’ai gardé l’url de la page pour réparer mon écran dans un petit mois : j’espère que la page soit toujours là ;-)

                        +

                        Merci encore.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Maxime + · 5 mai 2012 à 12 h 31 min +

                        +

                        Bonjour HugoPoi!

                        +

                        Merci pour toutes vos infos et votre topic, je voulais avoir quelques précisions sur les condos à changer pour samsung 2232bw, je veux passer commande mais j’ai un problème avec les dimensions des condos, si vous pouvez m’informer de ce que je pourrais acheter car il y a trop de références. En vous remerciant A+ Maxime

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 14 juin 2012 à 22 h 56 min +

                          +

                          N’importe quel condensateur polarisé avec des caractéristiques proches devrait marché.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + gaubjezj + · 14 juin 2012 à 22 h 32 min +

                        +

                        Merci pour le tuto qui m’a bien aidé.
                        +J’ai utilisé un fer de 40 W avec une panne fine et
                        +une pompe à dessouder et j’ai retiré les condensateurs sans problème.
                        +Merci encore (3€40 pour le dépannage).

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + DragonTribal + · 2 juillet 2012 à 12 h 02 min +

                        +

                        super merci pour manifique tuto.
                        +Est-il possible de changer les 5 condensateurs 820uF 25V par des 1000uF 50V? car moi mes 5 condensateurs sont presque HS ;-)

                        +

                        Cordialement

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 2 juillet 2012 à 12 h 25 min +

                          +

                          Oui je penses que ça marchera étant donné que c’est des valeurs plus grandes.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + FRED + · 11 juillet 2012 à 19 h 11 min +

                        +

                        Bravo, MERCI.
                        +Je n’ai encore rien fait…mais j’ai le même problème, et tu me donnes la solution.
                        +Super.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + daninpet + · 31 août 2012 à 10 h 10 min +

                        +

                        Merci mille fois!

                        +

                        J’avais ce problème, et j’ai emmener la photo des trucs a remplacer chez le réparateur du coin et voila!! Ça m’a coûté 7 Euros (mais j’habite en Thaïlande)

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + moi + · 15 novembre 2012 à 15 h 25 min +

                        +

                        super mon 2232bw vient de lâcher, les 3 + 1 condos sont gonflés j ai trouvé un 330 en 35v qui traîné sur un écran mort et j’ai commander 5 1000uf 35v sur ebay pour moins de 3 dollars, ca devrait le faire j’espere j’attend d’être livré merci! par contre j’ai qu’un gros pistolet a soudure et un gros fil d’étain, c’est pas évident mais bon ca le fait quand même =)

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + moi + · 7 décembre 2012 à 9 h 33 min +

                          +

                          parfait je vient de recevoir les condos; j ai meuler la panne du fer a souder pour la tailler en mine de crayon et j ai reussi a les souder facilement ils étaient un peu plus gros mais ca passe tout juste, mais attention ne pas prendre des plus gros! l écran fonctionne nickel maintenant.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Croco + · 19 janvier 2013 à 18 h 39 min +

                        +

                        Je souhaiterai savoir si tu as utilisé un fer à souder bien précis étant donné que la carte est une multi couche.
                        +Merci

                        + +
                        +
                        + + +
                        + +
                        +
                        +
                        +
                        +

                        + momo + · 10 juin 2013 à 13 h 15 min +

                        +

                        slut je voudrai savoir ou trouvé les condansateur a changer sur mon ecran qui clignote

                        + +
                        +
                        + + +
                        + +
                        +
                        +
                        +
                        +

                        + lokmane + · 5 juillet 2013 à 16 h 08 min +

                        +

                        merci j’avais un ecran rouge ! et c’etais la tresse qui relie mon ecran votre page m’a aider a l’ouvrir et a le reparer merci bien

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + ML + · 21 août 2013 à 19 h 11 min +

                        +

                        Merci ! Ecran réparé. Halte à l’obsolescence programmée.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + raymond + · 31 octobre 2013 à 13 h 20 min +

                        +

                        ai vu votre vidéo et les explications pour la reparation de mon écran , apparemment le méme probléme l écran passe au noir apres quelque seconde , j ai vu un le condensateur en bas a gauche gonflé , je l ai fait changé (10€) les autre condensateur étant toujour bon d après la personne qui me l a changé , mais j ai toujour le méme probléme cela peut il venir de la carte video a gauche ?

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 20 décembre 2013 à 12 h 27 min +

                          +

                          Si la led bleu du bouton power s’éteint aussi c’est un problème d’alimentation sinon c’est plus compliqué et ça peut provenir de condensateurs sur la partie vidéo. Changé tous les plus gros condensateurs sur la partie alimentation pourrait être un bon début même si ils ne paraissent pas endommagé.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + damien + · 4 novembre 2013 à 0 h 29 min +

                        +

                        bonjour,

                        +

                        j’ai des crasses coincées entres l’écran et le truc juste derrière, est ce qu’on sais les enlever en démontant la dalle ?

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 20 décembre 2013 à 12 h 28 min +

                          +

                          Je ne sais si cette partie de la dalle est démontable, je penses que c’est collé mais vous pouvez essayer.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + mac + · 1 décembre 2013 à 17 h 30 min +

                        +

                        Merci HugoPoi, avec ces excellents conseils et tuto vidéo, mon écran est reparti pour une nouvelle vie.
                        +Pour les composants, si vous êtes sur Paris ou proche. La boutique RAM électroniques est une bonne adresse, 138 bd Diderot 75012 Paris (Place de la Nation).

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Bouddhid + · 16 janvier 2014 à 19 h 21 min +

                        +

                        Merci beaucoup pour ces conseils ! J’étais à 2 doigts de jeter mon écran, le voilà comme neuf pour moins de 5€ ! Vive la bricole !

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Vincent + · 17 mai 2014 à 16 h 45 min +

                        +

                        Alors là merci.

                        +

                        Pour ce post, les photos, la vidéo, tout y est.

                        +

                        J’ai démonté l’écran assez vite, enlevé la carte, regarder quel condensateurs étaient gonflés,(il y en avaient 4), un magasin d’électronique sur lyon et une heure de démontage, soudure, remontage plus tard, voilà, c’est tout beau.
                        +Ca ne clignote plus, ça s’allume comme avant, comme neuf.

                        +

                        Et dire que j’allais jeter cet écran et claquer 350 euros pour un neuf…

                        +

                        Coût de l’opération pour 4 condensateurs, du fil d’étain 7 euros.

                        +

                        Je précise que je n’avais jamais fais de soudure sur composant électronique auparavant.
                        +Comme quoi cette opération de réparation est à la portée de tous.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Julot + · 6 juillet 2014 à 13 h 49 min +

                        +

                        Site vraiment détaillé et très claire. J’ai pu dépanner mon écran avec succès. Merci beaucoup pour ces précieuses explications.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + PaniK31 + · 29 juillet 2014 à 9 h 21 min +

                        +

                        Pas besoin d’une grosse puissance pour le fer, il faut au préalable gratter le vernis sur l’étain afin de pouvoir le faire fondre plus facilement

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + R211_IP-45130B + · 20 août 2014 à 14 h 04 min +

                        +

                        Bonjour à tous,

                        +

                        Une âme charitable peut-elle me communiquer ce qui est gravé sur la résistance CMS R211 de la carte d’alimentation/inverter IP-45130B qui équipe le SAMSUNG 2232BW ? Cette résistance a pris un coup de tournevis et je n’arrive pas à déterminer sa valeur de résistance car son marquage est effacé et comme le composant est abimé la mesure à l’ohmmètre indique l’infinie.

                        +

                        Merci par avance.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + roger + · 24 octobre 2014 à 17 h 21 min +

                        +

                        Ca refonctionne après échange de 4 condensateurs :
                        +-un 330uf25v remplacé à l’identique.
                        +-trois 820uf25v remplacés par 1000uf25v.
                        +Le tout pour quelques €. Le plus dur était le dessoudage, la tresse n’était pas très efficace contrairement à la pompe.
                        +Grand merci à HugoPoi.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Max + · 26 février 2015 à 16 h 28 min +

                        +

                        ENORME MERCI!! J’ai réparé mon écran en 20mn pour 3,50€, il était à 2 doigts de partir à la déchetterie. Ca faisait des mois qu’il clignotait, et l’allumage mettait parfois plus d’une demi heure. J’ai changé 5 condos 820uf25v et 1 330uf25v, par exactement les mêmes en neuf, et là il démarre au quart de tour! Ca fait plaisir! :)

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + rocco michelle + · 7 octobre 2015 à 10 h 16 min +

                          +

                          Bonjour je ne sais si vous verrez mon message mais je tente…je cherche quelqu’un qui accepterait de changer mes condensateurs sur mon samsung, les réparateurs me demandent 70 à 80 euros et encore ils n’ont pss envie de le faire et me disent d’acheter un nouvel écran. j’aurais bien tenter mais je n’ai pas de matériel et j’ai lu que les condo pouvaient être très dangereux s’ils avaient de la charge alors j’ai la trouille de bidouiller pq je n’y connais rien. si vous êtes de lyon acccepteriez vous de changer mes condensateurs pour 45 euros? merci de votre réponse.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + lecakeseb + · 27 juillet 2015 à 15 h 26 min +

                        +

                        Bonjour,

                        +

                        J’ai utilisé la vidéo pour démonter mon écran afin de le nettoyer de 4 bêtes d’orage infiltrés entre le premier écran (noir) et la dalle (blanche) de mon samsung SyncMaster 2232W

                        +

                        Petits conseils afin de modérer ce que j’ai pu voir dans cette vidéo :

                        +

                        0 : aspirez, nettoyez l’extérieur de l’écran avant de l’ouvrir et nettoyez la table qui vous servira d’atelier, pour éviter les poussières qui s’infiltreront forcément plus tard si vous ne le faites pas…
                        +1 : pour ouvrir, utilisez plutôt un couteau à enduire pour la première partie (le cadre). Vous n’abîmerez ainsi pas du tout l’écran. Soyez patients, ne forcez pas ! ça viendra doucement, mais ça viendra. Il m’a fallu à peine 10 minutes, sans détériorer l’écran, sans le griffer… Il est encore nickel !
                        +2 : attention à ne pas déconnecter les fils reliant le cadre à la carte. Inutile pour simplement nettoyer l’écran.
                        +3 : pour séparer les deux éléments de la dalle entre lesquels les bêtes se sont infiltrées, les doigts suffisent, pas besoin d’outils qui viendraient les endommager. La dalle blanche reste à l’horizontale, l’écran noir sera tenu à la verticale.
                        +4 : utiliser un chiffon doux ne peluchant pas pour enlever les bêtes (faites-vous aider de quelqu’un qui les enlèvera pendant que vous tenez l’écran extérieur en position verticale).
                        +5 : repositionnez la colle d’étanchéité qui aurait pu se déplacer, avant de repositionner les deux écrans.
                        +6 : commencer par refermer par le bas de l’écran (sinon les éléments de réglage situés au bas de l’écran – luminosité, contraste,…- ne se replaceront pas correctement).
                        +7 : Une fois l’écran refermé, j’ai appliqué un peu de « barrage aux insectes », avec un chiffon à l’arrière de mon écran en insistant surtout sur les bouches d’aération par lesquelles les maudites bestioles ont du s’infiltrer. En espérant ne pas avoir à ouvrir !

                        +

                        Bon courage à vous !

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Michel Jousserandot + · 20 janvier 2017 à 20 h 41 min +

                        +

                        Merci pour les conseils au démontage.
                        +J’avais un problème un peu différent :l’écran ne s’allumait plus du tout. Avec un copain beaucoup plus malin que moi, on a détecté 2 fusibles dont l’un était fichu. On l’a remplacé par un petit fil de cuivre. Et tout a remarché comme avant.
                        +Il faut surtout faire attention quand on teste la partie haute tension
                        +Michel.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Crec + · 14 juillet 2017 à 10 h 20 min +

                        +

                        Bonjour. Très bons conseils avertis. Merci beaucoup.
                        +Peut-on avoir les mêmes conseils pour un écran BX2250.
                        +Merci par avance.
                        +Crec

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 6 août 2017 à 14 h 03 min +

                          +

                          J’ai pas de BX2250 donc dans le détails non mais si c’est les même symptômes ça doit la même procédure.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Ferronnier + · 10 août 2017 à 17 h 42 min +

                        +

                        Un grand merci !
                        +J’ai changé tous les condensateurs de la partie alimentation de la carte, en déportant certains qui n’avaient pas le même format qu’à l’origine, et ça tourne nickel !

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Nours + · 1 décembre 2017 à 15 h 17 min +

                        +

                        Ca fait des années que j’ai cet article enregistré dans un coin, en nourrissant l’espoir d’avoir un jour le courage de réparer ce foutu écran… Après plus de cinq ans c’est chose faite \o/
                        +Un giga, hypra, immense merci pour ce tutoriel tellement bien expliqué et facile d’accès (je n’avais pas touché à un fer à souder depuis… Oh boy 15 ans déjà).
                        +Après une longue pause, l’écran reprend du service… Jusqu’à la prochaine panne /o/

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Alex + · 11 août 2018 à 13 h 28 min +

                        +

                        Quelqu’un sait qui pourrait me le faire svp j ai le même problème mais aucun matériel

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + David + · 5 février 2019 à 21 h 06 min +

                        +

                        Merci Hugo pour ce tuto qui m’a déjà servi en 2013 et qui va me resservir aujourd’hui car mon 2ème 2232bw commence à avoir les mêmes symptômes.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + yvan + · 23 novembre 2019 à 17 h 14 min +

                        +

                        Bonjour
                        +j’ai tenté de changer le condensateur qui avait l’air naze mais ça n’a pas marché … toujours le bouton bleu allumé, l’écran est reconnu par Windows 10 même si l’écran est éteint
                        +grâce au service manuel de l’écran fourni plus haut, j’ai vérifié les tensions jusque sur la carte de la dalle et elles sont correctes, ainsi que sur la carte elle-même, tout est ok, donc je pense que ce n’est plus un problème de condensateur
                        +pour les fusibles, ils ressemblent plutôt à des composants qu’à de simple fusibles, mais comme j’ai les bonnes tension, je ne pense pas que ça vienne de là
                        +j’ai bien peur que ce soit la dalle qui soit naze ? quelqu’un a t il des idées supplémentaires avant que je le jette avec grand regret (c’est un 2032bw, mais c’est la même chose, même si ma carte électronique est un peu différente car plus récente
                        +merci d’avance pour vos conseils

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + yvan + · 24 novembre 2019 à 17 h 26 min +

                        +

                        finalement j’ai trouvé, c’est un petit fusible vert qui ressemble à une résistance mais tout vert avec écrit 4A LF qui assure l’alimentation de la dalle.
                        +En le shuntant, mon écran a retrouvé l’image.
                        +après enquête il s’agit d’un fusible pico de 4ampères de chez little fuse, pas du tout évident à trouver
                        +Résolu !

                        + +
                        +
                        + +
                        +
                        +

                        + Reflow Dell 1546 | HugoPoi + · 22 août 2016 à 16 h 09 min +

                        +

                        […] « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable de marque Dell un 1546 pour être précis. Encore […]

                        + +
                        +
                        + +
                        +
                        +

                        + Reflow Dell Inspiron 1546 – HugoPoi + · 23 juin 2017 à 23 h 18 min +

                        +

                        […] d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un […]

                        + +
                        +
                        + +
                        +
                        +
                        +

                        Laisser un commentaire

                        Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                        +
                        +
                        +

                        + +

                        +
                        +
                        +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        + + +
                        + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/9dbbff7085948cda41e1affc65de194d06cb49d9.00001271.json b/www/.content.EZtzwPjb/html/9dbbff7085948cda41e1affc65de194d06cb49d9.00001271.json new file mode 100644 index 0000000..7239cdd --- /dev/null +++ b/www/.content.EZtzwPjb/html/9dbbff7085948cda41e1affc65de194d06cb49d9.00001271.json @@ -0,0 +1 @@ +{"version":"1.0","provider_name":"HugoPoi","provider_url":"http:\/\/blog.hugopoi.net","author_name":"HugoPoi","author_url":"http:\/\/blog.hugopoi.net\/author\/hugopoi\/","title":"Sapin de no\u00ebl","type":"rich","width":600,"height":338,"html":"
                        Sapin de no\u00ebl<\/a><\/blockquote>\n + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        + +
                        +
                        + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/9e5d9670585cde29209a55d2fa094e0e25ae3105.00000327.html b/www/.content.EZtzwPjb/html/9e5d9670585cde29209a55d2fa094e0e25ae3105.00000327.html new file mode 100644 index 0000000..7221abf --- /dev/null +++ b/www/.content.EZtzwPjb/html/9e5d9670585cde29209a55d2fa094e0e25ae3105.00000327.html @@ -0,0 +1,409 @@ + + + + + + + HugoPoi – Page 3 – Internet, Hardware et Bidouille + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +

                        Pourquoi je suis sous Linux bordel !

                        Début d’année 2017, 6 mois que j’ai pas écrit sur le blog ! Cette année j’ai pris une résolution un choix de merde je n’installerais plus Windaube que se soit pour moi ou pour la dépanne, les amis, la famille, mon chat … Bref pendant les fêtes j’avais de la maintenance à faire comme d’habitude fallait faire une réinstallation pour la famille « met moi Windows 7 ça me suffit et au moins il y tout qui marche dessus » ça faisait environ plus 1 an que j’avais pas installé de windaube. Je me dit que ça va me prendre une petite demi journée. J’ai mis plus d’une journée si on compte le temps de faire les mises à jour. (suite…)

                        +
                        Par HugoPoi, il y a

                        Reflow Dell Inspiron 1546

                        +
                        Les choses n’ont pas beaucoup changé en terme d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un cadeau empoisonné de la belle-famille « Essaye de faire ce que tu peux pour récupérer mes photos, j’en rachèterais un ». Le pc portable en question était dans un état de mort certain.
                        + (suite…)
                        +
                        +
                        Par HugoPoi, il y a

                        Test et démontage d’un Sony Multi Flip 15 SVF15N1C5E

                        Longtemps que je n’avais pas posté ici, mais la je suis en vacances donc j’ai le temps. Voici donc mes retours sur ce pc portable Sony un peu atypique. J’ai choisit cette machine sur plusieurs critères qui m’avait convaincu pour les usages de ma chérie (c’est sa machine), elle fait du dessin vectoriel et de la retouche d’images principalement.
                        + (suite…)

                        +
                        Par HugoPoi, il y a

                        Écran miraculé d’un Asus N53SN

                        Comme d’habitude tantine vient me voir pour me dire que son écran d’ordinateur ne marche plus. Le pc portable, un Asus N53SN d’un plus de 2 ans de services, présente un écran noir complètement éteint mais le portable fonctionne parfaitement sur un écran externe. Ni une ni deux je commence par démonter la bête pour récupérer la référence exacte du moniteur.

                        +

                        asusn53sn_open_lcd_front (suite…)

                        +
                        Par HugoPoi, il y a

                        Installer Mac OS X Mavericks avec VirtualBox

                        Capture Installation Mac OS X MavericksComme Apple c’est des blaireaux et que j’avais besoin d’un environnement de développement pour iDaube. J’ai du me résoudre à installer un Mac OS X dans une machine virtuel.

                        +

                        Ce dont vous avez besoin :

                        + +

                        Moi je travail sous Linux Mint mais vous devriez réussir à faire les manipulations sous Windaube. (suite…)

                        +
                        Par HugoPoi, il y a
                        +
                        +
                        + +
                        +
                        +
                        +
                        + +
                        +
                        + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/9ee060f43ecf23cba6237a6b8e953be5945c85e1.00000584.js b/www/.content.EZtzwPjb/html/9ee060f43ecf23cba6237a6b8e953be5945c85e1.00000584.js new file mode 100644 index 0000000..594e77c --- /dev/null +++ b/www/.content.EZtzwPjb/html/9ee060f43ecf23cba6237a6b8e953be5945c85e1.00000584.js @@ -0,0 +1,7 @@ +/* +* jQuery Form Plugin; v20131121 +* http://jquery.malsup.com/form/ +* Copyright (c) 2013 M. Alsup; Dual licensed: MIT/GPL +* https://github.com/malsup/form#copyright-and-license +*/ +;(function(e){"function"==typeof define&&define.amd?define(["jquery"],e):e("undefined"!=typeof jQuery?jQuery:window.Zepto)})(function(e){"use strict";function t(t){var r=t.data;t.isDefaultPrevented()||(t.preventDefault(),e(t.target).ajaxSubmit(r))}function r(t){var r=t.target,a=e(r);if(!a.is("[type=submit],[type=image]")){var n=a.closest("[type=submit]");if(0===n.length)return;r=n[0]}var i=this;if(i.clk=r,"image"==r.type)if(void 0!==t.offsetX)i.clk_x=t.offsetX,i.clk_y=t.offsetY;else if("function"==typeof e.fn.offset){var o=a.offset();i.clk_x=t.pageX-o.left,i.clk_y=t.pageY-o.top}else i.clk_x=t.pageX-r.offsetLeft,i.clk_y=t.pageY-r.offsetTop;setTimeout(function(){i.clk=i.clk_x=i.clk_y=null},100)}function a(){if(e.fn.ajaxSubmit.debug){var t="[jquery.form] "+Array.prototype.join.call(arguments,"");window.console&&window.console.log?window.console.log(t):window.opera&&window.opera.postError&&window.opera.postError(t)}}var n={};n.fileapi=void 0!==e("").get(0).files,n.formdata=void 0!==window.FormData;var i=!!e.fn.prop;e.fn.attr2=function(){if(!i)return this.attr.apply(this,arguments);var e=this.prop.apply(this,arguments);return e&&e.jquery||"string"==typeof e?e:this.attr.apply(this,arguments)},e.fn.ajaxSubmit=function(t){function r(r){var a,n,i=e.param(r,t.traditional).split("&"),o=i.length,s=[];for(a=0;o>a;a++)i[a]=i[a].replace(/\+/g," "),n=i[a].split("="),s.push([decodeURIComponent(n[0]),decodeURIComponent(n[1])]);return s}function o(a){for(var n=new FormData,i=0;a.length>i;i++)n.append(a[i].name,a[i].value);if(t.extraData){var o=r(t.extraData);for(i=0;o.length>i;i++)o[i]&&n.append(o[i][0],o[i][1])}t.data=null;var s=e.extend(!0,{},e.ajaxSettings,t,{contentType:!1,processData:!1,cache:!1,type:u||"POST"});t.uploadProgress&&(s.xhr=function(){var r=e.ajaxSettings.xhr();return r.upload&&r.upload.addEventListener("progress",function(e){var r=0,a=e.loaded||e.position,n=e.total;e.lengthComputable&&(r=Math.ceil(100*(a/n))),t.uploadProgress(e,a,n,r)},!1),r}),s.data=null;var c=s.beforeSend;return s.beforeSend=function(e,r){r.data=t.formData?t.formData:n,c&&c.call(this,e,r)},e.ajax(s)}function s(r){function n(e){var t=null;try{e.contentWindow&&(t=e.contentWindow.document)}catch(r){a("cannot get iframe.contentWindow document: "+r)}if(t)return t;try{t=e.contentDocument?e.contentDocument:e.document}catch(r){a("cannot get iframe.contentDocument: "+r),t=e.document}return t}function o(){function t(){try{var e=n(g).readyState;a("state = "+e),e&&"uninitialized"==e.toLowerCase()&&setTimeout(t,50)}catch(r){a("Server abort: ",r," (",r.name,")"),s(k),j&&clearTimeout(j),j=void 0}}var r=f.attr2("target"),i=f.attr2("action");w.setAttribute("target",p),(!u||/post/i.test(u))&&w.setAttribute("method","POST"),i!=m.url&&w.setAttribute("action",m.url),m.skipEncodingOverride||u&&!/post/i.test(u)||f.attr({encoding:"multipart/form-data",enctype:"multipart/form-data"}),m.timeout&&(j=setTimeout(function(){T=!0,s(D)},m.timeout));var o=[];try{if(m.extraData)for(var c in m.extraData)m.extraData.hasOwnProperty(c)&&(e.isPlainObject(m.extraData[c])&&m.extraData[c].hasOwnProperty("name")&&m.extraData[c].hasOwnProperty("value")?o.push(e('').val(m.extraData[c].value).appendTo(w)[0]):o.push(e('').val(m.extraData[c]).appendTo(w)[0]));m.iframeTarget||v.appendTo("body"),g.attachEvent?g.attachEvent("onload",s):g.addEventListener("load",s,!1),setTimeout(t,15);try{w.submit()}catch(l){var d=document.createElement("form").submit;d.apply(w)}}finally{w.setAttribute("action",i),r?w.setAttribute("target",r):f.removeAttr("target"),e(o).remove()}}function s(t){if(!x.aborted&&!F){if(M=n(g),M||(a("cannot access response document"),t=k),t===D&&x)return x.abort("timeout"),S.reject(x,"timeout"),void 0;if(t==k&&x)return x.abort("server abort"),S.reject(x,"error","server abort"),void 0;if(M&&M.location.href!=m.iframeSrc||T){g.detachEvent?g.detachEvent("onload",s):g.removeEventListener("load",s,!1);var r,i="success";try{if(T)throw"timeout";var o="xml"==m.dataType||M.XMLDocument||e.isXMLDoc(M);if(a("isXml="+o),!o&&window.opera&&(null===M.body||!M.body.innerHTML)&&--O)return a("requeing onLoad callback, DOM not available"),setTimeout(s,250),void 0;var u=M.body?M.body:M.documentElement;x.responseText=u?u.innerHTML:null,x.responseXML=M.XMLDocument?M.XMLDocument:M,o&&(m.dataType="xml"),x.getResponseHeader=function(e){var t={"content-type":m.dataType};return t[e.toLowerCase()]},u&&(x.status=Number(u.getAttribute("status"))||x.status,x.statusText=u.getAttribute("statusText")||x.statusText);var c=(m.dataType||"").toLowerCase(),l=/(json|script|text)/.test(c);if(l||m.textarea){var f=M.getElementsByTagName("textarea")[0];if(f)x.responseText=f.value,x.status=Number(f.getAttribute("status"))||x.status,x.statusText=f.getAttribute("statusText")||x.statusText;else if(l){var p=M.getElementsByTagName("pre")[0],h=M.getElementsByTagName("body")[0];p?x.responseText=p.textContent?p.textContent:p.innerText:h&&(x.responseText=h.textContent?h.textContent:h.innerText)}}else"xml"==c&&!x.responseXML&&x.responseText&&(x.responseXML=X(x.responseText));try{E=_(x,c,m)}catch(b){i="parsererror",x.error=r=b||i}}catch(b){a("error caught: ",b),i="error",x.error=r=b||i}x.aborted&&(a("upload aborted"),i=null),x.status&&(i=x.status>=200&&300>x.status||304===x.status?"success":"error"),"success"===i?(m.success&&m.success.call(m.context,E,"success",x),S.resolve(x.responseText,"success",x),d&&e.event.trigger("ajaxSuccess",[x,m])):i&&(void 0===r&&(r=x.statusText),m.error&&m.error.call(m.context,x,i,r),S.reject(x,"error",r),d&&e.event.trigger("ajaxError",[x,m,r])),d&&e.event.trigger("ajaxComplete",[x,m]),d&&!--e.active&&e.event.trigger("ajaxStop"),m.complete&&m.complete.call(m.context,x,i),F=!0,m.timeout&&clearTimeout(j),setTimeout(function(){m.iframeTarget?v.attr("src",m.iframeSrc):v.remove(),x.responseXML=null},100)}}}var c,l,m,d,p,v,g,x,b,y,T,j,w=f[0],S=e.Deferred();if(S.abort=function(e){x.abort(e)},r)for(l=0;h.length>l;l++)c=e(h[l]),i?c.prop("disabled",!1):c.removeAttr("disabled");if(m=e.extend(!0,{},e.ajaxSettings,t),m.context=m.context||m,p="jqFormIO"+(new Date).getTime(),m.iframeTarget?(v=e(m.iframeTarget),y=v.attr2("name"),y?p=y:v.attr2("name",p)):(v=e('

                        +

                        Symptômes

                        +

                        Clignotements de l’écran et de la LED power systématiques à chaque démarrage de l’écran. Je me suis tout de suite douté d’un problème d’alimentation et après quelques recherches sur google, confirmation du problème sur beaucoup d’écrans et téléviseurs. Dans 99% des cas ce clignotement est dû à des condensateurs défectueux qu’il faut simplement changer :-D

                        +

                        Démontage

                        +

                        Donc après avoir cerné le problème, j’ai ouvert l’écran pour chercher les condos défectueux. J’ai trouvé une petite vidéo pour mon écran :

                        +

                        +

                        Voici quelques photos en plus pour vous aider :

                        +

                        Les outils que j’ai utilisé pour le démontage

                        +

                        Position des clips

                        +

                        Carte d’alimentation dans son emplacement

                        +

                        Et voici les condensateurs qui posent problèmes. Comme vous pouvez le voir sur la photo, ils sont très facilement identifiable car ils sont bombés sur le dessus.

                        +

                        Condensateurs défectueux

                        +

                        Vous devez donc acheter des condensateurs de remplacement, par exemple sur Conrad.

                        +

                        Mes condensateurs suivant étaient endommagés:

                        +
                          +
                        • 1 de 330uF 25V remplacé par un 470uF 25V
                        • +
                        • 3 de 820uF 25V remplacé par des 1000uF 50V
                        • +
                        +

                        Pour la réparation, il vous faut un fer à souder avec une panne pas trop grosse mais d’une grosse puissance car les soudures sont très solides (j’ai galéré avec un fer pro qui monte jusqu’à 400°).

                        +

                        Tout remarche nickel après remontage, plus de clignotement pour seulement quelques euros.

                        +

                        edit du 19 aout 2014 : j’ai trouvé le service manuel de l’écran si besoin samsung_2232bw_chassis_lpe22bs_sm

                        + + +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +

                        + 41 commentaires

                        +
                        + +
                        +
                        +
                        +
                        +

                        + c'est_moi + · 30 janvier 2012 à 18 h 57 min +

                        +

                        Mille mercis et mille félicitations pour cette fiche technique si pédagogue.

                        +

                        J’espère que le partiels se passent plus que parfait !!

                        +

                        J’ai gardé l’url de la page pour réparer mon écran dans un petit mois : j’espère que la page soit toujours là ;-)

                        +

                        Merci encore.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Maxime + · 5 mai 2012 à 12 h 31 min +

                        +

                        Bonjour HugoPoi!

                        +

                        Merci pour toutes vos infos et votre topic, je voulais avoir quelques précisions sur les condos à changer pour samsung 2232bw, je veux passer commande mais j’ai un problème avec les dimensions des condos, si vous pouvez m’informer de ce que je pourrais acheter car il y a trop de références. En vous remerciant A+ Maxime

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 14 juin 2012 à 22 h 56 min +

                          +

                          N’importe quel condensateur polarisé avec des caractéristiques proches devrait marché.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + gaubjezj + · 14 juin 2012 à 22 h 32 min +

                        +

                        Merci pour le tuto qui m’a bien aidé.
                        +J’ai utilisé un fer de 40 W avec une panne fine et
                        +une pompe à dessouder et j’ai retiré les condensateurs sans problème.
                        +Merci encore (3€40 pour le dépannage).

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + DragonTribal + · 2 juillet 2012 à 12 h 02 min +

                        +

                        super merci pour manifique tuto.
                        +Est-il possible de changer les 5 condensateurs 820uF 25V par des 1000uF 50V? car moi mes 5 condensateurs sont presque HS ;-)

                        +

                        Cordialement

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 2 juillet 2012 à 12 h 25 min +

                          +

                          Oui je penses que ça marchera étant donné que c’est des valeurs plus grandes.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + FRED + · 11 juillet 2012 à 19 h 11 min +

                        +

                        Bravo, MERCI.
                        +Je n’ai encore rien fait…mais j’ai le même problème, et tu me donnes la solution.
                        +Super.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + daninpet + · 31 août 2012 à 10 h 10 min +

                        +

                        Merci mille fois!

                        +

                        J’avais ce problème, et j’ai emmener la photo des trucs a remplacer chez le réparateur du coin et voila!! Ça m’a coûté 7 Euros (mais j’habite en Thaïlande)

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + moi + · 15 novembre 2012 à 15 h 25 min +

                        +

                        super mon 2232bw vient de lâcher, les 3 + 1 condos sont gonflés j ai trouvé un 330 en 35v qui traîné sur un écran mort et j’ai commander 5 1000uf 35v sur ebay pour moins de 3 dollars, ca devrait le faire j’espere j’attend d’être livré merci! par contre j’ai qu’un gros pistolet a soudure et un gros fil d’étain, c’est pas évident mais bon ca le fait quand même =)

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + moi + · 7 décembre 2012 à 9 h 33 min +

                          +

                          parfait je vient de recevoir les condos; j ai meuler la panne du fer a souder pour la tailler en mine de crayon et j ai reussi a les souder facilement ils étaient un peu plus gros mais ca passe tout juste, mais attention ne pas prendre des plus gros! l écran fonctionne nickel maintenant.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Croco + · 19 janvier 2013 à 18 h 39 min +

                        +

                        Je souhaiterai savoir si tu as utilisé un fer à souder bien précis étant donné que la carte est une multi couche.
                        +Merci

                        + +
                        +
                        + + +
                        + +
                        +
                        +
                        +
                        +

                        + momo + · 10 juin 2013 à 13 h 15 min +

                        +

                        slut je voudrai savoir ou trouvé les condansateur a changer sur mon ecran qui clignote

                        + +
                        +
                        + + +
                        + +
                        +
                        +
                        +
                        +

                        + lokmane + · 5 juillet 2013 à 16 h 08 min +

                        +

                        merci j’avais un ecran rouge ! et c’etais la tresse qui relie mon ecran votre page m’a aider a l’ouvrir et a le reparer merci bien

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + ML + · 21 août 2013 à 19 h 11 min +

                        +

                        Merci ! Ecran réparé. Halte à l’obsolescence programmée.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + raymond + · 31 octobre 2013 à 13 h 20 min +

                        +

                        ai vu votre vidéo et les explications pour la reparation de mon écran , apparemment le méme probléme l écran passe au noir apres quelque seconde , j ai vu un le condensateur en bas a gauche gonflé , je l ai fait changé (10€) les autre condensateur étant toujour bon d après la personne qui me l a changé , mais j ai toujour le méme probléme cela peut il venir de la carte video a gauche ?

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 20 décembre 2013 à 12 h 27 min +

                          +

                          Si la led bleu du bouton power s’éteint aussi c’est un problème d’alimentation sinon c’est plus compliqué et ça peut provenir de condensateurs sur la partie vidéo. Changé tous les plus gros condensateurs sur la partie alimentation pourrait être un bon début même si ils ne paraissent pas endommagé.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + damien + · 4 novembre 2013 à 0 h 29 min +

                        +

                        bonjour,

                        +

                        j’ai des crasses coincées entres l’écran et le truc juste derrière, est ce qu’on sais les enlever en démontant la dalle ?

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 20 décembre 2013 à 12 h 28 min +

                          +

                          Je ne sais si cette partie de la dalle est démontable, je penses que c’est collé mais vous pouvez essayer.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + mac + · 1 décembre 2013 à 17 h 30 min +

                        +

                        Merci HugoPoi, avec ces excellents conseils et tuto vidéo, mon écran est reparti pour une nouvelle vie.
                        +Pour les composants, si vous êtes sur Paris ou proche. La boutique RAM électroniques est une bonne adresse, 138 bd Diderot 75012 Paris (Place de la Nation).

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Bouddhid + · 16 janvier 2014 à 19 h 21 min +

                        +

                        Merci beaucoup pour ces conseils ! J’étais à 2 doigts de jeter mon écran, le voilà comme neuf pour moins de 5€ ! Vive la bricole !

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Vincent + · 17 mai 2014 à 16 h 45 min +

                        +

                        Alors là merci.

                        +

                        Pour ce post, les photos, la vidéo, tout y est.

                        +

                        J’ai démonté l’écran assez vite, enlevé la carte, regarder quel condensateurs étaient gonflés,(il y en avaient 4), un magasin d’électronique sur lyon et une heure de démontage, soudure, remontage plus tard, voilà, c’est tout beau.
                        +Ca ne clignote plus, ça s’allume comme avant, comme neuf.

                        +

                        Et dire que j’allais jeter cet écran et claquer 350 euros pour un neuf…

                        +

                        Coût de l’opération pour 4 condensateurs, du fil d’étain 7 euros.

                        +

                        Je précise que je n’avais jamais fais de soudure sur composant électronique auparavant.
                        +Comme quoi cette opération de réparation est à la portée de tous.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Julot + · 6 juillet 2014 à 13 h 49 min +

                        +

                        Site vraiment détaillé et très claire. J’ai pu dépanner mon écran avec succès. Merci beaucoup pour ces précieuses explications.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + PaniK31 + · 29 juillet 2014 à 9 h 21 min +

                        +

                        Pas besoin d’une grosse puissance pour le fer, il faut au préalable gratter le vernis sur l’étain afin de pouvoir le faire fondre plus facilement

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + R211_IP-45130B + · 20 août 2014 à 14 h 04 min +

                        +

                        Bonjour à tous,

                        +

                        Une âme charitable peut-elle me communiquer ce qui est gravé sur la résistance CMS R211 de la carte d’alimentation/inverter IP-45130B qui équipe le SAMSUNG 2232BW ? Cette résistance a pris un coup de tournevis et je n’arrive pas à déterminer sa valeur de résistance car son marquage est effacé et comme le composant est abimé la mesure à l’ohmmètre indique l’infinie.

                        +

                        Merci par avance.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + roger + · 24 octobre 2014 à 17 h 21 min +

                        +

                        Ca refonctionne après échange de 4 condensateurs :
                        +-un 330uf25v remplacé à l’identique.
                        +-trois 820uf25v remplacés par 1000uf25v.
                        +Le tout pour quelques €. Le plus dur était le dessoudage, la tresse n’était pas très efficace contrairement à la pompe.
                        +Grand merci à HugoPoi.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Max + · 26 février 2015 à 16 h 28 min +

                        +

                        ENORME MERCI!! J’ai réparé mon écran en 20mn pour 3,50€, il était à 2 doigts de partir à la déchetterie. Ca faisait des mois qu’il clignotait, et l’allumage mettait parfois plus d’une demi heure. J’ai changé 5 condos 820uf25v et 1 330uf25v, par exactement les mêmes en neuf, et là il démarre au quart de tour! Ca fait plaisir! :)

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + rocco michelle + · 7 octobre 2015 à 10 h 16 min +

                          +

                          Bonjour je ne sais si vous verrez mon message mais je tente…je cherche quelqu’un qui accepterait de changer mes condensateurs sur mon samsung, les réparateurs me demandent 70 à 80 euros et encore ils n’ont pss envie de le faire et me disent d’acheter un nouvel écran. j’aurais bien tenter mais je n’ai pas de matériel et j’ai lu que les condo pouvaient être très dangereux s’ils avaient de la charge alors j’ai la trouille de bidouiller pq je n’y connais rien. si vous êtes de lyon acccepteriez vous de changer mes condensateurs pour 45 euros? merci de votre réponse.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + lecakeseb + · 27 juillet 2015 à 15 h 26 min +

                        +

                        Bonjour,

                        +

                        J’ai utilisé la vidéo pour démonter mon écran afin de le nettoyer de 4 bêtes d’orage infiltrés entre le premier écran (noir) et la dalle (blanche) de mon samsung SyncMaster 2232W

                        +

                        Petits conseils afin de modérer ce que j’ai pu voir dans cette vidéo :

                        +

                        0 : aspirez, nettoyez l’extérieur de l’écran avant de l’ouvrir et nettoyez la table qui vous servira d’atelier, pour éviter les poussières qui s’infiltreront forcément plus tard si vous ne le faites pas…
                        +1 : pour ouvrir, utilisez plutôt un couteau à enduire pour la première partie (le cadre). Vous n’abîmerez ainsi pas du tout l’écran. Soyez patients, ne forcez pas ! ça viendra doucement, mais ça viendra. Il m’a fallu à peine 10 minutes, sans détériorer l’écran, sans le griffer… Il est encore nickel !
                        +2 : attention à ne pas déconnecter les fils reliant le cadre à la carte. Inutile pour simplement nettoyer l’écran.
                        +3 : pour séparer les deux éléments de la dalle entre lesquels les bêtes se sont infiltrées, les doigts suffisent, pas besoin d’outils qui viendraient les endommager. La dalle blanche reste à l’horizontale, l’écran noir sera tenu à la verticale.
                        +4 : utiliser un chiffon doux ne peluchant pas pour enlever les bêtes (faites-vous aider de quelqu’un qui les enlèvera pendant que vous tenez l’écran extérieur en position verticale).
                        +5 : repositionnez la colle d’étanchéité qui aurait pu se déplacer, avant de repositionner les deux écrans.
                        +6 : commencer par refermer par le bas de l’écran (sinon les éléments de réglage situés au bas de l’écran – luminosité, contraste,…- ne se replaceront pas correctement).
                        +7 : Une fois l’écran refermé, j’ai appliqué un peu de « barrage aux insectes », avec un chiffon à l’arrière de mon écran en insistant surtout sur les bouches d’aération par lesquelles les maudites bestioles ont du s’infiltrer. En espérant ne pas avoir à ouvrir !

                        +

                        Bon courage à vous !

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Michel Jousserandot + · 20 janvier 2017 à 20 h 41 min +

                        +

                        Merci pour les conseils au démontage.
                        +J’avais un problème un peu différent :l’écran ne s’allumait plus du tout. Avec un copain beaucoup plus malin que moi, on a détecté 2 fusibles dont l’un était fichu. On l’a remplacé par un petit fil de cuivre. Et tout a remarché comme avant.
                        +Il faut surtout faire attention quand on teste la partie haute tension
                        +Michel.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Crec + · 14 juillet 2017 à 10 h 20 min +

                        +

                        Bonjour. Très bons conseils avertis. Merci beaucoup.
                        +Peut-on avoir les mêmes conseils pour un écran BX2250.
                        +Merci par avance.
                        +Crec

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 6 août 2017 à 14 h 03 min +

                          +

                          J’ai pas de BX2250 donc dans le détails non mais si c’est les même symptômes ça doit la même procédure.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Ferronnier + · 10 août 2017 à 17 h 42 min +

                        +

                        Un grand merci !
                        +J’ai changé tous les condensateurs de la partie alimentation de la carte, en déportant certains qui n’avaient pas le même format qu’à l’origine, et ça tourne nickel !

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Nours + · 1 décembre 2017 à 15 h 17 min +

                        +

                        Ca fait des années que j’ai cet article enregistré dans un coin, en nourrissant l’espoir d’avoir un jour le courage de réparer ce foutu écran… Après plus de cinq ans c’est chose faite \o/
                        +Un giga, hypra, immense merci pour ce tutoriel tellement bien expliqué et facile d’accès (je n’avais pas touché à un fer à souder depuis… Oh boy 15 ans déjà).
                        +Après une longue pause, l’écran reprend du service… Jusqu’à la prochaine panne /o/

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Alex + · 11 août 2018 à 13 h 28 min +

                        +

                        Quelqu’un sait qui pourrait me le faire svp j ai le même problème mais aucun matériel

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + David + · 5 février 2019 à 21 h 06 min +

                        +

                        Merci Hugo pour ce tuto qui m’a déjà servi en 2013 et qui va me resservir aujourd’hui car mon 2ème 2232bw commence à avoir les mêmes symptômes.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + yvan + · 23 novembre 2019 à 17 h 14 min +

                        +

                        Bonjour
                        +j’ai tenté de changer le condensateur qui avait l’air naze mais ça n’a pas marché … toujours le bouton bleu allumé, l’écran est reconnu par Windows 10 même si l’écran est éteint
                        +grâce au service manuel de l’écran fourni plus haut, j’ai vérifié les tensions jusque sur la carte de la dalle et elles sont correctes, ainsi que sur la carte elle-même, tout est ok, donc je pense que ce n’est plus un problème de condensateur
                        +pour les fusibles, ils ressemblent plutôt à des composants qu’à de simple fusibles, mais comme j’ai les bonnes tension, je ne pense pas que ça vienne de là
                        +j’ai bien peur que ce soit la dalle qui soit naze ? quelqu’un a t il des idées supplémentaires avant que je le jette avec grand regret (c’est un 2032bw, mais c’est la même chose, même si ma carte électronique est un peu différente car plus récente
                        +merci d’avance pour vos conseils

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + yvan + · 24 novembre 2019 à 17 h 26 min +

                        +

                        finalement j’ai trouvé, c’est un petit fusible vert qui ressemble à une résistance mais tout vert avec écrit 4A LF qui assure l’alimentation de la dalle.
                        +En le shuntant, mon écran a retrouvé l’image.
                        +après enquête il s’agit d’un fusible pico de 4ampères de chez little fuse, pas du tout évident à trouver
                        +Résolu !

                        + +
                        +
                        + +
                        +
                        +

                        + Reflow Dell 1546 | HugoPoi + · 22 août 2016 à 16 h 09 min +

                        +

                        […] « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable de marque Dell un 1546 pour être précis. Encore […]

                        + +
                        +
                        + +
                        +
                        +

                        + Reflow Dell Inspiron 1546 – HugoPoi + · 23 juin 2017 à 23 h 18 min +

                        +

                        […] d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un […]

                        + +
                        +
                        + +
                        +
                        +
                        +

                        Répondre à Ferronnier Annuler la réponse

                        Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                        +
                        +
                        +

                        + +

                        +
                        +
                        +
                        +
                        +
                        +
                        + +
                        + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/9febb2ef1b013d7098bec5467c80b0ef269be3d0.00000228.html b/www/.content.EZtzwPjb/html/9febb2ef1b013d7098bec5467c80b0ef269be3d0.00000228.html new file mode 100644 index 0000000..d932677 --- /dev/null +++ b/www/.content.EZtzwPjb/html/9febb2ef1b013d7098bec5467c80b0ef269be3d0.00000228.html @@ -0,0 +1,333 @@ + + + + + + + Screenshot_LinuxMint19-LXDE-x64-clone-secureboot-test_2018-11-18_18:58:41 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        +
                        +
                        +
                        +
                        + + + +

                        +
                        +
                        +
                        +
                        +

                        + 0 commentaire

                        +
                        +
                        +
                        +

                        Laisser un commentaire

                        Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                        +
                        +
                        +

                        + +

                        +
                        +
                        +
                        +
                        +
                        +
                        +
                        +
                        + +
                        + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/a014afab7fef1baf88966d95b17a38e79c076916.00001307.xml b/www/.content.EZtzwPjb/html/a014afab7fef1baf88966d95b17a38e79c076916.00001307.xml new file mode 100644 index 0000000..cfae461 --- /dev/null +++ b/www/.content.EZtzwPjb/html/a014afab7fef1baf88966d95b17a38e79c076916.00001307.xml @@ -0,0 +1,7 @@ + +1.0HugoPoihttp://blog.hugopoi.netHugoPoihttp://blog.hugopoi.net/author/hugopoi/Installer Mac OS X Mavericks avec VirtualBoxrich600338<blockquote class="wp-embedded-content"><a href="/2013/12/27/installer-mac-os-x-mavericks-avec-virtualbox/">Installer Mac OS X Mavericks avec VirtualBox</a></blockquote> +<script type='text/javascript'> +<!--//--><![CDATA[//><!-- + !function(a,b){"use strict";function c(){if(!e){e=!0;var a,c,d,f,g=-1!==navigator.appVersion.indexOf("MSIE 10"),h=!!navigator.userAgent.match(/Trident.*rv:11\./),i=b.querySelectorAll("iframe.wp-embedded-content"),j=b.querySelectorAll("blockquote.wp-embedded-content");for(c=0;c<j.length;c++)j[c].style.display="none";for(c=0;c<i.length;c++)if(d=i[c],d.style.display="",!d.getAttribute("data-secret")){if(f=Math.random().toString(36).substr(2,10),d.src+="#?secret="+f,d.setAttribute("data-secret",f),g||h)a=d.cloneNode(!0),a.removeAttribute("security"),d.parentNode.replaceChild(a,d)}else;}}var d=!1,e=!1;if(b.querySelector)if(a.addEventListener)d=!0;if(a.wp=a.wp||{},!a.wp.receiveEmbedMessage)if(a.wp.receiveEmbedMessage=function(c){var d=c.data;if(d.secret||d.message||d.value)if(!/[^a-zA-Z0-9]/.test(d.secret)){var e,f,g,h,i,j=b.querySelectorAll('iframe[data-secret="'+d.secret+'"]'),k=b.querySelectorAll('blockquote[data-secret="'+d.secret+'"]');for(e=0;e<k.length;e++)k[e].style.display="none";for(e=0;e<j.length;e++)if(f=j[e],c.source===f.contentWindow){if(f.style.display="","height"===d.message){if(g=parseInt(d.value,10),g>1e3)g=1e3;else if(200>~~g)g=200;f.height=g}if("link"===d.message)if(h=b.createElement("a"),i=b.createElement("a"),h.href=f.getAttribute("src"),i.href=d.value,i.host===h.host)if(b.activeElement===f)a.top.location.href=d.value}else;}},d)a.addEventListener("message",a.wp.receiveEmbedMessage,!1),b.addEventListener("DOMContentLoaded",c,!1),a.addEventListener("load",c,!1)}(window,document); +//--><!]]> +</script><iframe sandbox="allow-scripts" security="restricted" src="/2013/12/27/installer-mac-os-x-mavericks-avec-virtualbox/embed/" width="600" height="338" title="Inclure un article WordPress" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" class="wp-embedded-content"></iframe> diff --git a/www/.content.EZtzwPjb/html/a0243e5a07febe25c033ecf7986f7ec676702f68.00000524.html b/www/.content.EZtzwPjb/html/a0243e5a07febe25c033ecf7986f7ec676702f68.00000524.html new file mode 100644 index 0000000..b7e5261 --- /dev/null +++ b/www/.content.EZtzwPjb/html/a0243e5a07febe25c033ecf7986f7ec676702f68.00000524.html @@ -0,0 +1,373 @@ + + + + + + + switch – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +

                        Démonter un Switch Cisco 2950T

                        Après avoir tout tenté sur le port console, le switch semblait mort donc démontage. J’ai donc ouvert ce petit switch 24 ports. C’est assez simple, il y a quelques vis à l’arrière ensuite faire coulisser le châssis.

                        +

                        Cisco 2950T-24

                        +

                        (suite…)

                        +
                        Par HugoPoi, il y a
                        +
                        + +
                        +
                        +
                        +
                        + +
                        +
                        + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/a0ad96ff79ef60969c02be50ecefe99eedfcc00c.00000553.xml b/www/.content.EZtzwPjb/html/a0ad96ff79ef60969c02be50ecefe99eedfcc00c.00000553.xml new file mode 100644 index 0000000..e51de6e --- /dev/null +++ b/www/.content.EZtzwPjb/html/a0ad96ff79ef60969c02be50ecefe99eedfcc00c.00000553.xml @@ -0,0 +1,46 @@ + + + + HugoPoi » wifi + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Sat, 14 Sep 2013 23:01:40 +0000 + fr-FR + hourly + 1 + http://wordpress.org/?v=3.6 + + Asus U36 et OCZ Vertex 3 la suite + http://blog.hugopoi.net/2012/03/30/asus-u36-et-ocz-vertex-3-la-suite/ + http://blog.hugopoi.net/2012/03/30/asus-u36-et-ocz-vertex-3-la-suite/#comments + Fri, 30 Mar 2012 10:29:27 +0000 + HugoPoi + + + + + + + + + + + + + + + http://blog.hugopoi.net/?p=635 + Lire la suite »

                        ]]>
                        + http://blog.hugopoi.net/2012/03/30/asus-u36-et-ocz-vertex-3-la-suite/feed/ + 1 +
                        +
                        +
                        diff --git a/www/.content.EZtzwPjb/html/a0c9de4c09489d0c5fdbfcd367936674faab70ea.00000604.js b/www/.content.EZtzwPjb/html/a0c9de4c09489d0c5fdbfcd367936674faab70ea.00000604.js new file mode 100644 index 0000000..de7a671 --- /dev/null +++ b/www/.content.EZtzwPjb/html/a0c9de4c09489d0c5fdbfcd367936674faab70ea.00000604.js @@ -0,0 +1,163 @@ +(function() { + + /** + * class Button + */ + var Button = function(button) { + this.construct(button); + } + + /** + * Methods which belong to the button object + */ + Button.prototype = { + /** + * Button.construct(button) < Button + * - button (Object): DOM reference to a button + */ + construct: function(button) { + var newButton = document.createElement('iframe'); + + var url = "http://api.tweetmeme.com/button.js?url=" + escape(button.href); + + // get all the addiontial options + url += '&' + button.rel.toLowerCase(); + + // tracking data + if (document && document.referrer) { + var ref = document.referrer; + if (ref) { + url += '&o=' + escape(ref); + } + } + + newButton.src = url; + newButton.frameBorder = "0"; + newButton.scrolling = "no"; + + // get the style info + var params = new Array(); + var qp = button.rel.split('&'); + for (var i = 0; i < qp.length; i++) { + var kv = qp[i].split('='); + if (kv.length > 1) { + params[kv[0]] = kv[1]; + } + } + + if (params['style']) { + switch(params['style']) { + case 'compact': { + var h = 20; + var w = 90; + break; + } + default: { + var h = 61; + var w = 50; + break; + } + } + + newButton.height = h; + newButton.width = w; + } else { + newButton.height = 61; + newButton.width = 50; + } + + button.parentNode.insertBefore(newButton, button); + var parent = button.parentNode; + parent.removeChild(button); + + this.button = newButton; + } + } + + /** + * class Selector + * + * Provides a means to select DOM objects from expressions + */ + var Selector = { + /** + * Selector.findChildElements -> Array + * - element (Object): Element to search for children from + * - expression (String): Expression to search for + * + *

                        Example

                        + * + * The types of selectors supported in the expression are #(id), .(classes) and tag names + * + * Selector.findChildElements(div, '#hello') + * -> Objects with id hello which are children of div + */ + findChildElements: function(element, expression) { + // set up the results array + var results = new Array(); + + if (typeof expression != 'string') { + return false; + } + + // pull the identifier from the expression (either # or .) + var identifier = expression.substring(0, 1); + var match = expression.substring(1); + // fetch all the child nodes (tested on FF3.6/Opera10.5/Chrome4.1.249.1045 + this.search(element.childNodes, function(node) { + switch(identifier) { + case '#': + node.id = match ? results.push(node) : false; + break; + case '.': + var classes = node.className; + if (classes) { + classes = classes.split(' '); + for (j in classes) { + if (classes[j] == match) { + results.push(node); + } + } + } + break; + default: + node.tagName == expression.toUpperCase() ? results.push(node) : false + break; + } + }); + return results; + }, + + /** + * Selector.search + * - nodes (Array): Array of DOM elements + * - match (Object): function to run on each node + * + *

                        Example

                        + * + * Selector.search(children, function(node) { + * node.innerHTML = 'yo'; + * }); + */ + search: function(nodes, match) { + for (var i = 0; i < nodes.length; i++) { + if (nodes[i].childNodes.length > 0) { + this.search(nodes[i].childNodes, match); + } + match(nodes[i]); + } + } + } + + // grab all the buttons + var buttons = Selector.findChildElements(document.body, '.tm_button'); + + // create the button objects + var buttonObjs = new Array(); + if (buttons.length > 0) { + for (var i = 0; i < buttons.length; i++) { + var obj = new Button(buttons[i]); + buttonObjs[obj.url] = obj; + } + } +})(); \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/a140f54bff5d3fc4712ad26ad076149b74c9492d.00000516.xml b/www/.content.EZtzwPjb/html/a140f54bff5d3fc4712ad26ad076149b74c9492d.00000516.xml new file mode 100644 index 0000000..5f723f7 --- /dev/null +++ b/www/.content.EZtzwPjb/html/a140f54bff5d3fc4712ad26ad076149b74c9492d.00000516.xml @@ -0,0 +1,55 @@ + + + Sony – HugoPoi + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Mon, 22 Aug 2016 14:10:26 +0000 + fr-FR + hourly + 1 + https://wordpress.org/?v=4.6.1 + + Test et démontage d’un Sony Multi Flip 15 SVF15N1C5E + http://blog.hugopoi.net/2014/08/04/test-et-demontage-dun-sony-multi-flip-15-svf15n1c5e/ + http://blog.hugopoi.net/2014/08/04/test-et-demontage-dun-sony-multi-flip-15-svf15n1c5e/#respond + Mon, 04 Aug 2014 13:25:59 +0000 + + + + + + + + + http://blog.hugopoi.net/?p=856 + Lire la suite »

                        ]]>
                        + http://blog.hugopoi.net/2014/08/04/test-et-demontage-dun-sony-multi-flip-15-svf15n1c5e/feed/ + 0 +
                        + + Réparer un Vidéoprojecteur Sony VPL-CX5 + http://blog.hugopoi.net/2013/05/04/reparer-un-videoprojecteur-sony-vpl-cx5/ + http://blog.hugopoi.net/2013/05/04/reparer-un-videoprojecteur-sony-vpl-cx5/#comments + Sat, 04 May 2013 15:26:39 +0000 + + + + + + + + http://blog.hugopoi.net/?p=737 + Lire la suite »

                        ]]>
                        + http://blog.hugopoi.net/2013/05/04/reparer-un-videoprojecteur-sony-vpl-cx5/feed/ + 15 +
                        +
                        +
                        diff --git a/www/.content.EZtzwPjb/html/a142ef822b7f3967baf49b794eaeb0e62bd97c96.00000739.css b/www/.content.EZtzwPjb/html/a142ef822b7f3967baf49b794eaeb0e62bd97c96.00000739.css new file mode 100644 index 0000000..46db47e --- /dev/null +++ b/www/.content.EZtzwPjb/html/a142ef822b7f3967baf49b794eaeb0e62bd97c96.00000739.css @@ -0,0 +1,5 @@ +/*! + * Bootstrap v3.3.4 (http://getbootstrap.com) + * Copyright 2011-2015 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + *//*! normalize.css v3.0.2 | MIT License | git.io/normalize */html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid silver}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}select{background:#fff!important}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\2a"}.glyphicon-plus:before{content:"\2b"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before{content:"\e227"}.glyphicon-btc:before{content:"\e227"}.glyphicon-xbt:before{content:"\e227"}.glyphicon-yen:before{content:"\00a5"}.glyphicon-jpy:before{content:"\00a5"}.glyphicon-ruble:before{content:"\20bd"}.glyphicon-rub:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:focus,a:hover{color:#23527c;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}.small,small{font-size:85%}.mark,mark{padding:.2em;background-color:#fcf8e3}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;margin-left:-5px;list-style:none}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote .small:before,blockquote footer:before,blockquote small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-15px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*=col-]{position:static;display:table-column;float:none}table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=checkbox]:focus,input[type=radio]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date],input[type=time],input[type=datetime-local],input[type=month]{line-height:34px}.input-group-sm input[type=date],.input-group-sm input[type=time],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:30px}.input-group-lg input[type=date],.input-group-lg input[type=time],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-top:4px \9;margin-left:-20px}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{cursor:not-allowed}.checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label{cursor:not-allowed}.form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.form-group-sm .form-control{height:30px;line-height:30px}select[multiple].form-group-sm .form-control,textarea.form-group-sm .form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:5px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.form-group-lg .form-control{height:46px;line-height:46px}select[multiple].form-group-lg .form-control,textarea.form-group-lg .form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:10px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:14.33px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px}}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{pointer-events:none;cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.active,.btn-default.focus,.btn-default:active,.btn-default:focus,.btn-default:hover,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled,.btn-default.disabled.active,.btn-default.disabled.focus,.btn-default.disabled:active,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled],.btn-default[disabled].active,.btn-default[disabled].focus,.btn-default[disabled]:active,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default,fieldset[disabled] .btn-default.active,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:active,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary.active,.btn-primary.focus,.btn-primary:active,.btn-primary:focus,.btn-primary:hover,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled,.btn-primary.disabled.active,.btn-primary.disabled.focus,.btn-primary.disabled:active,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled],.btn-primary[disabled].active,.btn-primary[disabled].focus,.btn-primary[disabled]:active,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-primary.active,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:active,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success.active,.btn-success.focus,.btn-success:active,.btn-success:focus,.btn-success:hover,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled,.btn-success.disabled.active,.btn-success.disabled.focus,.btn-success.disabled:active,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled],.btn-success[disabled].active,.btn-success[disabled].focus,.btn-success[disabled]:active,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success,fieldset[disabled] .btn-success.active,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:active,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info.active,.btn-info.focus,.btn-info:active,.btn-info:focus,.btn-info:hover,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled,.btn-info.disabled.active,.btn-info.disabled.focus,.btn-info.disabled:active,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled],.btn-info[disabled].active,.btn-info[disabled].focus,.btn-info[disabled]:active,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info,fieldset[disabled] .btn-info.active,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:active,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning.active,.btn-warning.focus,.btn-warning:active,.btn-warning:focus,.btn-warning:hover,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled,.btn-warning.disabled.active,.btn-warning.disabled.focus,.btn-warning.disabled:active,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled],.btn-warning[disabled].active,.btn-warning[disabled].focus,.btn-warning[disabled]:active,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning,fieldset[disabled] .btn-warning.active,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:active,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.active,.btn-danger.focus,.btn-danger:active,.btn-danger:focus,.btn-danger:hover,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled,.btn-danger.disabled.active,.btn-danger.disabled.focus,.btn-danger.disabled:active,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled],.btn-danger[disabled].active,.btn-danger[disabled].focus,.btn-danger[disabled]:active,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger,fieldset[disabled] .btn-danger.active,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:active,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:400;color:#337ab7;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px solid}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-right:0;padding-left:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{margin-left:-1px}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1)}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px)and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1)}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}}@media (min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{color:#555;background-color:#e7e7e7}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{color:#fff;background-color:#080808}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:2;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding:30px 15px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding:48px 0}.container .jumbotron,.container-fluid .jumbotron{padding-right:60px;padding-left:60px}.jumbotron .h1,.jumbotron h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail a>img,.thumbnail>img{margin-right:auto;margin-left:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#337ab7}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{overflow:hidden;zoom:1}.media-body{width:10000px}.media-object{display:block}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item{color:#555}a.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{color:#777;cursor:not-allowed;background-color:#eee}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-right:15px;padding-left:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{min-height:16.43px;padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;font-weight:400;line-height:1.4;filter:alpha(opacity=0);opacity:0}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;font-weight:400;line-height:1.42857143;text-align:left;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2)}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{content:"";border-width:10px}.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000;perspective:1000}.carousel-inner>.item.active.right,.carousel-inner>.item.next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);filter:alpha(opacity=50);opacity:.5}.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x}.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;margin-top:-10px;font-family:serif;line-height:1}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-15px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-15px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-15px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{display:table;content:" "}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-lg,.visible-md,.visible-sm,.visible-xs{display:none!important}.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px)and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:768px)and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px)and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px)and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px)and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:992px)and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px)and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px)and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px)and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px)and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/a14d3ac0e04552105050bc5622948979f9a19bd0.00000222.html b/www/.content.EZtzwPjb/html/a14d3ac0e04552105050bc5622948979f9a19bd0.00000222.html new file mode 100644 index 0000000..fd4d6f7 --- /dev/null +++ b/www/.content.EZtzwPjb/html/a14d3ac0e04552105050bc5622948979f9a19bd0.00000222.html @@ -0,0 +1,571 @@ + + + + + + + + L’homme du milieu avec DD-WRT – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        +

                        J’avais besoin de faire un MITM entre un ONT et la box SFR NB6 pour pouvoir capturer les identifiants PPP pour le tunnel ipv6. Je n’avais pas de hub ou de machine avec 2 interfaces Ethernet pour pouvoir le faire de façon passive sans faire du spoofing ARP. Et je n’avais pas envie d’envoyer des trames ARP sur l’infrastructure réseau SFR. J’avais un Netgear WNR3500Lv1 dans un coin, je me suis dit qu’il y avais moyen d’utiliser ce genre de routeur pour faire du tapping passif.

                        +

                        +

                        Installer DD-WRT

                        +

                        Première étape avoir un routeur sous DD-WRT qui marche. Netgear font les choses bien, la majorité de leurs routeurs sont compatibles avec les « openfirmwares ». J’ai ma préférence pour DD-WRT qui est vraiment orienté réseau. Pendant le setup, j’ai quand même réussi à briquer une fois mon routeur, je n’ai pas trouvé la raison.
                        +1) Aller récupérer le firmware qui va bien .chk depuis dd-wrt.com
                        +2) Flasher depuis l’interface web
                        +3) Re-flasher avec un dd-wrt complet qui marche, j’ai utilisé le mod de kong qui est un dd-wrt modifié qui est plus stable. (le ssh marchait pas sur l’autre firmware)
                        +4) Penser à configurer le service SSH depuis l’interface web.
                        +5) DESACTIVER LES SERVER ET CLIENT DHCP mettez toutes les ips en statiques

                        +

                        Installer TCPDUMP

                        +

                        Une fois dd-wrt fonctionnel sur la bête, je me suis dit que j’allais utiliser tcpdump pour capturer directe sur les interfaces du routeur. Évidemment le paquet ipkg ne marchait pas mais j’ai appris qu’on pouvait les installer en manuel.

                        +
                        wget http://downloads.openwrt.org/attitude_adjustment/12.09/brcm47xx/generic/packages/libpcap_1.1.1-2_brcm47xx.ipk
                        +tar -zxvf libpcap_1.1.1-2_brcm47xx.ipk
                        +rm control.tar.gz
                        +rm debian-binary
                        +rm libpcap_1.1.1-2_brcm47xx.ipk
                        +tar -zxvf data.tar.gz
                        +rm data.tar.gz
                        +wget http://downloads.openwrt.org/attitude_adjustment/12.09/brcm47xx/generic/packages/tcpdump_4.2.1-3_brcm47xx.ipk
                        +tar -zxvf tcpdump_4.2.1-3_brcm47xx.ipk
                        +rm control.tar.gz
                        +rm debian-binary
                        +rm tcpdump_4.2.1-3_brcm47xx.ipk
                        +tar -zxvf data.tar.gz
                        +rm data.tar.gz
                        +

                        Vous pouvez lancer ce script sur votre machine puis ensuite copier le répertoire usr dans /tmp/root qui est un ram disk car l’espace jffs ne faisait que 600ko sur mon routeur donc pas suffisant pour la libpcap + tcpdump. Il y a 64 Mo de RAM sur mon routeur versus 8Mo flash aller comprendre …

                        +

                        Donc au début je me suis dit c’est tout bon j’ai plus qu’à lancer tcpdump depuis ssh sur la bonne interface et c’est du tout cuit.

                        +
                        ssh root@192.168.2.1 "LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/tmp/root/usr/lib /tmp/root/usr/sbin/tcpdump -i vlan1 -U -s0 -w -" | wireshark -i -
                        +

                        Notez ici l’option -U qui permet de flush dans le pipe ssh rapidement les données capturées très utile quand vous avez peu de paquets sur l’interface sinon votre wireshark ne reçoit rien tant que le buffer n’est pas plein.

                        +
                        Schema MITM Neufbox v6 DD-WRT

                        Schéma MITM Neufbox v6 DD-WRT

                        +

                        ET J’AVAIS TORT

                        +

                        J’avais oublié un détail hardware qui m’a pété les couilles, les 4 ports du switch sont géré en hardware via une puce dédié ici un BCM53115. Problème impossible d’écouter le trafic entre les ports car le BCM53115 gère en interne sa table ARP qui n’est pas configurable, donc impossible de capturer le moindre paquet utile à part les broadcast et multicast.

                        +

                        Solution 2

                        +

                        Après avoir creusé la question, j’ai évidement commencer par regarder la documentation du BCM53115 qui est une belle boite noire dont les seules choses que l’on peut configurer sont les vlan par port et le tagging. Je devais donc me passer de cet élément pour faire ma capture. La solution la plus simple qui m’est venu c’est d’utiliser le port WAN qui est séparé du switch au niveau logique et je peux le bridger en software via le kernel linux. Cependant cette solution n’est pas vraiment satisfaisante pour moi dans la mesure ou je pouvais pas isoler de façon sûr le pc d’écoute. (Genre éviter les broadcast ipv6 et mdns sur le réseau SFR)

                        +

                        1) Couper le routage sur l’interface web, onglet setup
                        +2) Coché la case mettre le port WAN dans le switch ( il sera bridgé dans le vlan1)
                        +3) Configurer iptables sur la machine d’écoute pour éviter les merdes (J’ai tout bloqué sauf le ssh sortant)

                        +
                        *filter
                        +:INPUT DROP [49:3210]
                        +:FORWARD DROP [0:0]
                        +:OUTPUT DROP [0:0]
                        +-A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT
                        +-A INPUT -i lo -j ACCEPT
                        +-A OUTPUT -m state --state RELATED,ESTABLISHED -j ACCEPT
                        +-A OUTPUT -p tcp -m tcp --dport 22 -j ACCEPT
                        +-A OUTPUT -o lo -j ACCEPT
                        +COMMIT
                        +

                        Donc au final on se retrouve avec tout le merdier dans le même vlan mais seul les données entre les ports du switch et le port WAN sont écoutables dans notre cas c’est pas un problème.

                        +
                        Schéma MITM neufbox ddwrt solution 2

                        Schéma MITM neufbox ddwrt solution 2

                        +

                        J’ai cependant trouvé une autre solution pour faire des écoutes entre potentiellement tout les ports du switch en utilisant les vlan ! J’ai pas encore testé mais l’idée est la suivante :

                        +
                          +
                        1. placer les 4 ports du switch dans 4 vlan différents (5 6 7 8 par exemple)
                        2. +
                        3. Ensuite on bridge les vlan avec le kernel ( brctl addbr test && brctl addif test vlan5 && brctl addif test vlan6 && brctl addif test vlan7 && brctl addif test vlan8 )
                        4. +
                        5. Vous pouvez lancer tcpdump sur l’interface bridge-test sûrement br2
                        6. +
                        +

                        Cette dernière solution serait encore mieux car la machine d’écoute est vraiment isoler du reste, et ça permet d’écouter 4 devices en même temps ce qui peut servir.

                        +
                        +
                        +
                        + +
                        +
                        + + + + + + + + + +
                        +
                        +
                        +
                        +
                        +
                        +
                        +

                        + 1 commentaire

                        +
                        + +
                        +
                        +
                        +
                        +

                        + Rudy + · 24 juin 2017 à 11 h 55 min +

                        +

                        « sa » et non « ça » :)

                        + +
                        +
                        + +
                        +
                        +
                        +

                        Laisser un commentaire

                        Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                        +
                        +
                        +

                        + +

                        +
                        +
                        +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        + + +
                        + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/a167df3cdfd7af342783616afccae007a64eeb05.00000448.html b/www/.content.EZtzwPjb/html/a167df3cdfd7af342783616afccae007a64eeb05.00000448.html new file mode 100644 index 0000000..58a6877 --- /dev/null +++ b/www/.content.EZtzwPjb/html/a167df3cdfd7af342783616afccae007a64eeb05.00000448.html @@ -0,0 +1,371 @@ + + + + + + + media – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +

                        Honte Télévisuelle

                        Je viens de déménager à Belfort et dans mon 19m² je n’ai pas de télévision mais je suis l’actualité via internet grâce à twitter. Je me suis aperçu que ces dernier mois, le nombre d’émissions abordant le sujet d’internet et compagnie était assez conséquent. (suite…)

                        +
                        Par HugoPoi, il y a
                        +
                        + +
                        +
                        +
                        +
                        + +
                        +
                        + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/a1a41f2f7af376d1a7add03d1ebf7a90bbe8f6b7.00000245.html b/www/.content.EZtzwPjb/html/a1a41f2f7af376d1a7add03d1ebf7a90bbe8f6b7.00000245.html new file mode 100644 index 0000000..cece3a0 --- /dev/null +++ b/www/.content.EZtzwPjb/html/a1a41f2f7af376d1a7add03d1ebf7a90bbe8f6b7.00000245.html @@ -0,0 +1,835 @@ + + + + + + + + Install RancherOs on FreeNas 11.3 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        +

                        Install RancherOs on FreeNas 11.3

                        +
                          +
                        • The automated RancherOs installation aka Docker VM has been removed in
                          +11.3
                        • +
                        • RancherOs doesn’t support EFI boot out of the box
                        • +
                        • Thanks to MKinney howto
                        • +
                        • This howto is provided without warranty
                        • +
                        • TODO the proper way of doing it is somewhere here
                        • +
                        • Some stuff about losetup
                        • +
                        +

                        1. Make a EFI bootable RancherOs image

                        + +
                          +
                        1. wget https://releases.rancher.com/os/v1.5.5/rancheros.iso
                        2. +
                        3. wget http://releases.ubuntu.com/18.04/ubuntu-18.04.4-live-server-amd64.iso
                        4. +
                        5. mkdir tmpubuntu tmprancheros tmprancheros_dest
                        6. +
                        7. sudo mount ubuntuserverlive.iso tmpubuntu
                        8. +
                        9. sudo mount rancheros.iso tmprancheros
                        10. +
                        11. fallocate -l 150M rancheros.img
                        12. +
                        13. gdisk rancheros.img o,y,n,enter,enter,ef00,w,Y
                        14. +
                        15. sudo losetup --partscan --show --find rancheros.img
                        16. +
                        17. sudo mkfs.fat /dev/loop2p1
                        18. +
                        19. sudo mount /dev/loop2p1 rancheros_dest
                        20. +
                        21. sudo cp -r tmprancheros/* tmprancheros_dest/
                        22. +
                        23. sudo cp -r tmpubuntu/EFI tmprancheros_dest/
                        24. +
                        25. Replace the content of tmprancheros_dest/boot/grub/grub.cfg with:
                        26. +
                        +
                        set timeout=5
                        +menuentry "Install Rancher" {
                        +    linux   /boot/vmlinuz-4.14.138-rancher rancher.autologin=tty1 rancher.autologin=ttyS0 rancher.autologin=ttyS1 console=tty1 console=ttyS0 console=ttyS1 printk.devkmsg=on panic=10 ---
                        +    initrd  /boot/initrd-v1.5.5
                        +}
                        +
                        +
                          +
                        1. sudo umount tmprancheros_dest
                        2. +
                        3. sudo losetup -d /dev/loop2
                        4. +
                        5. sudo umount tmpubuntu tmprancheros
                        6. +
                        +

                        2. Installation in FreeNas as Vm

                        +
                          +
                        1. Create a VM with EFI boot 2GB RAM choose virtio for all the driver
                          +better performance with linux
                        2. +
                        3. Add a RAW device and select your rancheros.img
                        4. +
                        5. Start the VM
                        6. +
                        7. Go to serial and in the shell cu -l /dev/nmdmXX at this point you should
                          +have a rancher shell
                        8. +
                        9. sudo fdisk /dev/vda then g,n,1,+200M,t,1,n,enter,enter,w you
                          +should something like at the end
                        10. +
                        +
                        Disk /dev/vda: 10 GiB, 10737418240 bytes, 20971520 sectors
                        +Units: sectors of 1 * 512 = 512 bytes
                        +Sector size (logical/physical): 512 bytes / 16384 bytes
                        +I/O size (minimum/optimal): 16384 bytes / 16384 bytes
                        +Disklabel type: gpt
                        +Disk identifier: 2B56EE14-44BF-6443-A197-EF73723B715F
                        +Device      Start      End  Sectors  Size Type
                        +/dev/vda1    2048   411647   409600  200M EFI System
                        +/dev/vda2  411648 20971486 20559839  9.8G Linux filesystem
                        +
                        +
                          +
                        1. Format the boot partition sudo mkdosfs -n RANCHER -F 32 /dev/vda1
                        2. +
                        3. Format the main filesystem sudo mkfs.ext4 -L RANCHER_STATE /dev/vda2
                        4. +
                        5. Create a cloud-config.yml see https://rancher.com/docs/os/v1.x/en/installation/running-rancheros/server/install-to-disk/ for minimum content
                        6. +
                        7. sudo mkdir /dev/sr0 for installer checking about iso mounted before
                          +install
                        8. +
                        9. Install ros with sudo ros install -t gptsyslinux -c cloud-config.yml -d /dev/vda -p /dev/vda2
                        10. +
                        11. mkdir /mnt/efipart && sudo mount /dev/vda1 /mnt/efipart
                        12. +
                        13. mkdir /mnt/installer && sudo mount /dev/vdb1 /mnt/installer
                        14. +
                        15. sudo cp -r /mnt/installer/EFI /mnt/efipart
                        16. +
                        17. Add a grub.cfg in /mnt/efipart/EFI/BOOT/grub.cfg with in it:
                          +You might want to add/remove autologin as you wish below

                          +
                            +
                          • tty0 I think is VNC but I havent tested it
                          • +
                          • ttyS0 is serial (I have autologin enable in serial see below)
                          • +
                          +
                        18. +
                        +
                        set timeout=1
                        +menuentry "Rancher from GPT" {
                        +    search --no-floppy --set=root --label RANCHER_STATE
                        +    linux    /boot/vmlinuz-4.14.138-rancher printk.devkmsg=on rancher.state.dev=LABEL=RANCHER_STATE rancher.state.wait panic=10 console=tty0 console=ttyS0 rancher.autologin=ttyS0
                        +    initrd    /boot/initrd-v1.5.5
                        +}
                        +
                        +
                          +
                        1. sudo umount /mnt/*
                        2. +
                        3. sudo reboot
                        4. +
                        5. You are good to go
                        6. +
                        7. You can remove the RAW device in the VM config in FreeNas
                        8. +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +

                        + 13 commentaires

                        +
                        + +
                        +
                        +
                        +
                        +

                        + Rudi Pittman + · 18 mars 2020 à 17 h 46 min +

                        +

                        Can I or can I not use my existing rancher img that was previously being used by freenas? ie

                        +

                        -rw-r–r– 1 root wheel 21474836480 Mar 18 02:13 rancher.img_docker1

                        +

                        I have around 10 different docker containers defined inside and I really don’t want to have to redo all of them.

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 11 avril 2020 à 16 h 32 min +

                          +

                          If the image is a VM image like a zvol, I think it will work, but I’m not sure, it will only work if the 11.2 behavior is EFI compatible.
                          +You may patch your existing image/snapshot by justing installing the efi bootloader aka grub in it.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Rob RD + · 4 avril 2020 à 19 h 36 min +

                        +

                        Parfait – Merci Beaucoup! :)

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + dario + · 12 avril 2020 à 14 h 07 min +

                        +

                        Thanks for this guide. I am stuck at Step 12:
                        +> sudo mount /dev/vdb1 /mnt/installer
                        +ther is no /dev/vdb1, regardingless if I choose to boot at step 10 or not

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 22 avril 2020 à 23 h 34 min +

                          +

                          Your installer may be on a different disk if you choose SCSI in place of virtio when you add the raw image device in Freenas, you can identified with

                          +

                          cat /proc/partitions

                          +

                          and

                          +

                          mount

                          +

                          it should be /dev/sda1 maybe

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + somebody + · 19 avril 2020 à 13 h 07 min +

                        +

                        Thank you so much for the step by step guide, it was very helpful. With this I can finally transition from my old Docker VM inherited from FreeNAS 11.1.

                        +

                        Going to state the obvious (for some) and mention that when new version gets released and you run

                        +

                        sudo ros os upgrade

                        +

                        to upgrade you’ll also need to update initrd command in your grub.cfg file on EFI partition, otherwise you’re just going to boot into the same version.

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + Rudi Pittman + · 1 juin 2020 à 1 h 58 min +

                          +

                          The problem I have is even though grub is specifying 4.14.138 and initird-v1.5.5 on reboot it tells me those don’t exist. Doing a grub edit and using autocomplete the files it ACTUALLY find are /boot/vmlinuz-4.14.73-rancher and /boot/initrd-v1.4.2. Where the heck are those coming from? When I look on /dev/vda2/boot I see the 4.14.138 and initrd-v1.5.5 as the grub reflects. /mnt/efipart/EFI/BOOT has:

                          +

                          -rwxr-xr-x 1 root root 1334816 May 30 15:13 BOOTx64.EFI
                          +-rwxr-xr-x 1 root root 316 May 30 15:15 grub.cfg
                          +-rwxr-xr-x 1 root root 1146744 May 30 15:13 grubx64.efi

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Max + · 3 mai 2020 à 16 h 40 min +

                        +

                        The image i downloaded does not start. Stuck at step4 in the bhyve shell. Any idea how to proceed from there?

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 10 mai 2020 à 14 h 53 min +

                          +

                          Try to change the device order to a lower or higher number to be sure it try to load the good bootloader.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Rudi Pittman + · 1 juin 2020 à 18 h 28 min +

                        +

                        If you do a « ros os version » on your efi image it’s NOT v1.5.5. It’s v1.4.2 and running the command although it MAY download the files does nothing to actually make the grub.cfg FIND those new files. It’s still looking for vmlinuz-4.14.73 and initrd-v1.4.2.

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + Johnny Z + · 25 juin 2020 à 8 h 49 min +

                          +

                          I found them. The guide doesn’t necessarily state where or when to get the files. You should be able to do this to find and copy the files

                          +

                          cd /mnt/installer/boot/
                          +ls -asl
                          +(here you will find the two files)
                          +cp vmlinuz-4.14.138-rancher ../../efipart/efi/boot/
                          +cp initrd-v1.5.5.5 ../../efipart/efi/boot

                          +

                          Double check my paths here but that should basically get you the files so the kernel can load proper

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Toohai + · 16 septembre 2020 à 8 h 18 min +

                        +

                        Missing step after 12 in part 1?

                        +

                        sudo cp -r tmpubuntu/boot/grub tmprancheros_dest/boot/

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + pstadler + · 18 avril 2021 à 20 h 52 min +

                        +

                        As the image is no longer available for download, I decided to share mine. It uses RancherOS v1.5.6 and this needs a slightly different grub.cfg (make sure to copy it from the README) everything else remains the same.

                        +

                        https://github.com/pstadler/rancheros-uefi

                        +

                        Cheers
                        +Patrick

                        + +
                        +
                        + +
                        +
                        +
                        +

                        Laisser un commentaire

                        Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                        +
                        +
                        +

                        + +

                        +
                        +
                        +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        + + +
                        + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/a1a5e3cfa398cc8c8ee056586f512fc8dcd54d06.00000152.html b/www/.content.EZtzwPjb/html/a1a5e3cfa398cc8c8ee056586f512fc8dcd54d06.00000152.html new file mode 100644 index 0000000..a93cd32 --- /dev/null +++ b/www/.content.EZtzwPjb/html/a1a5e3cfa398cc8c8ee056586f512fc8dcd54d06.00000152.html @@ -0,0 +1,586 @@ + + + + + + + + Home Cinéma – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        +

                        Bientôt fini mais peut-être jamais terminé tellement il y a de boulot autour d’un système home-cinema complet et parfait. Cela fait bientôt deux semaines que je suis dans mes travaux et ma configuration HTPC. Première semaine, je suis parti de rien, aucun câble posé, pas de pc installé et pas de meuble. Du coup, le lundi, je suis allé à Ikea et j’ai trouvé à peu près ce que je voulais pour pas trop cher (120 € pour de l’aggloméré de merde). Le mardi, je venais de recevoir tout le matos, à savoir :

                        +
                          +
                        • Un Amplificateur Yamaha RX-671
                        • +
                        • Un kit d’enceinte Jamo 5.1
                        • +
                        • Un boitier Antec Remote black et les 2-3 composants qui vont bien
                        • +
                        +

                        Salon Wii

                        +

                         

                        +
                        Je possédais déjà un vidéo-projecteur Optoma HD700X 720p qui fait bien son boulot, malgré un petit manque de luminosité, mais bon, c’est un modèle d’entrée de gamme à 500€. Le passage des câbles a été assez long, cela m’a pris 3 jours. Ensuite j’ai fais mes premiers essais pour voir si tous les câbles étaient opérationnels avant le rebouchage des trous. Malgré la petite taille des enceintes, la pièce est très bien sonorisée.
                        +
                        Après la phase travaux vient la configuration de tous ces appareils. Pour l’amplificateur, c’est trop facile pour les novices comme moi, il y a juste à brancher un micro et appuyer sur OK pour lancer le réglage automatique, c’est génial, merci Yamaha ! Ensuite vient l’installation du HTPC, j’ai opté pour un Windows Media Center 7 pour plusieurs raisons :
                        +
                        +
                          +
                        • Il est bien fait dans l’ensemble, ergonomique et plutôt bien réussi visuellement
                        • +
                        • Beaucoup de plugins et d’outils sont disponibles
                        • +
                        • C’est du Windows et je maîtrise bien
                        • +
                        • Je pourrais installer des jeux vidéo dessus
                        • +
                        +
                        Une fois l’installation de Windows terminée, je commence par installer les pilotes nécessaires, chipset, IGP Intel, USB3 et enfin la télécommande Antec. C’est sur ce périphérique que je me suis fais avoir car j’ai téléchargé les pilotes depuis le site de Antec mais ils ne sont pas du tout à jour, le mieux est d’aller sur le site de Veris qui fabrique le VFD et la télécommande. Ensuite pour pouvoir tout lire sur votre WMC, il vous faut :
                        +
                        + +
                        Pour les meta-données et pochette de film, j’ai retenu plusieurs soft bien pratique et gratos :
                        + +
                        Avec tous ces logiciels, vous aurez de quoi faire pas mal de choses, en utilisant ces tutoriaux :
                        +
                        + +
                        Je vais maintenant vous raconter une petite histoire qui m’est arrivé la semaine passée. Je vous balance carrément le titre :
                        +

                        Hugo et les Blu-Raies dans ton cul

                        +
                        +
                        +
                        Je me suis dit que ça serait cool de pouvoir lire les Blu-ray sur le HTPC pour profiter d’une meilleure qualité d’image. Comme j’ai un windows, ça aurait dû bien se passer, tout joyeux j’installe TotalMedia Theatre 5 avec ces mises à jour, une fois ceci fait, je me dis que c’est du tout cuit, je mets mon Blu-ray dans le lecteur. Et là, c’est le drame: impossible de lancer la lecture, « Error 3016 pas de HDCP » #WTF ?§?! Je google l’erreur et impossible d’avoir un résultat intéressant (ça me renvoie « erreur DHCP » dans google LOL). Du coup, j’ai fini par trouver un outil pour vérifier la compatibilité de ma chaîne HDCP chez le concurrent PowerDVD: BD & 3D Advisor. Le soft me dit que tout est OK sauf la liaison HDMI qui n’est pas HDCP, ce qui est bizarre vu que ma freebox v6 arrive à lire le même Blu-Ray en passant par les mêmes câbles, donc c’est bien un souci au niveau logiciel. Même en changeant la résolution, j’ai tout essayé, mais impossible d’activer le HDCP sur ma sortie HDMI. Donc j’ai pas cherché 3 heures, j’ai installé AnyDVD HD pour supprimer la protection HDCP et là miracle: ça marche NIKEL. Conclusion, j’ai été obligé de supprimer une protection pour pouvoir lire le truc que j’ai acheté légalement, du coup cela me donne très envie de continuer d’acheter leurs putains de Raies-Bleu. The End.
                        +
                        +
                        +
                        Pour revenir sur des choses un peu plus sérieuses voici quelques photos :
                        +
                        + + +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +

                        + 0 commentaire

                        +
                        +
                        +
                        +

                        Laisser un commentaire

                        Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                        +
                        +
                        +

                        + +

                        +
                        +
                        +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        + + +
                        + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/a1b088de4c53a364d0653eec36ecf7a5966f01f6.00000508.html b/www/.content.EZtzwPjb/html/a1b088de4c53a364d0653eec36ecf7a5966f01f6.00000508.html new file mode 100644 index 0000000..ccd64f3 --- /dev/null +++ b/www/.content.EZtzwPjb/html/a1b088de4c53a364d0653eec36ecf7a5966f01f6.00000508.html @@ -0,0 +1,365 @@ + + + + + + + Seasonic – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +

                        Liste de Noël

                        Bonjour cher Père Noël des Internets 2.0,

                        +

                        Alors je me permets de te déposer ma liste de noël sur mon blog car je suis sûr que tu as demandé à Google et Facebook de t’aider pour satisfaire tout le monde sur la terre(N’oublie pas les petits africains qui crèvent la dalle). Comme je suis égoïste un minimum humain et que je ne saurais dire ce que représente noël pour moi à part manger, boire, dormir, du sexe, avoir des cadeaux et en offrir, cela fait de bonnes raisons pour faire une liste de noël. (suite…)

                        +
                        Par HugoPoi, il y a
                        +
                        + +
                        +
                        +
                        +
                        + +
                        +
                        + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/a1bc7c804b0d8526ffdf64a1c39b688c864bf187.00000020.html b/www/.content.EZtzwPjb/html/a1bc7c804b0d8526ffdf64a1c39b688c864bf187.00000020.html new file mode 100644 index 0000000..3881d4d --- /dev/null +++ b/www/.content.EZtzwPjb/html/a1bc7c804b0d8526ffdf64a1c39b688c864bf187.00000020.html @@ -0,0 +1,552 @@ + + + + + + + + Stop au terme pirate – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        +

                        Après la petite interview de Pascal Nègre réalisée par TF1 News, j’en ai eu marre de voir encore et toujours le terme « pirate » pour désigner les personnes qui téléchargent illégalement. Pour rappel, la définition du terme « pirate » : Le mot pirate provient à la fois du terme grec πειρατής (peiratês), lui même dérivé du verbe πειράω (peiraô) signifiant « s’efforcer de », « essayer de », « tenter sa chance à l’aventure » et du latin pirata : celui qui tente la fortune, qui entreprend. Ce n’est qu’au Moyen Âge que le pirate désigne un bandit qui parcourait les mers pour piller des navires de commerce.

                        +

                        Alors Pascal, prenons comme point de départ que vous désignez « pirate » ceux qui pillent votre maison de disque. Cela voudrait donc dire que je viens avec ma bande de flibustier équipé de canon pour défoncer votre devanture et voler votre argent. Mais ceci n’est exact puisque je ne vais pas chez votre fabricant de disques voler les disques fabriqués pour les revendre au plus offrant et me faire plein de blé. Moi je ne suis qu’un pauvre étudiant qui n’a aucun moyen financier, et je ne pourrais jamais acheter sur iDaube (=iTunes) de quoi remplir l’iPaud que je n’aurais jamais (d’après mes calculs : en se basant sur un ipod 8 Go et un titre fait environ 10Mo donc sa fait 8000/10=800 que l’on multiplie par le prix d’un titre soit 0.99€, 800*0.99=792€ ). Pour revenir au téléchargement illégal, quand je télécharge un titre, je ne le vole pas car je n’aurais pas pu l’acheter donc je ne crée pas un manque à gagner pour votre entreprise. Et même au contraire, je contribue à la promotion de vos artistes en téléchargeant  car quand je trouve un truc bien, j’en fais la promotion en parlant à mes contacts de ce que j’ai trouvé. En attendant, vous dites que les artistes qui vendent 100000 disques touchent à peine 2000€. Mais vous, votre salaire c’est combien ? 8000€ ou plus dans les 20000€ (vous êtes plus Audi ou BMW ?). Je vous cite « moins de nouveaux talents émergent » …Ah bon !?!$$?? et la nouvelle star , stardaube, j’en passe et des meilleurs, ça ne vous fait pas des nouvelles daubes à sortir ?

                        +

                        Pour revenir sur le coeur du sujet « pirate », je ne sais pas si j’ai réussi à tuer un artiste technicien sonore en sabordant téléchargeant rené la taupe. En tout cas Sarko pour vous c’est une bonne affaire, avec la carte musique jeune qui vous fait une belle prime de fin d’année donnée gracieusement par nos impôts. J’espère que vous offrirez des Ipods à vos enfants. Puis le coup hadopi aussi, pour faire peur au gens et les faire culpabiliser de vous faire gagner moins d’argent cette année. Je vous cite encore une fois pour finir : « j’ai simplement  dit que je ne croyais pas au modèle de la gratuité de la musique financée par la pub. Ni pour Deezer, ni surtout pas pour nous. » , bien joué le « je ne croyais pas » c’étais facile pour vous de mettre la pression à Deezer en augmentant votre dîme parce que si vous les aviez laissés continuer dans cette voie, il aurait fallu que vous baissiez votre salaire pour rémunérer vos artistes.

                        +

                        C’est là que je m’aperçois que je n’ai pas tout à fait réussi à garder mon sang froid. Dans l’attente que tu me lises Pascal, je t’embrasse, Bisous @++.

                        +

                        PS Pour Pascal :

                        +

                        http://bluetouff.com/2010/11/24/hadopi-pascal-negre-defend-son-bebe/

                        +

                        http://www.glazman.org/weblog/dotclear/index.php?post/2010/11/24/Reponse-a-Pascal-Negre-qui-commence-a-serieusement-m-echauffer-les-oreilles

                        +
                        +
                        +
                        +
                        +
                        Catégories : HadopiNews
                        +
                        +
                        +
                        + + + + + + + + + +
                        +
                        +
                        +
                        +
                        +
                        +
                        +

                        + 4 commentaires

                        +
                        + +
                        +
                        +
                        +
                        +

                        + Xavier + · 26 novembre 2010 à 0 h 05 min +

                        +

                        Ouah sa va tu t’est lâché . Lol . Il doit bien avoir un Twitter ou un Facebook pour lui transmettre l’info LOL. Néanmoins je pense qu ce qu’on télécharge est quelque chose que l’on achètera pas donc il y à perte d’argent quand même .mais avec la pub faite grâce au téléchargement ils ne perdent rien .fin voila jdit sa jdit rien moi ;)

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + HugoPoi + · 26 novembre 2010 à 10 h 20 min +

                        +

                        J’ai twitter l’article à Monsieur Pascal Nègre mais je pense que même si il m’a lu, il n’a pas le temps de répondre à toutes les critiques qu’on lui fait entre Numerama, Bluetouff, Glazman …
                        +Quand tu dis que si on télécharge quelque chose, on ne l’achètera pas, c’est faux parce que quand un truc me plait vraiment je vais l’acheter.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + saad + · 25 avril 2011 à 21 h 26 min +

                        +

                        cool

                        + +
                        +
                        + +
                        +
                        +

                        + Tweets that mention Stop au terme pirate | HugoPoi -- Topsy.com + · 28 novembre 2010 à 3 h 08 min +

                        +

                        […] This post was mentioned on Twitter by HugoPoi, HugoPoi. HugoPoi said: Stop au terme pirate http://bit.ly/flDnyU @Pascal_Negre […]

                        + +
                        +
                        + +
                        +
                        +
                        +

                        Laisser un commentaire

                        Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                        +
                        +
                        +

                        + +

                        +
                        +
                        +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        + + +
                        + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/a1d2b24a0be4aae73e68b6b65701a47470ad844a.00000536.html b/www/.content.EZtzwPjb/html/a1d2b24a0be4aae73e68b6b65701a47470ad844a.00000536.html new file mode 100644 index 0000000..fa80f22 --- /dev/null +++ b/www/.content.EZtzwPjb/html/a1d2b24a0be4aae73e68b6b65701a47470ad844a.00000536.html @@ -0,0 +1,371 @@ + + + + + + + tv – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +

                        Honte Télévisuelle

                        Je viens de déménager à Belfort et dans mon 19m² je n’ai pas de télévision mais je suis l’actualité via internet grâce à twitter. Je me suis aperçu que ces dernier mois, le nombre d’émissions abordant le sujet d’internet et compagnie était assez conséquent. (suite…)

                        +
                        Par HugoPoi, il y a
                        +
                        + +
                        +
                        +
                        +
                        + +
                        +
                        + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/a1e27c570fb1487c503f7d1972d7c13aa8a05d0c.00000573.js b/www/.content.EZtzwPjb/html/a1e27c570fb1487c503f7d1972d7c13aa8a05d0c.00000573.js new file mode 100644 index 0000000..3a5be8a --- /dev/null +++ b/www/.content.EZtzwPjb/html/a1e27c570fb1487c503f7d1972d7c13aa8a05d0c.00000573.js @@ -0,0 +1,30 @@ +var ak_js = document.getElementById( "ak_js" ); + +if ( ! ak_js ) { + ak_js = document.createElement( 'input' ); + ak_js.setAttribute( 'id', 'ak_js' ); + ak_js.setAttribute( 'name', 'ak_js' ); + ak_js.setAttribute( 'type', 'hidden' ); +} +else { + ak_js.parentNode.removeChild( ak_js ); +} + +ak_js.setAttribute( 'value', ( new Date() ).getTime() ); + +var commentForm = document.getElementById( 'commentform' ); + +if ( commentForm ) { + commentForm.appendChild( ak_js ); +} +else { + var replyRowContainer = document.getElementById( 'replyrow' ); + + if ( replyRowContainer ) { + var children = replyRowContainer.getElementsByTagName( 'td' ); + + if ( children.length > 0 ) { + children[0].appendChild( ak_js ); + } + } +} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/a21eb22d91e7c2bce11a646168142a6d6b4d2c21.00000474.html b/www/.content.EZtzwPjb/html/a21eb22d91e7c2bce11a646168142a6d6b4d2c21.00000474.html new file mode 100644 index 0000000..9ad2c36 --- /dev/null +++ b/www/.content.EZtzwPjb/html/a21eb22d91e7c2bce11a646168142a6d6b4d2c21.00000474.html @@ -0,0 +1,364 @@ + + + + + + + obs – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        + +
                        +
                        + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/a2206c058f207a60a4866ed0ba65d0f8f4e307eb.00000206.html b/www/.content.EZtzwPjb/html/a2206c058f207a60a4866ed0ba65d0f8f4e307eb.00000206.html new file mode 100644 index 0000000..7ea9b79 --- /dev/null +++ b/www/.content.EZtzwPjb/html/a2206c058f207a60a4866ed0ba65d0f8f4e307eb.00000206.html @@ -0,0 +1,680 @@ + + + + + + + + Installer Mac OS X Mavericks avec VirtualBox – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        +

                        Capture Installation Mac OS X MavericksComme Apple c’est des blaireaux et que j’avais besoin d’un environnement de développement pour iDaube. J’ai du me résoudre à installer un Mac OS X dans une machine virtuel.

                        +

                        Ce dont vous avez besoin :

                        + +

                        Moi je travail sous Linux Mint mais vous devriez réussir à faire les manipulations sous Windaube.

                        +

                        1) Préparer la clé pour pouvoir booter dans la VM

                        +

                        Au début j’ai essayer de convertir le .dmg en ISO avec un outil de conversion mais cela ne marche pas car l’opération doit endommager le système de boot mis en place par Niresh. Donc la seul solution que j’ai trouvé c’est de faire une clé USB comme indiqué par Niresh avec dd.

                        +

                        Sous Mint/ubuntu/debian :

                        +

                        Une façon simple sous Linux d’identifier votre clé usb c’est avec la commande « mount », cela va lister toutes les partitions monter avec les périphériques correspondants.

                        +
                        hugo@hugo-NB ~ $ mount
                        +/dev/sda2 on /boot type ext3 (rw)
                        +/dev/mapper/lmvg-home on /home type ext4 (rw)
                        +/dev/mapper/lmvg-var on /var type ext4 (rw,errors=remount-ro)
                        +/dev/sda1 on /boot/efi type vfat (rw)
                        +binfmt_misc on /proc/sys/fs/binfmt_misc type binfmt_misc (rw,noexec,nosuid,nodev)
                        +gvfsd-fuse on /run/user/hugo/gvfs type fuse.gvfsd-fuse (rw,nosuid,nodev,user=hugo)
                        +/dev/mapper/lmvg-games on /media/hugo/90d3426d-d8b2-4ba4-a7df-98363b9b40d9 type ext4 (rw,nosuid,nodev,uhelper=udisks2)
                        +/dev/sdb1 on /media/hugo/HugoKey type ext4
                        +

                        Moi ma clé usb c’est /dev/sdb. Donc après la commande pour balancer le dmg sur la clé :

                        +

                        ATTENTION LA COMMANDE DD ci-dessous peut casser votre système si vous le faites sur le mauvais périphérique.

                        +
                        hugo@hugo-NB ~ $ sudo umount /media/hugo/HugoKey
                        +hugo@hugo-NB ~ $ sudo dd if=mavericks.dmg of=/dev/sdb bs=1M
                        +

                        Sous Windaube

                        +

                        Je ne vais pas détailler la procédure mais vous avez 2 solutions, soit vous utilisez la commande dd disponible avec MinGW dans les outils Msys. Ou vous utilisez Win32DiskImager (je vous recommande cette solution qui est la plus simple).

                        +

                        2) Configurer votre VM dans VirtualBox

                        +

                        Voilà les paramètres que j’ai utilisé pour installer:

                        +
                          +
                        • OSType : Mac OSX 10.9 64bits
                        • +
                        • RAM : 2048Mo
                        • +
                        • Activer l’accélération Graphique 3D
                        • +
                        • Mémoire Vidéo : 128Mo
                        • +
                        • Désactiver l’EFI
                        • +
                        • VT activé
                        • +
                        • Pagination Imbriqué activé
                        • +
                        • IO-APIC activé
                        • +
                        • Horloge UTC désactivé
                        • +
                        • Son désactivé (uniquement pendant l’installation)
                        • +
                        • Réseau désactivé (uniquement pendant l’installation)
                        • +
                        • Un disque virtuel de 20 Go
                        • +
                        +

                        3) Booter sur la clé USB dans VirtualBox

                        +

                        Je n’ai pas réussi à booter sur la clé avec l’ajout d’un filtre USB dans la VM, donc la solution que j’ai trouvé sur le net est de créer un fichier lien de disque physique. Pour le créer c’est relativement simple :

                        +
                        hugo@hugo-NB ~ $ vboxmanage internalcommands createrawvmdk -filename usb.vmdk -rawdisk /dev/sdb
                        +

                        Une fois votre fichier vmdk créé vous pouvez l’ajouter dans votre VM comme un disque virtuel existant, prenez soins de mettre ce disque sur le port SATA 0 car VirtualBox ce base sur l’ordre des disques pour le boot. Moi j’ai eu des problèmes de droits avec mes périphériques USB donc j’ai exécuté la commande vboxmanage avec sudo puis j’ai aussi lancé virtualbox avec sudo.

                        +

                        Pour Windows la procédure plus en détaille est disponible sur ce blog.

                        +

                        4) Lancer l’installation dans VirtualBox

                        +

                        Vous lancez la vm et ça boot. Si vous avez une erreur du type Fatal impossible de trouver de quoi booter, vérifiez que vous avez bien mis la clé USB en disque SATA sur le port 0 et le disque virtuel sur le 1 ou plus. Moi ça été un peu long avant d’afficher le choix de la langue environ 60 secondes, cela doit être dû à la vérification de l’image d’installation. Au moment de choisir la partition d’installation, vous devez lancer l’outil de disque pour créer une partition sur le disque virtuel (dans le menu en haut), ensuite vous le fermez et l’installateur continu.

                        +

                        Pour information ma vm ne s’arrête pas correctement au niveau de l’affichage, je penses qu’il y a un problème de driver mais j’y connais que dalle en iDaube OSX. Une fois l’installation finit vous pouvez passer la connexion iCloud et laisser le script finir l’installation. Ensuite vous devez créer un utilisateur administrateur pour ne pas utiliser le compte root. Et je n’ai pas encore réussi à avoir du son peut-être en laissant activé pendant l’installation mais je sais que ça peut poser problème.

                        +

                        Les identifiants de connexion sont :

                        +
                          +
                        • login : root
                        • +
                        • mot de passe : niresh
                        • +
                        +

                        5) Configurer pour avoir une résolution correcte

                        +

                        Pour cela il faut éditer le fichier /Extra/com.chameleon.Boot.plist dans votre OS X fraichement installé et rajouter/éditer les balises suivantes :

                        +
                        <key>GraphicsEnabler</key>
                        +<string>y</string>
                        +<key>Graphics Mode</key>
                        +<string>1366x768x32</string>
                        +<key>Kernel Flags</key>
                        +<string>"Graphics Mode"="1366x768x32"</string>
                        +

                        Dans la balise string Kernel Flags, des flags sont surement déjà présent donc moi je les ai laissé, j’ai rajouter « Graphics Mode »= »1366x768x32 » à la fin.

                        +

                        Ensuite vous devez éditer votre fichier de configuration vbox avec les commandes suivantes :

                        +
                        hugo@hugo-NB ~ $ vboxmanage setextradata "MAC OS X" "CustomVideoMode1" "1366x768x32"
                        +hugo@hugo-NB ~ $ vboxmanage setextradata "MAC OS X" "GUI/CustomVideoMode1" "1366x768x32"
                        +

                        Voilà après c’est sans garantie de fonctionnement …

                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +

                        + 6 commentaires

                        +
                        + +
                        +
                        +
                        +
                        +

                        + sc + · 2 mars 2014 à 23 h 44 min +

                        +

                        Merci, excellent tuto ! En suivant les étapes ça passe tout seul.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Djow + · 5 mars 2014 à 16 h 50 min +

                        +

                        Salut et merci pour le tuto , je suis bloqué a l instal « missing bluetooth controller transport » tester différente manip mais rien y fais . Une idée?

                        + +
                        +
                        + + +
                        + +
                        +
                        +
                        +
                        +

                        + LeKingduWar + · 7 mars 2014 à 10 h 22 min +

                        +

                        Hugo stp il me demande un controlleur bluetooth.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + mac + · 7 mars 2014 à 14 h 03 min +

                        +

                        Thanks, I’m installing it right now. The usb key step wasnt necessary however, you can convert it directly from dmg to vdi with: « VBoxManage convertdd yourdmgfile.dmg yournewvdiimage.vdi ». Then boot from the converted .vdi file. Worked for me on Ubuntu 12.04 with Virtualbox 4.3.6.

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Niamor + · 16 avril 2014 à 10 h 30 min +

                        +

                        Bonjour à tous,
                        +Effectivement, l’étape avec la clé USB n’est pas nécessaire.
                        +Il est tout à fait possible d’installer l’OS directement en bootant sur l’iso qui sera préalablement monté via le lecteur virtuel.
                        +En tout cas, merci pour le tuto et les sources.
                        +Bonne continuation

                        + +
                        +
                        + +
                        +
                        +
                        +

                        Répondre à LeKingduWar Annuler la réponse

                        Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                        +
                        +
                        +

                        + +

                        +
                        +
                        +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        + + +
                        + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/a3457ea542f07d0a9cc6d5f7455dd7ec03c20f3e.00000156.html b/www/.content.EZtzwPjb/html/a3457ea542f07d0a9cc6d5f7455dd7ec03c20f3e.00000156.html new file mode 100644 index 0000000..7119056 --- /dev/null +++ b/www/.content.EZtzwPjb/html/a3457ea542f07d0a9cc6d5f7455dd7ec03c20f3e.00000156.html @@ -0,0 +1,901 @@ + + + + + + + + Réparer un Vidéoprojecteur Sony VPL-CX5 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        +

                        Bon les cocos, j’ai récupéré un vidéo projecteur Sony VPL-CX5 en état décédé. Comme je sais que c’est encore et toujours ce problème d’obsolescence programmée j’ai donc décidé de le réparer.

                        +

                        Sony VPL-CX5

                        +

                        Première étape, identifier la panne

                        +

                        Le vidéoprojecteur ne donnait aucun signe de vie, aucune led ne s’allume quand je l’ai branché rien du tout même pas un petit crépitement d’alimentation. Je pense a un problème d’alimentation mais rien est sur tant que je ne l’ai pas démonté. Mais avant le dévissage je vais quand même faire une recherche Google car le Internet il est grand et il est beau. J’ai trouvé un truc qui m’a mis la puce à l’oreille sans même avoir enlever la première visse, sur un forum quelconque que je n’arrive plus à retrouver, un mec dit qu’il a changé un composant (un certain MCZ3001) sur une des cartes d’alimentation, et le vidéoprojecteur remarchait.

                        +

                        Démontage

                        +

                        Sony VPL-CX5

                        +

                        J’ai donc commencé par enlever les quelques visses, puis démonter toutes les cartes une par une, une vrai galère. Pour m’aider j’ai trouvé le « manuel de service » (or Service Manual) que je mets a disposition ici même : sony_vpl-cx5_cs5_servicemanual. J’ai mis dans la suite les références des connecteurs pour les mesures.

                        +

                        1) Premier test vérifier le fusible sur la première carte d’alimentation GA, faire le test avec la carte débranché, j’ai utilisé un voltmètre sur la position test de résistance : test OK.

                        +

                        2) Deuxième test, vérifier la tension continu fournie par cette carte GA sur le connecteur de sortie CN2001 environ 380V DC, DONC FAIRE CECI AVEC PRÉCAUTION (je l’ai fait avec un voltmètre de merde à 5€) : test OK j’ai 380 Volt en sortie. Sur cette carte il y un gros condensateur de 400V donc faire TRÈS ATTENTION MÊME QUAND LA CARTE EST DÉBRANCHÉ DU SECTEUR.(j’ai vérifier le condensateur se décharge assez vite j’ai mesuré 4V 10 secondes après avoir débranché)

                        +

                        3) Maintenant test de la carte GB qui transforme le 400V continu en basse tension continu ici du 24V d’après le SM. Donc j’ai le point de mesure parfait, c’est le connecteur CN3201.

                        +
                        N'oubliez d'ouvrir le manuel de service ça donne des infos précieuses pour le dépannage

                        N’oubliez d’ouvrir le manuel de service ça donne des infos précieuses pour le dépannage

                        +

                        Plusieurs points pour tester le plus pratique étant le petit connecteur blanc de 3 broches qui fournit la masse et VCC 24V. Après mesure sur ce connecteur j’ai une tension stable mais pas du 24VDC, les composants n’ont pas l’air endommagés donc je vérifie à l’entrée du fameux MCZ3001 il est bien alimenté correctement mais ne sort pas 24VDC. Pas de condensateurs chimiques endommagés.

                        +

                        Donc la panne est certainement dû à ce composant, achetons-le !

                        +

                        Trouver le composant de rechange

                        +

                        Au début j’ai cherché chez des e-commerçant d’électronique comme Farnell,Conrad, etc pas trouvé en france, puis j’ai fait les marchants Anglais et je l’ai trouvé mais à 30€ frais de port inclus. Et comme un con j’avais oublié de faire Ebay : encore un coup des chinois 4.27€ avec le support DIP et les frais de port inclus OMFG j’adore la mondialisation. J’en ai pris 2 pour mois de 10€ et comme les chinois ils sont trop fort j’ai tout reçu en moins de 2 semaines.

                        +

                        Capture-ebay-mcz3001

                        +

                        Dés-soudage

                        +

                        Bon j’avais des fer à souder de merde et du coup c’est le #FAIL, j’ai pas réussi à dés-souder proprement, j’ai donc été obligé d’investir dans une merde à 10€ :

                        +

                        Fer à souderEnsuite j’ai finalement réussi à dés-souder :

                        +

                        Carte GB MCZ3001 dés-soudéEt il me semble que sur cette photo j’avais nettoyer avec du dissolvant.

                        +

                        Remontage

                        +

                        Alors je suis désolé mais je n’ai pas de photos pour le MCZ soudé car j’avais déjà remonté le projecteur. Les étapes :

                        +
                          +
                        1. Souder un support fourni (au cas ou ce fameux MCZ rendrais encore l’âme)
                        2. +
                        3. Placer un MCZ neuf dans le support
                        4. +
                        5. Relier la carte GA et GB ensemble
                        6. +
                        7. Brancher sur le 220V
                        8. +
                        9. Tester le 24VDC sur le connecteur CN3201
                        10. +
                        11. #WIN
                        12. +
                        13. Remonter le projecteur
                        14. +
                        15. Tester en vrai
                        16. +
                        17. #WIN2
                        18. +
                        +

                        Conclusion

                        +

                        Oui c’est un WIN d’une valeur 4€ mais je tiens à préciser que ça représente environ 10 heures de travail continu. Entre les recherches Google et la lecture de la documentation, les heures passés au démontage, les quelques fois ou je me suis arraché les cheveux et risquer ma vie avec un voltmètre à 5€.

                        +

                        Mon banc de test

                        +

                        Banc de test chez HugoLa table du salon 2Les Tofs

                        + + +
                        +
                        +
                        + +
                        +
                        + + + + + + + + + +
                        +
                        +
                        +
                        +
                        +
                        +
                        +

                        + 16 commentaires

                        +
                        + +
                        +
                        +
                        +
                        +

                        + Georg + · 30 janvier 2014 à 12 h 22 min +

                        +

                        Hello,
                        +dear Hugo, at first: HAVE MANY THANKS FOR YOUR VERY INTERESTING BLOG!!!

                        +

                        I also have a cx5 and try to repair it.

                        +

                        It has the same problems like your projector…

                        +

                        I’ve measured the CN2001 but in my power supply there are only 320 V (stable).
                        +Are you sure, that there have to be 380V?
                        +In the service manual, I didn’t find a value (either 320V nor 380V)

                        +

                        Best Regards
                        +Your Georg

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 21 février 2014 à 17 h 36 min +

                          +

                          Sorry to be so long to answer,
                          +320V seems to be OK, I have extrapolated the value from the schema ~ 220Vxrootsquare(2) but this depends of the quality of your current source. I think 320 will not impact the power for the next card.

                          +

                          Good repair !
                          +Thanks for the comment :-D

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + henri moine + · 2 février 2014 à 20 h 43 min +

                        +

                        Bonsoir,
                        +Merci beaucoup pour l’explication détaillée et les photos.
                        +Je vais pas tarder de m’attaquer à mon SONY VPL CS7 bizarrement inerte depuis quelques semaines…
                        +Bonne continuation !

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + florian + · 21 avril 2014 à 9 h 09 min +

                          +

                          Bonjour,
                          +Je possède également un sony VPL CS7, et depuis plusieurs mois il a quelques signes de faiblesses.

                          +

                          1) lorsque je le débranche du secteur et que je le rebranche, il faut que j’attende 24 à 48 h pour que le voyant on/off se mette à éclairer, donc je ne peux pas l’allumer pendant ce temps.

                          +

                          2) aujourd’hui j’ai beau le laisser brancher, aucun signe de vie plus rien ne s’allume.

                          +

                          As tu attaqué ton VPL, As tu trouvé quelque chose ?

                          +

                          Merci

                          + +
                          +
                          +
                            +
                            + +
                            +
                            +
                            +
                            +

                            + HugoPoi + · 9 mai 2014 à 17 h 50 min +

                            +

                            Le VPL que j’avais était en panne je l’ai réparé jusqu’à il y a 2 mois ou il retombé en panne. Ton problème d’allumage ressemble à un problème de condensateur cramé. tu peux regarder si tu en vois des gonflés en démontant.

                            + +
                            +
                            + +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Ghent + · 21 septembre 2014 à 12 h 48 min +

                        +

                        Bonjour,

                        +

                        Déjà, super tuto.
                        +Je rencontre un problème à priori similaire avec mon CX5: le bouton de mise sous tension n’est plus éclairé et il ne se passe rien quand j’appuie dessus.

                        +

                        Je me suis donc lancé, et j’ai démonté jusqu’à atteindre les cartes d’alimentation.
                        +J’ai mesuré donc au niveau du CN3201, et là j’ai 22V continu stable.
                        +D’où ma première question, ai-je le même problème que toi avec le MCZ3001, ou dois-je chercher autre part ?
                        +Faut-il 24V exactement ?

                        +

                        Ensuite, j’ai essayé de me rapprocher du composant lui-même, mais je ne sais pas où mesurer. Le diagramme indique le VC1 sur la patte 8, mais je ne sais pas où prendre la masse.
                        +Saurais-tu m’aider ?

                        +

                        J’ai enfin voulu tester la tension en sortie de la carte GB, le point 17V, mais même question, si je teste la patte 1 du connecteur, où prendre la masse pour vérifier qu’il y a bien 17V ?
                        +Cette partie est-elle alimentée malgré que l’appareil soit éteint ?

                        +

                        Dans tous les cas, j’ai commandé le MCZ3001D, mais je voudrais m’assurer qu’il est bien le responsable avant de le changer.

                        +

                        Merci d’avance pour tes réponses, et encore une fois, merci de partager ton travail !

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 26 septembre 2014 à 15 h 01 min +

                          +

                          Je penses que si tu as 22V sur CN3201 le problème est sûrement ailleurs. Même si cela ne coûte rien de changer le MCZ3001D si tu as de quoi dessouder proprement. Regarde sur le service manuel pour tester les autres tensions qui sortent de la carte après les partie d’isolement, de mémoire il y a 3,3 V et du 5V.

                          + +
                          +
                          +
                            +
                            + +
                            +
                            +
                            +
                            +

                            + Neckron + · 12 décembre 2014 à 21 h 32 min +

                            +

                            Bonsoir, je déterre un peu ce vpl-cx5 que je possède et que je vends !!!
                            +Je voie qu’il y a encore des personnes qui s’y intéresse.
                            +Je précise juste que le mien est en excellent état de marche, il y a la télécommande et qu’il n’a servi QUE 220 Heures. Lampe d’origine. Je cherchais pendant un temps un moyen de l’upgrader pour l’image, mais finalement…. je change…

                            + +
                            +
                            + +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Jean-Marie + · 31 décembre 2014 à 14 h 43 min +

                        +

                        Bonjour Hugo.
                        +Merci pour ton partage d’expérience.
                        +Moi aussi, j’ai un VPL-CS7 inerte comme tu dis. Pas la moindre led s’allume ou clignote quand je le branche.
                        +Je l’ai complètement démonté. Je soupçonne un composant sur le bloc d’alim.
                        +As-tu réparé le tien ?
                        +Merci.
                        +JM.

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 31 janvier 2015 à 15 h 13 min +

                          +

                          Moi j’ai bien réparé mon CX5 mais celui-ci est retombé en panne 6 mois plus tard. Cette fois-ci avec plus de composants endommagés :-(
                          +Bon courage pour les réparations.

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Sorce + · 14 mars 2015 à 16 h 05 min +

                        +

                        Bonjour ,j’ai un vpl cs6 ,qui ne s’allume pas rien du tous j’ai suivi tes étape et sur le connecteur con 2001 et la 325v bizarre bon je relie la carte gb pour tester au borne du con 3201 et la 15v et sa retombe et sa remonte a 15v peut tu m aider cdt richard (pense tu que je doi changer le mcz)

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 29 avril 2015 à 16 h 18 min +

                          +

                          Vérifiez les autres tensions en sortie de la carte GB, de mémoire il doit y avoir 3,3 V du 5 V et du 15V. Si tout est OK, la carte-mère principale est peut-être endommagé et pas moyen de réparer sans changement.

                          + +
                          +
                          + +
                          + +
                          +
                          +
                          +
                          +

                          + Gilles + · 16 juin 2018 à 13 h 44 min +

                          +

                          Même chose que vous ?
                          +Avez-vous trouvé une solution ?
                          +Est-ce que c’est normal cette tension non stable ?

                          + +
                          +
                          + +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Daoud Yacoub + · 20 octobre 2015 à 9 h 54 min +

                        +

                        Je remercie beaucoup l’equipe

                        + +
                        +
                        + +
                        + +
                        +
                        +
                        +
                        +

                        + Daoud Yacoub + · 20 octobre 2015 à 10 h 02 min +

                        +

                        Aidez moi à depanner mon vidéo projecteur le tout ne s’allume pas ;jai démonté et nettoyer toutes les plaques alimentation et logique me rien ne se passe mais en toute sincérité si je peux avoir le document technique de réparation m’est indispensable

                        + +
                        +
                        +
                          +
                          + +
                          +
                          +
                          +
                          +

                          + HugoPoi + · 24 octobre 2015 à 13 h 39 min +

                          +

                          Les commentaires n’ont pas pour vocation d’être un forum :-)

                          + +
                          +
                          + +
                        + +
                        +
                        +
                        +

                        Laisser un commentaire

                        Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                        +
                        +
                        +

                        + +

                        +
                        +
                        +
                        +
                        +
                        +
                        + +
                        +
                        +
                        +
                        +
                        +
                        + + +
                        + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/a36d867f3907c28616113ea40905978f3e9f19d8.00000574.js b/www/.content.EZtzwPjb/html/a36d867f3907c28616113ea40905978f3e9f19d8.00000574.js new file mode 100644 index 0000000..3a5be8a --- /dev/null +++ b/www/.content.EZtzwPjb/html/a36d867f3907c28616113ea40905978f3e9f19d8.00000574.js @@ -0,0 +1,30 @@ +var ak_js = document.getElementById( "ak_js" ); + +if ( ! ak_js ) { + ak_js = document.createElement( 'input' ); + ak_js.setAttribute( 'id', 'ak_js' ); + ak_js.setAttribute( 'name', 'ak_js' ); + ak_js.setAttribute( 'type', 'hidden' ); +} +else { + ak_js.parentNode.removeChild( ak_js ); +} + +ak_js.setAttribute( 'value', ( new Date() ).getTime() ); + +var commentForm = document.getElementById( 'commentform' ); + +if ( commentForm ) { + commentForm.appendChild( ak_js ); +} +else { + var replyRowContainer = document.getElementById( 'replyrow' ); + + if ( replyRowContainer ) { + var children = replyRowContainer.getElementsByTagName( 'td' ); + + if ( children.length > 0 ) { + children[0].appendChild( ak_js ); + } + } +} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/a3c1420809234094bc9d6af7c6538e62f6b45c4a.00000597.js b/www/.content.EZtzwPjb/html/a3c1420809234094bc9d6af7c6538e62f6b45c4a.00000597.js new file mode 100644 index 0000000..4210c96 --- /dev/null +++ b/www/.content.EZtzwPjb/html/a3c1420809234094bc9d6af7c6538e62f6b45c4a.00000597.js @@ -0,0 +1,462 @@ +(function($) { + + 'use strict'; + + if (typeof _wpcf7 == 'undefined' || _wpcf7 === null) { + _wpcf7 = {}; + } + + _wpcf7 = $.extend({ + cached: 0 + }, _wpcf7); + + $.fn.wpcf7InitForm = function() { + this.ajaxForm({ + beforeSubmit: function(arr, $form, options) { + $form.wpcf7ClearResponseOutput(); + $form.find('[aria-invalid]').attr('aria-invalid', 'false'); + $form.find('img.ajax-loader').css({ visibility: 'visible' }); + return true; + }, + beforeSerialize: function($form, options) { + $form.find('[placeholder].placeheld').each(function(i, n) { + $(n).val(''); + }); + return true; + }, + data: { '_wpcf7_is_ajax_call': 1 }, + dataType: 'json', + success: $.wpcf7AjaxSuccess, + error: function(xhr, status, error, $form) { + var e = $('
                        ').text(error.message); + $form.after(e); + } + }); + + if (_wpcf7.cached) { + this.wpcf7OnloadRefill(); + } + + this.wpcf7ToggleSubmit(); + + this.find('.wpcf7-submit').wpcf7AjaxLoader(); + + this.find('.wpcf7-acceptance').click(function() { + $(this).closest('form').wpcf7ToggleSubmit(); + }); + + this.find('.wpcf7-exclusive-checkbox').wpcf7ExclusiveCheckbox(); + + this.find('.wpcf7-list-item.has-free-text').wpcf7ToggleCheckboxFreetext(); + + this.find('[placeholder]').wpcf7Placeholder(); + + if (_wpcf7.jqueryUi && ! _wpcf7.supportHtml5.date) { + this.find('input.wpcf7-date[type="date"]').each(function() { + $(this).datepicker({ + dateFormat: 'yy-mm-dd', + minDate: new Date($(this).attr('min')), + maxDate: new Date($(this).attr('max')) + }); + }); + } + + if (_wpcf7.jqueryUi && ! _wpcf7.supportHtml5.number) { + this.find('input.wpcf7-number[type="number"]').each(function() { + $(this).spinner({ + min: $(this).attr('min'), + max: $(this).attr('max'), + step: $(this).attr('step') + }); + }); + } + + this.find('.wpcf7-character-count').wpcf7CharacterCount(); + + this.find('.wpcf7-validates-as-url').change(function() { + $(this).wpcf7NormalizeUrl(); + }); + + this.find('.wpcf7-recaptcha').wpcf7Recaptcha(); + }; + + $.wpcf7AjaxSuccess = function(data, status, xhr, $form) { + if (! $.isPlainObject(data) || $.isEmptyObject(data)) { + return; + } + + var $responseOutput = $form.find('div.wpcf7-response-output'); + + $form.wpcf7ClearResponseOutput(); + + $form.find('.wpcf7-form-control').removeClass('wpcf7-not-valid'); + $form.removeClass('invalid spam sent failed'); + + if (data.captcha) { + $form.wpcf7RefillCaptcha(data.captcha); + } + + if (data.quiz) { + $form.wpcf7RefillQuiz(data.quiz); + } + + if (data.invalids) { + $.each(data.invalids, function(i, n) { + $form.find(n.into).wpcf7NotValidTip(n.message); + $form.find(n.into).find('.wpcf7-form-control').addClass('wpcf7-not-valid'); + $form.find(n.into).find('[aria-invalid]').attr('aria-invalid', 'true'); + }); + + $responseOutput.addClass('wpcf7-validation-errors'); + $form.addClass('invalid'); + + $(data.into).trigger('wpcf7:invalid'); + $(data.into).trigger('invalid.wpcf7'); // deprecated + + } else if (1 == data.spam) { + $form.find('[name="g-recaptcha-response"]').each(function() { + if ('' == $(this).val()) { + var $recaptcha = $(this).closest('.wpcf7-form-control-wrap'); + $recaptcha.wpcf7NotValidTip(_wpcf7.recaptcha.messages.empty); + } + }); + + $responseOutput.addClass('wpcf7-spam-blocked'); + $form.addClass('spam'); + + $(data.into).trigger('wpcf7:spam'); + $(data.into).trigger('spam.wpcf7'); // deprecated + + } else if (1 == data.mailSent) { + $responseOutput.addClass('wpcf7-mail-sent-ok'); + $form.addClass('sent'); + + if (data.onSentOk) { + $.each(data.onSentOk, function(i, n) { eval(n) }); + } + + $(data.into).trigger('wpcf7:mailsent'); + $(data.into).trigger('mailsent.wpcf7'); // deprecated + + } else { + $responseOutput.addClass('wpcf7-mail-sent-ng'); + $form.addClass('failed'); + + $(data.into).trigger('wpcf7:mailfailed'); + $(data.into).trigger('mailfailed.wpcf7'); // deprecated + } + + if (data.onSubmit) { + $.each(data.onSubmit, function(i, n) { eval(n) }); + } + + $(data.into).trigger('wpcf7:submit'); + $(data.into).trigger('submit.wpcf7'); // deprecated + + if (1 == data.mailSent) { + $form.resetForm(); + } + + $form.find('[placeholder].placeheld').each(function(i, n) { + $(n).val($(n).attr('placeholder')); + }); + + $responseOutput.append(data.message).slideDown('fast'); + $responseOutput.attr('role', 'alert'); + + $.wpcf7UpdateScreenReaderResponse($form, data); + }; + + $.fn.wpcf7ExclusiveCheckbox = function() { + return this.find('input:checkbox').click(function() { + var name = $(this).attr('name'); + $(this).closest('form').find('input:checkbox[name="' + name + '"]').not(this).prop('checked', false); + }); + }; + + $.fn.wpcf7Placeholder = function() { + if (_wpcf7.supportHtml5.placeholder) { + return this; + } + + return this.each(function() { + $(this).val($(this).attr('placeholder')); + $(this).addClass('placeheld'); + + $(this).focus(function() { + if ($(this).hasClass('placeheld')) + $(this).val('').removeClass('placeheld'); + }); + + $(this).blur(function() { + if ('' == $(this).val()) { + $(this).val($(this).attr('placeholder')); + $(this).addClass('placeheld'); + } + }); + }); + }; + + $.fn.wpcf7AjaxLoader = function() { + return this.each(function() { + var loader = $('') + .attr({ src: _wpcf7.loaderUrl, alt: _wpcf7.sending }) + .css('visibility', 'hidden'); + + $(this).after(loader); + }); + }; + + $.fn.wpcf7ToggleSubmit = function() { + return this.each(function() { + var form = $(this); + + if (this.tagName.toLowerCase() != 'form') { + form = $(this).find('form').first(); + } + + if (form.hasClass('wpcf7-acceptance-as-validation')) { + return; + } + + var submit = form.find('input:submit'); + if (! submit.length) return; + + var acceptances = form.find('input:checkbox.wpcf7-acceptance'); + if (! acceptances.length) return; + + submit.removeAttr('disabled'); + acceptances.each(function(i, n) { + n = $(n); + if (n.hasClass('wpcf7-invert') && n.is(':checked') + || ! n.hasClass('wpcf7-invert') && ! n.is(':checked')) { + submit.attr('disabled', 'disabled'); + } + }); + }); + }; + + $.fn.wpcf7ToggleCheckboxFreetext = function() { + return this.each(function() { + var $wrap = $(this).closest('.wpcf7-form-control'); + + if ($(this).find(':checkbox, :radio').is(':checked')) { + $(this).find(':input.wpcf7-free-text').prop('disabled', false); + } else { + $(this).find(':input.wpcf7-free-text').prop('disabled', true); + } + + $wrap.find(':checkbox, :radio').change(function() { + var $cb = $('.has-free-text', $wrap).find(':checkbox, :radio'); + var $freetext = $(':input.wpcf7-free-text', $wrap); + + if ($cb.is(':checked')) { + $freetext.prop('disabled', false).focus(); + } else { + $freetext.prop('disabled', true); + } + }); + }); + }; + + $.fn.wpcf7CharacterCount = function() { + return this.each(function() { + var $count = $(this); + var name = $count.attr('data-target-name'); + var down = $count.hasClass('down'); + var starting = parseInt($count.attr('data-starting-value'), 10); + var maximum = parseInt($count.attr('data-maximum-value'), 10); + var minimum = parseInt($count.attr('data-minimum-value'), 10); + + var updateCount = function($target) { + var length = $target.val().length; + var count = down ? starting - length : length; + $count.attr('data-current-value', count); + $count.text(count); + + if (maximum && maximum < length) { + $count.addClass('too-long'); + } else { + $count.removeClass('too-long'); + } + + if (minimum && length < minimum) { + $count.addClass('too-short'); + } else { + $count.removeClass('too-short'); + } + }; + + $count.closest('form').find(':input[name="' + name + '"]').each(function() { + updateCount($(this)); + + $(this).keyup(function() { + updateCount($(this)); + }); + }); + }); + }; + + $.fn.wpcf7NormalizeUrl = function() { + return this.each(function() { + var val = $.trim($(this).val()); + + if (val && ! val.match(/^[a-z][a-z0-9.+-]*:/i)) { // check the scheme part + val = val.replace(/^\/+/, ''); + val = 'http://' + val; + } + + $(this).val(val); + }); + }; + + $.fn.wpcf7NotValidTip = function(message) { + return this.each(function() { + var $into = $(this); + + $into.find('span.wpcf7-not-valid-tip').remove(); + $into.append('' + message + ''); + + if ($into.is('.use-floating-validation-tip *')) { + $('.wpcf7-not-valid-tip', $into).mouseover(function() { + $(this).wpcf7FadeOut(); + }); + + $(':input', $into).focus(function() { + $('.wpcf7-not-valid-tip', $into).not(':hidden').wpcf7FadeOut(); + }); + } + }); + }; + + $.fn.wpcf7FadeOut = function() { + return this.each(function() { + $(this).animate({ + opacity: 0 + }, 'fast', function() { + $(this).css({'z-index': -100}); + }); + }); + }; + + $.fn.wpcf7OnloadRefill = function() { + return this.each(function() { + var url = $(this).attr('action'); + + if (0 < url.indexOf('#')) { + url = url.substr(0, url.indexOf('#')); + } + + var id = $(this).find('input[name="_wpcf7"]').val(); + var unitTag = $(this).find('input[name="_wpcf7_unit_tag"]').val(); + + $.getJSON(url, + { _wpcf7_is_ajax_call: 1, _wpcf7: id, _wpcf7_request_ver: $.now() }, + function(data) { + if (data && data.captcha) { + $('#' + unitTag).wpcf7RefillCaptcha(data.captcha); + } + + if (data && data.quiz) { + $('#' + unitTag).wpcf7RefillQuiz(data.quiz); + } + } + ); + }); + }; + + $.fn.wpcf7RefillCaptcha = function(captcha) { + return this.each(function() { + var form = $(this); + + $.each(captcha, function(i, n) { + form.find(':input[name="' + i + '"]').clearFields(); + form.find('img.wpcf7-captcha-' + i).attr('src', n); + var match = /([0-9]+)\.(png|gif|jpeg)$/.exec(n); + form.find('input:hidden[name="_wpcf7_captcha_challenge_' + i + '"]').attr('value', match[1]); + }); + }); + }; + + $.fn.wpcf7RefillQuiz = function(quiz) { + return this.each(function() { + var form = $(this); + + $.each(quiz, function(i, n) { + form.find(':input[name="' + i + '"]').clearFields(); + form.find(':input[name="' + i + '"]').siblings('span.wpcf7-quiz-label').text(n[0]); + form.find('input:hidden[name="_wpcf7_quiz_answer_' + i + '"]').attr('value', n[1]); + }); + }); + }; + + $.fn.wpcf7ClearResponseOutput = function() { + return this.each(function() { + $(this).find('div.wpcf7-response-output').hide().empty().removeClass('wpcf7-mail-sent-ok wpcf7-mail-sent-ng wpcf7-validation-errors wpcf7-spam-blocked').removeAttr('role'); + $(this).find('span.wpcf7-not-valid-tip').remove(); + $(this).find('img.ajax-loader').css({ visibility: 'hidden' }); + }); + }; + + $.fn.wpcf7Recaptcha = function() { + return this.each(function() { + var events = 'wpcf7:spam wpcf7:mailsent wpcf7:mailfailed'; + $(this).closest('div.wpcf7').on(events, function(e) { + if (recaptchaWidgets && grecaptcha) { + $.each(recaptchaWidgets, function(index, value) { + grecaptcha.reset(value); + }); + } + }); + }); + }; + + $.wpcf7UpdateScreenReaderResponse = function($form, data) { + $('.wpcf7 .screen-reader-response').html('').attr('role', ''); + + if (data.message) { + var $response = $form.siblings('.screen-reader-response').first(); + $response.append(data.message); + + if (data.invalids) { + var $invalids = $('
                          '); + + $.each(data.invalids, function(i, n) { + if (n.idref) { + var $li = $('
                        • ').append($('').attr('href', '#' + n.idref).append(n.message)); + } else { + var $li = $('
                        • ').append(n.message); + } + + $invalids.append($li); + }); + + $response.append($invalids); + } + + $response.attr('role', 'alert').focus(); + } + }; + + $.wpcf7SupportHtml5 = function() { + var features = {}; + var input = document.createElement('input'); + + features.placeholder = 'placeholder' in input; + + var inputTypes = ['email', 'url', 'tel', 'number', 'range', 'date']; + + $.each(inputTypes, function(index, value) { + input.setAttribute('type', value); + features[value] = input.type !== 'text'; + }); + + return features; + }; + + $(function() { + _wpcf7.supportHtml5 = $.wpcf7SupportHtml5(); + $('div.wpcf7 > form').wpcf7InitForm(); + }); + +})(jQuery); diff --git a/www/.content.EZtzwPjb/html/a3c526b56c93232bceedcebf5b1efa9fae607ae6.00000689.css b/www/.content.EZtzwPjb/html/a3c526b56c93232bceedcebf5b1efa9fae607ae6.00000689.css new file mode 100644 index 0000000..20df2bb --- /dev/null +++ b/www/.content.EZtzwPjb/html/a3c526b56c93232bceedcebf5b1efa9fae607ae6.00000689.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7 .screen-reader-response{position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);height:1px;width:1px;margin:0;padding:0;border:0}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{color:#f00;font-size:1em;display:block}.use-floating-validation-tip span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;border:1px +solid #f00;background:#fff;padding: .2em .8em}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/a3f9a4fce59c1256eba054f53db3b808d6a8b174.00000570.js b/www/.content.EZtzwPjb/html/a3f9a4fce59c1256eba054f53db3b808d6a8b174.00000570.js new file mode 100644 index 0000000..3a5be8a --- /dev/null +++ b/www/.content.EZtzwPjb/html/a3f9a4fce59c1256eba054f53db3b808d6a8b174.00000570.js @@ -0,0 +1,30 @@ +var ak_js = document.getElementById( "ak_js" ); + +if ( ! ak_js ) { + ak_js = document.createElement( 'input' ); + ak_js.setAttribute( 'id', 'ak_js' ); + ak_js.setAttribute( 'name', 'ak_js' ); + ak_js.setAttribute( 'type', 'hidden' ); +} +else { + ak_js.parentNode.removeChild( ak_js ); +} + +ak_js.setAttribute( 'value', ( new Date() ).getTime() ); + +var commentForm = document.getElementById( 'commentform' ); + +if ( commentForm ) { + commentForm.appendChild( ak_js ); +} +else { + var replyRowContainer = document.getElementById( 'replyrow' ); + + if ( replyRowContainer ) { + var children = replyRowContainer.getElementsByTagName( 'td' ); + + if ( children.length > 0 ) { + children[0].appendChild( ak_js ); + } + } +} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/a42e1411acd0d958b257d6afe7a4cb1854350e1d.00001298.json b/www/.content.EZtzwPjb/html/a42e1411acd0d958b257d6afe7a4cb1854350e1d.00001298.json new file mode 100644 index 0000000..436dcde --- /dev/null +++ b/www/.content.EZtzwPjb/html/a42e1411acd0d958b257d6afe7a4cb1854350e1d.00001298.json @@ -0,0 +1 @@ +{"version":"1.0","provider_name":"HugoPoi","provider_url":"http:\/\/blog.hugopoi.net","author_name":"HugoPoi","author_url":"http:\/\/blog.hugopoi.net\/author\/hugopoi\/","title":"Liste de No\u00ebl","type":"rich","width":600,"height":338,"html":"
                          Liste de No\u00ebl<\/a><\/blockquote>\n + + + + + + + + + + + + + + + + + +
                          +
                          +
                          +
                          + +
                          +
                          +
                          +
                          +
                          +

                          Secure Boot n’est pas simple

                          1. Pourquoi cet article La sécurité de nos ordinateurs c’est un peu amélioré si on sait ce qu’on fait avec. Avant pour démarrer votre OS le BIOS utilisait un MBR Master Boot Record présent dans le premier secteur de votre disque-dur. Ce MBR pouvait être écrasé par n’importe quel programme Lire la suite…

                          +
                          Par HugoPoi, il y a

                          L’homme du milieu avec DD-WRT

                          J’avais besoin de faire un MITM entre un ONT et la box SFR NB6 pour pouvoir capturer les identifiants PPP pour le tunnel ipv6. Je n’avais pas de hub ou de machine avec 2 interfaces Ethernet pour pouvoir le faire de façon passive sans faire du spoofing ARP. Et je n’avais pas envie d’envoyer des trames ARP sur l’infrastructure réseau SFR. J’avais un Netgear WNR3500Lv1 dans un coin, je me suis dit qu’il y avais moyen d’utiliser ce genre de routeur pour faire du tapping passif.

                          +

                          (suite…)

                          +
                          Par HugoPoi, il y a

                          Pourquoi je suis sous Linux bordel !

                          Début d’année 2017, 6 mois que j’ai pas écrit sur le blog ! Cette année j’ai pris une résolution un choix de merde je n’installerais plus Windaube que se soit pour moi ou pour la dépanne, les amis, la famille, mon chat … Bref pendant les fêtes j’avais de la maintenance à faire comme d’habitude fallait faire une réinstallation pour la famille « met moi Windows 7 ça me suffit et au moins il y tout qui marche dessus » ça faisait environ plus 1 an que j’avais pas installé de windaube. Je me dit que ça va me prendre une petite demi journée. J’ai mis plus d’une journée si on compte le temps de faire les mises à jour. (suite…)

                          +
                          Par HugoPoi, il y a

                          Reflow Dell Inspiron 1546

                          +
                          Les choses n’ont pas beaucoup changé en terme d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un cadeau empoisonné de la belle-famille « Essaye de faire ce que tu peux pour récupérer mes photos, j’en rachèterais un ». Le pc portable en question était dans un état de mort certain.
                          + (suite…)
                          +
                          +
                          Par HugoPoi, il y a
                          +
                          +
                          + +
                          +
                          +
                          +
                          + +
                          +
                          + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/a4c5b1d5b198dbf76ca9f975860ef8814a7bdb4a.00000713.css b/www/.content.EZtzwPjb/html/a4c5b1d5b198dbf76ca9f975860ef8814a7bdb4a.00000713.css new file mode 100644 index 0000000..fe9245c --- /dev/null +++ b/www/.content.EZtzwPjb/html/a4c5b1d5b198dbf76ca9f975860ef8814a7bdb4a.00000713.css @@ -0,0 +1,28 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7 .screen-reader-response{position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);height:1px;width:1px;margin:0;padding:0;border:0}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{color:#f00;font-size:1em;display:block}.use-floating-validation-tip span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;border:1px +solid #f00;background:#fff;padding: .2em .8em}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wpcf7-recaptcha +iframe{margin-bottom:0}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/a4feb36e19844076dd5941a2e6dfc77228793643.00001207.js b/www/.content.EZtzwPjb/html/a4feb36e19844076dd5941a2e6dfc77228793643.00001207.js new file mode 100644 index 0000000..4042143 --- /dev/null +++ b/www/.content.EZtzwPjb/html/a4feb36e19844076dd5941a2e6dfc77228793643.00001207.js @@ -0,0 +1 @@ +var addComment={moveForm:function(a,b,c,d){var e,f,g,h,i=this,j=i.I(a),k=i.I(c),l=i.I("cancel-comment-reply-link"),m=i.I("comment_parent"),n=i.I("comment_post_ID"),o=k.getElementsByTagName("form")[0];if(j&&k&&l&&m&&o){i.respondId=c,d=d||!1,i.I("wp-temp-form-div")||(e=document.createElement("div"),e.id="wp-temp-form-div",e.style.display="none",k.parentNode.insertBefore(e,k)),j.parentNode.insertBefore(k,j.nextSibling),n&&d&&(n.value=d),m.value=b,l.style.display="",l.onclick=function(){var a=addComment,b=a.I("wp-temp-form-div"),c=a.I(a.respondId);if(b&&c)return a.I("comment_parent").value="0",b.parentNode.insertBefore(c,b),b.parentNode.removeChild(b),this.style.display="none",this.onclick=null,!1};try{for(var p=0;p + + Bouygues – HugoPoi + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Mon, 22 Aug 2016 14:10:26 +0000 + fr-FR + hourly + 1 + https://wordpress.org/?v=4.6.1 + + Orange et consort, impossible d’obtenir le désimlockage + http://blog.hugopoi.net/2013/09/15/orange-et-consort-impossible-dobtenir-le-desimlockage/ + http://blog.hugopoi.net/2013/09/15/orange-et-consort-impossible-dobtenir-le-desimlockage/#comments + Sat, 14 Sep 2013 23:01:40 +0000 + + + + + + + + + + http://blog.hugopoi.net/?p=794 + Lire la suite »

                          ]]>
                          + http://blog.hugopoi.net/2013/09/15/orange-et-consort-impossible-dobtenir-le-desimlockage/feed/ + 1 +
                          +
                          +
                          diff --git a/www/.content.EZtzwPjb/html/a54c797451eb9fc86f8b2f38f8291493ed930a0e.00000376.html b/www/.content.EZtzwPjb/html/a54c797451eb9fc86f8b2f38f8291493ed930a0e.00000376.html new file mode 100644 index 0000000..bca1a47 --- /dev/null +++ b/www/.content.EZtzwPjb/html/a54c797451eb9fc86f8b2f38f8291493ed930a0e.00000376.html @@ -0,0 +1,372 @@ + + + + + + + ddwrt – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                          +
                          +
                          +
                          + +
                          +
                          +
                          +
                          +
                          +

                          L’homme du milieu avec DD-WRT

                          J’avais besoin de faire un MITM entre un ONT et la box SFR NB6 pour pouvoir capturer les identifiants PPP pour le tunnel ipv6. Je n’avais pas de hub ou de machine avec 2 interfaces Ethernet pour pouvoir le faire de façon passive sans faire du spoofing ARP. Et je n’avais pas envie d’envoyer des trames ARP sur l’infrastructure réseau SFR. J’avais un Netgear WNR3500Lv1 dans un coin, je me suis dit qu’il y avais moyen d’utiliser ce genre de routeur pour faire du tapping passif.

                          +

                          (suite…)

                          +
                          Par HugoPoi, il y a
                          +
                          + +
                          +
                          +
                          +
                          + +
                          +
                          + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/a54d7b6505548a1f9d80924cc26fbe7dda8f2833.00000038.html b/www/.content.EZtzwPjb/html/a54d7b6505548a1f9d80924cc26fbe7dda8f2833.00000038.html new file mode 100644 index 0000000..5e0d599 --- /dev/null +++ b/www/.content.EZtzwPjb/html/a54d7b6505548a1f9d80924cc26fbe7dda8f2833.00000038.html @@ -0,0 +1,535 @@ + + + + + + + + IPv6 – Intro – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                          +
                          +
                          +
                          + +
                          +
                          +
                          +
                          +
                          +
                          +

                          Etant donné la proche pénurie d’adresse IP v4, plus que 5% seraient disponible sur le réseau public qu’est Internet, je vais faire un dossier qui parlera d’IP v6. Dans ce dossier, je vais vous faire des tutoriels, des RFC et des découvertes.

                          +

                          Comme je vais écrire sur un sujet très technique et pas simple à comprendre je risque de faire des erreurs, vu que je ne suis pas un expert en IP v6. Dans les faits cette suite d’articles et de brèves sera un bon moyen pour vous « lecteurs » et pour moi de comprendre et apprendre sur ce sujet.

                          +

                          Question 1 : Qu’est-ce que c’est une IP v6 ? ou plutôt le protocole IP v6 ?

                          +

                          C’est la nouvelle version du protocole IP qui succède à IP v4. Celui-ci sert à faire communiquer plusieurs machines ou « devices » ensemble à l’aide d’un adressage spécifique pour savoir qui est qui. Et aussi à faire plein d’autres trucs fun ‘trouver des exemples’. Il se place jusqu’à la couche 3 du modèle OSI mais apporte des fonctionnalités sur les niveaux supérieurs.

                          +

                          Une adresse IP v4 c’était par exemple ça : 88.129.34.17 (32bits)

                          +

                          Une IP v6 c’est ça : 2001:0db8:0000:85a3:0000:0000:ac1f:8001 (128bits)

                          +

                          Question 2 : Pourquoi faut-il utiliser IP v6 ?

                          +

                          C’est vrai que c’est bien le petit confort qu’apporte l’IP v4, c’est lisible, court et facile à retenir. Mais le problème c’est que sur internet on est très nombreux, et on va incessamment sous peu être à court d’ adresse. IP v4 c’est 4 294 967 296 d’adresses, c’est moins d’une adresse par personne sur terre donc pas assez au vu de l’expansion actuelle du Web. IP v6 permet de disposer de 10^25 adresses au mètre carré sur terre de quoi installer un paquet de VM.

                          +

                          Question 3 : Pourquoi je vous en parle ?

                          +

                          Comme j’ai un peu de temps libre et que IPv6 c’est l’avenir, c’est le moment pour monter en compétence sur ce type de technologie. Parce que devenir expert en routage et firewalling IPv6 à mon avis c’est pas coton.

                          +

                          A lire pour comprendre les bases :

                          +

                          http://www.grm94.polymtl.ca/~lepage/IPv6/

                          +

                          http://fr.wikipedia.org/wiki/IPv6

                          +

                          J’ai rajouté un petit widget sur le coté pour vous indiquer quand il n’y aura plus d’adresses v4 et que ça sera la fin du monde …

                          +
                          +
                          +
                          +
                          +
                          Catégories : DossiersIP v6
                          +
                          +
                          +
                          + + + + + + + + + +
                          +
                          +
                          +
                          +
                          +
                          +
                          +

                          + 2 commentaires

                          +
                          + +
                          +
                          +
                          +
                          +

                          + Samy DINDANE + · 26 décembre 2010 à 12 h 06 min +

                          +

                          Article intéressant, qui le sera encore plus si tu parles des solutions de « transition ». :)

                          + +
                          +
                          + + +
                          +
                          +
                          +

                          Laisser un commentaire

                          Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                          +
                          +
                          +

                          + +

                          +
                          +
                          +
                          +
                          +
                          +
                          + +
                          +
                          +
                          +
                          +
                          +
                          + + +
                          + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/a59d801baf94611ec4d4540ded23509adbf4e166.00000453.html b/www/.content.EZtzwPjb/html/a59d801baf94611ec4d4540ded23509adbf4e166.00000453.html new file mode 100644 index 0000000..021565d --- /dev/null +++ b/www/.content.EZtzwPjb/html/a59d801baf94611ec4d4540ded23509adbf4e166.00000453.html @@ -0,0 +1,365 @@ + + + + + + + Multi-Flip 15 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                          +
                          +
                          +
                          + +
                          +
                          +
                          +
                          +
                          +

                          Test et démontage d’un Sony Multi Flip 15 SVF15N1C5E

                          Longtemps que je n’avais pas posté ici, mais la je suis en vacances donc j’ai le temps. Voici donc mes retours sur ce pc portable Sony un peu atypique. J’ai choisit cette machine sur plusieurs critères qui m’avait convaincu pour les usages de ma chérie (c’est sa machine), elle fait du dessin vectoriel et de la retouche d’images principalement.
                          + (suite…)

                          +
                          Par HugoPoi, il y a
                          +
                          + +
                          +
                          +
                          +
                          + +
                          +
                          + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/a5ec9b3da8bbae36a561b5d1b9df5cf37e57b843.00000723.css b/www/.content.EZtzwPjb/html/a5ec9b3da8bbae36a561b5d1b9df5cf37e57b843.00000723.css new file mode 100644 index 0000000..fe9245c --- /dev/null +++ b/www/.content.EZtzwPjb/html/a5ec9b3da8bbae36a561b5d1b9df5cf37e57b843.00000723.css @@ -0,0 +1,28 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7 .screen-reader-response{position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);height:1px;width:1px;margin:0;padding:0;border:0}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{color:#f00;font-size:1em;display:block}.use-floating-validation-tip span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;border:1px +solid #f00;background:#fff;padding: .2em .8em}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wpcf7-recaptcha +iframe{margin-bottom:0}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/a6400b5b363f72123aae4dbba730b1388e10d3aa.00000089.html b/www/.content.EZtzwPjb/html/a6400b5b363f72123aae4dbba730b1388e10d3aa.00000089.html new file mode 100644 index 0000000..4d82713 --- /dev/null +++ b/www/.content.EZtzwPjb/html/a6400b5b363f72123aae4dbba730b1388e10d3aa.00000089.html @@ -0,0 +1,497 @@ + + + + + + Démontage Asus U36 | HugoPoi + + + + + + + + + + + + + + + + + +
                          + +
                          +
                          +

                          Démontage Asus U36

                          + +
                          +
                          + +

                          J’ai acheté un petit SSD pour mettre dans mon U36 acheté il y a quelques mois, je n’ai pas trouvé de procédure de démontage sur Internet donc voici les photos de mon démontage.

                          +

                          1) Commencer par enlever toutes les vis et la trappe pour accéder à la RAM, puis déconnecter les deux connecteurs clavier et touchpad qui se situent juste à coté de la carte wifi.

                          +

                          2) Retourner le pc et à l’aide d’un petit tournevis plat, dé-clipser les petits clips sur tout le tour du pc. Vous pouvez maintenant enlever toute la partie supérieur.

                          +

                          +

                          3) Démontage Terminé :D

                          +

                          4) Galerie

                          + + +
                          +
                          +
                          + + +
                          + + +
                            +
                          1. +
                            + +
                            +

                            Salut Hugo,

                            +

                            Comment as tu fait pour déconnecter les deux connecteurs clavier et touchpad qui se situent juste à coté de la carte wifi ?

                            +

                            Merci d’avance,
                            +John

                            +
                            + +
                            +
                              +
                            • +
                              + +
                              +

                              Désolé pour l’attente,

                              +

                              Il faut prendre un petit tournevis plat et relever les petites languettes au dessus des nappes de façon à la mettre à 90° par rapport à la carte mère.

                              +
                              + +
                              +
                            • +
                            +
                          2. +
                          3. +
                            +
                            + leboulanger + +
                            +
                            +

                            bonjour,
                            +super ton tuto ! j’ai la m idée que toi à savoir mettre un ssd mais est ce que tu sais si çest du SATA 1 ou 2 ? concernant les connecteurs je ne l’ai situe pas du tout. est ce que tu pourrais ajoutait une photo stp ?
                            +merci en ts cas pour la contribution

                            +
                            + +
                            +
                              +
                            • +
                              + +
                              +

                              Salut,
                              +Pour le mode SATA c’est du 2. Après j’ai pas d’autre photo mais le connecteur il est situé juste au bout du disque sur la gauche.

                              +
                              + +
                              +
                            • +
                            +
                          4. +
                          5. +
                            +
                            + Asus U36 et OCZ Vertex 3 la suite | HugoPoi - pingback on 15 mai 2012 at 3 h 39 min +
                            +
                            +
                          6. +
                          7. +
                            + +
                            +

                            J’ai aussi démonté le mien pour mettre un ssd et il n’a plus jamais redémarré (même avec le disque dur initial) …
                            +Un conseil, soyez très prudents !

                            +
                            + +
                            + +
                          8. +
                          9. +
                            + +
                            +

                            Emiso tu es un boulet

                            +
                            + +
                            + +
                          10. +
                          11. +
                            + +
                            +

                            Mon U36 avec un SSD Crucial M4 et une carte Intel Centrino n-6230 à la place de la n-100… que du bonheur.

                            +

                            Merci pour le tuto bien utile.

                            +
                            + +
                            +
                          12. +
                          13. +
                            + +
                            +

                            merci pour ce tuto; a noter un truc pour ne pas perdre les vis et savoir où les replacer:

                            +

                            http://fr.slideshare.net/stepmond/remplacement-ecran-sony-vaio?ref=http://www.pcsoleil.fr/ecran-pc-portable-sony-vaio-casse/

                            +

                            3eme diapo

                            +
                            + +
                            +
                          14. +
                          15. +
                            + +
                            +

                            Can you send me a close up picture of both sides of the U36JC I/O board? It would be nice if you could give me also the resistor/capacitor values. I need to connect my SATA hard drive, but the board itself is very expensive. Do you think I can solder the SATA wires to a cable and plug that to the hard drive?

                            +
                            + +
                            +
                              +
                            • +
                              + +
                              +

                              I don’t want to reopen my laptop just for take picture. I don’t know if there are any out pins to solder a SATA connector but in Intel driver menu on Windows a port with no-connection appear.

                              +
                              + +
                              +
                            • +
                            +
                          16. +
                          17. +
                            + +
                            +

                            Hello , j’ai également cet Asus et comme tout le monde je pense, bien tenté de remplacer le disque dur de base par un ssd ^^.
                            + Sur la première image de ton petit tuto, tu sembles montrer des emplacements vis sous les antidérapants.. ca me semble étrange ;p. Je voulais savoir si ceux si ne risquaient pas de s’abîmer (et du coup s’ils se remettaient également facilement).
                            + Si tu passe par là, merci de la réponse!

                            +
                            + +
                            +
                              +
                            • +
                              + +
                              +

                              J’ai pu décoller et recoller sans problème les patins antidérapants. Mais à la rigueur prévoir du double-face pour remplacement.

                              +
                              + +
                              +
                            • +
                            +
                          18. +
                          19. +
                            + +
                            +

                            Oh my goodness! Incredible article dude! Thank
                            +you so much, However I am going through issues with your RSS.
                            +I don’t know why I am unable to subscribe to it. Is there anyone else getting the same RSS problems? Anybody who knows the answer will you kindly respond? Thanks!!

                            +
                            + +
                            + +
                          20. +
                          + +
                          +

                          Répondre à John ¬
                          Annuler la réponse

                          +
                          +

                          + +

                          +

                          NOTE - Vous pouvez utiliser les éléments et attributs HTML tags and attributes:
                          <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

                          + + + +

                          +

                          +
                          +
                          +

                          Trackbacks and Pingbacks:

                          + +
                          +
                          +
                          +
                          + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/a6a3273c26715c0a8db453649558053067f0cadc.00000321.html b/www/.content.EZtzwPjb/html/a6a3273c26715c0a8db453649558053067f0cadc.00000321.html new file mode 100644 index 0000000..d9dade6 --- /dev/null +++ b/www/.content.EZtzwPjb/html/a6a3273c26715c0a8db453649558053067f0cadc.00000321.html @@ -0,0 +1,549 @@ + + + + + + + + How to decrypt flows_cred.json from NodeRED data ? – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                          +
                          +
                          +
                          + +
                          +
                          +
                          +
                          +
                          +
                          +

                          1. Digging the code

                          +

                          The first step is to reverse the code from NodeRED, simple steps
                          +1. Clone the sources
                          + git clone https://github.com/node-red/node-red.git
                          +2. Dig with grep in the code
                          + grep -ril crypto packages/

                          +
                             packages/node_modules/@node-red/editor-api/lib/auth/index.js
                          +   packages/node_modules/@node-red/editor-api/lib/auth/strategies.js
                          +   packages/node_modules/@node-red/editor-api/lib/auth/tokens.js
                          +   packages/node_modules/@node-red/editor-api/lib/editor/comms.js
                          +   packages/node_modules/@node-red/editor-client/src/js/ui/editors/code-editors/monaco.js
                          +   packages/node_modules/@node-red/editor-client/src/types/README.md
                          +   packages/node_modules/@node-red/editor-client/src/types/node/crypto.d.ts
                          +   packages/node_modules/@node-red/editor-client/src/types/node/tls.d.ts
                          +   packages/node_modules/@node-red/editor-client/src/vendor/monaco/dist/editor.js
                          +   packages/node_modules/@node-red/editor-client/src/vendor/monaco/dist/html.worker.js
                          +   packages/node_modules/@node-red/editor-client/src/vendor/monaco/dist/ts.worker.js
                          +   packages/node_modules/@node-red/nodes/core/common/60-link.js
                          +   packages/node_modules/@node-red/nodes/core/network/21-httprequest.js
                          +   packages/node_modules/@node-red/runtime/lib/nodes/credentials.js
                          +   packages/node_modules/@node-red/runtime/lib/storage/index.js
                          +   packages/node_modules/@node-red/runtime/lib/storage/localfilesystem/projects/git/authServer.js
                          +   packages/node_modules/@node-red/runtime/lib/storage/localfilesystem/projects/index.js
                          +   packages/node_modules/node-red/red.js
                          +
                          +
                            +
                          1. Find the interesting parts
                            +packages/node_modules/@node-red/runtime/lib/nodes/credentials.js file name looks promising.
                          2. +
                          +
                          function decryptCredentials(key,credentials) {
                          +    var creds = credentials["$"];
                          +    var initVector = Buffer.from(creds.substring(0, 32),'hex');
                          +    creds = creds.substring(32);
                          +    var decipher = crypto.createDecipheriv(encryptionAlgorithm, key, initVector);
                          +    var decrypted = decipher.update(creds, 'base64', 'utf8') + decipher.final('utf8');
                          +    return JSON.parse(decrypted);
                          +}
                          +
                          +

                          and

                          +
                                      var defaultKey;
                          +            try {
                          +                defaultKey = settings.get('_credentialSecret');
                          +            } catch(err) {
                          +            }
                          +            if (defaultKey) {
                          +                defaultKey = crypto.createHash('sha256').update(defaultKey).digest();
                          +                encryptionKeyType = "system";
                          +            }
                          +
                          +

                          and

                          +
                                          // Check if we have a generated _credSecret to decrypt with and remove
                          +                if (defaultKey) {
                          +                    log.debug("red/runtime/nodes/credentials.load : default key present. Will migrate");
                          +                    if (credentialsEncrypted) {
                          +                        try {
                          +                            credentials = decryptCredentials(defaultKey,credentials)
                          +                        } catch(err) {
                          +                            credentials = {};
                          +                            log.warn(log._("nodes.credentials.error",{message:err.toString()}))
                          +                            var error = new Error("Failed to decrypt credentials");
                          +                            error.code = "credentials_load_failed";
                          +                            throw error;
                          +                        }
                          +                    }
                          +                    dirty = true;
                          +                    removeDefaultKey = true;
                          +                }
                          +
                          +
                            +
                          • The key come from _credentialSecret which is in the file .config.runtime.json
                          • +
                          • Then the key is hashed as sha256 and pass to decryptCredentials() function
                          • +
                          • decryptCredentials() extract the 32 first characters and taken them as the Initial Vector
                          • +
                          • The end of creds string is a base64 encoded, and the content is encrypted aes
                          • +
                          +

                          2. Openssl is a pain

                          +

                          The command openssl enc -base64 -d DOESN’T DO THE SAME AS base64 -d

                          +

                          Why ?

                          +

                          Because you need -A one line weird option.

                          +

                          openssl enc -base64 -d -A does the same as base64 -d

                          +

                          So if you need to decrypt a encoded base64 payload you need the -a and -A options like

                          +

                          openssl enc -aes-256-ctr -d -a -A

                          +

                          Our key is jq -j '._credentialSecret' $1/.config.runtime.json | sha256sum | cut -c 1-64 ( pay attention to the -j option of jq command for not passing a breakline to sha256sum).

                          +

                          Our IV is jq -r '.["$"]' $1/flows_cred.json | cut -c 1-32.

                          +

                          And our aes data is jq '.["$"]' -j $1/flows_cred.json | cut -c 33-.

                          +

                          3. Final script

                          +
                          #!/bin/bash
                          +#
                          +# Decrypt flows_cred.json from a NodeRED data directory
                          +#
                          +# Usage
                          +# ./node-red-decrypt-flows-cred.sh ./node_red_data
                          +#
                          +jq  '.["$"]' -j $1/flows_cred.json | \
                          +  cut -c 33- | \
                          +  openssl enc -aes-256-ctr -d -base64 -A -iv `jq  -r '.["$"]' $1/flows_cred.json | cut -c 1-32` -K `jq -j '._credentialSecret' $1/.config.runtime.json | sha256sum | cut -c 1-64`
                          +
                          +
                          +
                          +
                          + +
                          +
                          + + + + + + + + + +
                          +
                          +
                          +
                          +
                          +
                          +
                          +

                          + 0 Comments

                          +
                          +
                          +
                          +

                          Leave a Reply

                          Avatar placeholder

                          Your email address will not be published. Required fields are marked *

                          +
                          +
                          +

                          + +

                          +
                          +
                          +
                          +
                          +
                          +
                          + +
                          +
                          +
                          +
                          +
                          +
                          + + +
                          + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/a6cd7842e01cfa2dc5b954fa90b9c4c6111b3352.00000486.html b/www/.content.EZtzwPjb/html/a6cd7842e01cfa2dc5b954fa90b9c4c6111b3352.00000486.html new file mode 100644 index 0000000..683b8ee --- /dev/null +++ b/www/.content.EZtzwPjb/html/a6cd7842e01cfa2dc5b954fa90b9c4c6111b3352.00000486.html @@ -0,0 +1,371 @@ + + + + + + + Pile BIOS – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                          +
                          +
                          +
                          + +
                          +
                          +
                          +
                          +
                          +

                          Asus U36 et OCZ Vertex 3 la suite

                          Après un mois d’attente auprès de Cdiscount, pour au final m’annoncer le remboursement de mon SSD Vertex 2 qui est mort subitement, j’ai donc décidé de commander un Vertex 3 qui va remplacer le mort au sein de mon Asus U36JC. Et pour ne pas l’ouvrir juste pour un banal remplacement de SSD j’ai décidé de remplacer par la même occasion la carte wifi, une Intel N-1000 par une Intel N-6320. Celle-ci disposant en plus du bluetooth. J’en ai donc profité pour prendre des photos supplémentaires du démontage pour compléter mon précédent article : Démontage d’un Asus U36. Vous pouvez d’abord lire mon ancien article avant d’attaquer celui-ci, je ne ferai qu’apporter des informations complémentaires pour le démontage. (suite…)

                          +
                          Par HugoPoi, il y a
                          +
                          + +
                          +
                          +
                          +
                          + +
                          +
                          + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/a795c654597d490480bb2dc49a47a11210a93248.00000485.html b/www/.content.EZtzwPjb/html/a795c654597d490480bb2dc49a47a11210a93248.00000485.html new file mode 100644 index 0000000..fcdd361 --- /dev/null +++ b/www/.content.EZtzwPjb/html/a795c654597d490480bb2dc49a47a11210a93248.00000485.html @@ -0,0 +1,364 @@ + + + + + + + peer-to-peer – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                          +
                          +
                          +
                          + +
                          +
                          +
                          +
                          +
                          +

                          Download-Day

                          Bon voilà, je vais officialiser ma participation au D-Day organisé par LinuxManua, en date du 1er novembre 2010. Le but de l’opération étant de télécharger 20 Go et cela uniquement sur les réseaux Peer to Peer de préférence pas anonyme : Edonkey2000, Gnutella, Bitorrent, etc. Alors comme je suis joueur, je Lire la suite…

                          +
                          +
                          + +
                          +
                          +
                          +
                          + +
                          +
                          + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/a7aed125956179557fc3ca9f71aae236d340e425.00001228.js b/www/.content.EZtzwPjb/html/a7aed125956179557fc3ca9f71aae236d340e425.00001228.js new file mode 100644 index 0000000..08b0bd7 --- /dev/null +++ b/www/.content.EZtzwPjb/html/a7aed125956179557fc3ca9f71aae236d340e425.00001228.js @@ -0,0 +1 @@ +!function(a){void 0===mejs.plugins&&(mejs.plugins={},mejs.plugins.silverlight=[],mejs.plugins.silverlight.push({types:[]})),mejs.HtmlMediaElementShim=mejs.HtmlMediaElementShim||{getTypeFromFile:mejs.Utils.getTypeFromFile},void 0===mejs.MediaFeatures&&(mejs.MediaFeatures=mejs.Features),void 0===mejs.Utility&&(mejs.Utility=mejs.Utils);var e=MediaElementPlayer.prototype.init;MediaElementPlayer.prototype.init=function(){this.options.classPrefix="mejs-",this.$media=this.$node=a(this.node),e.call(this)};var t=MediaElementPlayer.prototype._meReady;MediaElementPlayer.prototype._meReady=function(){this.container=a(this.container),this.controls=a(this.controls),this.layers=a(this.layers),t.apply(this,arguments)},MediaElementPlayer.prototype.getElement=function(e){return void 0!==a&&e instanceof a?e[0]:e},MediaElementPlayer.prototype.buildfeatures=function(e,t,i,s){for(var r=["playpause","current","progress","duration","tracks","volume","fullscreen"],l=0,n=this.options.features.length;l + + + + + + graphique – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + +
                          +
                          +
                          +
                          + +
                          +
                          +
                          +
                          +
                          +

                          Optimus vs Mégatron

                          Je suis l’heureux acquéreur #oupas d’un pc portable avec technologie Optimus de Nvidia (voir Asus U36JC). Après quelques jours de recherches et de tests je vais essayer de vous faire un résumé complet sur le pourquoi de comment ça fonctionne. (suite…)

                          +
                          Par HugoPoi, il y a
                          +
                          + +
                          +
                          +
                          +
                          + +
                          +
                          + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/a849ed218623cb12241eba80684900c8ce723b62.00000743.js b/www/.content.EZtzwPjb/html/a849ed218623cb12241eba80684900c8ce723b62.00000743.js new file mode 100644 index 0000000..097b840 --- /dev/null +++ b/www/.content.EZtzwPjb/html/a849ed218623cb12241eba80684900c8ce723b62.00000743.js @@ -0,0 +1,7 @@ +/*! + * Bootstrap v3.3.4 (http://getbootstrap.com) + * Copyright 2011-2015 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ +if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(a){"use strict";var b=a.fn.jquery.split(" ")[0].split(".");if(b[0]<2&&b[1]<9||1==b[0]&&9==b[1]&&b[2]<1)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher")}(jQuery),+function(a){"use strict";function b(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var c in b)if(void 0!==a.style[c])return{end:b[c]};return!1}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one("bsTransitionEnd",function(){c=!0});var e=function(){c||a(d).trigger(a.support.transition.end)};return setTimeout(e,b),this},a(function(){a.support.transition=b(),a.support.transition&&(a.event.special.bsTransitionEnd={bindType:a.support.transition.end,delegateType:a.support.transition.end,handle:function(b){return a(b.target).is(this)?b.handleObj.handler.apply(this,arguments):void 0}})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var c=a(this),e=c.data("bs.alert");e||c.data("bs.alert",e=new d(this)),"string"==typeof b&&e[b].call(c)})}var c='[data-dismiss="alert"]',d=function(b){a(b).on("click",c,this.close)};d.VERSION="3.3.4",d.TRANSITION_DURATION=150,d.prototype.close=function(b){function c(){g.detach().trigger("closed.bs.alert").remove()}var e=a(this),f=e.attr("data-target");f||(f=e.attr("href"),f=f&&f.replace(/.*(?=#[^\s]*$)/,""));var g=a(f);b&&b.preventDefault(),g.length||(g=e.closest(".alert")),g.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(g.removeClass("in"),a.support.transition&&g.hasClass("fade")?g.one("bsTransitionEnd",c).emulateTransitionEnd(d.TRANSITION_DURATION):c())};var e=a.fn.alert;a.fn.alert=b,a.fn.alert.Constructor=d,a.fn.alert.noConflict=function(){return a.fn.alert=e,this},a(document).on("click.bs.alert.data-api",c,d.prototype.close)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof b&&b;e||d.data("bs.button",e=new c(this,f)),"toggle"==b?e.toggle():b&&e.setState(b)})}var c=function(b,d){this.$element=a(b),this.options=a.extend({},c.DEFAULTS,d),this.isLoading=!1};c.VERSION="3.3.4",c.DEFAULTS={loadingText:"loading..."},c.prototype.setState=function(b){var c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",null==f.resetText&&d.data("resetText",d[e]()),setTimeout(a.proxy(function(){d[e](null==f[b]?this.options[b]:f[b]),"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c))},this),0)},c.prototype.toggle=function(){var a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var c=this.$element.find("input");"radio"==c.prop("type")&&(c.prop("checked")&&this.$element.hasClass("active")?a=!1:b.find(".active").removeClass("active")),a&&c.prop("checked",!this.$element.hasClass("active")).trigger("change")}else this.$element.attr("aria-pressed",!this.$element.hasClass("active"));a&&this.$element.toggleClass("active")};var d=a.fn.button;a.fn.button=b,a.fn.button.Constructor=c,a.fn.button.noConflict=function(){return a.fn.button=d,this},a(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(c){var d=a(c.target);d.hasClass("btn")||(d=d.closest(".btn")),b.call(d,"toggle"),c.preventDefault()}).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',function(b){a(b.target).closest(".btn").toggleClass("focus",/^focus(in)?$/.test(b.type))})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},c.DEFAULTS,d.data(),"object"==typeof b&&b),g="string"==typeof b?b:f.slide;e||d.data("bs.carousel",e=new c(this,f)),"number"==typeof b?e.to(b):g?e[g]():f.interval&&e.pause().cycle()})}var c=function(b,c){this.$element=a(b),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=null,this.sliding=null,this.interval=null,this.$active=null,this.$items=null,this.options.keyboard&&this.$element.on("keydown.bs.carousel",a.proxy(this.keydown,this)),"hover"==this.options.pause&&!("ontouchstart"in document.documentElement)&&this.$element.on("mouseenter.bs.carousel",a.proxy(this.pause,this)).on("mouseleave.bs.carousel",a.proxy(this.cycle,this))};c.VERSION="3.3.4",c.TRANSITION_DURATION=600,c.DEFAULTS={interval:5e3,pause:"hover",wrap:!0,keyboard:!0},c.prototype.keydown=function(a){if(!/input|textarea/i.test(a.target.tagName)){switch(a.which){case 37:this.prev();break;case 39:this.next();break;default:return}a.preventDefault()}},c.prototype.cycle=function(b){return b||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},c.prototype.getItemIndex=function(a){return this.$items=a.parent().children(".item"),this.$items.index(a||this.$active)},c.prototype.getItemForDirection=function(a,b){var c=this.getItemIndex(b),d="prev"==a&&0===c||"next"==a&&c==this.$items.length-1;if(d&&!this.options.wrap)return b;var e="prev"==a?-1:1,f=(c+e)%this.$items.length;return this.$items.eq(f)},c.prototype.to=function(a){var b=this,c=this.getItemIndex(this.$active=this.$element.find(".item.active"));return a>this.$items.length-1||0>a?void 0:this.sliding?this.$element.one("slid.bs.carousel",function(){b.to(a)}):c==a?this.pause().cycle():this.slide(a>c?"next":"prev",this.$items.eq(a))},c.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},c.prototype.next=function(){return this.sliding?void 0:this.slide("next")},c.prototype.prev=function(){return this.sliding?void 0:this.slide("prev")},c.prototype.slide=function(b,d){var e=this.$element.find(".item.active"),f=d||this.getItemForDirection(b,e),g=this.interval,h="next"==b?"left":"right",i=this;if(f.hasClass("active"))return this.sliding=!1;var j=f[0],k=a.Event("slide.bs.carousel",{relatedTarget:j,direction:h});if(this.$element.trigger(k),!k.isDefaultPrevented()){if(this.sliding=!0,g&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var l=a(this.$indicators.children()[this.getItemIndex(f)]);l&&l.addClass("active")}var m=a.Event("slid.bs.carousel",{relatedTarget:j,direction:h});return a.support.transition&&this.$element.hasClass("slide")?(f.addClass(b),f[0].offsetWidth,e.addClass(h),f.addClass(h),e.one("bsTransitionEnd",function(){f.removeClass([b,h].join(" ")).addClass("active"),e.removeClass(["active",h].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger(m)},0)}).emulateTransitionEnd(c.TRANSITION_DURATION)):(e.removeClass("active"),f.addClass("active"),this.sliding=!1,this.$element.trigger(m)),g&&this.cycle(),this}};var d=a.fn.carousel;a.fn.carousel=b,a.fn.carousel.Constructor=c,a.fn.carousel.noConflict=function(){return a.fn.carousel=d,this};var e=function(c){var d,e=a(this),f=a(e.attr("data-target")||(d=e.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""));if(f.hasClass("carousel")){var g=a.extend({},f.data(),e.data()),h=e.attr("data-slide-to");h&&(g.interval=!1),b.call(f,g),h&&f.data("bs.carousel").to(h),c.preventDefault()}};a(document).on("click.bs.carousel.data-api","[data-slide]",e).on("click.bs.carousel.data-api","[data-slide-to]",e),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var c=a(this);b.call(c,c.data())})})}(jQuery),+function(a){"use strict";function b(b){var c,d=b.attr("data-target")||(c=b.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"");return a(d)}function c(b){return this.each(function(){var c=a(this),e=c.data("bs.collapse"),f=a.extend({},d.DEFAULTS,c.data(),"object"==typeof b&&b);!e&&f.toggle&&/show|hide/.test(b)&&(f.toggle=!1),e||c.data("bs.collapse",e=new d(this,f)),"string"==typeof b&&e[b]()})}var d=function(b,c){this.$element=a(b),this.options=a.extend({},d.DEFAULTS,c),this.$trigger=a('[data-toggle="collapse"][href="#'+b.id+'"],[data-toggle="collapse"][data-target="#'+b.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};d.VERSION="3.3.4",d.TRANSITION_DURATION=350,d.DEFAULTS={toggle:!0},d.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},d.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b,e=this.$parent&&this.$parent.children(".panel").children(".in, .collapsing");if(!(e&&e.length&&(b=e.data("bs.collapse"),b&&b.transitioning))){var f=a.Event("show.bs.collapse");if(this.$element.trigger(f),!f.isDefaultPrevented()){e&&e.length&&(c.call(e,"hide"),b||e.data("bs.collapse",null));var g=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[g](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var h=function(){this.$element.removeClass("collapsing").addClass("collapse in")[g](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return h.call(this);var i=a.camelCase(["scroll",g].join("-"));this.$element.one("bsTransitionEnd",a.proxy(h,this)).emulateTransitionEnd(d.TRANSITION_DURATION)[g](this.$element[0][i])}}}},d.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse in").attr("aria-expanded",!1),this.$trigger.addClass("collapsed").attr("aria-expanded",!1),this.transitioning=1;var e=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};return a.support.transition?void this.$element[c](0).one("bsTransitionEnd",a.proxy(e,this)).emulateTransitionEnd(d.TRANSITION_DURATION):e.call(this)}}},d.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},d.prototype.getParent=function(){return a(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(a.proxy(function(c,d){var e=a(d);this.addAriaAndCollapsedClass(b(e),e)},this)).end()},d.prototype.addAriaAndCollapsedClass=function(a,b){var c=a.hasClass("in");a.attr("aria-expanded",c),b.toggleClass("collapsed",!c).attr("aria-expanded",c)};var e=a.fn.collapse;a.fn.collapse=c,a.fn.collapse.Constructor=d,a.fn.collapse.noConflict=function(){return a.fn.collapse=e,this},a(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(d){var e=a(this);e.attr("data-target")||d.preventDefault();var f=b(e),g=f.data("bs.collapse"),h=g?"toggle":e.data();c.call(f,h)})}(jQuery),+function(a){"use strict";function b(b){b&&3===b.which||(a(e).remove(),a(f).each(function(){var d=a(this),e=c(d),f={relatedTarget:this};e.hasClass("open")&&(e.trigger(b=a.Event("hide.bs.dropdown",f)),b.isDefaultPrevented()||(d.attr("aria-expanded","false"),e.removeClass("open").trigger("hidden.bs.dropdown",f)))}))}function c(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#[A-Za-z]/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}function d(b){return this.each(function(){var c=a(this),d=c.data("bs.dropdown");d||c.data("bs.dropdown",d=new g(this)),"string"==typeof b&&d[b].call(c)})}var e=".dropdown-backdrop",f='[data-toggle="dropdown"]',g=function(b){a(b).on("click.bs.dropdown",this.toggle)};g.VERSION="3.3.4",g.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=c(e),g=f.hasClass("open");if(b(),!g){"ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a('',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0}},c.prototype.init=function(b,c,d){if(this.enabled=!0,this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.$viewport=this.options.viewport&&a(this.options.viewport.selector||this.options.viewport),this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");for(var e=this.options.trigger.split(" "),f=e.length;f--;){var g=e[f];if("click"==g)this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this));else if("manual"!=g){var h="hover"==g?"mouseenter":"focusin",i="hover"==g?"mouseleave":"focusout";this.$element.on(h+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(i+"."+this.type,this.options.selector,a.proxy(this.leave,this))}}this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.getOptions=function(b){return b=a.extend({},this.getDefaults(),this.$element.data(),b),b.delay&&"number"==typeof b.delay&&(b.delay={show:b.delay,hide:b.delay}),b},c.prototype.getDelegateOptions=function(){var b={},c=this.getDefaults();return this._options&&a.each(this._options,function(a,d){c[a]!=d&&(b[a]=d)}),b},c.prototype.enter=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c&&c.$tip&&c.$tip.is(":visible")?void(c.hoverState="in"):(c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),clearTimeout(c.timeout),c.hoverState="in",c.options.delay&&c.options.delay.show?void(c.timeout=setTimeout(function(){"in"==c.hoverState&&c.show()},c.options.delay.show)):c.show())},c.prototype.leave=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),clearTimeout(c.timeout),c.hoverState="out",c.options.delay&&c.options.delay.hide?void(c.timeout=setTimeout(function(){"out"==c.hoverState&&c.hide()},c.options.delay.hide)):c.hide()},c.prototype.show=function(){var b=a.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(b);var d=a.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(b.isDefaultPrevented()||!d)return;var e=this,f=this.tip(),g=this.getUID(this.type);this.setContent(),f.attr("id",g),this.$element.attr("aria-describedby",g),this.options.animation&&f.addClass("fade");var h="function"==typeof this.options.placement?this.options.placement.call(this,f[0],this.$element[0]):this.options.placement,i=/\s?auto?\s?/i,j=i.test(h);j&&(h=h.replace(i,"")||"top"),f.detach().css({top:0,left:0,display:"block"}).addClass(h).data("bs."+this.type,this),this.options.container?f.appendTo(this.options.container):f.insertAfter(this.$element);var k=this.getPosition(),l=f[0].offsetWidth,m=f[0].offsetHeight;if(j){var n=h,o=this.options.container?a(this.options.container):this.$element.parent(),p=this.getPosition(o);h="bottom"==h&&k.bottom+m>p.bottom?"top":"top"==h&&k.top-mp.width?"left":"left"==h&&k.left-lg.top+g.height&&(e.top=g.top+g.height-i)}else{var j=b.left-f,k=b.left+f+c;jg.width&&(e.left=g.left+g.width-k)}return e},c.prototype.getTitle=function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||("function"==typeof c.title?c.title.call(b[0]):c.title)},c.prototype.getUID=function(a){do a+=~~(1e6*Math.random());while(document.getElementById(a));return a},c.prototype.tip=function(){return this.$tip=this.$tip||a(this.options.template)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},c.prototype.enable=function(){this.enabled=!0},c.prototype.disable=function(){this.enabled=!1},c.prototype.toggleEnabled=function(){this.enabled=!this.enabled},c.prototype.toggle=function(b){var c=this;b&&(c=a(b.currentTarget).data("bs."+this.type),c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c))),c.tip().hasClass("in")?c.leave(c):c.enter(c)},c.prototype.destroy=function(){var a=this;clearTimeout(this.timeout),this.hide(function(){a.$element.off("."+a.type).removeData("bs."+a.type)})};var d=a.fn.tooltip;a.fn.tooltip=b,a.fn.tooltip.Constructor=c,a.fn.tooltip.noConflict=function(){return a.fn.tooltip=d,this}}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof b&&b;(e||!/destroy|hide/.test(b))&&(e||d.data("bs.popover",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.init("popover",a,b)};if(!a.fn.tooltip)throw new Error("Popover requires tooltip.js");c.VERSION="3.3.4",c.DEFAULTS=a.extend({},a.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:''}),c.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),c.prototype.constructor=c,c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.setContent=function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content").children().detach().end()[this.options.html?"string"==typeof c?"html":"append":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},c.prototype.hasContent=function(){return this.getTitle()||this.getContent()},c.prototype.getContent=function(){var a=this.$element,b=this.options;return a.attr("data-content")||("function"==typeof b.content?b.content.call(a[0]):b.content)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};var d=a.fn.popover;a.fn.popover=b,a.fn.popover.Constructor=c,a.fn.popover.noConflict=function(){return a.fn.popover=d,this}}(jQuery),+function(a){"use strict";function b(c,d){this.$body=a(document.body),this.$scrollElement=a(a(c).is(document.body)?window:c),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",a.proxy(this.process,this)),this.refresh(),this.process()}function c(c){return this.each(function(){var d=a(this),e=d.data("bs.scrollspy"),f="object"==typeof c&&c;e||d.data("bs.scrollspy",e=new b(this,f)),"string"==typeof c&&e[c]()})}b.VERSION="3.3.4",b.DEFAULTS={offset:10},b.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},b.prototype.refresh=function(){var b=this,c="offset",d=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),a.isWindow(this.$scrollElement[0])||(c="position",d=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var b=a(this),e=b.data("target")||b.attr("href"),f=/^#./.test(e)&&a(e);return f&&f.length&&f.is(":visible")&&[[f[c]().top+d,e]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){b.offsets.push(this[0]),b.targets.push(this[1])})},b.prototype.process=function(){var a,b=this.$scrollElement.scrollTop()+this.options.offset,c=this.getScrollHeight(),d=this.options.offset+c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(this.scrollHeight!=c&&this.refresh(),b>=d)return g!=(a=f[f.length-1])&&this.activate(a);if(g&&b=e[a]&&(void 0===e[a+1]||b .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),b.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),h?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu").length&&b.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),e&&e()}var g=d.find("> .active"),h=e&&a.support.transition&&(g.length&&g.hasClass("fade")||!!d.find("> .fade").length);g.length&&h?g.one("bsTransitionEnd",f).emulateTransitionEnd(c.TRANSITION_DURATION):f(),g.removeClass("in")};var d=a.fn.tab;a.fn.tab=b,a.fn.tab.Constructor=c,a.fn.tab.noConflict=function(){return a.fn.tab=d,this};var e=function(c){c.preventDefault(),b.call(a(this),"show")};a(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',e).on("click.bs.tab.data-api",'[data-toggle="pill"]',e)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof b&&b;e||d.data("bs.affix",e=new c(this,f)),"string"==typeof b&&e[b]()})}var c=function(b,d){this.options=a.extend({},c.DEFAULTS,d),this.$target=a(this.options.target).on("scroll.bs.affix.data-api",a.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",a.proxy(this.checkPositionWithEventLoop,this)),this.$element=a(b),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};c.VERSION="3.3.4",c.RESET="affix affix-top affix-bottom",c.DEFAULTS={offset:0,target:window},c.prototype.getState=function(a,b,c,d){var e=this.$target.scrollTop(),f=this.$element.offset(),g=this.$target.height();if(null!=c&&"top"==this.affixed)return c>e?"top":!1;if("bottom"==this.affixed)return null!=c?e+this.unpin<=f.top?!1:"bottom":a-d>=e+g?!1:"bottom";var h=null==this.affixed,i=h?e:f.top,j=h?g:b;return null!=c&&c>=e?"top":null!=d&&i+j>=a-d?"bottom":!1},c.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(c.RESET).addClass("affix");var a=this.$target.scrollTop(),b=this.$element.offset();return this.pinnedOffset=b.top-a},c.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},c.prototype.checkPosition=function(){if(this.$element.is(":visible")){var b=this.$element.height(),d=this.options.offset,e=d.top,f=d.bottom,g=a(document.body).height();"object"!=typeof d&&(f=e=d),"function"==typeof e&&(e=d.top(this.$element)),"function"==typeof f&&(f=d.bottom(this.$element));var h=this.getState(g,b,e,f);if(this.affixed!=h){null!=this.unpin&&this.$element.css("top","");var i="affix"+(h?"-"+h:""),j=a.Event(i+".bs.affix");if(this.$element.trigger(j),j.isDefaultPrevented())return;this.affixed=h,this.unpin="bottom"==h?this.getPinnedOffset():null,this.$element.removeClass(c.RESET).addClass(i).trigger(i.replace("affix","affixed")+".bs.affix")}"bottom"==h&&this.$element.offset({top:g-b-f})}};var d=a.fn.affix;a.fn.affix=b,a.fn.affix.Constructor=c,a.fn.affix.noConflict=function(){return a.fn.affix=d,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var c=a(this),d=c.data();d.offset=d.offset||{},null!=d.offsetBottom&&(d.offset.bottom=d.offsetBottom),null!=d.offsetTop&&(d.offset.top=d.offsetTop),b.call(c,d)})})}(jQuery); \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/a8999df814201639d781c2cc43a530f86eb3d643.00000618.css b/www/.content.EZtzwPjb/html/a8999df814201639d781c2cc43a530f86eb3d643.00000618.css new file mode 100644 index 0000000..fe440fe --- /dev/null +++ b/www/.content.EZtzwPjb/html/a8999df814201639d781c2cc43a530f86eb3d643.00000618.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;background:#fff;border:1px +solid #f00;font-size:10pt;width:280px;padding:2px}span.wpcf7-not-valid-tip-no-ajax{color:#f00;font-size:10pt;display:block}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/a8d106b32a62c1f3da03b9114176dfea8241a8ee.00000289.xml b/www/.content.EZtzwPjb/html/a8d106b32a62c1f3da03b9114176dfea8241a8ee.00000289.xml new file mode 100644 index 0000000..f321506 --- /dev/null +++ b/www/.content.EZtzwPjb/html/a8d106b32a62c1f3da03b9114176dfea8241a8ee.00000289.xml @@ -0,0 +1,221 @@ + + + Dossiers – HugoPoi + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Sat, 11 Feb 2017 17:37:20 +0000 + fr-FR + hourly + 1 + https://wordpress.org/?v=4.7.2 + + Pourquoi je suis sous Linux bordel ! + http://blog.hugopoi.net/2017/02/11/pourquoi-je-suis-sous-linux-bordel/ + http://blog.hugopoi.net/2017/02/11/pourquoi-je-suis-sous-linux-bordel/#respond + Sat, 11 Feb 2017 17:37:20 +0000 + + + + + + + + http://blog.hugopoi.net/?p=947 + Lire la suite »

                          ]]>
                          + http://blog.hugopoi.net/2017/02/11/pourquoi-je-suis-sous-linux-bordel/feed/ + 0 +
                          + + Reflow Dell Inspiron 1546 + http://blog.hugopoi.net/2016/08/22/reflow-dell-1546/ + http://blog.hugopoi.net/2016/08/22/reflow-dell-1546/#respond + Mon, 22 Aug 2016 14:00:28 +0000 + + + + + + + + + + http://blog.hugopoi.net/?p=918 + Lire la suite »

                          ]]>
                          + http://blog.hugopoi.net/2016/08/22/reflow-dell-1546/feed/ + 0 +
                          + + Et si on faisait sans Twitch et sans Youtube + http://blog.hugopoi.net/2015/10/24/et-si-on-faisait-sans-twitch-et-sans-youtube/ + http://blog.hugopoi.net/2015/10/24/et-si-on-faisait-sans-twitch-et-sans-youtube/#respond + Sat, 24 Oct 2015 13:07:55 +0000 + + + + + + + + + + + + + + http://blog.hugopoi.net/?p=909 + Lire la suite »

                          ]]>
                          + http://blog.hugopoi.net/2015/10/24/et-si-on-faisait-sans-twitch-et-sans-youtube/feed/ + 0 +
                          + + Test et démontage d’un Sony Multi Flip 15 SVF15N1C5E + http://blog.hugopoi.net/2014/08/04/test-et-demontage-dun-sony-multi-flip-15-svf15n1c5e/ + http://blog.hugopoi.net/2014/08/04/test-et-demontage-dun-sony-multi-flip-15-svf15n1c5e/#respond + Mon, 04 Aug 2014 13:25:59 +0000 + + + + + + + + + http://blog.hugopoi.net/?p=856 + Lire la suite »

                          ]]>
                          + http://blog.hugopoi.net/2014/08/04/test-et-demontage-dun-sony-multi-flip-15-svf15n1c5e/feed/ + 0 +
                          + + Écran miraculé d’un Asus N53SN + http://blog.hugopoi.net/2014/08/02/ecran-miracule-dun-asus-n53sn/ + http://blog.hugopoi.net/2014/08/02/ecran-miracule-dun-asus-n53sn/#comments + Sat, 02 Aug 2014 17:53:57 +0000 + + + + + + + + http://blog.hugopoi.net/?p=819 + Lire la suite »

                          ]]>
                          + http://blog.hugopoi.net/2014/08/02/ecran-miracule-dun-asus-n53sn/feed/ + 1 +
                          + + Installer Mac OS X Mavericks avec VirtualBox + http://blog.hugopoi.net/2013/12/27/installer-mac-os-x-mavericks-avec-virtualbox/ + http://blog.hugopoi.net/2013/12/27/installer-mac-os-x-mavericks-avec-virtualbox/#comments + Fri, 27 Dec 2013 21:40:28 +0000 + + + + + + + + + http://blog.hugopoi.net/?p=802 + Lire la suite »

                          ]]>
                          + http://blog.hugopoi.net/2013/12/27/installer-mac-os-x-mavericks-avec-virtualbox/feed/ + 6 +
                          + + Home Cinéma + http://blog.hugopoi.net/2012/12/26/home-cinema/ + http://blog.hugopoi.net/2012/12/26/home-cinema/#respond + Wed, 26 Dec 2012 14:42:16 +0000 + + + + + + + + + + + + + http://blog.hugopoi.net/?p=518 + Lire la suite »

                          ]]>
                          + http://blog.hugopoi.net/2012/12/26/home-cinema/feed/ + 0 +
                          + + Redimensionner une partition NTFS + http://blog.hugopoi.net/2012/12/23/redimensionner-une-partition-ntfs/ + http://blog.hugopoi.net/2012/12/23/redimensionner-une-partition-ntfs/#respond + Sun, 23 Dec 2012 17:56:48 +0000 + + + + + + + + + + + http://blog.hugopoi.net/?p=685 + Lire la suite »

                          ]]>
                          + http://blog.hugopoi.net/2012/12/23/redimensionner-une-partition-ntfs/feed/ + 0 +
                          + + Asus U36 et OCZ Vertex 3 la suite + http://blog.hugopoi.net/2012/03/30/asus-u36-et-ocz-vertex-3-la-suite/ + http://blog.hugopoi.net/2012/03/30/asus-u36-et-ocz-vertex-3-la-suite/#comments + Fri, 30 Mar 2012 10:29:27 +0000 + + + + + + + + + + + + + + + + http://blog.hugopoi.net/?p=635 + Lire la suite »

                          ]]>
                          + http://blog.hugopoi.net/2012/03/30/asus-u36-et-ocz-vertex-3-la-suite/feed/ + 1 +
                          + + Réparations Samsung SyncMaster 2232BW + http://blog.hugopoi.net/2012/01/15/reparations-samsung-syncmaster-2232bw/ + http://blog.hugopoi.net/2012/01/15/reparations-samsung-syncmaster-2232bw/#comments + Sun, 15 Jan 2012 16:00:25 +0000 + + + + + + + + + + + + + http://blog.hugopoi.net/?p=586 + Lire la suite »

                          ]]>
                          + http://blog.hugopoi.net/2012/01/15/reparations-samsung-syncmaster-2232bw/feed/ + 32 +
                          +
                          +
                          diff --git a/www/.content.EZtzwPjb/html/a8ee322665044f5c09c16c185cba712dff08a101.00000591.js b/www/.content.EZtzwPjb/html/a8ee322665044f5c09c16c185cba712dff08a101.00000591.js new file mode 100644 index 0000000..b5c263f --- /dev/null +++ b/www/.content.EZtzwPjb/html/a8ee322665044f5c09c16c185cba712dff08a101.00000591.js @@ -0,0 +1,354 @@ +(function($) { + + if (typeof _wpcf7 == 'undefined' || _wpcf7 === null) + _wpcf7 = {}; + + _wpcf7 = $.extend({ cached: 0 }, _wpcf7); + + $(function() { + _wpcf7.supportHtml5 = $.wpcf7SupportHtml5(); + $('div.wpcf7 > form').wpcf7InitForm(); + }); + + $.fn.wpcf7InitForm = function() { + this.ajaxForm({ + beforeSubmit: function(arr, $form, options) { + $form.wpcf7ClearResponseOutput(); + $form.find('[aria-invalid]').attr('aria-invalid', 'false'); + $form.find('img.ajax-loader').css({ visibility: 'visible' }); + return true; + }, + beforeSerialize: function($form, options) { + $form.find('[placeholder].placeheld').each(function(i, n) { + $(n).val(''); + }); + return true; + }, + data: { '_wpcf7_is_ajax_call': 1 }, + dataType: 'json', + success: $.wpcf7AjaxSuccess, + error: function(xhr, status, error, $form) { + var e = $('
                          ').text(error.message); + $form.after(e); + } + }); + + if (_wpcf7.cached) + this.wpcf7OnloadRefill(); + + this.wpcf7ToggleSubmit(); + + this.find('.wpcf7-submit').wpcf7AjaxLoader(); + + this.find('.wpcf7-acceptance').click(function() { + $(this).closest('form').wpcf7ToggleSubmit(); + }); + + this.find('.wpcf7-exclusive-checkbox').wpcf7ExclusiveCheckbox(); + + this.find('.wpcf7-list-item.has-free-text').wpcf7ToggleCheckboxFreetext(); + + this.find('[placeholder]').wpcf7Placeholder(); + + if (_wpcf7.jqueryUi && ! _wpcf7.supportHtml5.date) { + this.find('input.wpcf7-date[type="date"]').each(function() { + $(this).datepicker({ + dateFormat: 'yy-mm-dd', + minDate: new Date($(this).attr('min')), + maxDate: new Date($(this).attr('max')) + }); + }); + } + + if (_wpcf7.jqueryUi && ! _wpcf7.supportHtml5.number) { + this.find('input.wpcf7-number[type="number"]').each(function() { + $(this).spinner({ + min: $(this).attr('min'), + max: $(this).attr('max'), + step: $(this).attr('step') + }); + }); + } + }; + + $.wpcf7AjaxSuccess = function(data, status, xhr, $form) { + if (! $.isPlainObject(data) || $.isEmptyObject(data)) + return; + + var $responseOutput = $form.find('div.wpcf7-response-output'); + + $form.wpcf7ClearResponseOutput(); + + $form.find('.wpcf7-form-control').removeClass('wpcf7-not-valid'); + $form.removeClass('invalid spam sent failed'); + + if (data.captcha) + $form.wpcf7RefillCaptcha(data.captcha); + + if (data.quiz) + $form.wpcf7RefillQuiz(data.quiz); + + if (data.invalids) { + $.each(data.invalids, function(i, n) { + $form.find(n.into).wpcf7NotValidTip(n.message); + $form.find(n.into).find('.wpcf7-form-control').addClass('wpcf7-not-valid'); + $form.find(n.into).find('[aria-invalid]').attr('aria-invalid', 'true'); + }); + + $responseOutput.addClass('wpcf7-validation-errors'); + $form.addClass('invalid'); + + $(data.into).trigger('invalid.wpcf7'); + + } else if (1 == data.spam) { + $responseOutput.addClass('wpcf7-spam-blocked'); + $form.addClass('spam'); + + $(data.into).trigger('spam.wpcf7'); + + } else if (1 == data.mailSent) { + $responseOutput.addClass('wpcf7-mail-sent-ok'); + $form.addClass('sent'); + + if (data.onSentOk) + $.each(data.onSentOk, function(i, n) { eval(n) }); + + $(data.into).trigger('mailsent.wpcf7'); + + } else { + $responseOutput.addClass('wpcf7-mail-sent-ng'); + $form.addClass('failed'); + + $(data.into).trigger('mailfailed.wpcf7'); + } + + if (data.onSubmit) + $.each(data.onSubmit, function(i, n) { eval(n) }); + + $(data.into).trigger('submit.wpcf7'); + + if (1 == data.mailSent) + $form.resetForm(); + + $form.find('[placeholder].placeheld').each(function(i, n) { + $(n).val($(n).attr('placeholder')); + }); + + $responseOutput.append(data.message).slideDown('fast'); + $responseOutput.attr('role', 'alert'); + + $.wpcf7UpdateScreenReaderResponse($form, data); + } + + $.fn.wpcf7ExclusiveCheckbox = function() { + return this.find('input:checkbox').click(function() { + $(this).closest('.wpcf7-checkbox').find('input:checkbox').not(this).removeAttr('checked'); + }); + }; + + $.fn.wpcf7Placeholder = function() { + if (_wpcf7.supportHtml5.placeholder) + return this; + + return this.each(function() { + $(this).val($(this).attr('placeholder')); + $(this).addClass('placeheld'); + + $(this).focus(function() { + if ($(this).hasClass('placeheld')) + $(this).val('').removeClass('placeheld'); + }); + + $(this).blur(function() { + if ('' == $(this).val()) { + $(this).val($(this).attr('placeholder')); + $(this).addClass('placeheld'); + } + }); + }); + }; + + $.fn.wpcf7AjaxLoader = function() { + return this.each(function() { + var loader = $('') + .attr({ src: _wpcf7.loaderUrl, alt: _wpcf7.sending }) + .css('visibility', 'hidden'); + + $(this).after(loader); + }); + }; + + $.fn.wpcf7ToggleSubmit = function() { + return this.each(function() { + var form = $(this); + if (this.tagName.toLowerCase() != 'form') + form = $(this).find('form').first(); + + if (form.hasClass('wpcf7-acceptance-as-validation')) + return; + + var submit = form.find('input:submit'); + if (! submit.length) return; + + var acceptances = form.find('input:checkbox.wpcf7-acceptance'); + if (! acceptances.length) return; + + submit.removeAttr('disabled'); + acceptances.each(function(i, n) { + n = $(n); + if (n.hasClass('wpcf7-invert') && n.is(':checked') + || ! n.hasClass('wpcf7-invert') && ! n.is(':checked')) + submit.attr('disabled', 'disabled'); + }); + }); + }; + + $.fn.wpcf7ToggleCheckboxFreetext = function() { + return this.each(function() { + var $wrap = $(this).closest('.wpcf7-form-control'); + + if ($(this).find(':checkbox, :radio').is(':checked')) { + $(this).find(':input.wpcf7-free-text').prop('disabled', false); + } else { + $(this).find(':input.wpcf7-free-text').prop('disabled', true); + } + + $wrap.find(':checkbox, :radio').change(function() { + var $cb = $('.has-free-text', $wrap).find(':checkbox, :radio'); + var $freetext = $(':input.wpcf7-free-text', $wrap); + + if ($cb.is(':checked')) { + $freetext.prop('disabled', false).focus(); + } else { + $freetext.prop('disabled', true); + } + }); + }); + }; + + $.fn.wpcf7NotValidTip = function(message) { + return this.each(function() { + var $into = $(this); + $into.hide().append('' + message + '').slideDown('fast'); + + if ($into.is('.use-floating-validation-tip *')) { + $('.wpcf7-not-valid-tip', $into).mouseover(function() { + $(this).wpcf7FadeOut(); + }); + + $(':input', $into).focus(function() { + $('.wpcf7-not-valid-tip', $into).not(':hidden').wpcf7FadeOut(); + }); + } + }); + }; + + $.fn.wpcf7FadeOut = function() { + return this.each(function() { + $(this).animate({ + opacity: 0 + }, 'fast', function() { + $(this).css({'z-index': -100}); + }); + }); + }; + + $.fn.wpcf7OnloadRefill = function() { + return this.each(function() { + var url = $(this).attr('action'); + if (0 < url.indexOf('#')) + url = url.substr(0, url.indexOf('#')); + + var id = $(this).find('input[name="_wpcf7"]').val(); + var unitTag = $(this).find('input[name="_wpcf7_unit_tag"]').val(); + + $.getJSON(url, + { _wpcf7_is_ajax_call: 1, _wpcf7: id, _wpcf7_request_ver: $.now() }, + function(data) { + if (data && data.captcha) + $('#' + unitTag).wpcf7RefillCaptcha(data.captcha); + + if (data && data.quiz) + $('#' + unitTag).wpcf7RefillQuiz(data.quiz); + } + ); + }); + }; + + $.fn.wpcf7RefillCaptcha = function(captcha) { + return this.each(function() { + var form = $(this); + + $.each(captcha, function(i, n) { + form.find(':input[name="' + i + '"]').clearFields(); + form.find('img.wpcf7-captcha-' + i).attr('src', n); + var match = /([0-9]+)\.(png|gif|jpeg)$/.exec(n); + form.find('input:hidden[name="_wpcf7_captcha_challenge_' + i + '"]').attr('value', match[1]); + }); + }); + }; + + $.fn.wpcf7RefillQuiz = function(quiz) { + return this.each(function() { + var form = $(this); + + $.each(quiz, function(i, n) { + form.find(':input[name="' + i + '"]').clearFields(); + form.find(':input[name="' + i + '"]').siblings('span.wpcf7-quiz-label').text(n[0]); + form.find('input:hidden[name="_wpcf7_quiz_answer_' + i + '"]').attr('value', n[1]); + }); + }); + }; + + $.fn.wpcf7ClearResponseOutput = function() { + return this.each(function() { + $(this).find('div.wpcf7-response-output').hide().empty().removeClass('wpcf7-mail-sent-ok wpcf7-mail-sent-ng wpcf7-validation-errors wpcf7-spam-blocked').removeAttr('role'); + $(this).find('span.wpcf7-not-valid-tip').remove(); + $(this).find('img.ajax-loader').css({ visibility: 'hidden' }); + }); + }; + + $.wpcf7UpdateScreenReaderResponse = function($form, data) { + $('.wpcf7 .screen-reader-response').html('').attr('role', ''); + + if (data.message) { + var $response = $form.siblings('.screen-reader-response').first(); + $response.append(data.message); + + if (data.invalids) { + var $invalids = $('
                            '); + + $.each(data.invalids, function(i, n) { + if (n.idref) { + var $li = $('
                          • ').append($('').attr('href', '#' + n.idref).append(n.message)); + } else { + var $li = $('
                          • ').append(n.message); + } + + $invalids.append($li); + }); + + $response.append($invalids); + } + + $response.attr('role', 'alert').focus(); + } + } + + $.wpcf7SupportHtml5 = function() { + var features = {}; + var input = document.createElement('input'); + + features.placeholder = 'placeholder' in input; + + var inputTypes = ['email', 'url', 'tel', 'number', 'range', 'date']; + + $.each(inputTypes, function(index, value) { + input.setAttribute('type', value); + features[value] = input.type !== 'text'; + }); + + return features; + }; + +})(jQuery); \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/a92796c4fca8fc076fba05f7b31243733c05ecbf.00000498.xml b/www/.content.EZtzwPjb/html/a92796c4fca8fc076fba05f7b31243733c05ecbf.00000498.xml new file mode 100644 index 0000000..e07ba4e --- /dev/null +++ b/www/.content.EZtzwPjb/html/a92796c4fca8fc076fba05f7b31243733c05ecbf.00000498.xml @@ -0,0 +1,93 @@ + + + réparer – HugoPoi + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Mon, 22 Aug 2016 14:10:26 +0000 + fr-FR + hourly + 1 + https://wordpress.org/?v=4.6.1 + + Écran miraculé d’un Asus N53SN + http://blog.hugopoi.net/2014/08/02/ecran-miracule-dun-asus-n53sn/ + http://blog.hugopoi.net/2014/08/02/ecran-miracule-dun-asus-n53sn/#comments + Sat, 02 Aug 2014 17:53:57 +0000 + + + + + + + + http://blog.hugopoi.net/?p=819 + Lire la suite »

                            ]]>
                            + http://blog.hugopoi.net/2014/08/02/ecran-miracule-dun-asus-n53sn/feed/ + 1 +
                            + + Réparer et transformer une clé USB de 4Go en 8Go + http://blog.hugopoi.net/2013/05/11/reparer-et-transformer-une-cle-usb-de-4go-en-8go/ + http://blog.hugopoi.net/2013/05/11/reparer-et-transformer-une-cle-usb-de-4go-en-8go/#comments + Sat, 11 May 2013 13:51:53 +0000 + + + + + + + + http://blog.hugopoi.net/?p=768 + Lire la suite »

                            ]]>
                            + http://blog.hugopoi.net/2013/05/11/reparer-et-transformer-une-cle-usb-de-4go-en-8go/feed/ + 8 +
                            + + Réparer un Vidéoprojecteur Sony VPL-CX5 + http://blog.hugopoi.net/2013/05/04/reparer-un-videoprojecteur-sony-vpl-cx5/ + http://blog.hugopoi.net/2013/05/04/reparer-un-videoprojecteur-sony-vpl-cx5/#comments + Sat, 04 May 2013 15:26:39 +0000 + + + + + + + + http://blog.hugopoi.net/?p=737 + Lire la suite »

                            ]]>
                            + http://blog.hugopoi.net/2013/05/04/reparer-un-videoprojecteur-sony-vpl-cx5/feed/ + 15 +
                            + + Réparations Samsung SyncMaster 2232BW + http://blog.hugopoi.net/2012/01/15/reparations-samsung-syncmaster-2232bw/ + http://blog.hugopoi.net/2012/01/15/reparations-samsung-syncmaster-2232bw/#comments + Sun, 15 Jan 2012 16:00:25 +0000 + + + + + + + + + + + + + http://blog.hugopoi.net/?p=586 + Lire la suite »

                            ]]>
                            + http://blog.hugopoi.net/2012/01/15/reparations-samsung-syncmaster-2232bw/feed/ + 31 +
                            +
                            +
                            diff --git a/www/.content.EZtzwPjb/html/a97a227aa8e18dc9f2615de8943aaf1f26830a2d.00001241.js b/www/.content.EZtzwPjb/html/a97a227aa8e18dc9f2615de8943aaf1f26830a2d.00001241.js new file mode 100644 index 0000000..0292141 --- /dev/null +++ b/www/.content.EZtzwPjb/html/a97a227aa8e18dc9f2615de8943aaf1f26830a2d.00001241.js @@ -0,0 +1 @@ +!function(a,b){"use strict";function c(){if(!e){e=!0;var a,c,d,f,g=-1!==navigator.appVersion.indexOf("MSIE 10"),h=!!navigator.userAgent.match(/Trident.*rv:11\./),i=b.querySelectorAll("iframe.wp-embedded-content");for(c=0;c1e3)g=1e3;else if(~~g<200)g=200;f.height=g}if("link"===d.message)if(h=b.createElement("a"),i=b.createElement("a"),h.href=f.getAttribute("src"),i.href=d.value,i.host===h.host)if(b.activeElement===f)a.top.location.href=d.value}else;}},d)a.addEventListener("message",a.wp.receiveEmbedMessage,!1),b.addEventListener("DOMContentLoaded",c,!1),a.addEventListener("load",c,!1)}(window,document); \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/a98bebe05cd2694b5359b689ac3cfaacc879c46f.00000103.html b/www/.content.EZtzwPjb/html/a98bebe05cd2694b5359b689ac3cfaacc879c46f.00000103.html new file mode 100644 index 0000000..46c6e87 --- /dev/null +++ b/www/.content.EZtzwPjb/html/a98bebe05cd2694b5359b689ac3cfaacc879c46f.00000103.html @@ -0,0 +1,1370 @@ + + + + + + + + Réparations Samsung SyncMaster 2232BW – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            +

                            Allô docteur on a un problème,

                            +

                            En ce dimanche calme avant la fin de mes partiels, mon écran Samsung SyncMaster 2232BW commençait à faire des siennes. Celui-ci depuis un mois ou deux clignotait de façon systématique au démarrage, au début pendant seulement quelques secondes, puis au fur et à mesure, de plus en plus jusqu’à devoir attendre 10 minutes pour que je puisse l’utiliser. Après 3 ans et 4 mois de bons et loyaux services, il voulait me quitter. J’ai tenté le support Samsung par email avec peu d’espoir car l’écran a dépassé sa garantie de 4 mois (oui oui les bâtards -> obsolescence programmée). Et donc j’ai eu le droit à un joli mail automatique me disant de contacter un numéro non surtaxé (mais avec combien de temps d’attente ?), ce que je n’ai pas fait car je n’avais pas envie de passer 30min au téléphone pour au final avoir un « On est désolé mais on ne peut rien faire pour vous car la garantie est dépassée, mais on peut envoyer votre écran en SAV pour faire un devis pour seulement 50 boules ». Concernant le support email de Samsung France, je leur donne une note de 0/20 puisque ce n’est pas un support mais une redirection vers le téléphone.

                            +

                            +

                            Symptômes

                            +

                            Clignotements de l’écran et de la LED power systématiques à chaque démarrage de l’écran. Je me suis tout de suite douté d’un problème d’alimentation et après quelques recherches sur google, confirmation du problème sur beaucoup d’écrans et téléviseurs. Dans 99% des cas ce clignotement est dû à des condensateurs défectueux qu’il faut simplement changer :-D

                            +

                            Démontage

                            +

                            Donc après avoir cerné le problème, j’ai ouvert l’écran pour chercher les condos défectueux. J’ai trouvé une petite vidéo pour mon écran :

                            +

                            +

                            Voici quelques photos en plus pour vous aider :

                            +

                            Les outils que j’ai utilisé pour le démontage

                            +

                            Position des clips

                            +

                            Carte d’alimentation dans son emplacement

                            +

                            Et voici les condensateurs qui posent problèmes. Comme vous pouvez le voir sur la photo, ils sont très facilement identifiable car ils sont bombés sur le dessus.

                            +

                            Condensateurs défectueux

                            +

                            Vous devez donc acheter des condensateurs de remplacement, par exemple sur Conrad.

                            +

                            Mes condensateurs suivant étaient endommagés:

                            +
                              +
                            • 1 de 330uF 25V remplacé par un 470uF 25V
                            • +
                            • 3 de 820uF 25V remplacé par des 1000uF 50V
                            • +
                            +

                            Pour la réparation, il vous faut un fer à souder avec une panne pas trop grosse mais d’une grosse puissance car les soudures sont très solides (j’ai galéré avec un fer pro qui monte jusqu’à 400°).

                            +

                            Tout remarche nickel après remontage, plus de clignotement pour seulement quelques euros.

                            +

                            edit du 19 aout 2014 : j’ai trouvé le service manuel de l’écran si besoin samsung_2232bw_chassis_lpe22bs_sm

                            + + +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +

                            + 41 commentaires

                            +
                            + +
                            +
                            +
                            +
                            +

                            + c'est_moi + · 30 janvier 2012 à 18 h 57 min +

                            +

                            Mille mercis et mille félicitations pour cette fiche technique si pédagogue.

                            +

                            J’espère que le partiels se passent plus que parfait !!

                            +

                            J’ai gardé l’url de la page pour réparer mon écran dans un petit mois : j’espère que la page soit toujours là ;-)

                            +

                            Merci encore.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Maxime + · 5 mai 2012 à 12 h 31 min +

                            +

                            Bonjour HugoPoi!

                            +

                            Merci pour toutes vos infos et votre topic, je voulais avoir quelques précisions sur les condos à changer pour samsung 2232bw, je veux passer commande mais j’ai un problème avec les dimensions des condos, si vous pouvez m’informer de ce que je pourrais acheter car il y a trop de références. En vous remerciant A+ Maxime

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 14 juin 2012 à 22 h 56 min +

                              +

                              N’importe quel condensateur polarisé avec des caractéristiques proches devrait marché.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + gaubjezj + · 14 juin 2012 à 22 h 32 min +

                            +

                            Merci pour le tuto qui m’a bien aidé.
                            +J’ai utilisé un fer de 40 W avec une panne fine et
                            +une pompe à dessouder et j’ai retiré les condensateurs sans problème.
                            +Merci encore (3€40 pour le dépannage).

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + DragonTribal + · 2 juillet 2012 à 12 h 02 min +

                            +

                            super merci pour manifique tuto.
                            +Est-il possible de changer les 5 condensateurs 820uF 25V par des 1000uF 50V? car moi mes 5 condensateurs sont presque HS ;-)

                            +

                            Cordialement

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 2 juillet 2012 à 12 h 25 min +

                              +

                              Oui je penses que ça marchera étant donné que c’est des valeurs plus grandes.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + FRED + · 11 juillet 2012 à 19 h 11 min +

                            +

                            Bravo, MERCI.
                            +Je n’ai encore rien fait…mais j’ai le même problème, et tu me donnes la solution.
                            +Super.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + daninpet + · 31 août 2012 à 10 h 10 min +

                            +

                            Merci mille fois!

                            +

                            J’avais ce problème, et j’ai emmener la photo des trucs a remplacer chez le réparateur du coin et voila!! Ça m’a coûté 7 Euros (mais j’habite en Thaïlande)

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + moi + · 15 novembre 2012 à 15 h 25 min +

                            +

                            super mon 2232bw vient de lâcher, les 3 + 1 condos sont gonflés j ai trouvé un 330 en 35v qui traîné sur un écran mort et j’ai commander 5 1000uf 35v sur ebay pour moins de 3 dollars, ca devrait le faire j’espere j’attend d’être livré merci! par contre j’ai qu’un gros pistolet a soudure et un gros fil d’étain, c’est pas évident mais bon ca le fait quand même =)

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + moi + · 7 décembre 2012 à 9 h 33 min +

                              +

                              parfait je vient de recevoir les condos; j ai meuler la panne du fer a souder pour la tailler en mine de crayon et j ai reussi a les souder facilement ils étaient un peu plus gros mais ca passe tout juste, mais attention ne pas prendre des plus gros! l écran fonctionne nickel maintenant.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Croco + · 19 janvier 2013 à 18 h 39 min +

                            +

                            Je souhaiterai savoir si tu as utilisé un fer à souder bien précis étant donné que la carte est une multi couche.
                            +Merci

                            + +
                            +
                            + + +
                            + +
                            +
                            +
                            +
                            +

                            + momo + · 10 juin 2013 à 13 h 15 min +

                            +

                            slut je voudrai savoir ou trouvé les condansateur a changer sur mon ecran qui clignote

                            + +
                            +
                            + + +
                            + +
                            +
                            +
                            +
                            +

                            + lokmane + · 5 juillet 2013 à 16 h 08 min +

                            +

                            merci j’avais un ecran rouge ! et c’etais la tresse qui relie mon ecran votre page m’a aider a l’ouvrir et a le reparer merci bien

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + ML + · 21 août 2013 à 19 h 11 min +

                            +

                            Merci ! Ecran réparé. Halte à l’obsolescence programmée.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + raymond + · 31 octobre 2013 à 13 h 20 min +

                            +

                            ai vu votre vidéo et les explications pour la reparation de mon écran , apparemment le méme probléme l écran passe au noir apres quelque seconde , j ai vu un le condensateur en bas a gauche gonflé , je l ai fait changé (10€) les autre condensateur étant toujour bon d après la personne qui me l a changé , mais j ai toujour le méme probléme cela peut il venir de la carte video a gauche ?

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 20 décembre 2013 à 12 h 27 min +

                              +

                              Si la led bleu du bouton power s’éteint aussi c’est un problème d’alimentation sinon c’est plus compliqué et ça peut provenir de condensateurs sur la partie vidéo. Changé tous les plus gros condensateurs sur la partie alimentation pourrait être un bon début même si ils ne paraissent pas endommagé.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + damien + · 4 novembre 2013 à 0 h 29 min +

                            +

                            bonjour,

                            +

                            j’ai des crasses coincées entres l’écran et le truc juste derrière, est ce qu’on sais les enlever en démontant la dalle ?

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 20 décembre 2013 à 12 h 28 min +

                              +

                              Je ne sais si cette partie de la dalle est démontable, je penses que c’est collé mais vous pouvez essayer.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + mac + · 1 décembre 2013 à 17 h 30 min +

                            +

                            Merci HugoPoi, avec ces excellents conseils et tuto vidéo, mon écran est reparti pour une nouvelle vie.
                            +Pour les composants, si vous êtes sur Paris ou proche. La boutique RAM électroniques est une bonne adresse, 138 bd Diderot 75012 Paris (Place de la Nation).

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Bouddhid + · 16 janvier 2014 à 19 h 21 min +

                            +

                            Merci beaucoup pour ces conseils ! J’étais à 2 doigts de jeter mon écran, le voilà comme neuf pour moins de 5€ ! Vive la bricole !

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Vincent + · 17 mai 2014 à 16 h 45 min +

                            +

                            Alors là merci.

                            +

                            Pour ce post, les photos, la vidéo, tout y est.

                            +

                            J’ai démonté l’écran assez vite, enlevé la carte, regarder quel condensateurs étaient gonflés,(il y en avaient 4), un magasin d’électronique sur lyon et une heure de démontage, soudure, remontage plus tard, voilà, c’est tout beau.
                            +Ca ne clignote plus, ça s’allume comme avant, comme neuf.

                            +

                            Et dire que j’allais jeter cet écran et claquer 350 euros pour un neuf…

                            +

                            Coût de l’opération pour 4 condensateurs, du fil d’étain 7 euros.

                            +

                            Je précise que je n’avais jamais fais de soudure sur composant électronique auparavant.
                            +Comme quoi cette opération de réparation est à la portée de tous.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Julot + · 6 juillet 2014 à 13 h 49 min +

                            +

                            Site vraiment détaillé et très claire. J’ai pu dépanner mon écran avec succès. Merci beaucoup pour ces précieuses explications.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + PaniK31 + · 29 juillet 2014 à 9 h 21 min +

                            +

                            Pas besoin d’une grosse puissance pour le fer, il faut au préalable gratter le vernis sur l’étain afin de pouvoir le faire fondre plus facilement

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + R211_IP-45130B + · 20 août 2014 à 14 h 04 min +

                            +

                            Bonjour à tous,

                            +

                            Une âme charitable peut-elle me communiquer ce qui est gravé sur la résistance CMS R211 de la carte d’alimentation/inverter IP-45130B qui équipe le SAMSUNG 2232BW ? Cette résistance a pris un coup de tournevis et je n’arrive pas à déterminer sa valeur de résistance car son marquage est effacé et comme le composant est abimé la mesure à l’ohmmètre indique l’infinie.

                            +

                            Merci par avance.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + roger + · 24 octobre 2014 à 17 h 21 min +

                            +

                            Ca refonctionne après échange de 4 condensateurs :
                            +-un 330uf25v remplacé à l’identique.
                            +-trois 820uf25v remplacés par 1000uf25v.
                            +Le tout pour quelques €. Le plus dur était le dessoudage, la tresse n’était pas très efficace contrairement à la pompe.
                            +Grand merci à HugoPoi.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Max + · 26 février 2015 à 16 h 28 min +

                            +

                            ENORME MERCI!! J’ai réparé mon écran en 20mn pour 3,50€, il était à 2 doigts de partir à la déchetterie. Ca faisait des mois qu’il clignotait, et l’allumage mettait parfois plus d’une demi heure. J’ai changé 5 condos 820uf25v et 1 330uf25v, par exactement les mêmes en neuf, et là il démarre au quart de tour! Ca fait plaisir! :)

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + rocco michelle + · 7 octobre 2015 à 10 h 16 min +

                              +

                              Bonjour je ne sais si vous verrez mon message mais je tente…je cherche quelqu’un qui accepterait de changer mes condensateurs sur mon samsung, les réparateurs me demandent 70 à 80 euros et encore ils n’ont pss envie de le faire et me disent d’acheter un nouvel écran. j’aurais bien tenter mais je n’ai pas de matériel et j’ai lu que les condo pouvaient être très dangereux s’ils avaient de la charge alors j’ai la trouille de bidouiller pq je n’y connais rien. si vous êtes de lyon acccepteriez vous de changer mes condensateurs pour 45 euros? merci de votre réponse.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + lecakeseb + · 27 juillet 2015 à 15 h 26 min +

                            +

                            Bonjour,

                            +

                            J’ai utilisé la vidéo pour démonter mon écran afin de le nettoyer de 4 bêtes d’orage infiltrés entre le premier écran (noir) et la dalle (blanche) de mon samsung SyncMaster 2232W

                            +

                            Petits conseils afin de modérer ce que j’ai pu voir dans cette vidéo :

                            +

                            0 : aspirez, nettoyez l’extérieur de l’écran avant de l’ouvrir et nettoyez la table qui vous servira d’atelier, pour éviter les poussières qui s’infiltreront forcément plus tard si vous ne le faites pas…
                            +1 : pour ouvrir, utilisez plutôt un couteau à enduire pour la première partie (le cadre). Vous n’abîmerez ainsi pas du tout l’écran. Soyez patients, ne forcez pas ! ça viendra doucement, mais ça viendra. Il m’a fallu à peine 10 minutes, sans détériorer l’écran, sans le griffer… Il est encore nickel !
                            +2 : attention à ne pas déconnecter les fils reliant le cadre à la carte. Inutile pour simplement nettoyer l’écran.
                            +3 : pour séparer les deux éléments de la dalle entre lesquels les bêtes se sont infiltrées, les doigts suffisent, pas besoin d’outils qui viendraient les endommager. La dalle blanche reste à l’horizontale, l’écran noir sera tenu à la verticale.
                            +4 : utiliser un chiffon doux ne peluchant pas pour enlever les bêtes (faites-vous aider de quelqu’un qui les enlèvera pendant que vous tenez l’écran extérieur en position verticale).
                            +5 : repositionnez la colle d’étanchéité qui aurait pu se déplacer, avant de repositionner les deux écrans.
                            +6 : commencer par refermer par le bas de l’écran (sinon les éléments de réglage situés au bas de l’écran – luminosité, contraste,…- ne se replaceront pas correctement).
                            +7 : Une fois l’écran refermé, j’ai appliqué un peu de « barrage aux insectes », avec un chiffon à l’arrière de mon écran en insistant surtout sur les bouches d’aération par lesquelles les maudites bestioles ont du s’infiltrer. En espérant ne pas avoir à ouvrir !

                            +

                            Bon courage à vous !

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Michel Jousserandot + · 20 janvier 2017 à 20 h 41 min +

                            +

                            Merci pour les conseils au démontage.
                            +J’avais un problème un peu différent :l’écran ne s’allumait plus du tout. Avec un copain beaucoup plus malin que moi, on a détecté 2 fusibles dont l’un était fichu. On l’a remplacé par un petit fil de cuivre. Et tout a remarché comme avant.
                            +Il faut surtout faire attention quand on teste la partie haute tension
                            +Michel.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Crec + · 14 juillet 2017 à 10 h 20 min +

                            +

                            Bonjour. Très bons conseils avertis. Merci beaucoup.
                            +Peut-on avoir les mêmes conseils pour un écran BX2250.
                            +Merci par avance.
                            +Crec

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 6 août 2017 à 14 h 03 min +

                              +

                              J’ai pas de BX2250 donc dans le détails non mais si c’est les même symptômes ça doit la même procédure.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Ferronnier + · 10 août 2017 à 17 h 42 min +

                            +

                            Un grand merci !
                            +J’ai changé tous les condensateurs de la partie alimentation de la carte, en déportant certains qui n’avaient pas le même format qu’à l’origine, et ça tourne nickel !

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Nours + · 1 décembre 2017 à 15 h 17 min +

                            +

                            Ca fait des années que j’ai cet article enregistré dans un coin, en nourrissant l’espoir d’avoir un jour le courage de réparer ce foutu écran… Après plus de cinq ans c’est chose faite \o/
                            +Un giga, hypra, immense merci pour ce tutoriel tellement bien expliqué et facile d’accès (je n’avais pas touché à un fer à souder depuis… Oh boy 15 ans déjà).
                            +Après une longue pause, l’écran reprend du service… Jusqu’à la prochaine panne /o/

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Alex + · 11 août 2018 à 13 h 28 min +

                            +

                            Quelqu’un sait qui pourrait me le faire svp j ai le même problème mais aucun matériel

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + David + · 5 février 2019 à 21 h 06 min +

                            +

                            Merci Hugo pour ce tuto qui m’a déjà servi en 2013 et qui va me resservir aujourd’hui car mon 2ème 2232bw commence à avoir les mêmes symptômes.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + yvan + · 23 novembre 2019 à 17 h 14 min +

                            +

                            Bonjour
                            +j’ai tenté de changer le condensateur qui avait l’air naze mais ça n’a pas marché … toujours le bouton bleu allumé, l’écran est reconnu par Windows 10 même si l’écran est éteint
                            +grâce au service manuel de l’écran fourni plus haut, j’ai vérifié les tensions jusque sur la carte de la dalle et elles sont correctes, ainsi que sur la carte elle-même, tout est ok, donc je pense que ce n’est plus un problème de condensateur
                            +pour les fusibles, ils ressemblent plutôt à des composants qu’à de simple fusibles, mais comme j’ai les bonnes tension, je ne pense pas que ça vienne de là
                            +j’ai bien peur que ce soit la dalle qui soit naze ? quelqu’un a t il des idées supplémentaires avant que je le jette avec grand regret (c’est un 2032bw, mais c’est la même chose, même si ma carte électronique est un peu différente car plus récente
                            +merci d’avance pour vos conseils

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + yvan + · 24 novembre 2019 à 17 h 26 min +

                            +

                            finalement j’ai trouvé, c’est un petit fusible vert qui ressemble à une résistance mais tout vert avec écrit 4A LF qui assure l’alimentation de la dalle.
                            +En le shuntant, mon écran a retrouvé l’image.
                            +après enquête il s’agit d’un fusible pico de 4ampères de chez little fuse, pas du tout évident à trouver
                            +Résolu !

                            + +
                            +
                            + +
                            +
                            +

                            + Reflow Dell 1546 | HugoPoi + · 22 août 2016 à 16 h 09 min +

                            +

                            […] « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable de marque Dell un 1546 pour être précis. Encore […]

                            + +
                            +
                            + +
                            +
                            +

                            + Reflow Dell Inspiron 1546 – HugoPoi + · 23 juin 2017 à 23 h 18 min +

                            +

                            […] d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un […]

                            + +
                            +
                            + +
                            +
                            +
                            +

                            Répondre à HugoPoi Annuler la réponse

                            Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                            +
                            +
                            +

                            + +

                            +
                            +
                            +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            + + +
                            + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/aa0da62f74f5a1b6caf00ee4e8079dc9f9c4d74b.00000797.css b/www/.content.EZtzwPjb/html/aa0da62f74f5a1b6caf00ee4e8079dc9f9c4d74b.00000797.css new file mode 100644 index 0000000..5b51506 --- /dev/null +++ b/www/.content.EZtzwPjb/html/aa0da62f74f5a1b6caf00ee4e8079dc9f9c4d74b.00000797.css @@ -0,0 +1 @@ +.authors-on-blog .footer a,.btn.btn-border,.card-background:after,.form-group.label-floating label.control-label,.form-group.label-placeholder label.control-label,.form-group.label-static label.control-label,.hestia-top-bar .widget.widget_product_search form:not(.form-group),.hestia-top-bar .widget.widget_search form:not(.form-group),.pagination a,.pagination span,a{-webkit-transition:all .3s ease;-moz-transition:all .3s ease;-ms-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease}.btn,button,input[type=button],input[type=submit]{-webkit-transition:background-color .2s cubic-bezier(.4,0,.2,1),-webkit-box-shadow .2s cubic-bezier(.4,0,1,1);transition:background-color .2s cubic-bezier(.4,0,.2,1),-webkit-box-shadow .2s cubic-bezier(.4,0,1,1);transition:box-shadow .2s cubic-bezier(.4,0,1,1),background-color .2s cubic-bezier(.4,0,.2,1);transition:box-shadow .2s cubic-bezier(.4,0,1,1),background-color .2s cubic-bezier(.4,0,.2,1),-webkit-box-shadow .2s cubic-bezier(.4,0,1,1)}.btn.active:disabled,.btn.active[disabled],.btn.btn-behance.btn-simple,.btn.btn-border,.btn.btn-border:focus,.btn.btn-border:hover,.btn.btn-default.btn-simple,.btn.btn-deviantart.btn-simple,.btn.btn-dribbble.btn-simple,.btn.btn-facebook.btn-simple,.btn.btn-github.btn-simple,.btn.btn-google.btn-simple,.btn.btn-instagram.btn-simple,.btn.btn-linkedin.btn-simple,.btn.btn-pinterest.btn-simple,.btn.btn-primary.btn-simple,.btn.btn-reddit.btn-simple,.btn.btn-simple,.btn.btn-snapchat.btn-simple,.btn.btn-tumblr.btn-simple,.btn.btn-twitter.btn-simple,.btn.btn-vimeo.btn-simple,.btn.btn-white.btn-simple,.btn.btn-youtube.btn-simple,.btn.disabled,.btn.disabled.active,.btn.disabled.focus,.btn.disabled:active,.btn.disabled:focus,.btn.disabled:hover,.btn.focus:disabled,.btn.focus[disabled],.btn:disabled,.btn:disabled:active,.btn:disabled:focus,.btn:disabled:hover,.btn[disabled],.btn[disabled]:active,.btn[disabled]:focus,.btn[disabled]:hover,.form-control,.form-group .form-control,.form-group.has-error .form-control,.form-group.has-info .form-control,.form-group.has-success .form-control,.form-group.has-warning .form-control,.form-group.is-focused .form-control,.form-group.is-focused select.form-control,.navbar .navbar-nav>li>a.btn.btn-behance.btn-simple,.navbar .navbar-nav>li>a.btn.btn-deviantart.btn-simple,.navbar .navbar-nav>li>a.btn.btn-dribbble.btn-simple,.navbar .navbar-nav>li>a.btn.btn-facebook.btn-simple,.navbar .navbar-nav>li>a.btn.btn-github.btn-simple,.navbar .navbar-nav>li>a.btn.btn-google.btn-simple,.navbar .navbar-nav>li>a.btn.btn-instagram.btn-simple,.navbar .navbar-nav>li>a.btn.btn-linkedin.btn-simple,.navbar .navbar-nav>li>a.btn.btn-pinterest.btn-simple,.navbar .navbar-nav>li>a.btn.btn-reddit.btn-simple,.navbar .navbar-nav>li>a.btn.btn-snapchat.btn-simple,.navbar .navbar-nav>li>a.btn.btn-tumblr.btn-simple,.navbar .navbar-nav>li>a.btn.btn-twitter.btn-simple,.navbar .navbar-nav>li>a.btn.btn-vimeo.btn-simple,.navbar .navbar-nav>li>a.btn.btn-youtube.btn-simple,.navbar button.navbar-toggle,.navbar button.navbar-toggle:hover,.woocommerce form .form-row input.input-text,.woocommerce form .form-row textarea,fieldset[disabled] .btn,fieldset[disabled] .btn.active,fieldset[disabled] .btn.focus,fieldset[disabled] .btn:active,fieldset[disabled] .btn:focus,fieldset[disabled] .btn:hover,select.form-control{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.form-control,.form-group .form-control,.woocommerce form .form-row input.input-text,.woocommerce form .form-row textarea{background-image:-webkit-gradient(linear,left top,left bottom,from(#9c27b0),to(#9c27b0)),-webkit-gradient(linear,left top,left bottom,from(#d2d2d2),to(#d2d2d2));background-image:-webkit-linear-gradient(#9c27b0,#9c27b0),-webkit-linear-gradient(#d2d2d2,#d2d2d2);background-image:linear-gradient(#9c27b0,#9c27b0),linear-gradient(#d2d2d2,#d2d2d2);float:none;border:0;border-radius:0;background-color:transparent;background-repeat:no-repeat;background-position:center bottom,center -webkit-calc(100% - 1px);background-position:center bottom,center calc(100% - 1px);background-size:0 2px,100% 1px;font-weight:400;-webkit-transition:background 0s ease-out;transition:background 0s ease-out}.form-group.is-focused .form-control{background-image:-webkit-gradient(linear,left top,left bottom,from(#9c27b0),to(#9c27b0)),-webkit-gradient(linear,left top,left bottom,from(#d2d2d2),to(#d2d2d2));background-image:-webkit-linear-gradient(#9c27b0,#9c27b0),-webkit-linear-gradient(#d2d2d2,#d2d2d2);background-image:linear-gradient(#9c27b0,#9c27b0),linear-gradient(#d2d2d2,#d2d2d2);outline:0;background-size:100% 2px,100% 1px;-webkit-transition-duration:.3s;transition-duration:.3s}.blog-sidebar .widget h5,.card-product .price,.card-product .price h4,.carousel .sub-title,.hestia-about p,.media .media-heading,.navbar .navbar-brand,.shop-sidebar .widget h5,.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta,blockquote,h4.author{font-size:18px}a:not(.btn){transition:.3s ease}a:not(.btn):not(.button):not(.added_to_cart):hover{opacity:.75}.media p,h3#ship-to-different-address{font-size:16px}.btn,.form-control,.woocommerce #reviews #comments label,body{font-size:14px}.footer .footer-menu a,.hestia-top-bar,.label,.media-footer a,.navbar,.navbar a{font-size:12px}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-weight:300;line-height:1.618}.blog-post .section-text p,ol,output,ul{line-height:1.618}h1,h2,h3,h4,h5,h6{font-weight:500;line-height:1.618}.card-product .price h4,h4.author,h5.description,h5.subscribe-description{font-weight:300}h6.category{font-weight:500}.card-title,.footer-big h4,.footer-big h5,.footer-brand,.hestia-title,.info-title,.media .media-heading,.title,.woocommerce ul.products[class*=columns-] li.product-category h2{font-weight:700}.hestia-title{word-break:break-word}.btn,button,input[type=button],input[type=submit]{font-size:12px;font-weight:400}.btn:not(.btn-just-icon):not(.btn-fab) i{font-size:18px}.btn.btn-just-icon{font-size:20px;line-height:20px}.btn.btn-just-icon.btn-lg{font-size:22px}.btn i{font-size:17px}legend{font-size:21px}output{font-size:14px}button,input,select,textarea{font-size:inherit;line-height:inherit}.form-control{font-size:14px;line-height:1.42857}.checkbox label,.form-control:-ms-input-placeholder,.form-control::-moz-placeholder,.form-control::-webkit-input-placeholder,.form-group .checkbox label,.form-group .form-control:-ms-input-placeholder,.form-group .form-control::-moz-placeholder,.form-group .form-control::-webkit-input-placeholder,.form-group .radio label,.form-group label,.radio label,label{font-size:14px;font-weight:400;line-height:1.42857}.form-control:-ms-input-placeholder,.form-control::-moz-placeholder,.form-control::-webkit-input-placeholder,.form-group .form-control:-ms-input-placeholder,.form-group .form-control::-moz-placeholder,.form-group .form-control::-webkit-input-placeholder{font-weight:400}.form-group label.control-label{font-size:11px;font-weight:400;line-height:1.07143}.form-group.label-floating label.control-label,.form-group.label-placeholder label.control-label{font-size:14px;line-height:1.42857}.form-group.label-floating.is-focused label.control-label,.form-group.label-floating:not(.is-empty) label.control-label,.form-group.label-static label.control-label{font-size:11px;line-height:1.07143}label.control-label{font-size:11px;font-weight:400;line-height:1.07143}label.subscribe-label{font-weight:300}table>thead>tr>th{font-size:17px;font-weight:300}.help-block{font-size:11px}.hestia-info .icon>i,.info .icon>i{font-size:61.6px}.info-horizontal .icon>i{font-size:36.4px}.media .media-heading{font-size:18.2px}.media p{font-size:16px}.wp-caption-text{font-size:14px;font-weight:700}.blog-post .comment-reply-link{font-size:12px;font-weight:400}.blog-post .section-blog-info .card-profile .description{font-size:14px}.carousel .carousel-control i{font-size:50px}.card .footer .stats{line-height:30px}.card .footer .stats i{font-size:18px}.card .category i{line-height:0}.card-product .footer h4{line-height:1.2}.card-product .category,.card-title{line-height:1.4}.card-pricing .card-title{font-size:60px;line-height:35px}.card-pricing .card-title small{font-size:18px}.card-pricing .card-title small:first-child{font-size:26px}.navbar .navbar-brand{line-height:30px}.navbar .navbar-nav>li>a{font-weight:400}.navbar .navbar-nav>li>a i{font-size:20px}.navbar .dropdown-menu li>a{font-size:13px}.navbar .dropdown-menu li>a>i{font-size:20px}.navbar .dropdown-menu li>a i{font-size:20px}.navbar .hestia-mm-heading>span{font-size:14px;font-weight:600}.hestia-mm-description{font-size:12px;font-weight:400}.hestia-top-bar{line-height:40px}.hestia-top-bar .widget,.hestia-top-bar .widget .textwidget,.hestia-top-bar .widget h5{line-height:inherit}.hestia-top-bar .widget.widget_product_search .label-floating,.hestia-top-bar .widget.widget_search .label-floating{font-size:inherit}.hestia-top-bar .widget.widget_product_search .label-floating.is-empty,.hestia-top-bar .widget.widget_search .label-floating.is-empty{font-size:inherit;font-weight:300}.hestia-top-bar .widget.widget_product_search .label-floating.is-focused .control-label,.hestia-top-bar .widget.widget_search .label-floating.is-focused .control-label{font-size:inherit;line-height:20px}.hestia-top-bar .widget.widget_product_search form.form-group input[type=search],.hestia-top-bar .widget.widget_search form.form-group input[type=search]{font-size:inherit;font-weight:300}.hestia-top-bar .widget.widget_product_search form.form-group:before,.hestia-top-bar .widget.widget_search form.form-group:before{font-size:18px}.hestia-top-bar ul{line-height:inherit}.hestia-top-bar ul li a{font-size:inherit;line-height:inherit}.hestia-top-bar ul li a:before{font-size:16px}.pagination a,.pagination span{font-size:12px;font-weight:400;line-height:30px}.footer .widget h5{line-height:1.4}.footer-big .footer-menu li a[href*="mailto:"],.footer-big .footer-menu li a[href*="tel:"]{font-size:0}.footer-big .footer-menu li a[href*="mailto:"]:before,.footer-big .footer-menu li a[href*="tel:"]:before{font-size:16px}.footer-big ul li a{font-weight:500}h5.description{line-height:1.5}.hestia-about{font-weight:300}.hestia-about h1,.hestia-about h2,.hestia-about h3,.hestia-about h4,.hestia-about h5{font-weight:700}.widget h5{font-weight:700}.search-form:after,.searchform:after,.woocommerce-product-search:after{font-size:18px}.header-widgets-wrapper .widget,.header-widgets-wrapper .widget .textwidget,.header-widgets-wrapper .widget h5{line-height:inherit}.header-widgets-wrapper ul{line-height:inherit}.header-widgets-wrapper ul li a{font-size:inherit;line-height:inherit}.header-widgets-wrapper ul li a:before{font-size:16px}aside .widget a{font-weight:500}.star-rating{line-height:1;font-size:12px}.woocommerce-cart .shop_table .actions .coupon .input-text{font-size:14px}.woocommerce-cart table.shop_table th{font-size:13px;font-weight:300}.woocommerce-cart table.shop_table .product-name a{font-size:16px;font-weight:500;line-height:30px}.woocommerce-cart table.shop_table td.actions button[type=submit],.woocommerce-cart table.shop_table td.actions input[type=submit]{font-size:14px}.woocommerce-cart p.units-info{line-height:1.5;font-size:14px}.woocommerce-cart .wc-gzd-additional-wrapper p{font-size:14px;font-weight:700}.woocommerce-checkout .form-row label{font-weight:300}.woocommerce-checkout .woocommerce-checkout-payment .form-row .woocommerce-form__label-for-checkbox,.woocommerce-checkout .woocommerce-checkout-payment li>label{font-weight:400}.woocommerce-checkout .woocommerce-shipping-fields h3 label{line-height:1}.woocommerce-checkout .woocommerce-shipping-fields h3 label span{font-weight:300}.woocommerce-checkout .col-md-12 #customer_details label{font-weight:500}.woocommerce-checkout .shop_table tr td p.units-info{font-size:12px}.woocommerce-checkout .shop_table .wc-gzd-additional-info{font-size:14px}#add_payment_method .wc-proceed-to-checkout a.checkout-button,.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button{font-size:12px;font-weight:400}.woocommerce-account .woocommerce-Button,.woocommerce-account .woocommerce-button,.woocommerce-account a.button{line-height:20px!important}.woocommerce-account .woocommerce-MyAccount-content h2{font-weight:600}.added_to_cart.wc-forward{font-weight:400;font-size:10px;line-height:30px}.variations tr .label{font-size:14px}.woocommerce-error,.woocommerce-info,.woocommerce-message{line-height:20px}.woocommerce-error li,.woocommerce-info li,.woocommerce-message li{line-height:1.5}.woocommerce-error>a.button,.woocommerce-info>a.button,.woocommerce-message>a.button{font-size:12px;font-weight:700}.woocommerce-info a{font-weight:700}.woocommerce-message a:not(.button){font-weight:800}@media (max-width:991px){.woocommerce-account input.woocommerce-Button.button{font-size:11px}.woocommerce-breadcrumb{line-height:33px}}@media (min-width:769px){.navbar.full-screen-menu .navbar-nav>li a{font-size:17px}}@media (max-width:768px){h4.author{font-size:16px}.woocommerce-cart table.shop_table dl.variation dd,.woocommerce-cart table.shop_table dl.variation dt{font-size:16px;line-height:30px}.woocommerce-cart table.shop_table dl.variation dd p{font-size:16px}.woocommerce-cart table.shop_table td.product-name{line-height:30px}.woocommerce-checkout td.product-name dl.variation dd,.woocommerce-checkout td.product-name dl.variation dt{font-size:16px}.woocommerce-checkout td.product-name dl.variation dd p{font-size:16px}.navbar .navbar-nav li>a i,.navbar .navbar-nav li>a>i{font-size:22px}.navbar .navbar-nav li .caret{font-size:20px}.navbar .navbar-nav li .dropdown i,.navbar .navbar-nav li .dropdown>i{font-size:20px}.navbar .navbar-nav .dropdown .dropdown-menu li a{line-height:20px}.navbar .navbar-nav .dropdown .dropdown-menu li a .caret{line-height:1}}@media (max-width:480px){.woocommerce .woocommerce-ordering select,.woocommerce-page .woocommerce-ordering select{font-size:12px}}body{direction:ltr;color:#3c4858;font-family:Roboto,Helvetica,Arial,sans-serif}h1,h2,h3,h4,h5,h6{font-family:Roboto,Helvetica,Arial,sans-serif}a{color:#9c27b0}a:focus,a:hover{color:#89229b;text-decoration:none}blockquote p{font-style:italic}h3{margin:20px 0 10px}h5{margin-bottom:15px}h6.category{text-transform:uppercase}.card-title,.footer-big h4,.footer-big h5,.footer-brand,.hestia-title,.info-title,.media .media-heading,.title,.woocommerce ul.products[class*=columns-] li.product-category h2{font-family:"Roboto Slab","Times New Roman",serif}.card-title,.card-title a,.card-title a:hover,.footer-big h4,.footer-big h4 a,.footer-big h4 a:hover,.footer-big h5,.footer-big h5 a,.footer-big h5 a:hover,.footer-brand,.footer-brand a,.footer-brand a:hover,.hestia-title,.hestia-title a,.hestia-title a:hover,.info-title,.info-title a,.info-title a:hover,.media .media-heading,.media .media-heading a,.media .media-heading a:hover,.title,.title a,.title a:hover,.woocommerce ul.products[class*=columns-] li.product-category h2,.woocommerce ul.products[class*=columns-] li.product-category h2 a,.woocommerce ul.products[class*=columns-] li.product-category h2 a:hover{color:#3c4858;text-decoration:none;word-wrap:break-word}.page-header .hestia-title{line-height:1.4}.title-in-content{line-height:1.3}.contactus h2.hestia-title,.contactus h2.title,.pricing h2.hestia-title,.pricing h2.title,h1.hestia-title,h1.title{margin-bottom:30px}h2.hestia-title,h2.title{margin-bottom:10px}.carousel h1.hestia-title,.carousel h2.title{font-family:Roboto,Helvetica,Arial,sans-serif}.carousel span.sub-title{display:block;margin:10px 0 0;font-family:"Roboto Slab","Times New Roman",serif}.carousel .buttons{margin-top:60px}.card-description,.description,.footer-big{color:#999}.card-description.entry-content{color:#3c4858}.subscribe-line-image .subscribe-description{color:#efefef}.text-warning{color:#ff9800}.text-primary{color:#9c27b0}.text-danger{color:#f44336}.text-success{color:#4caf50}.text-info{color:#00bcd4}.text-rose{color:#e91e63}.text-gray{color:#999}.has-black-color{color:#000}.has-white-color{color:#fff}.has-background.has-black-background-color{background-color:#000}.has-background.has-white-background-color{background-color:#fff}.page:not(.woocommerce-page) .blog-post .section-text h1,.page:not(.woocommerce-page) .blog-post .section-text h2,.page:not(.woocommerce-page) .blog-post .section-text h3,.page:not(.woocommerce-page) .blog-post .section-text h4,.page:not(.woocommerce-page) .blog-post .section-text h5,.page:not(.woocommerce-page) .blog-post .section-text h6,.page:not(.woocommerce-page) .blog-post .section-text p,.single-post .blog-post .section-text h1,.single-post .blog-post .section-text h2,.single-post .blog-post .section-text h3,.single-post .blog-post .section-text h4,.single-post .blog-post .section-text h5,.single-post .blog-post .section-text h6,.single-post .blog-post .section-text p{margin:0 0 15px}.page:not(.woocommerce-page) .blog-post .section-text h1.form-submit,.page:not(.woocommerce-page) .blog-post .section-text h2.form-submit,.page:not(.woocommerce-page) .blog-post .section-text h3.form-submit,.page:not(.woocommerce-page) .blog-post .section-text h4.form-submit,.page:not(.woocommerce-page) .blog-post .section-text h5.form-submit,.page:not(.woocommerce-page) .blog-post .section-text h6.form-submit,.page:not(.woocommerce-page) .blog-post .section-text p.form-submit,.single-post .blog-post .section-text h1.form-submit,.single-post .blog-post .section-text h2.form-submit,.single-post .blog-post .section-text h3.form-submit,.single-post .blog-post .section-text h4.form-submit,.single-post .blog-post .section-text h5.form-submit,.single-post .blog-post .section-text h6.form-submit,.single-post .blog-post .section-text p.form-submit{margin:0 0 10px}.tooltip{opacity:0;-webkit-transition:opacity,-webkit-transform .2s ease;transition:opacity,-webkit-transform .2s ease;transition:opacity,transform .2s ease;transition:opacity,transform .2s ease,-webkit-transform .2s ease;-webkit-transform:translate3d(0,5px,0);-ms-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}.tooltip.in{opacity:1;-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.tooltip.left .tooltip-arrow{border-left-color:#fff}.tooltip.right .tooltip-arrow{border-right-color:#fff}.tooltip.top .tooltip-arrow{border-top-color:#fff}.tooltip.bottom .tooltip-arrow{border-bottom-color:#fff}.tooltip-inner{min-width:130px;padding:10px 15px;border:none;border-radius:3px;color:#555;background:#fff;-webkit-box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12),0 5px 5px -3px rgba(0,0,0,.2);box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12),0 5px 5px -3px rgba(0,0,0,.2);font-size:12px;line-height:1.5;text-transform:none}.screen-reader-text{clip:rect(1px,1px,1px,1px);position:absolute!important;height:1px;width:1px;overflow:hidden}.screen-reader-text:focus{background-color:#f1f1f1;border-radius:3px;-webkit-box-shadow:0 0 2px 2px rgba(0,0,0,.6);box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;color:#21759b;display:block;font-size:14px;font-weight:700;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}.container{max-width:100%}@media (min-width:749px){.container{max-width:748px}}@media (min-width:768px){.container{max-width:750px}}@media (min-width:992px){.container{max-width:970px}}@media (min-width:1200px){.container{max-width:2000px}}body{direction:ltr;background-color:#e5e5e5;overflow-x:hidden}*{-webkit-tap-highlight-color:rgba(255,255,255,0);-webkit-tap-highlight-color:transparent}.wp-caption,button,embed,iframe,img,input,object,select,textarea,video{max-width:100%}img{height:auto}ol,ul{margin-bottom:30px}legend{border-bottom:0}.container{max-width:100%}.margin-left-auto{margin-left:auto}.margin-right-auto{margin-right:auto}.animation-transition-fast,.navbar,.panel .panel-heading i,.section-cards .card{-webkit-transition:all 150ms ease;transition:all 150ms ease}.thumbnail{padding:0;border:0 none;border-radius:0}.default-link,.default-link:hover,.hestia-title .default-link,.section-image .default-link,.section-image .description .default-link,.title .default-link{color:#fff}.description .default-link{color:#999}body.menu-open{overflow:hidden}@media (min-width:992px){.row.hestia-like-table{display:table;width:100%}.row.hestia-like-table>div{display:table-cell;vertical-align:middle;float:none}}@media (max-width:991px){.hestia-xs-text-center{text-align:center}}.hestia-blogs article:nth-of-type(6n) .category a,.related-posts div:nth-of-type(6n) .category a,.related.products ul li:nth-of-type(6n) .category a,.shop-item:nth-of-type(6n) .category a,.woocommerce .products li:nth-of-type(6n) .category a,.woocommerce.archive .blog-post .products li:nth-of-type(6n) .category a{color:#4caf50}.hestia-blogs article:nth-of-type(6n+1) .category a,.related-posts div:nth-of-type(6n+1) .category a,.related.products ul li:nth-of-type(6n+1) .category a,.shop-item:nth-of-type(6n+1) .category a,.woocommerce .products li:nth-of-type(6n+1) .category a,.woocommerce.archive .blog-post .products li:nth-of-type(6n+1) .category a{color:#89229b}.hestia-blogs article:nth-of-type(6n+2) .category a,.related-posts div:nth-of-type(6n+2) .category a,.related.products ul li:nth-of-type(6n+2) .category a,.shop-item:nth-of-type(6n+2) .category a,.woocommerce .products li:nth-of-type(6n+2) .category a,.woocommerce.archive .blog-post .products li:nth-of-type(6n+2) .category a{color:#00bcd4}.hestia-blogs article:nth-of-type(6n+3) .category a,.related-posts div:nth-of-type(6n+3) .category a,.related.products ul li:nth-of-type(6n+3) .category a,.shop-item:nth-of-type(6n+3) .category a,.woocommerce .products li:nth-of-type(6n+3) .category a,.woocommerce.archive .blog-post .products li:nth-of-type(6n+3) .category a{color:#f44336}.hestia-blogs article:nth-of-type(6n+4) .category a,.related-posts div:nth-of-type(6n+4) .category a,.related.products ul li:nth-of-type(6n+4) .category a,.shop-item:nth-of-type(6n+4) .category a,.woocommerce .products li:nth-of-type(6n+4) .category a,.woocommerce.archive .blog-post .products li:nth-of-type(6n+4) .category a{color:#ff9800}.hestia-blogs article:nth-of-type(6n+5) .category a,.related-posts div:nth-of-type(6n+5) .category a,.related.products ul li:nth-of-type(6n+5) .category a,.shop-item:nth-of-type(6n+5) .category a,.woocommerce .products li:nth-of-type(6n+5) .category a,.woocommerce.archive .blog-post .products li:nth-of-type(6n+5) .category a{color:#e91e63}.hestia-blogs article:nth-of-type(6n) .card-body .btn{background-color:#4caf50}.hestia-blogs article:nth-of-type(6n+1) .card-body .btn{background-color:#89229b}.hestia-blogs article:nth-of-type(6n+2) .card-body .btn{background-color:#00bcd4}.hestia-blogs article:nth-of-type(6n+3) .card-body .btn{background-color:#f44336}.hestia-blogs article:nth-of-type(6n+4) .card-body .btn{background-color:#ff9800}.hestia-blogs article:nth-of-type(6n+5) .card-body .btn{background-color:#e91e63}.wp-audio-shortcode{margin-bottom:20px}.wp-video-shortcode{margin-bottom:20px}input[type=checkbox]+label,input[type=radio]+label{font-weight:400}blockquote.has-text-align-right{border-left:0;border-right:5px solid #eee}blockquote cite{font-size:.8em;color:#777;font-style:normal;font-weight:400}::-moz-focus-inner,:active,:focus{outline:0!important}.btn::-moz-focus-inner,button,input[type=button]::-moz-focus-inner,input[type=submit]::-moz-focus-inner{border:0}button,input,select,textarea{font-family:inherit;padding:7px}button:focus,input:focus,select:focus,textarea:focus{outline:0!important}.btn,button,input[type=button],input[type=submit]{position:relative;margin:10px 1px;padding:12px 30px;border:none;border-radius:3px;white-space:normal;letter-spacing:0;text-transform:uppercase}input[type=number]{padding:0}.btn,.btn.btn-default,button,input[type=button],input[type=submit]{-webkit-box-shadow:0 2px 2px 0 rgba(153,153,153,.14),0 3px 1px -2px rgba(153,153,153,.2),0 1px 5px 0 rgba(153,153,153,.12);-moz-box-shadow:0 2px 2px 0 rgba(153,153,153,.14),0 3px 1px -2px rgba(153,153,153,.2),0 1px 5px 0 rgba(153,153,153,.12);box-shadow:0 2px 2px 0 rgba(153,153,153,.14),0 3px 1px -2px rgba(153,153,153,.2),0 1px 5px 0 rgba(153,153,153,.12)}.btn.btn-default:active,.btn.btn-default:focus,.btn.btn-default:hover,.btn:active,.btn:focus,.btn:hover,button:active,button:focus,button:hover,input[type=button]:active,input[type=button]:focus,input[type=button]:hover,input[type=submit]:active,input[type=submit]:focus,input[type=submit]:hover{-webkit-box-shadow:0 14px 26px -12px rgba(153,153,153,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(153,153,153,.2);-moz-box-shadow:0 14px 26px -12px rgba(153,153,153,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(153,153,153,.2);box-shadow:0 14px 26px -12px rgba(153,153,153,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(153,153,153,.2)}.btn,.btn.active,.btn.active:focus,.btn.active:hover,.btn.btn-default,.btn.btn-default.active,.btn.btn-default.active:focus,.btn.btn-default.active:hover,.btn.btn-default:active,.btn.btn-default:active:focus,.btn.btn-default:active:hover,.btn.btn-default:focus,.btn.btn-default:hover,.btn:active,.btn:active:focus,.btn:active:hover,.btn:focus,.btn:hover,.open>.btn.btn-default.dropdown-toggle,.open>.btn.btn-default.dropdown-toggle:focus,.open>.btn.btn-default.dropdown-toggle:hover,.open>.btn.dropdown-toggle,.open>.btn.dropdown-toggle:focus,.open>.btn.dropdown-toggle:hover,button:focus,button:hover,input[type=button]:active,input[type=button]:focus,input[type=button]:hover,input[type=submit]:active,input[type=submit]:focus,input[type=submit]:hover{color:#fff;background-color:#999;outline:0}.btn:active>a,.btn:focus>a,.btn:hover>a,.btn>a:active,.btn>a:focus,.btn>a:hover{color:#fff}.btn.btn-default.btn-simple,.btn.btn-default.btn-simple:active,.btn.btn-default.btn-simple:focus,.btn.btn-default.btn-simple:hover,.btn.btn-simple,.btn.btn-simple:active,.btn.btn-simple:focus,.btn.btn-simple:hover{color:#999;background-color:transparent}.btn.btn-primary,button,input[type=button],input[type=submit]{-webkit-box-shadow:0 2px 2px 0 rgba(156,39,176,.14),0 3px 1px -2px rgba(156,39,176,.2),0 1px 5px 0 rgba(156,39,176,.12);-moz-box-shadow:0 2px 2px 0 rgba(156,39,176,.14),0 3px 1px -2px rgba(156,39,176,.2),0 1px 5px 0 rgba(156,39,176,.12);box-shadow:0 2px 2px 0 rgba(156,39,176,.14),0 3px 1px -2px rgba(156,39,176,.2),0 1px 5px 0 rgba(156,39,176,.12)}.btn.btn-primary:active,.btn.btn-primary:focus,.btn.btn-primary:hover,button:active,button:focus,button:hover,input[type=button]:active,input[type=button]:focus,input[type=button]:hover,input[type=submit]:active,input[type=submit]:focus,input[type=submit]:hover{-webkit-box-shadow:0 14px 26px -12px rgba(156,39,176,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(156,39,176,.2);-moz-box-shadow:0 14px 26px -12px rgba(156,39,176,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(156,39,176,.2);box-shadow:0 14px 26px -12px rgba(156,39,176,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(156,39,176,.2)}.btn.btn-primary.btn-simple,.btn.btn-primary.btn-simple:active,.btn.btn-primary.btn-simple:focus,.btn.btn-primary.btn-simple:hover{color:#9c27b0;background-color:transparent}.btn.btn-primary,.btn.btn-primary.active,.btn.btn-primary.active:focus,.btn.btn-primary.active:hover,.btn.btn-primary:active,.btn.btn-primary:active:focus,.btn.btn-primary:active:hover,.btn.btn-primary:focus,.btn.btn-primary:hover,.open>.btn.btn-primary.dropdown-toggle,.open>.btn.btn-primary.dropdown-toggle:focus,.open>.btn.btn-primary.dropdown-toggle:hover,button,button:hover,input#searchsubmit,input[type=button],input[type=button]:hover,input[type=submit],input[type=submit]:hover{color:#fff;background-color:#9c27b0}.btn.btn-white{box-shadow:0 2px 2px 0 rgba(153,153,153,.14),0 3px 1px -2px rgba(153,153,153,.2),0 1px 5px 0 rgba(153,153,153,.12);color:#999;background-color:#fff}.btn.btn-white.btn-white:focus,.btn.btn-white.btn-white:hover{color:#fff;background-color:rgba(153,153,153,.6)}.btn.btn-white.btn-simple{color:#fff;background:0 0}.btn.btn-round{border-radius:30px}.btn:not(.btn-just-icon):not(.btn-fab) i{position:relative}.btn.btn-just-icon{padding:12px}.btn.btn-just-icon:hover{box-shadow:none}.btn.btn-just-icon i{width:20px}.btn.btn-just-icon.btn-lg{padding:13px 18px}.btn.btn-border{background:0 0;border:1px solid #d2d2d2;color:#999}.btn.btn-border:focus,.btn.btn-border:hover{background:0 0;color:#3c4858}.btn i{position:relative;top:-1px;vertical-align:middle}.navbar button.navbar-toggle,.navbar button.navbar-toggle:hover{color:#555}.navbar .button:hover{box-shadow:none!important;color:#e91e63}.navbar .dropdown-menu li.btn:active>a,.navbar .dropdown-menu li.btn:focus>a,.navbar .dropdown-menu li.btn:hover>a{color:#fff!important}.btn.btn-facebook,.btn.btn-facebook:active,.btn.btn-facebook:focus,.btn.btn-facebook:hover,.navbar .navbar-nav>li>a.btn.btn-facebook,.navbar .navbar-nav>li>a.btn.btn-facebook:active,.navbar .navbar-nav>li>a.btn.btn-facebook:focus,.navbar .navbar-nav>li>a.btn.btn-facebook:hover{color:#fff;background-color:#3b5998}.btn.btn-facebook,.navbar .navbar-nav>li>a.btn.btn-facebook{-webkit-box-shadow:0 2px 2px 0 rgba(59,89,152,.14),0 3px 1px -2px rgba(59,89,152,.2),0 1px 5px 0 rgba(59,89,152,.12);-moz-box-shadow:0 2px 2px 0 rgba(59,89,152,.14),0 3px 1px -2px rgba(59,89,152,.2),0 1px 5px 0 rgba(59,89,152,.12);box-shadow:0 2px 2px 0 rgba(59,89,152,.14),0 3px 1px -2px rgba(59,89,152,.2),0 1px 5px 0 rgba(59,89,152,.12)}.btn.btn-facebook:active,.btn.btn-facebook:focus,.btn.btn-facebook:hover,.navbar .navbar-nav>li>a.btn.btn-facebook:active,.navbar .navbar-nav>li>a.btn.btn-facebook:focus,.navbar .navbar-nav>li>a.btn.btn-facebook:hover{-webkit-box-shadow:0 14px 26px -12px rgba(59,89,152,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(59,89,152,.2);-moz-box-shadow:0 14px 26px -12px rgba(59,89,152,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(59,89,152,.2);box-shadow:0 14px 26px -12px rgba(59,89,152,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(59,89,152,.2)}.btn.btn-facebook.btn-simple,.navbar .navbar-nav>li>a.btn.btn-facebook.btn-simple{color:#3b5998;background-color:transparent}.btn.btn-twitter,.btn.btn-twitter:active,.btn.btn-twitter:focus,.btn.btn-twitter:hover,.navbar .navbar-nav>li>a.btn.btn-twitter,.navbar .navbar-nav>li>a.btn.btn-twitter:active,.navbar .navbar-nav>li>a.btn.btn-twitter:focus,.navbar .navbar-nav>li>a.btn.btn-twitter:hover{color:#fff;background-color:#55acee}.btn.btn-twitter,.navbar .navbar-nav>li>a.btn.btn-twitter{-webkit-box-shadow:0 2px 2px 0 rgba(85,172,238,.14),0 3px 1px -2px rgba(85,172,238,.2),0 1px 5px 0 rgba(85,172,238,.12);-moz-box-shadow:0 2px 2px 0 rgba(85,172,238,.14),0 3px 1px -2px rgba(85,172,238,.2),0 1px 5px 0 rgba(85,172,238,.12);box-shadow:0 2px 2px 0 rgba(85,172,238,.14),0 3px 1px -2px rgba(85,172,238,.2),0 1px 5px 0 rgba(85,172,238,.12)}.btn.btn-twitter:active,.btn.btn-twitter:focus,.btn.btn-twitter:hover,.navbar .navbar-nav>li>a.btn.btn-twitter:active,.navbar .navbar-nav>li>a.btn.btn-twitter:focus,.navbar .navbar-nav>li>a.btn.btn-twitter:hover{-webkit-box-shadow:0 14px 26px -12px rgba(85,172,238,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(85,172,238,.2);-moz-box-shadow:0 14px 26px -12px rgba(85,172,238,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(85,172,238,.2);box-shadow:0 14px 26px -12px rgba(85,172,238,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(85,172,238,.2)}.btn.btn-twitter.btn-simple,.navbar .navbar-nav>li>a.btn.btn-twitter.btn-simple{color:#55acee;background-color:transparent}.btn.btn-pinterest,.btn.btn-pinterest:active,.btn.btn-pinterest:focus,.btn.btn-pinterest:hover,.navbar .navbar-nav>li>a.btn.btn-pinterest,.navbar .navbar-nav>li>a.btn.btn-pinterest:active,.navbar .navbar-nav>li>a.btn.btn-pinterest:focus,.navbar .navbar-nav>li>a.btn.btn-pinterest:hover{color:#fff;background-color:#cc2127}.btn.btn-pinterest,.navbar .navbar-nav>li>a.btn.btn-pinterest{-webkit-box-shadow:0 2px 2px 0 rgba(204,33,39,.14),0 3px 1px -2px rgba(204,33,39,.2),0 1px 5px 0 rgba(204,33,39,.12);-moz-box-shadow:0 2px 2px 0 rgba(204,33,39,.14),0 3px 1px -2px rgba(204,33,39,.2),0 1px 5px 0 rgba(204,33,39,.12);box-shadow:0 2px 2px 0 rgba(204,33,39,.14),0 3px 1px -2px rgba(204,33,39,.2),0 1px 5px 0 rgba(204,33,39,.12)}.btn.btn-pinterest:active,.btn.btn-pinterest:focus,.btn.btn-pinterest:hover,.navbar .navbar-nav>li>a.btn.btn-pinterest:active,.navbar .navbar-nav>li>a.btn.btn-pinterest:focus,.navbar .navbar-nav>li>a.btn.btn-pinterest:hover{-webkit-box-shadow:0 14px 26px -12px rgba(204,33,39,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(204,33,39,.2);-moz-box-shadow:0 14px 26px -12px rgba(204,33,39,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(204,33,39,.2);box-shadow:0 14px 26px -12px rgba(204,33,39,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(204,33,39,.2)}.btn.btn-pinterest.btn-simple,.navbar .navbar-nav>li>a.btn.btn-pinterest.btn-simple{color:#cc2127;background-color:transparent}.btn.btn-google,.btn.btn-google:active,.btn.btn-google:focus,.btn.btn-google:hover,.navbar .navbar-nav>li>a.btn.btn-google,.navbar .navbar-nav>li>a.btn.btn-google:active,.navbar .navbar-nav>li>a.btn.btn-google:focus,.navbar .navbar-nav>li>a.btn.btn-google:hover{color:#fff;background-color:#dd4b39}.btn.btn-google,.navbar .navbar-nav>li>a.btn.btn-google{-webkit-box-shadow:0 2px 2px 0 rgba(221,75,57,.14),0 3px 1px -2px rgba(221,75,57,.2),0 1px 5px 0 rgba(221,75,57,.12);-moz-box-shadow:0 2px 2px 0 rgba(221,75,57,.14),0 3px 1px -2px rgba(221,75,57,.2),0 1px 5px 0 rgba(221,75,57,.12);box-shadow:0 2px 2px 0 rgba(221,75,57,.14),0 3px 1px -2px rgba(221,75,57,.2),0 1px 5px 0 rgba(221,75,57,.12)}.btn.btn-google:active,.btn.btn-google:focus,.btn.btn-google:hover,.navbar .navbar-nav>li>a.btn.btn-google:active,.navbar .navbar-nav>li>a.btn.btn-google:focus,.navbar .navbar-nav>li>a.btn.btn-google:hover{-webkit-box-shadow:0 14px 26px -12px rgba(221,75,57,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(221,75,57,.2);-moz-box-shadow:0 14px 26px -12px rgba(221,75,57,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(221,75,57,.2);box-shadow:0 14px 26px -12px rgba(221,75,57,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(221,75,57,.2)}.btn.btn-google.btn-simple,.navbar .navbar-nav>li>a.btn.btn-google.btn-simple{color:#dd4b39;background-color:transparent}.btn.btn-linkedin,.btn.btn-linkedin:active,.btn.btn-linkedin:focus,.btn.btn-linkedin:hover,.navbar .navbar-nav>li>a.btn.btn-linkedin,.navbar .navbar-nav>li>a.btn.btn-linkedin:active,.navbar .navbar-nav>li>a.btn.btn-linkedin:focus,.navbar .navbar-nav>li>a.btn.btn-linkedin:hover{color:#fff;background-color:#0976b4}.btn.btn-linkedin,.navbar .navbar-nav>li>a.btn.btn-linkedin{-webkit-box-shadow:0 2px 2px 0 rgba(9,118,180,.14),0 3px 1px -2px rgba(9,118,180,.2),0 1px 5px 0 rgba(9,118,180,.12);-moz-box-shadow:0 2px 2px 0 rgba(9,118,180,.14),0 3px 1px -2px rgba(9,118,180,.2),0 1px 5px 0 rgba(9,118,180,.12);box-shadow:0 2px 2px 0 rgba(9,118,180,.14),0 3px 1px -2px rgba(9,118,180,.2),0 1px 5px 0 rgba(9,118,180,.12)}.btn.btn-linkedin:active,.btn.btn-linkedin:focus,.btn.btn-linkedin:hover,.navbar .navbar-nav>li>a.btn.btn-linkedin:active,.navbar .navbar-nav>li>a.btn.btn-linkedin:focus,.navbar .navbar-nav>li>a.btn.btn-linkedin:hover{-webkit-box-shadow:0 14px 26px -12px rgba(9,118,180,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(9,118,180,.2);-moz-box-shadow:0 14px 26px -12px rgba(9,118,180,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(9,118,180,.2);box-shadow:0 14px 26px -12px rgba(9,118,180,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(9,118,180,.2)}.btn.btn-linkedin.btn-simple,.navbar .navbar-nav>li>a.btn.btn-linkedin.btn-simple{color:#0976b4;background-color:transparent}.btn.btn-dribbble,.btn.btn-dribbble:active,.btn.btn-dribbble:focus,.btn.btn-dribbble:hover,.navbar .navbar-nav>li>a.btn.btn-dribbble,.navbar .navbar-nav>li>a.btn.btn-dribbble:active,.navbar .navbar-nav>li>a.btn.btn-dribbble:focus,.navbar .navbar-nav>li>a.btn.btn-dribbble:hover{color:#fff;background-color:#ea4c89}.btn.btn-dribbble,.navbar .navbar-nav>li>a.btn.btn-dribbble{-webkit-box-shadow:0 2px 2px 0 rgba(234,76,137,.14),0 3px 1px -2px rgba(234,76,137,.2),0 1px 5px 0 rgba(234,76,137,.12);-moz-box-shadow:0 2px 2px 0 rgba(234,76,137,.14),0 3px 1px -2px rgba(234,76,137,.2),0 1px 5px 0 rgba(234,76,137,.12);box-shadow:0 2px 2px 0 rgba(234,76,137,.14),0 3px 1px -2px rgba(234,76,137,.2),0 1px 5px 0 rgba(234,76,137,.12)}.btn.btn-dribbble:active,.btn.btn-dribbble:focus,.btn.btn-dribbble:hover,.navbar .navbar-nav>li>a.btn.btn-dribbble:active,.navbar .navbar-nav>li>a.btn.btn-dribbble:focus,.navbar .navbar-nav>li>a.btn.btn-dribbble:hover{-webkit-box-shadow:0 14px 26px -12px rgba(234,76,137,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(234,76,137,.2);-moz-box-shadow:0 14px 26px -12px rgba(234,76,137,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(234,76,137,.2);box-shadow:0 14px 26px -12px rgba(234,76,137,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(234,76,137,.2)}.btn.btn-dribbble.btn-simple,.navbar .navbar-nav>li>a.btn.btn-dribbble.btn-simple{color:#ea4c89;background-color:transparent}.btn.btn-github,.btn.btn-github:active,.btn.btn-github:focus,.btn.btn-github:hover,.navbar .navbar-nav>li>a.btn.btn-github,.navbar .navbar-nav>li>a.btn.btn-github:active,.navbar .navbar-nav>li>a.btn.btn-github:focus,.navbar .navbar-nav>li>a.btn.btn-github:hover{color:#fff;background-color:#000}.btn.btn-github,.navbar .navbar-nav>li>a.btn.btn-github{-webkit-box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);-moz-box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12)}.btn.btn-github:active,.btn.btn-github:focus,.btn.btn-github:hover,.navbar .navbar-nav>li>a.btn.btn-github:active,.navbar .navbar-nav>li>a.btn.btn-github:focus,.navbar .navbar-nav>li>a.btn.btn-github:hover{-webkit-box-shadow:0 14px 26px -12px rgba(0,0,0,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2);-moz-box-shadow:0 14px 26px -12px rgba(0,0,0,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2);box-shadow:0 14px 26px -12px rgba(0,0,0,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2)}.btn.btn-github.btn-simple,.navbar .navbar-nav>li>a.btn.btn-github.btn-simple{color:#000;background-color:transparent}.btn.btn-youtube,.btn.btn-youtube:active,.btn.btn-youtube:focus,.btn.btn-youtube:hover,.navbar .navbar-nav>li>a.btn.btn-youtube,.navbar .navbar-nav>li>a.btn.btn-youtube:active,.navbar .navbar-nav>li>a.btn.btn-youtube:focus,.navbar .navbar-nav>li>a.btn.btn-youtube:hover{color:#fff;background-color:#e52d27}.btn.btn-youtube,.navbar .navbar-nav>li>a.btn.btn-youtube{-webkit-box-shadow:0 2px 2px 0 rgba(229,45,39,.14),0 3px 1px -2px rgba(229,45,39,.2),0 1px 5px 0 rgba(229,45,39,.12);-moz-box-shadow:0 2px 2px 0 rgba(229,45,39,.14),0 3px 1px -2px rgba(229,45,39,.2),0 1px 5px 0 rgba(229,45,39,.12);box-shadow:0 2px 2px 0 rgba(229,45,39,.14),0 3px 1px -2px rgba(229,45,39,.2),0 1px 5px 0 rgba(229,45,39,.12)}.btn.btn-youtube:active,.btn.btn-youtube:focus,.btn.btn-youtube:hover,.navbar .navbar-nav>li>a.btn.btn-youtube:active,.navbar .navbar-nav>li>a.btn.btn-youtube:focus,.navbar .navbar-nav>li>a.btn.btn-youtube:hover{-webkit-box-shadow:0 14px 26px -12px rgba(229,45,39,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(229,45,39,.2);-moz-box-shadow:0 14px 26px -12px rgba(229,45,39,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(229,45,39,.2);box-shadow:0 14px 26px -12px rgba(229,45,39,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(229,45,39,.2)}.btn.btn-youtube.btn-simple,.navbar .navbar-nav>li>a.btn.btn-youtube.btn-simple{color:#e52d27;background-color:transparent}.btn.btn-instagram,.btn.btn-instagram:active,.btn.btn-instagram:focus,.btn.btn-instagram:hover,.navbar .navbar-nav>li>a.btn.btn-instagram,.navbar .navbar-nav>li>a.btn.btn-instagram:active,.navbar .navbar-nav>li>a.btn.btn-instagram:focus,.navbar .navbar-nav>li>a.btn.btn-instagram:hover{color:#fff;background-color:#125688}.btn.btn-instagram,.navbar .navbar-nav>li>a.btn.btn-instagram{-webkit-box-shadow:0 2px 2px 0 rgba(18,86,136,.14),0 3px 1px -2px rgba(18,86,136,.2),0 1px 5px 0 rgba(18,86,136,.12);-moz-box-shadow:0 2px 2px 0 rgba(18,86,136,.14),0 3px 1px -2px rgba(18,86,136,.2),0 1px 5px 0 rgba(18,86,136,.12);box-shadow:0 2px 2px 0 rgba(18,86,136,.14),0 3px 1px -2px rgba(18,86,136,.2),0 1px 5px 0 rgba(18,86,136,.12)}.btn.btn-instagram:active,.btn.btn-instagram:focus,.btn.btn-instagram:hover,.navbar .navbar-nav>li>a.btn.btn-instagram:active,.navbar .navbar-nav>li>a.btn.btn-instagram:focus,.navbar .navbar-nav>li>a.btn.btn-instagram:hover{-webkit-box-shadow:0 14px 26px -12px rgba(18,86,136,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(18,86,136,.2);-moz-box-shadow:0 14px 26px -12px rgba(18,86,136,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(18,86,136,.2);box-shadow:0 14px 26px -12px rgba(18,86,136,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(18,86,136,.2)}.btn.btn-instagram.btn-simple,.navbar .navbar-nav>li>a.btn.btn-instagram.btn-simple{color:#125688;background-color:transparent}.btn.btn-reddit,.btn.btn-reddit:active,.btn.btn-reddit:focus,.btn.btn-reddit:hover,.navbar .navbar-nav>li>a.btn.btn-reddit,.navbar .navbar-nav>li>a.btn.btn-reddit:active,.navbar .navbar-nav>li>a.btn.btn-reddit:focus,.navbar .navbar-nav>li>a.btn.btn-reddit:hover{color:#fff;background-color:#ff4500}.btn.btn-reddit,.navbar .navbar-nav>li>a.btn.btn-reddit{-webkit-box-shadow:0 2px 2px 0 rgba(255,69,0,.14),0 3px 1px -2px rgba(255,69,0,.2),0 1px 5px 0 rgba(255,69,0,.12);-moz-box-shadow:0 2px 2px 0 rgba(255,69,0,.14),0 3px 1px -2px rgba(255,69,0,.2),0 1px 5px 0 rgba(255,69,0,.12);box-shadow:0 2px 2px 0 rgba(255,69,0,.14),0 3px 1px -2px rgba(255,69,0,.2),0 1px 5px 0 rgba(255,69,0,.12)}.btn.btn-reddit:active,.btn.btn-reddit:focus,.btn.btn-reddit:hover,.navbar .navbar-nav>li>a.btn.btn-reddit:active,.navbar .navbar-nav>li>a.btn.btn-reddit:focus,.navbar .navbar-nav>li>a.btn.btn-reddit:hover{-webkit-box-shadow:0 14px 26px -12px rgba(255,69,0,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(255,69,0,.2);-moz-box-shadow:0 14px 26px -12px rgba(255,69,0,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(255,69,0,.2);box-shadow:0 14px 26px -12px rgba(255,69,0,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(255,69,0,.2)}.btn.btn-reddit.btn-simple,.navbar .navbar-nav>li>a.btn.btn-reddit.btn-simple{color:#ff4500;background-color:transparent}.btn.btn-tumblr,.btn.btn-tumblr:active,.btn.btn-tumblr:focus,.btn.btn-tumblr:hover,.navbar .navbar-nav>li>a.btn.btn-tumblr,.navbar .navbar-nav>li>a.btn.btn-tumblr:active,.navbar .navbar-nav>li>a.btn.btn-tumblr:focus,.navbar .navbar-nav>li>a.btn.btn-tumblr:hover{color:#fff;background-color:#35465c}.btn.btn-tumblr,.navbar .navbar-nav>li>a.btn.btn-tumblr{-webkit-box-shadow:0 2px 2px 0 rgba(53,70,92,.14),0 3px 1px -2px rgba(53,70,92,.2),0 1px 5px 0 rgba(53,70,92,.12);-moz-box-shadow:0 2px 2px 0 rgba(53,70,92,.14),0 3px 1px -2px rgba(53,70,92,.2),0 1px 5px 0 rgba(53,70,92,.12);box-shadow:0 2px 2px 0 rgba(53,70,92,.14),0 3px 1px -2px rgba(53,70,92,.2),0 1px 5px 0 rgba(53,70,92,.12)}.btn.btn-tumblr:active,.btn.btn-tumblr:focus,.btn.btn-tumblr:hover,.navbar .navbar-nav>li>a.btn.btn-tumblr:active,.navbar .navbar-nav>li>a.btn.btn-tumblr:focus,.navbar .navbar-nav>li>a.btn.btn-tumblr:hover{-webkit-box-shadow:0 14px 26px -12px rgba(53,70,92,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(53,70,92,.2);-moz-box-shadow:0 14px 26px -12px rgba(53,70,92,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(53,70,92,.2);box-shadow:0 14px 26px -12px rgba(53,70,92,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(53,70,92,.2)}.btn.btn-tumblr.btn-simple,.navbar .navbar-nav>li>a.btn.btn-tumblr.btn-simple{color:#35465c;background-color:transparent}.btn.btn-behance,.btn.btn-behance:active,.btn.btn-behance:focus,.btn.btn-behance:hover,.navbar .navbar-nav>li>a.btn.btn-behance,.navbar .navbar-nav>li>a.btn.btn-behance:active,.navbar .navbar-nav>li>a.btn.btn-behance:focus,.navbar .navbar-nav>li>a.btn.btn-behance:hover{color:#fff;background-color:#1769ff}.btn.btn-behance,.navbar .navbar-nav>li>a.btn.btn-behance{-webkit-box-shadow:0 2px 2px 0 rgba(23,105,255,.14),0 3px 1px -2px rgba(23,105,255,.2),0 1px 5px 0 rgba(23,105,255,.12);-moz-box-shadow:0 2px 2px 0 rgba(23,105,255,.14),0 3px 1px -2px rgba(23,105,255,.2),0 1px 5px 0 rgba(23,105,255,.12);box-shadow:0 2px 2px 0 rgba(23,105,255,.14),0 3px 1px -2px rgba(23,105,255,.2),0 1px 5px 0 rgba(23,105,255,.12)}.btn.btn-behance:active,.btn.btn-behance:focus,.btn.btn-behance:hover,.navbar .navbar-nav>li>a.btn.btn-behance:active,.navbar .navbar-nav>li>a.btn.btn-behance:focus,.navbar .navbar-nav>li>a.btn.btn-behance:hover{-webkit-box-shadow:0 14px 26px -12px rgba(23,105,255,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(23,105,255,.2);-moz-box-shadow:0 14px 26px -12px rgba(23,105,255,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(23,105,255,.2);box-shadow:0 14px 26px -12px rgba(23,105,255,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(23,105,255,.2)}.btn.btn-behance.btn-simple,.navbar .navbar-nav>li>a.btn.btn-behance.btn-simple{color:#1769ff;background-color:transparent}.btn.btn-snapchat,.btn.btn-snapchat:active,.btn.btn-snapchat:focus,.btn.btn-snapchat:hover,.navbar .navbar-nav>li>a.btn.btn-snapchat,.navbar .navbar-nav>li>a.btn.btn-snapchat:active,.navbar .navbar-nav>li>a.btn.btn-snapchat:focus,.navbar .navbar-nav>li>a.btn.btn-snapchat:hover{color:#fff;background-color:#fffc00}.btn.btn-snapchat,.navbar .navbar-nav>li>a.btn.btn-snapchat{-webkit-box-shadow:0 2px 2px 0 rgba(255,252,0,.14),0 3px 1px -2px rgba(255,252,0,.2),0 1px 5px 0 rgba(255,252,0,.12);-moz-box-shadow:0 2px 2px 0 rgba(255,252,0,.14),0 3px 1px -2px rgba(255,252,0,.2),0 1px 5px 0 rgba(255,252,0,.12);box-shadow:0 2px 2px 0 rgba(255,252,0,.14),0 3px 1px -2px rgba(255,252,0,.2),0 1px 5px 0 rgba(255,252,0,.12)}.btn.btn-snapchat:active,.btn.btn-snapchat:focus,.btn.btn-snapchat:hover,.navbar .navbar-nav>li>a.btn.btn-snapchat:active,.navbar .navbar-nav>li>a.btn.btn-snapchat:focus,.navbar .navbar-nav>li>a.btn.btn-snapchat:hover{-webkit-box-shadow:0 14px 26px -12px rgba(255,252,0,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(255,252,0,.2);-moz-box-shadow:0 14px 26px -12px rgba(255,252,0,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(255,252,0,.2);box-shadow:0 14px 26px -12px rgba(255,252,0,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(255,252,0,.2)}.btn.btn-snapchat.btn-simple,.navbar .navbar-nav>li>a.btn.btn-snapchat.btn-simple{color:#fffc00;background-color:transparent}.btn.btn-deviantart,.btn.btn-deviantart:active,.btn.btn-deviantart:focus,.btn.btn-deviantart:hover,.navbar .navbar-nav>li>a.btn.btn-deviantart,.navbar .navbar-nav>li>a.btn.btn-deviantart:active,.navbar .navbar-nav>li>a.btn.btn-deviantart:focus,.navbar .navbar-nav>li>a.btn.btn-deviantart:hover{color:#fff;background-color:#05cc47}.btn.btn-deviantart,.navbar .navbar-nav>li>a.btn.btn-deviantart{-webkit-box-shadow:0 2px 2px 0 rgba(5,204,71,.14),0 3px 1px -2px rgba(5,204,71,.2),0 1px 5px 0 rgba(5,204,71,.12);-moz-box-shadow:0 2px 2px 0 rgba(5,204,71,.14),0 3px 1px -2px rgba(5,204,71,.2),0 1px 5px 0 rgba(5,204,71,.12);box-shadow:0 2px 2px 0 rgba(5,204,71,.14),0 3px 1px -2px rgba(5,204,71,.2),0 1px 5px 0 rgba(5,204,71,.12)}.btn.btn-deviantart:active,.btn.btn-deviantart:focus,.btn.btn-deviantart:hover,.navbar .navbar-nav>li>a.btn.btn-deviantart:active,.navbar .navbar-nav>li>a.btn.btn-deviantart:focus,.navbar .navbar-nav>li>a.btn.btn-deviantart:hover{-webkit-box-shadow:0 14px 26px -12px rgba(5,204,71,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(5,204,71,.2);-moz-box-shadow:0 14px 26px -12px rgba(5,204,71,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(5,204,71,.2);box-shadow:0 14px 26px -12px rgba(5,204,71,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(5,204,71,.2)}.btn.btn-deviantart.btn-simple,.navbar .navbar-nav>li>a.btn.btn-deviantart.btn-simple{color:#05cc47;background-color:transparent}.btn.btn-vimeo,.btn.btn-vimeo:active,.btn.btn-vimeo:focus,.btn.btn-vimeo:hover,.navbar .navbar-nav>li>a.btn.btn-vimeo,.navbar .navbar-nav>li>a.btn.btn-vimeo:active,.navbar .navbar-nav>li>a.btn.btn-vimeo:focus,.navbar .navbar-nav>li>a.btn.btn-vimeo:hover{color:#fff;background-color:#1ab7ea}.btn.btn-vimeo,.navbar .navbar-nav>li>a.btn.btn-vimeo{-webkit-box-shadow:0 2px 2px 0 rgba(26,183,234,.14),0 3px 1px -2px rgba(26,183,234,.2),0 1px 5px 0 rgba(26,183,234,.12);-moz-box-shadow:0 2px 2px 0 rgba(26,183,234,.14),0 3px 1px -2px rgba(26,183,234,.2),0 1px 5px 0 rgba(26,183,234,.12);box-shadow:0 2px 2px 0 rgba(26,183,234,.14),0 3px 1px -2px rgba(26,183,234,.2),0 1px 5px 0 rgba(26,183,234,.12)}.btn.btn-vimeo:active,.btn.btn-vimeo:focus,.btn.btn-vimeo:hover,.navbar .navbar-nav>li>a.btn.btn-vimeo:active,.navbar .navbar-nav>li>a.btn.btn-vimeo:focus,.navbar .navbar-nav>li>a.btn.btn-vimeo:hover{-webkit-box-shadow:0 14px 26px -12px rgba(26,183,234,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(26,183,234,.2);-moz-box-shadow:0 14px 26px -12px rgba(26,183,234,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(26,183,234,.2);box-shadow:0 14px 26px -12px rgba(26,183,234,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(26,183,234,.2)}.btn.btn-vimeo.btn-simple,.navbar .navbar-nav>li>a.btn.btn-vimeo.btn-simple{color:#1ab7ea;background-color:transparent}body [class*=fl-builder] button,body [class*=fl-builder] button:hover,button.customize-partial-edit-shortcut-button,button.customize-partial-edit-shortcut-button:hover{box-shadow:none!important}legend{margin-bottom:20px}output{padding-top:8px}.checkbox label,.radio label{min-height:20px}select{-webkit-appearance:none;-moz-appearance:none;appearance:none}.label{background-color:#fff;border-radius:2px}.label.label-default{background-color:#fff}.label.label-primary{background-color:#9c27b0}.label.label-success{background-color:#4caf50}.label.label-danger{background-color:#f44336}.label.label-rose{background-color:#e91e63}.form-control{height:36px;padding:7px 0;vertical-align:middle}.form-control-static{min-height:34px;padding-top:8px;padding-bottom:8px}.form-control:-ms-input-placeholder,.form-control::-moz-placeholder,.form-control::-webkit-input-placeholder,.form-group .form-control:-ms-input-placeholder,.form-group .form-control::-moz-placeholder,.form-group .form-control::-webkit-input-placeholder{color:#aaa}.form-control[disabled],.form-control[readonly],.form-group .form-control[disabled],.form-group .form-control[readonly],fieldset[disabled] .form-control,fieldset[disabled] .form-group .form-control{background-color:transparent}.form-control[disabled],.form-group .form-control[disabled],fieldset[disabled] .form-control,fieldset[disabled] .form-group .form-control{border-bottom:1px dotted #d2d2d2;background-image:none}.form-control{margin-bottom:7px}.checkbox label,.form-control:-ms-input-placeholder,.form-control::-moz-placeholder,.form-control::-webkit-input-placeholder,.form-group .checkbox label,.form-group .form-control:-ms-input-placeholder,.form-group .form-control::-moz-placeholder,.form-group .form-control::-webkit-input-placeholder,.form-group .radio label,.form-group label,.radio label,label{color:#aaa}label.control-label{margin:16px 0 0;color:#aaa}.help-block{margin-top:0}.form-group{padding-bottom:7px;position:relative}.form-group .form-control{margin-bottom:7px}.form-group label.control-label{margin:16px 0 0;color:#aaa}.form-group input[type=file]{position:relative;z-index:100;top:0;right:0;bottom:0;left:0;width:100%;height:100%;opacity:1}.form-group textarea{resize:none}.form-group textarea~.form-control-highlight{margin-top:-11px}.form-group .help-block{margin-top:0;display:none;position:absolute}.form-group.label-floating label.control-label,.form-group.label-placeholder label.control-label,.form-group.label-static label.control-label{position:absolute;pointer-events:none}.form-group.label-floating label.control-label{will-change:left,top,contents}.form-group.label-placeholder:not(.is-empty) label.control-label{display:none}.form-group.label-floating label.control-label,.form-group.label-placeholder label.control-label{top:-7px;left:0}.form-group.label-floating.is-focused label.control-label,.form-group.label-floating:not(.is-empty) label.control-label,.form-group.label-static label.control-label{top:-28px;left:0}.form-group.is-focused .form-control .material-input:after{background-color:#9c27b0}.form-group.is-focused.label-placeholder label,.form-group.is-focused.label-placeholder label.control-label{color:#aaa}.form-group.is-focused select.form-control{border-color:#d2d2d2}.form-group.has-warning.is-focused .form-control{background-image:-webkit-gradient(linear,left top,left bottom,from(#ff9800),to(#ff9800)),-webkit-gradient(linear,left top,left bottom,from(#d2d2d2),to(#d2d2d2));background-image:-webkit-linear-gradient(#ff9800,#ff9800),-webkit-linear-gradient(#d2d2d2,#d2d2d2);background-image:linear-gradient(#ff9800,#ff9800),linear-gradient(#d2d2d2,#d2d2d2)}.form-group.has-warning label.control-label{color:#ff9800}.form-group.has-error.is-focused .form-control{background-image:-webkit-gradient(linear,left top,left bottom,from(#f44336),to(#f44336)),-webkit-gradient(linear,left top,left bottom,from(#d2d2d2),to(#d2d2d2));background-image:-webkit-linear-gradient(#f44336,#f44336),-webkit-linear-gradient(#d2d2d2,#d2d2d2);background-image:linear-gradient(#f44336,#f44336),linear-gradient(#d2d2d2,#d2d2d2)}.form-group.has-error label.control-label{color:#f44336}.form-group.has-success.is-focused .form-control{background-image:-webkit-gradient(linear,left top,left bottom,from(#4caf50),to(#4caf50)),-webkit-gradient(linear,left top,left bottom,from(#d2d2d2),to(#d2d2d2));background-image:-webkit-linear-gradient(#4caf50,#4caf50),-webkit-linear-gradient(#d2d2d2,#d2d2d2);background-image:linear-gradient(#4caf50,#4caf50),linear-gradient(#d2d2d2,#d2d2d2)}.form-group.has-success label.control-label{color:#4caf50}.form-group.has-info.is-focused .form-control{background-image:-webkit-gradient(linear,left top,left bottom,from(#00bcd4),to(#00bcd4)),-webkit-gradient(linear,left top,left bottom,from(#d2d2d2),to(#d2d2d2));background-image:-webkit-linear-gradient(#00bcd4,#00bcd4),-webkit-linear-gradient(#d2d2d2,#d2d2d2);background-image:linear-gradient(#00bcd4,#00bcd4),linear-gradient(#d2d2d2,#d2d2d2)}.form-group.has-info .help-block,.form-group.has-info label.control-label{color:#00bcd4}select.form-control{border:0;border-radius:0}select .form-group.is-focused select.form-control[multiple],select.form-control[multiple]{height:85px}.input-group-btn .btn{margin:0 0 7px}.input-group .input-group-btn{padding:0 12px}.input-group .input-group-addon{padding:6px 15px 0;border:0;background:0 0}.form-control-feedback{opacity:0}.has-success .form-control-feedback{opacity:1;color:#4caf50}.has-error .form-control-feedback{opacity:1;color:#f44336}.search-form label,.searchform label{display:table-cell;vertical-align:top;padding-right:25px;width:100%}.search-form:not(.media-toolbar-primary),.searchform:not(.media-toolbar-primary),.woocommerce-product-search{display:table;position:relative}.search-form:not(.media-toolbar-primary) button,.search-form:not(.media-toolbar-primary) input[type=submit],.searchform:not(.media-toolbar-primary) button,.searchform:not(.media-toolbar-primary) input[type=submit],.woocommerce-product-search button,.woocommerce-product-search input[type=submit]{display:table-cell;vertical-align:top;padding-left:0;padding-right:0;text-align:center;text-indent:-9999px;top:-19px;width:45px;background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMTY2NCIgaGVpZ2h0PSIxNjY0IiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJ4TWlkWU1pZCBtZWV0IiB2aWV3Qm94PSIwIDAgMTY2NCAxNjY0IiBzdHlsZT0iLW1zLXRyYW5zZm9ybTogcm90YXRlKDM2MGRlZyk7IC13ZWJraXQtdHJhbnNmb3JtOiByb3RhdGUoMzYwZGVnKTsgdHJhbnNmb3JtOiByb3RhdGUoMzYwZGVnKTsiPjxwYXRoIGQ9Ik0xMTUyIDcwNHEwLTE4NS0xMzEuNS0zMTYuNVQ3MDQgMjU2VDM4Ny41IDM4Ny41VDI1NiA3MDR0MTMxLjUgMzE2LjVUNzA0IDExNTJ0MzE2LjUtMTMxLjVUMTE1MiA3MDR6bTUxMiA4MzJxMCA1Mi0zOCA5MHQtOTAgMzhxLTU0IDAtOTAtMzhsLTM0My0zNDJxLTE3OSAxMjQtMzk5IDEyNHEtMTQzIDAtMjczLjUtNTUuNXQtMjI1LTE1MHQtMTUwLTIyNVQwIDcwNHQ1NS41LTI3My41dDE1MC0yMjV0MjI1LTE1MFQ3MDQgMHQyNzMuNSA1NS41dDIyNSAxNTB0MTUwIDIyNVQxNDA4IDcwNHEwIDIyMC0xMjQgMzk5bDM0MyAzNDNxMzcgMzcgMzcgOTB6IiBmaWxsPSJ3aGl0ZSIvPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxNjY0IiBoZWlnaHQ9IjE2NjQiIGZpbGw9InJnYmEoMCwgMCwgMCwgMCkiIC8+PC9zdmc+);background-repeat:no-repeat;background-position:center;background-size:18px 29px}.search-form:not(.media-toolbar-primary) input[type=search],.searchform:not(.media-toolbar-primary) input[type=search],.woocommerce-product-search input[type=search]{height:36px}.blog-sidebar-wrapper .widget:nth-of-type(1).widget_product_search,.blog-sidebar-wrapper .widget:nth-of-type(1).widget_search{padding-top:11px}.comment-form-cookies-consent #wp-comment-cookies-consent{margin:0 10px 0 0}.comment-form-cookies-consent label{display:inline}body:not(.home) .navbar-default .navbar-nav>.active>a,body:not(.home) .navbar-default .navbar-nav>.active>a:focus,body:not(.home) .navbar-default .navbar-nav>.active>a:hover{background:0 0}body.admin-bar .navbar{margin-top:32px}.navbar-color-on-scroll .dashicons{transition:initial}.navbar.navbar-transparent{color:#fff;background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.navbar.navbar-transparent>.container{padding-top:25px}.navbar.navbar-transparent .hestia-hide-if-transparent{display:none}.navbar.navbar-not-transparent .hestia-transparent-logo{display:none}.navbar{background-color:#fff;color:#555;border-radius:0;position:fixed;border:none;padding:0;transition:none;-webkit-box-shadow:0 1px 10px -6px rgba(0,0,0,.42),0 1px 10px 0 rgba(0,0,0,.12),0 4px 5px -2px rgba(0,0,0,.1);box-shadow:0 1px 10px -6px rgba(0,0,0,.42),0 1px 10px 0 rgba(0,0,0,.12),0 4px 5px -2px rgba(0,0,0,.1)}.navbar .navbar-collapse{border:none}.navbar .title-logo-wrapper{max-width:250px;display:flex;align-items:center}.navbar>.container{display:flex;transition:padding .1s ease;padding:10px 15px;vertical-align:middle;align-items:center}.navbar.hestia_left .navbar-collapse{margin-left:auto}.navbar.hestia_left>.container{flex-direction:row}.navbar.hestia_left .navbar-nav{display:flex;flex-wrap:wrap;justify-content:flex-end}.navbar.hestia_center>.container{flex-direction:column}.navbar.hestia_center .navbar-nav{display:flex;flex-wrap:wrap;justify-content:center}.navbar.hestia_right>.container{flex-wrap:wrap;flex-direction:row-reverse}.navbar.hestia_right .navbar-header{max-width:250px}.navbar.hestia_right .header-sidebar-wrapper,.navbar.hestia_right .navbar-header{flex:1}.navbar.hestia_right .navbar-nav{display:flex;flex-wrap:wrap;width:100%}.navbar .navbar-header .navbar-brand{padding:0 15px;position:relative;color:inherit;height:auto}.navbar .navbar-header .navbar-brand img{width:auto;max-height:50px}.navbar .navbar-header .navbar-brand p{margin-bottom:0;padding:10px 0}.navbar-toggle-wrapper{margin-left:auto;display:flex;align-items:center;flex-direction:row}.navbar .navbar-toggle{float:none;border:0;margin-right:0}.navbar .navbar-toggle:focus,.navbar .navbar-toggle:hover{background:0 0}.navbar .navbar-toggle .icon-bar{border:1px solid;transition:.3s ease;position:relative}.navbar .navbar-toggle[aria-expanded=true] .icon-bar:nth-child(1){-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg);top:6px}.navbar .navbar-toggle[aria-expanded=true] .icon-bar:nth-child(2){width:0;opacity:0}.navbar .navbar-toggle[aria-expanded=true] .icon-bar:nth-child(3){-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-o-transform:rotate(-45deg);transform:rotate(-45deg);top:-6px}.navbar .navbar-toggle[aria-expanded=false] .icon-bar:nth-child(1){top:0;-webkit-transform-origin:left center;-moz-transform-origin:left center;-o-transform-origin:left center;transform-origin:left center}.navbar .navbar-toggle[aria-expanded=false] .icon-bar:nth-child(2){top:0;-webkit-transform-origin:left center;-moz-transform-origin:left center;-o-transform-origin:left center;transform-origin:left center}.navbar .navbar-toggle[aria-expanded=false] .icon-bar:nth-child(3){top:0;-webkit-transform-origin:left center;-moz-transform-origin:left center;-o-transform-origin:left center;transform-origin:left center}.navbar .navbar-nav>li{margin:0}.navbar .navbar-nav>li>a{text-transform:uppercase}.navbar .navbar-nav>li a{padding-top:15px;padding-bottom:15px;border-radius:3px;color:inherit}.navbar .navbar-nav>li a:focus,.navbar .navbar-nav>li a:hover{color:inherit;opacity:1}.navbar .navbar-nav>li a i{min-width:20px;text-align:center;position:relative;top:2px;margin-top:-4px;margin-right:4px}.navbar .navbar-nav>li.btn{padding:0 10px}.navbar .navbar-nav>li.btn>a{color:#fff}.navbar .navbar-nav>li.btn li a{text-transform:none}.navbar .navbar-nav>li .dropdown-menu{margin-top:-5px;border:none}.navbar .navbar-nav>li .dropdown-menu>.active>a{background-color:transparent}.navbar .navbar-nav>li .dropdown-menu li{color:#333;position:relative}.navbar .navbar-nav>li .dropdown-menu li.active>a{color:#333}.navbar .navbar-nav>li .dropdown-menu li:hover>a{color:#e91e63}.navbar .navbar-nav>li .dropdown-menu li:hover>a>i{opacity:.7}.navbar .navbar-nav>li .dropdown-menu li>a{background-color:transparent;margin:0 5px;padding:10px;border-radius:2px;-webkit-transition:all 150ms linear;transition:all 150ms linear}.navbar .navbar-nav>li .dropdown-menu li>a>i{position:relative;top:1px;margin-right:12px;opacity:.5;text-align:center}.navbar .navbar-nav>li .dropdown-menu li>a i{position:relative;top:1px;margin-top:-4px;margin-right:12px;vertical-align:middle}.navbar .navbar-nav>li:hover .dropdown-menu{margin-top:0;z-index:10}.navbar .navbar-nav>li:not(.btn) .hestia-toggle-search:before,.navbar .navbar-nav>li:not(.btn)>a:before{position:absolute;z-index:-1;top:0;right:0;bottom:0;left:0;border-radius:3px;background-color:rgba(255,255,255,.1);content:"";transition:all .3s cubic-bezier(.34,.9,.7,1);-webkit-transform:scaleX(0);-ms-transform:scaleX(0);transform:scaleX(0);-webkit-transform-origin:50%;-ms-transform-origin:50%;transform-origin:50%}.navbar .navbar-nav>li:not(.btn):hover .hestia-toggle-search:before,.navbar .navbar-nav>li:not(.btn):hover a:before{color:inherit;-webkit-transform:scaleX(1);-ms-transform:scaleX(1);transform:scaleX(1)}.dropdown-submenu{position:relative}.dropdown-submenu .dropdown-menu{display:none;top:0;left:100%;margin-top:-6px;margin-left:-1px}.dropdown-submenu.open>.dropdown-menu{display:table;visibility:visible;opacity:1}.dropdown-submenu.open>.dropdown-toggle .caret,.dropdown-submenu:hover>.dropdown-toggle .caret{border-left:4px dashed;border-top:4px solid transparent;border-bottom:4px solid transparent}.dropdown-submenu.open .dropdown-menu,.dropdown-submenu:hover .dropdown-menu{display:table}.navbar.header-with-topbar{position:absolute;top:40px}.navbar.navbar-scroll-point{position:fixed;top:0}.navbar.full-screen-menu.navbar-scroll-point .header-sidebar-wrapper{display:none}.dropdown-helper-overlay{position:fixed;top:0;left:0;right:0;height:100vh;z-index:-1}#main-navigation ul.nav>li{opacity:1;transition:opacity .25s ease-in-out;-moz-transition:opacity .25s ease-in-out;-webkit-transition:opacity .25s ease-in-out;visibility:visible}.hestia-mm-description{display:none;opacity:.75}@media (max-width:768px){.hestia-nav-search{margin-top:25px}.hestia-nav-search .search-submit{display:block;pointer-events:all}.hestia-nav-search form{width:100%;margin-bottom:0}.hestia-nav-search form:after{font-size:16px;display:block}.hestia-nav-search label{padding-right:25px}.navbar .navbar-nav>li.hestia-search-in-menu a.hestia-toggle-search{display:none}}.hestia-toggle-search svg{fill:#555;vertical-align:middle}.navbar.navbar-transparent .hestia-toggle-search svg{fill:#fff}.full-screen-menu .hestia-toggle-search{display:none}.full-screen-menu .hestia-nav-search{margin-top:25px;text-align:left}@media (min-width:769px){.navbar:not(.full-screen-menu) .hestia-toggle-search{display:block;width:55px}.navbar:not(.full-screen-menu) .hestia-toggle-search i{font-size:16px}.navbar:not(.full-screen-menu) .hestia-search-in-menu{cursor:pointer;position:relative;vertical-align:middle;display:inline-block}.navbar:not(.full-screen-menu).nav-searching .hestia-nav-search form{max-width:200px;opacity:1;pointer-events:all}.navbar:not(.full-screen-menu).nav-searching #main-navigation ul.nav li:not(.hestia-search-in-menu){opacity:0;visibility:hidden}.navbar:not(.full-screen-menu) .hestia-nav-search{padding:0 15px;text-align:left}.navbar:not(.full-screen-menu) .hestia-nav-search .search-submit{display:none;pointer-events:none}.navbar:not(.full-screen-menu) .hestia-nav-search form{width:200px;max-width:0;padding:5px;transition:all .5s ease;position:absolute;right:40px;box-sizing:border-box;opacity:0;pointer-events:none}.navbar:not(.full-screen-menu) .hestia-nav-search form:after{display:none}.navbar:not(.full-screen-menu) .hestia-nav-search label{padding:0}.navbar:not(.full-screen-menu).navbar-transparent .hestia-nav-search form .search-field{color:#fff}.navbar:not(.full-screen-menu).navbar-transparent .hestia-nav-search form .search-field::-webkit-input-placeholder{color:#fff}.navbar:not(.full-screen-menu).navbar-transparent .hestia-nav-search form .search-field::-moz-placeholder{color:#fff}.navbar:not(.full-screen-menu).navbar-transparent .hestia-nav-search form .search-field:-ms-input-placeholder{color:#fff}.navbar:not(.full-screen-menu).navbar-transparent .hestia-nav-search form .search-field:-moz-placeholder{color:#fff}.navbar:not(.full-screen-menu).navbar-transparent .hestia-nav-search form .control-label{color:#fff}}.navbar.navbar-default .navbar-nav>.btn.active>a,.navbar.navbar-default .navbar-nav>.btn.open>a,.navbar.navbar-default .navbar-nav>.btn>a{color:#fff;background:0 0}.navbar.navbar-not-transparent .navbar-nav>.active:not(.btn)>a,.navbar.navbar-not-transparent .navbar-nav>.active:not(.btn)>a:focus,.navbar.navbar-not-transparent .navbar-nav>.active:not(.btn)>a:hover{background:0 0}.hestia_right .blog-sidebar-wrapper,.hestia_right .header-sidebar-wrapper{float:none;display:table-cell;width:100%;vertical-align:middle}.hestia_right .blog-sidebar-wrapper .header-widgets-wrapper,.hestia_right .header-sidebar-wrapper .header-widgets-wrapper{align-items:center;display:flex;flex-direction:row;justify-content:flex-end}.hestia_right .blog-sidebar-wrapper .header-widgets-wrapper .search-form label,.hestia_right .blog-sidebar-wrapper .header-widgets-wrapper .searchform label,.hestia_right .header-sidebar-wrapper .header-widgets-wrapper .search-form label,.hestia_right .header-sidebar-wrapper .header-widgets-wrapper .searchform label{width:inherit}.header-widgets-wrapper .widget{margin:0 10px 0 0}.header-widgets-wrapper .widget:last-of-type{margin-right:0}.header-widgets-wrapper .widget,.header-widgets-wrapper .widget .textwidget,.header-widgets-wrapper .widget h5{display:inline-block}.header-widgets-wrapper .widget h5{margin:0 5px 0 0}.header-widgets-wrapper .widget .btn{padding:3px 10px}.header-widgets-wrapper .widget .btn a{color:#fff}.header-widgets-wrapper .widget.widget_categories h5,.header-widgets-wrapper .widget.widget_meta h5,.header-widgets-wrapper .widget.widget_nav_menu h5,.header-widgets-wrapper .widget.widget_product_categories h5,.header-widgets-wrapper .widget.widget_product_search h5,.header-widgets-wrapper .widget.widget_search h5{display:none}.header-widgets-wrapper .widget.widget_categories [type=submit],.header-widgets-wrapper .widget.widget_meta [type=submit],.header-widgets-wrapper .widget.widget_nav_menu [type=submit],.header-widgets-wrapper .widget.widget_product_categories [type=submit],.header-widgets-wrapper .widget.widget_product_search [type=submit],.header-widgets-wrapper .widget.widget_search [type=submit]{opacity:0;left:-15px}.header-widgets-wrapper .widget .search-form:after,.header-widgets-wrapper .widget .searchform:after,.header-widgets-wrapper .widget .woocommerce-product-search:after{right:30px}.header-widgets-wrapper .widget.widget_product_search form,.header-widgets-wrapper .widget.widget_search form{top:15px}.header-widgets-wrapper .widget.widget_product_search form:after,.header-widgets-wrapper .widget.widget_search form:after{color:#333}.header-widgets-wrapper .widget.widget_product_search form .control-label,.header-widgets-wrapper .widget.widget_search form .control-label{color:#333}.header-widgets-wrapper ul li{cursor:auto;display:inline-block;margin:0 5px}.header-widgets-wrapper ul li.menu-item{padding-top:0}.header-widgets-wrapper ul li:first-child{margin-left:0}.header-widgets-wrapper ul li:last-child{margin-right:0}.header-widgets-wrapper ul li a{padding:0;text-transform:inherit}.header-widgets-wrapper ul li a:focus,.header-widgets-wrapper ul li a:hover{background-color:transparent;outline:0}.header-widgets-wrapper ul li a[href*="mailto:"]:before,.header-widgets-wrapper ul li a[href*="tel:"]:before{margin-right:7px;display:inline-block;width:16px;height:16px;background-repeat:no-repeat;content:'';background-color:#333;vertical-align:text-bottom}.header-widgets-wrapper ul li a[href*="tel:"]:before{mask-image:url('data:image/svg+xml;utf8,');-webkit-mask-image:url('data:image/svg+xml;utf8,')}.header-widgets-wrapper ul li a[href*="mailto:"]:before{mask-image:url('data:image/svg+xml;utf8,');-webkit-mask-image:url('data:image/svg+xml;utf8,')}.header-widgets-wrapper ul li.dropdown .caret{display:none}.navbar-transparent .widget .btn:hover a{color:#fff}.navbar-transparent .widget.widget_product_search form .control-label,.navbar-transparent .widget.widget_product_search form.form-group:before,.navbar-transparent .widget.widget_product_search form:after,.navbar-transparent .widget.widget_search form .control-label,.navbar-transparent .widget.widget_search form.form-group:before,.navbar-transparent .widget.widget_search form:after{color:#fff}.pagination{width:100%;text-align:center}.pagination>li>a{border:0}.pagination a,.pagination span{min-width:30px;height:30px;margin:0 3px;padding:0 11px;border-radius:30px!important;color:#999;background:0 0;text-transform:uppercase;display:inline-block}.pagination a:focus,.pagination a:hover{color:#999;background-color:#eee}.pagination span:not(.dots):focus,.pagination span:not(.dots):hover{color:#999;background-color:#eee}.pagination span.current,.pagination span.current:focus,.pagination span.current:hover{border-color:#9c27b0;color:#fff;background-color:#9c27b0;-webkit-box-shadow:0 4px 5px 0 rgba(156,39,176,.14),0 1px 10px 0 rgba(156,39,176,.12),0 2px 4px -1px rgba(156,39,176,.2);box-shadow:0 4px 5px 0 rgba(156,39,176,.14),0 1px 10px 0 rgba(156,39,176,.12),0 2px 4px -1px rgba(156,39,176,.2)}.pagination .next.page-numbers:after{content:" \00bb"}.pagination .prev.page-numbers:before{content:"\00ab "}.label{padding:5px 12px;border-radius:12px;text-transform:uppercase}.label.label-default{background-color:#999}.card,.card-no-width{display:inline-block;position:relative;margin-bottom:30px;border-radius:6px;color:rgba(0,0,0,.87);background:#fff;max-width:100%;-webkit-box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);-moz-box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12)}.card .card-image,.card-no-width .card-image{overflow:hidden;position:relative;height:60%;margin-top:-30px;margin-right:15px;margin-left:15px;border-radius:6px;-webkit-transition:all .3s cubic-bezier(.34,1.61,.7,1);-moz-transition:all .3s cubic-bezier(.34,1.61,.7,1);-o-transition:all .3s cubic-bezier(.34,1.61,.7,1);-ms-transition:all .3s cubic-bezier(.34,1.61,.7,1);transition:all .3s cubic-bezier(.34,1.61,.7,1);-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0)}.card .card-image img,.card-no-width .card-image img{width:100%;height:100%;margin:0!important;border-radius:6px}.card .category:not([class*=text-]),.card-no-width .category:not([class*=text-]){color:#999}.card .content,.card-no-width .content{padding:15px 30px}.card .header,.card-no-width .header{margin:15px;padding:15px 0;border-radius:3px;background-color:#fff}.card .content-primary,.card .header-primary,.card-no-width .content-primary,.card-no-width .header-primary{background:-webkit-linear-gradient(30deg,#ab47bc,#7b1fa2);background:linear-gradient(60deg,#ab47bc,#7b1fa2)}.card [class*=content-],.card [class*=content-] .author a:active,.card [class*=content-] .author a:focus,.card [class*=content-] .author a:hover,.card [class*=content-] .card-title,.card [class*=content-] .card-title a,.card [class*=content-] .icon i,.card [class*=header-],.card [class*=header-] .author a:active,.card [class*=header-] .author a:focus,.card [class*=header-] .author a:hover,.card [class*=header-] .card-title,.card [class*=header-] .card-title a,.card [class*=header-] .icon i,.card-no-width [class*=content-],.card-no-width [class*=content-] .author a:active,.card-no-width [class*=content-] .author a:focus,.card-no-width [class*=content-] .author a:hover,.card-no-width [class*=content-] .card-title,.card-no-width [class*=content-] .card-title a,.card-no-width [class*=content-] .icon i,.card-no-width [class*=header-],.card-no-width [class*=header-] .author a:active,.card-no-width [class*=header-] .author a:focus,.card-no-width [class*=header-] .author a:hover,.card-no-width [class*=header-] .card-title,.card-no-width [class*=header-] .card-title a,.card-no-width [class*=header-] .icon i{color:#fff}.card [class*=content-] .icon i,.card [class*=header-] .icon i,.card-no-width [class*=content-] .icon i,.card-no-width [class*=header-] .icon i{border-color:rgba(255,255,255,.25)}.card [class*=content-] .author a,.card [class*=content-] .card-description,.card [class*=content-] .category,.card [class*=content-] .footer .stats,.card [class*=content-] h1 small,.card [class*=content-] h2 small,.card [class*=content-] h3 small,.card [class*=header-] .author a,.card [class*=header-] .card-description,.card [class*=header-] .category,.card [class*=header-] .footer .stats,.card-no-width [class*=content-] .author a,.card-no-width [class*=content-] .card-description,.card-no-width [class*=content-] .category,.card-no-width [class*=content-] .footer .stats,.card-no-width [class*=content-] h1 small,.card-no-width [class*=content-] h2 small,.card-no-width [class*=content-] h3 small,.card-no-width [class*=header-] .author a,.card-no-width [class*=header-] .card-description,.card-no-width [class*=header-] .category,.card-no-width [class*=header-] .footer .stats{color:rgba(255,255,255,.8)}.card [class*=content-],.card-no-width [class*=content-]{border-radius:6px}.card img,.card-no-width img{width:100%;height:auto}.card .category i,.card-no-width .category i{position:relative;top:6px}.card .author .avatar,.card-no-width .author .avatar{overflow:hidden;width:30px;height:30px;margin-right:5px;border-radius:50%}.card .author a,.card-no-width .author a{color:#3c4858;text-decoration:none}.card .author .date,.card-no-width .author .date{display:none}.card .footer,.card-no-width .footer{margin-top:15px}.card .footer div,.card-no-width .footer div{display:inline-block!important}.card .footer .author,.card .footer .stats,.card-no-width .footer .author,.card-no-width .footer .stats{color:#999}.card .footer .stats,.card-no-width .footer .stats{float:right}.card .footer .stats i,.card-no-width .footer .stats i{position:relative;top:4px}.card .checkbox,.card-no-width .checkbox{margin-top:16px}.card{width:100%}@media (max-width:768px){.card-no-width{width:100%}}.card-contact .header{margin-top:-20px;padding:17px 10px}.card-plain{background:0 0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.card-plain .content{padding-right:5px;padding-left:5px}.card-plain .card-image{margin:0;border-radius:3px}.card-plain .card-image a{display:block}.card-plain .card-image img{border-radius:3px}.card-form-horizontal .content{padding-right:15px;padding-left:15px}.card-form-horizontal .form-group{margin:3px 0 0;padding-bottom:0}.card-form-horizontal .form-group .form-control{margin-bottom:0}.card-form-horizontal .btn{margin:0}.card-form-horizontal .input-group .input-group-addon{padding-left:0}.card-profile{margin-top:30px;text-align:center}.card-profile .card-avatar{overflow:hidden;max-width:130px;max-height:130px;margin:-50px auto 0;border-radius:50%}.card-profile.card-plain .card-avatar{margin-top:0}.card-testimonial{margin-top:30px;text-align:center}.card-testimonial .card-avatar{max-width:100px;max-height:100px;margin:30px auto 0}.card-testimonial .card-avatar img{overflow:hidden;max-width:130px;max-height:130px;margin:-50px auto 0;border-radius:50%}.card-testimonial .card-avatar+.content{margin-top:15px}.card-blog{margin-top:30px}.card-blog.sticky{padding:20px}.card-blog.sticky.layout-alternative2{padding:0 20px;margin-top:50px}.card-blog.sticky.layout-alternative2 .card-header-image{margin-top:-20px}.card-blog.sticky .card-image{margin-left:0;margin-right:0}.card-blog.sticky .featured-alt-2{padding-bottom:15px}.card-blog .row .category{margin-bottom:0}.card-blog .row .category a{color:#00bcd4}.card-blog .card-title{margin-top:5px}.card-blog a.more-link,.card-blog a.moretag{display:inline-block;margin-left:5px;color:#23527c}.card-blog a.more-link:hover,.card-blog a.moretag:hover{color:#89229b}.card-background{background-position:center center;background-size:cover;text-align:center}.card-background .content{position:relative;z-index:2;max-width:440px;min-height:280px;margin:0 auto;padding-top:40px;padding-bottom:40px}.card-background .card-title{margin-top:10px;color:#fff}.card-background:after{display:block;position:absolute;z-index:1;top:0;left:0;width:100%;height:100%;border-radius:6px;opacity:0;background-color:rgba(0,0,0,.56);content:""}.card-background:hover:after{opacity:1}.img-thumbnail{border-radius:16px}.iframe-container iframe{width:100%}.card .card-image,.card .header,.card-no-width .card-image,.card-no-width .header,.card-profile .card-avatar,.card-raised,.card-testimonial .card-avatar img,.iframe-container iframe,.img-raised{-webkit-box-shadow:0 16px 38px -12px rgba(0,0,0,.56),0 4px 25px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2);-moz-box-shadow:0 16px 38px -12px rgba(0,0,0,.56),0 4px 25px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2);box-shadow:0 16px 38px -12px rgba(0,0,0,.56),0 4px 25px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2)}.table,table{width:100%}.table>thead>tr>th,table>thead>tr>th{border-bottom-width:1px;padding:12px 8px;vertical-align:middle}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,table>tbody>tr>td,table>tbody>tr>th,table>tfoot>tr>td,table>tfoot>tr>th,table>thead>tr>td{padding:12px 8px;vertical-align:middle}.table>tbody>tr,table>tbody>tr{border-bottom:1px solid #eee}.table>tbody>tr:last-child,table>tbody>tr:last-child{border-bottom:0}.header-layout-classic-blog.page:not(.home):not(.archive) .main-raised{border-radius:0}.header-layout-classic-blog:not(.page-template-default):not(.home):not(.archive) .main-raised,.header-layout-classic-blog:not(.page-template-default):not(.home):not(.archive).single .main-raised,.header-layout-classic-blog:not(.page-template-default):not(.home):not(.archive).woocommerce.archive .main-raised{margin-top:0}.carousel #parallax_move{width:100%;height:100%;position:absolute}.carousel #parallax_move .layer{background-size:cover;width:100%;height:100%;background-position:top center}.carousel #parallax_move .layer2{position:absolute;top:0}.carousel .btn{margin:0}.carousel .page-header{display:flex;z-index:-2}.carousel .page-header .row{display:flex;align-items:center;padding:0 15px;margin:0;flex:1;max-width:100%}.carousel .carousel-control.left,.carousel .carousel-control.right{z-index:0;background-image:none}.carousel .item{text-align:center}.carousel .item .container{display:flex;position:relative;padding:100px 0}.carousel .carousel-control{text-shadow:none;display:flex;align-items:center;justify-content:center}.carousel .carousel-control.left{right:auto;left:0}.carousel .carousel-control.right{right:0}.carousel .carousel-control i{display:inline-block;position:absolute;z-index:5}.carousel .buttons .btn-left+.btn-right{margin-left:30px}.wp-custom-header iframe,.wp-custom-header img,.wp-custom-header video{width:100%;position:absolute;left:50%;top:50%;max-width:100%;-ms-transform:translateX(-50%) translateY(-50%);-moz-transform:translateX(-50%) translateY(-50%);-webkit-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%);z-index:-1}.wp-custom-header img{-o-object-fit:cover;object-fit:cover;height:100%}.wp-custom-header .wp-custom-header-video-button{display:none}#carousel-hestia-generic .carousel{overflow:hidden}.big-title-sidebar-wrapper .widget{padding:30px 0}.big-title-sidebar-wrapper .pirate-forms-contact-widget{background:#fff;color:#3c4858;padding:10px;border-radius:6px;-webkit-box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);-moz-box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12)}.hestia-slider-alignment-left .pirate-forms-contact-widget{margin-left:auto}.hestia-slider-alignment-left .widget_media_image img{display:block;margin-left:auto}.hestia-slider-alignment-right .pirate-forms-contact-widget{margin-right:auto}.hestia-slider-alignment-right .widget_media_image img{display:block;margin-right:auto}@media (max-width:1600px){.carousel-control.left{width:50px}.carousel-control.left i{left:10px}.carousel-control.right{width:50px}.carousel-control.right i{right:10px}}@media all and (-ms-high-contrast:none),(-ms-high-contrast:active){.carousel .page-header .container{display:table;min-height:inherit}.carousel .page-header .container .row{display:table-row}.carousel .page-header .container .row .big-title-slider-content{display:table-cell;vertical-align:middle;float:none;margin:auto}.carousel .page-header .container .row .big-title-slider-content.col-md-7{display:table-cell;vertical-align:middle;float:none;margin:auto}.carousel .page-header .container .row .big-title-sidebar-wrapper.col-md-5{display:table-cell;vertical-align:middle;float:none;margin:auto}.carousel .carousel-control i{left:50%}}.section-gray{background:#f0f0f0}.section{padding:70px 0}.section-dark,.section-image{background:#232323;background:-webkit-gradient(radial,center center,0,center center,100%,color-stop(0,#585858),color-stop(100%,#232323));background:-webkit-radial-gradient(center,ellipse cover,#585858 0,#232323 100%);background:-webkit-radial-gradient(center ellipse,#585858 0,#232323 100%);background:radial-gradient(ellipse at center,#585858 0,#232323 100%);background-color:#343434;background-size:200% 240%;background-size:550% 450%}.section-dark .card-plain .card-title,.section-dark .card-plain .icon i,.section-dark .card-plain [class*=text-],.section-dark .card-plain ul li b,.section-dark .hestia-title,.section-dark .title,.section-image .card-plain .card-title,.section-image .card-plain .icon i,.section-image .card-plain [class*=text-],.section-image .card-plain ul li b,.section-image .hestia-title,.section-image .title{color:#fff}.section-dark .card-plain .card-description,.section-dark .card-plain .icon,.section-dark .description,.section-image .card-plain .card-description,.section-image .card-plain .icon,.section-image .description{color:#eaeaea}.section-dark .card-plain .category,.section-image .card-plain .category{color:rgba(255,255,255,.5)}.section-image{position:relative;-webkit-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:unset}.section-image:after{display:block;position:absolute;z-index:1;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.7);content:""}.section-image .container{position:relative;z-index:2}.section,.section-image{background-position:center center;background-size:cover}.features,.hestia-blogs,.hestia-features,.hestia-testimonials,.hestia-work,.products,.subscribe-line{padding:65px 0 70px}.wrapper.classic-blog .title-in-content,.wrapper.no-content .title-in-content{margin-top:0;margin-bottom:15px}.wrapper.classic-blog .hestia-blogs,.wrapper.no-content .hestia-blogs{padding-top:40px}@media (max-width:768px){.wrapper.classic-blog .hestia-blogs,.wrapper.no-content .hestia-blogs{padding-top:30px}}.wrapper.classic-blog .section,.wrapper.no-content .section{padding-top:40px}@media (max-width:768px){.wrapper.classic-blog .section,.wrapper.no-content .section{padding-top:30px}}.image-in-page-wrapper{margin-bottom:20px}.image-in-page{margin-bottom:30px}.about,.hestia-about{padding:65px 0 30px}.hestia-team,.team{padding:65px 0 20px}.hestia-testimonials,.testimonials{padding:65px 0 40px}.contactus{padding:90px 0 70px}.pricing{padding:100px 0 70px}.hestia-clear-top-padding{margin-top:-65px}@media (min-width:992px){.home #blog.hestia-blogs .row,.home .hestia-clients-bar .row,.home .hestia-features .row,.home .hestia-team .row,.home .hestia-testimonials .row,.home .hestia-work .row{text-align:center}.home #blog.hestia-blogs .hestia-blog-item,.home .feature-box,.home .hestia-clients-bar .col-md-3,.home .hestia-team .col-sm-6,.home .hestia-testimonials .col-md-4,.home .hestia-work .col-md-4,.home .hestia-work .col-md-6{display:inline-block;float:none!important;margin-right:-4px;margin-left:-4px;vertical-align:top}.home .hestia-blog-item{text-align:left}}@media (min-width:480px){.home #blog.hestia-blogs .row,.home .hestia-clients-bar .row,.home .hestia-features .row,.home .hestia-team .row,.home .hestia-testimonials .row,.home .hestia-work .row{text-align:center}.home #blog.hestia-blogs .hestia-blog-item,.home .feature-box,.home .hestia-clients-bar .col-md-3,.home .hestia-team .col-sm-6,.home .hestia-testimonials .col-sm-6,.home .hestia-work .portfolio-item{display:inline-block;float:none!important;margin-right:-4px;margin-left:-4px;vertical-align:top}}.hestia-about{background-attachment:fixed;color:#999}.hestia-about h1,.hestia-about h2,.hestia-about h3,.hestia-about h4,.hestia-about h5{color:#3c4858;text-decoration:none;word-wrap:break-word;font-family:"Roboto Slab","Times New Roman",serif}.hestia-about.section-image{color:#fefefe}.hestia-about.section-image h1,.hestia-about.section-image h2,.hestia-about.section-image h3,.hestia-about.section-image h4,.hestia-about.section-image h5{color:#fff}.hestia-about.section-image h6{color:rgba(255,255,255,.76)}.hestia-about .customizer-hidden{display:none}.is-ios .hestia-about,.is-ios .hestia-ribbon{background-attachment:scroll}.hestia-work .portfolio-item{margin-top:30px;cursor:pointer}.hestia-work .card-background .content{padding-bottom:50px;opacity:0}.hestia-work .col-md-4 .card-background .content{padding-top:30%}.hestia-work .col-md-6 .card-background .content{padding-top:20%}.hestia-work .card-background:hover a:hover{opacity:1}.hestia-work .card-background:hover .content{opacity:1;-webkit-transition:all ease .5s;transition:all ease .5s}.hestia-work .portfolio-item:nth-child(6n) .label{background-color:#4caf50}.hestia-work .portfolio-item:nth-child(6n+1) .label{background-color:#89229b}.hestia-work .portfolio-item:nth-child(6n+2) .label{background-color:#00bcd4}.hestia-work .portfolio-item:nth-child(6n+3) .label{background-color:#f44336}.hestia-work .portfolio-item:nth-child(6n+4) .label{background-color:#ff9800}.hestia-work .portfolio-item:nth-child(6n+5) .label{background-color:#e91e63}.hestia-portfolio-modal .header-filter-gradient{border-radius:6px 6px 0 0;background-size:cover;background-repeat:no-repeat;background-position:center;z-index:1}.hestia-portfolio-modal{background:rgba(0,0,0,.7)}.hestia-portfolio-modal .modal-header{position:relative;border-radius:6px 6px 0 0}.hestia-portfolio-modal .modal-header h3{margin:0;padding:104px 0;color:#fff}.hestia-portfolio-modal .modal-header:before{border-radius:6px 6px 0 0}.hestia-portfolio-modal .modal-header a{color:#fff;z-index:2}.hestia-portfolio-modal .modal-header a:hover{color:#fff}.hestia-portfolio-modal .modal-header:after{background-color:rgba(0,0,0,.5);border-radius:6px 6px 0 0}.hestia-portfolio-modal .modal-header .close{z-index:3;font-size:30px;background:0 0;float:right;box-shadow:none;line-height:16px;margin:0;padding:10px}.hestia-portfolio-modal .modal-header .portfolio-title-container{position:relative;z-index:2}.hestia-portfolio-modal .modal-content{border-radius:6px}.hestia-portfolio-modal .modal-content .modal-body{padding:40px}.hestia-portfolio-modal .modal-content .portfolio-loading{padding:20px 0}.contactus .content .row{padding:0}.contactus .col-md-offset-2{padding:0 20px}.contactus .form-group{margin:0;padding-bottom:24px}.contactus .pirate-forms-footer .form-group{padding-bottom:0}.contactus .card .content{padding:30px 30px 0}.contactus .pirate_forms_wrap{float:none}.contactus .pirate_forms_wrap #pirate-forms-contact-message{height:130px}.contactus .pirate_forms_wrap .form_field_wrap{margin-bottom:17px}.contactus .pirate_forms_wrap .btn{margin:0}.contactus .pirate_forms_wrap .pirateform_wrap_classes_spam_wrap{color:#aaa;font-weight:400}.contactus .contact_message_wrap{margin-bottom:0}.contactus .contact_submit_wrap{text-align:right;margin-bottom:0}.contactus .hestia-info,.contactus .info{margin:0;padding:0}.contactus .hestia-info,.contactus .hestia-info a:not(.btn),.contactus .hestia-info p,.contactus .info,.contactus .info a:not(.btn),.contactus .info p{color:#ccc}.contactus .hestia-info a:not(.btn):hover,.contactus .info a:not(.btn):hover{text-decoration:underline}.contactus .hestia-info:first-child,.contactus .info:first-child{margin-top:30px}.contactus .hestia-info .info-title,.contactus .info .info-title{margin-top:20px;color:#fff}.contactus .hestia-info .icon,.contactus .info .icon{margin-top:14px;color:#fff}.contactus h5.description{color:#ccc}.contactus .card-contact{margin-top:30px}.contactus .pirate_forms_wrap .pirate-forms-footer{display:block}.contactus .pirate_forms_wrap .pirate-forms-footer .form_captcha_wrap{display:block}.contactus .pirate_forms_wrap .pirate-forms-footer .form_captcha_wrap>div>div{margin:0 auto 20px}.contactus .pirate_forms_wrap .pirate-forms-footer .form_captcha_wrap+.contact_submit_wrap{text-align:center;display:block}.pirate_forms_wrap .pirate-forms-footer .form_field_wrap.contact_submit_wrap{width:100%;text-align:right}.pirate-forms-maps-custom span:after,.pirate-forms-maps-custom span:before{content:'';position:absolute;top:0;bottom:0;margin:auto}.pirate-forms-maps-custom span:before{background:0 0;border:1px solid #aaa;border-radius:3px;left:0;height:18px;width:18px}.pirate-forms-maps-custom span:after{content:'\f00c';font-family:"Font Awesome 5 Free";font-weight:900;left:2px;top:1px;color:transparent}.pirate-forms-maps-custom input[type=checkbox]{display:none}.pirate-forms-maps-custom label{color:#aaa;cursor:pointer;font-weight:100;margin:8px 0;padding-left:20px;position:relative}.pirate-forms-maps-custom input[type=checkbox]:checked+label span:after{color:#787878}.pirate-forms-file-upload-input,.pirate_forms_three_inputs_wrap .form_field_wrap input.pirate-forms-file-upload-input{height:50px;padding:0 15px;margin:10px 0 0}.features,.hestia-features{padding:75px 0 55px;text-align:center}.features .hestia-title,.features .title,.hestia-features .hestia-title,.hestia-features .title{margin-top:10px}.features .hestia-info,.features .info,.hestia-features .hestia-info,.hestia-features .info{padding:70px 0 30px;margin:0 auto}.features .feature-box .card,.hestia-features .feature-box .card{width:auto;overflow:hidden;margin-bottom:0}.features .feature-box img,.hestia-features .feature-box img{max-width:150px}.hestia-info,.info{max-width:360px}.hestia-info a:hover .icon,.hestia-info a:hover .info-title,.info a:hover .icon,.info a:hover .info-title{opacity:.75}.hestia-info a:hover .icon,.info a:hover .icon{transform:scale(1.05) translateY(-5px)}.hestia-info .icon,.info .icon{transition:.3s ease;color:#999}.hestia-info .info-title,.info .info-title{transition:.3s ease;margin:30px 0 15px;color:#3c4858}.hestia-info p,.info p{color:#999}.info-horizontal .icon{float:left;margin-top:24px;margin-right:10px}.info-horizontal .description{overflow:hidden}.icon.icon-primary{color:#9c27b0}.icon.icon-success{color:#4caf50}.icon.icon-danger{color:#f44336}.icon.icon-rose{color:#e91e63}.hestia-team .col-xs-6,.team .col-xs-6{padding-left:0;padding-right:0}.hestia-team .btn-just-icon,.team .btn-just-icon{transition:.3s ease}.hestia-team .btn-just-icon:hover,.team .btn-just-icon:hover{opacity:.75}.hestia-team .card,.team .card{text-align:left}.hestia-team .card .content,.team .card .content{padding-top:0}.hestia-team .card .content a:hover>.card-title,.team .card .content a:hover>.card-title{opacity:.75}.hestia-team .card .footer,.team .card .footer{margin-left:-12px;margin-top:0}.hestia-team h5.description,.team h5.description{margin-bottom:70px}.hestia-team img,.team img{transition:1s ease-in}.hestia-team .card-image a:hover,.team .card-image a:hover{opacity:1}.hestia-team .card-image a:hover img,.team .card-image a:hover img{-webkit-transform:scale3d(1.1,1.1,1);transform:scale3d(1.1,1.1,1)}.authors-on-blog{background:#121417;background:-moz-linear-gradient(top,#121417 0,#323437 100%);background:-webkit-gradient(left top,left bottom,color-stop(0,#121417),color-stop(100%,#323437));background:-webkit-linear-gradient(top,#121417 0,#323437 100%);background:-o-linear-gradient(top,#121417 0,#323437 100%);background:-ms-linear-gradient(top,#121417 0,#323437 100%);background:linear-gradient(to bottom,#121417 0,#323437 100%);background-position:center center;background-size:cover}.authors-on-blog .card-title{color:#fff}.authors-on-blog .footer a:hover{color:#fff}.footer-menu a[href*="facebook.com"],.hestia-team .footer a[href*="facebook.com"],.team .footer a[href*="facebook.com"]{color:#3b5998}.footer-menu a[href*="twitter.com"],.hestia-team .footer a[href*="twitter.com"],.team .footer a[href*="twitter.com"]{color:#55acee}.footer-menu a[href*="pinterest.com"],.hestia-team .footer a[href*="pinterest.com"],.team .footer a[href*="pinterest.com"]{color:#cc2127}.footer-menu a[href*="google.com"],.hestia-team .footer a[href*="google.com"],.team .footer a[href*="google.com"]{color:#dd4b39}.footer-menu a[href*="linkedin.com"],.hestia-team .footer a[href*="linkedin.com"],.team .footer a[href*="linkedin.com"]{color:#0976b4}.footer-menu a[href*="dribbble.com"],.hestia-team .footer a[href*="dribbble.com"],.team .footer a[href*="dribbble.com"]{color:#ea4c89}.footer-menu a[href*="github.com"],.hestia-team .footer a[href*="github.com"],.team .footer a[href*="github.com"]{color:#000}.footer-menu a[href*="youtube.com"],.hestia-team .footer a[href*="youtube.com"],.team .footer a[href*="youtube.com"]{color:#e52d27}.footer-menu a[href*="instagram.com"],.hestia-team .footer a[href*="instagram.com"],.team .footer a[href*="instagram.com"]{color:#125688}.footer-menu a[href*="reddit.com"],.hestia-team .footer a[href*="reddit.com"],.team .footer a[href*="reddit.com"]{color:#ff4500}.footer-menu a[href*="tumblr.com"],.hestia-team .footer a[href*="tumblr.com"],.team .footer a[href*="tumblr.com"]{color:#35465c}.footer-menu a[href*="behance.com"],.hestia-team .footer a[href*="behance.com"],.team .footer a[href*="behance.com"]{color:#1769ff}.footer-menu a[href*="snapchat.com"],.hestia-team .footer a[href*="snapchat.com"],.team .footer a[href*="snapchat.com"]{color:#fffc00}.footer-menu a[href*="deviantart.com"],.hestia-team .footer a[href*="deviantart.com"],.team .footer a[href*="deviantart.com"]{color:#05cc47}.footer-menu a[href*="vimeo.com"],.hestia-team .footer a[href*="vimeo.com"],.team .footer a[href*="vimeo.com"]{color:#1ab7ea}.card-pricing{text-align:center}.card-pricing .card-title{margin-top:30px}.card-pricing .content{padding:15px!important}.card-pricing small:first-child{position:relative;top:-17px}.card-pricing ul{max-width:240px;margin:10px auto;padding:0;list-style:none}.card-pricing ul li{padding:12px 0;border-bottom:1px solid rgba(153,153,153,.3);color:#999;text-align:center}.card-pricing ul li:last-child{border:0}.card-pricing ul li b{color:#3c4858}.card-pricing .hestia-pricing-icon-wrapper{border-radius:50%;border:1px solid #e5e5e5;width:80px;height:80px;margin:10px auto 0}.card-pricing .hestia-pricing-icon-wrapper i{color:inherit;font-size:30px;line-height:80px}.card-pricing .hestia-pricing-icon-wrapper.pricing-has-icon+.card-title{font-size:25px;margin-top:20px}.card-pricing .hestia-pricing-icon-wrapper.pricing-has-icon+.card-title small{color:inherit;top:0;font-size:inherit;font-weight:inherit;line-height:inherit}.card-pricing .card-pricing.card-plain .hestia-pricing-icon-wrapper{border-color:#d6d1d1}.hestia-ribbon{background-attachment:fixed;padding:100px 0}@media (max-width:991px){.hestia-subscribe-button{margin-top:40px}}.subscribe-line{padding:65px 0}.subscribe-line .card{margin-top:30px}.subscribe-line .card .content .row{margin:0}.subscribe-line .card .input-group{display:table}.subscribe-line .card .input-group .input-group-addon{display:table-cell;padding:0 15px 0 0;width:1%}.subscribe-line .card .input-group .form-group{display:table-cell;padding-bottom:0}.subscribe-line .card .btn,.subscribe-line .card input[type=button],.subscribe-line .card input[type=submit]{white-space:nowrap}.subscribe-line.subscribe-line-image{position:relative;background-position:top center;background-size:cover}.subscribe-line.subscribe-line-image .hestia-title,.subscribe-line.subscribe-line-image .title{color:#fff}.subscribe-line.subscribe-line-image:after{display:block;position:absolute;z-index:1;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.66);content:""}.subscribe-line.subscribe-line-image .container{position:relative;z-index:2}.subscribe-line .card h5,.subscribe-line .sib_loader{display:none!important}#sib_signup_form_1{text-align:center}#sib_signup_form_1 .input-group-addon{width:20px;display:inline-block;vertical-align:bottom;text-align:center;margin-right:10px;font-size:16px;margin-bottom:15px}#sib_signup_form_1 p.form-group{display:inline-block;width:calc(100% - 30px);margin-bottom:15px;text-align:left;position:relative;z-index:0}#sib_signup_form_1 p.form-group label{z-index:-1;top:10px;position:absolute;font-weight:400;color:#909090}#sib_signup_form_1 p.form-group:not(.is-empty) label{display:none}.hestia-blogs article .card-image img{transition:1s ease-out}.hestia-blogs article .card-image a:hover{opacity:1}.hestia-blogs article .card-image a:hover img{-webkit-transform:scale3d(1.1,1.1,1);transform:scale3d(1.1,1.1,1)}.hestia-blogs article .category a:not(:last-child):after{content:", "}.footer .widget h5{margin-bottom:20px}.footer a{color:#3c4858}.footer-big{color:#999;padding:30px 0 18px;text-align:center}.footer-big ul{margin-bottom:0;padding:0;list-style:none}.footer-big ul li a{display:inline-block;position:relative;padding:5px 0;border-radius:3px;text-decoration:none;text-transform:uppercase}.footer-big ul li a:hover{text-decoration:none}.footer-big ul li .btn{margin:0}.footer-big p{color:#999}.footer-big .footer-menu li{display:inline-block}.footer-big .footer-menu li a{padding:15px}.footer-big .copyright{padding:15px 0}.footer-big .content{text-align:left}.footer-big hr{margin-top:10px}footer.footer{background:#fff}footer.footer.footer-black{background:#323437}footer.footer.footer-black a{opacity:.86;color:#fff}footer.footer.footer-black a:focus,footer.footer.footer-black a:hover{opacity:1}footer.footer.footer-black .copyright,footer.footer.footer-black h4,footer.footer.footer-black h5,footer.footer.footer-black i{color:#fff}footer.footer.footer-black hr{border-color:rgba(255,255,255,.2)}.hestia-bottom-footer-content{position:relative}.hestia-center{width:100%;text-align:center}.footer-big .footer-menu li a[href*="mailto:"],.footer-big .footer-menu li a[href*="tel:"]{color:transparent;padding:10px}.footer-big .footer-menu li a[href*="mailto:"]:before,.footer-big .footer-menu li a[href*="tel:"]:before{color:#fff;font-family:"Font Awesome 5 Brands";font-weight:900}.footer-big .footer-menu li a[href*="mailto:"]:hover:before,.footer-big .footer-menu li a[href*="tel:"]:hover:before{color:#999}.footer-big .footer-menu li a[href*="mailto:"]:before,.footer-big .footer-menu li a[href*="tel:"]:before{display:inline-block;width:16px;height:16px;background-repeat:no-repeat;content:'';background-color:#fff}.footer-big .footer-menu li a[href*="mailto:"]:before{mask-image:url('data:image/svg+xml;utf8,');-webkit-mask-image:url('data:image/svg+xml;utf8,')}.footer-big .footer-menu li a[href*="tel:"]:before{mask-image:url('data:image/svg+xml;utf8,');-webkit-mask-image:url('data:image/svg+xml;utf8,')}.hestia-scroll-to-top{position:fixed;bottom:15px;right:15px;z-index:999;opacity:0;transition:opacity .25s ease-in-out;-moz-transition:opacity .25s ease-in-out;-webkit-transition:opacity .25s ease-in-out;padding:0;margin:0;border-radius:50%;width:50px;height:50px;text-align:center;line-height:50px;font-size:20px;background-color:#999;-webkit-box-shadow:none;box-shadow:none}.hestia-scroll-to-top:hover{background-color:#999;-webkit-box-shadow:0 14px 26px -12px rgba(49,49,49,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(49,49,49,.42);box-shadow:0 14px 26px -12px rgba(49,49,49,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(49,49,49,.2)}.hestia-scroll-to-top:focus{background-color:#999;-webkit-box-shadow:0 14px 26px -12px rgba(49,49,49,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(49,49,49,.42);box-shadow:0 14px 26px -12px rgba(49,49,49,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(49,49,49,.2)}.hestia-scroll-to-top svg{fill:#fff}.hestia-fade{opacity:1}.hestia-top-bar{height:40px;max-height:40px}.hestia-top-bar .col-md-12,.hestia-top-bar .col-md-6{max-height:40px}.hestia-top-bar .col-md-12.pull-right,.hestia-top-bar .col-md-6.pull-right{text-align:right}.hestia-top-bar .col-md-12.pull-right .widget.widget_shopping_cart .cart_list,.hestia-top-bar .col-md-6.pull-right .widget.widget_shopping_cart .cart_list{left:auto;right:0}.hestia-top-bar .col-md-12 li a:before,.hestia-top-bar .col-md-6 li a:before{font-family:"Font Awesome 5 Brands"}.hestia-top-bar .widget{margin:0 10px 0 0}.hestia-top-bar .widget:last-of-type{margin-right:0}.hestia-top-bar .widget,.hestia-top-bar .widget .textwidget,.hestia-top-bar .widget h5{display:inline-block}.hestia-top-bar .widget h5{margin:0 5px 0 0}.hestia-top-bar .widget .btn{padding:3px 10px}.hestia-top-bar .widget.widget_categories h5,.hestia-top-bar .widget.widget_nav_menu h5,.hestia-top-bar .widget.widget_product_categories h5{display:none}.hestia-top-bar .widget.widget_product_search button[type=submit],.hestia-top-bar .widget.widget_product_search h5,.hestia-top-bar .widget.widget_search button[type=submit],.hestia-top-bar .widget.widget_search h5{display:none}.hestia-top-bar .widget.widget_product_search .label-floating,.hestia-top-bar .widget.widget_search .label-floating{display:inline-block;margin:0;padding:0;width:auto}.hestia-top-bar .widget.widget_product_search .label-floating .control-label,.hestia-top-bar .widget.widget_search .label-floating .control-label{padding:0}.hestia-top-bar .widget.widget_product_search .label-floating.is-empty .control-label,.hestia-top-bar .widget.widget_search .label-floating.is-empty .control-label{position:absolute;left:25px;top:12px;right:-25px;margin-top:0;text-align:left;opacity:1}.hestia-top-bar .widget.widget_product_search .label-floating.is-focused .control-label,.hestia-top-bar .widget.widget_search .label-floating.is-focused .control-label{opacity:0}.hestia-top-bar .widget.widget_product_search .label-floating:not(.is-empty) .control-label,.hestia-top-bar .widget.widget_search .label-floating:not(.is-empty) .control-label{opacity:0;left:25px;top:12px}.hestia-top-bar .widget.widget_product_search form:not(.form-group),.hestia-top-bar .widget.widget_search form:not(.form-group){opacity:0}.hestia-top-bar .widget.widget_product_search form.form-group,.hestia-top-bar .widget.widget_search form.form-group{opacity:1}.hestia-top-bar .widget.widget_product_search form.form-group input[type=search],.hestia-top-bar .widget.widget_search form.form-group input[type=search]{background:0 0;border:none;float:none;margin:2px 25px 0 25px;width:auto}.hestia-top-bar .widget.widget_product_search form.form-group input[type=submit],.hestia-top-bar .widget.widget_search form.form-group input[type=submit]{display:none}.hestia-top-bar .widget.widget_product_search form.form-group:after,.hestia-top-bar .widget.widget_search form.form-group:after{display:none}.hestia-top-bar .widget.widget_product_search form.form-group:before,.hestia-top-bar .widget.widget_search form.form-group:before{content:"";position:absolute;left:0;top:50%;width:18px;height:18px;mask-image:url('data:image/svg+xml;utf8,');-webkit-mask-image:url('data:image/svg+xml;utf8,');background-color:#fff;transform:translateY(-50%)}.hestia-top-bar .widget.widget_search .search-form{display:inline-block}.hestia-top-bar ul li{cursor:auto;display:inline-block;margin:0 5px}.hestia-top-bar ul li:first-child{margin-left:0}.hestia-top-bar ul li:last-child{margin-right:0}.hestia-top-bar ul li a{padding:0;text-transform:inherit}.hestia-top-bar ul li a:focus,.hestia-top-bar ul li a:hover{background-color:transparent;outline:0}.hestia-top-bar ul li a[href*="mailto:"]:before,.hestia-top-bar ul li a[href*="tel:"]:before{margin-right:7px;display:inline-block;width:16px;height:16px;background-repeat:no-repeat;content:'';background-color:#fff;vertical-align:text-bottom}.hestia-top-bar ul li a[href*="tel:"]:before{mask-image:url('data:image/svg+xml;utf8,');-webkit-mask-image:url('data:image/svg+xml;utf8,')}.hestia-top-bar ul li a[href*="mailto:"]:before{mask-image:url('data:image/svg+xml;utf8,');-webkit-mask-image:url('data:image/svg+xml;utf8,')}.hestia-top-bar ul li.dropdown .caret{display:none}.hestia-top-bar.placeholder{box-sizing:content-box;border:2px dashed}.hestia-top-bar.placeholder .top-widgets-placeholder{display:inline-block;cursor:pointer;position:relative;vertical-align:top}.hestia-clients-bar{padding:70px 0}.hestia-clients-bar .clients-bar-wrapper{list-style-type:none;margin:0;padding:0}.hestia-clients-bar .clients-bar-wrapper li{display:inline-block;margin:25px;vertical-align:middle}.hestia-clients-bar .clients-bar-wrapper li a{display:block;padding:5px}.hestia-clients-bar .clients-bar-wrapper li img{max-width:100%;height:auto}.hestia-clients-bar .row>div{padding:30px}.error404 .search-form,.search-no-results .search-form{margin-top:40px}#authors-on-blog{padding:80px 0}#authors-on-blog .card-profile{text-align:left}#authors-on-blog .col-ms-6:nth-child(2n+1){clear:both}.blog-post{word-wrap:break-word}.blog-post .section-text{padding-bottom:0}.blog-post .section-text p{margin-bottom:30px}.blog-post .section-blog-info{padding-top:15px}.blog-post .section-blog-info .entry-categories span{font-size:10px}.blog-post .section-blog-info .entry-categories,.blog-post .section-blog-info .entry-tags{word-break:break-all}.blog-post .section-blog-info .entry-categories span,.blog-post .section-blog-info .entry-tags span{display:inline-block;margin:5px}.blog-post .section-blog-info .entry-categories a{display:inline-block;padding:2px 2px;color:#fff}.blog-post .section-blog-info .card-profile{margin-top:0;text-align:left}dl dd,pre{margin-bottom:30px}.alignleft .avatar{margin-right:24px}.alignright .avatar{margin-left:24px}.aligncenter,img.centered{display:block;margin:0 auto 24px}img.alignnone{margin-bottom:12px}.alignleft{float:left;text-align:left}.alignright{float:right;text-align:right}.wp-caption.alignleft,img.alignleft{margin:0 24px 24px 0;margin:0 2.4rem 2.4rem 0}.wp-caption.alignright,img.alignright{margin:0 0 24px 24px}.wp-caption-text{padding-top:10px;text-align:center}.gallery-caption{padding-top:10px}.gallery .gallery-item{padding:5px}.gallery img{border:none!important;border-radius:6px;-webkit-box-shadow:0 16px 38px -12px rgba(0,0,0,.56),0 4px 25px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2);box-shadow:0 16px 38px -12px rgba(0,0,0,.56),0 4px 25px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2)}.bypostauthor{display:block}.related-posts .hestia-title{margin-bottom:50px}.related-posts .category a:not(:last-child):after{content:", "}.single-post .blog-post .section-text .title-in-content{margin-bottom:0}.blog-post .section-text .author.meta-in-content{opacity:.9;margin-bottom:20px;font-size:15px}.flex-row{display:flex;flex-wrap:wrap;flex-direction:row}.layout-alternative2 .category{padding-top:10px}.alignfull,.alignwide{width:unset;max-width:unset}.hestia-hidden{display:none}.wp-block-embed.is-type-video>.wp-block-embed__wrapper{position:relative;width:100%;height:0;padding-top:56.25%}.wp-block-embed.is-type-video>.wp-block-embed__wrapper iframe,.wp-block-embed.is-type-video>.wp-block-embed__wrapper>object{position:absolute;width:100%;height:100%;top:0;left:0;bottom:0;right:0}.media .avatar,.media-area .avatar,.media-body .avatar{overflow:hidden;width:64px;height:64px;margin:0 auto;margin-right:15px;border-radius:50%;-webkit-box-shadow:0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12),0 3px 5px -1px rgba(0,0,0,.2);box-shadow:0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12),0 3px 5px -1px rgba(0,0,0,.2)}.comment-respond .hestia-title,.media-area .hestia-title{margin-bottom:30px}.single-post .blog-post .section-comments .hestia-title{margin-bottom:30px;margin-top:20px}.comment .pull-left{padding-right:10px}.media-body div.avatar{margin:0 10px}.media{overflow:visible}.media .avatar img{width:100%}.media .media-heading{margin-top:0;margin-bottom:10px}.media .media-heading small{font-family:Roboto,Helvetica,Arial,sans-serif}.media .media-body{padding-right:10px}.media .media-body .media .media-body{padding-right:0}.media .media-footer .btn{margin-bottom:20px}.media .media-footer:after{display:table;clear:both;content:" "}.media p{color:#999}#comments .comment-notes{display:none}.section-comments ul.children .avatar img,.section-comments ul.children .comment-author.avatar{width:40px;height:40px}.blog-post .media p{color:#555}.blog-post .section-comments .title{margin-bottom:30px}.blog-post .section-comments .comment-respond .author{margin:15px 20px 0 0}.blog-post .section-comments .comment-respond .author img{border-radius:100%}.blog-post .comment-reply-link{text-transform:uppercase;float:right}.media-body{width:10000px;display:table-cell;overflow:visible}.widget{margin-bottom:30px;word-break:break-word}.widget ul{padding:0 0 0 10px;margin:0;list-style:none}.widget ul li{line-height:2.4;padding-top:5px}.widget ul li:first-child{padding-top:0}aside .widget .btn a{color:#fff}aside .widget a{color:#23527c}.widget a:hover{color:#89229b}.widget #searchform{margin-bottom:0;padding-bottom:0}.widget h5{font-family:"Roboto Slab","Times New Roman",serif;margin-bottom:10px}.widget select{width:100%}.hestia-widget-placeholder{border:1px dashed #b4b9be;padding:25px;text-align:center}.hestia-widget-placeholder .widget{margin:0}.single .hestia_right aside.blog-sidebar{padding:0}.hestia_right .hestia-widget-placeholder{padding:5px}.widget_calendar td,.widget_calendar th,.widget_calendar tr{padding:7px 0;text-align:center}.hestia-sidebar-toggle-container{clear:both}.hestia-sidebar-close,.hestia-sidebar-open{display:none;padding:10px}body.off-canvas .hestia-sidebar-close,body.off-canvas .hestia-sidebar-open{display:inline-block}body.off-canvas .shop-sidebar-wrapper{position:fixed;top:0;z-index:1030;height:100%;background:#fff;border-right:1px solid #f0f0f0;left:-100%;transition:.5s ease;padding:60px 20px 20px;overflow-y:scroll}body.off-canvas .shop-sidebar-wrapper.sidebar-open{left:0}body.off-canvas .shop-sidebar-wrapper .card{box-shadow:none}.row-sidebar-toggle{text-align:right}.row-sidebar-toggle .hestia-sidebar-close{padding:10px 13px}.row-sidebar-toggle.desktop{clear:both;text-align:left}.attachment .main-raised .blog-post{padding-bottom:130px}.attachment .sizes{margin-top:20px}.hestia-blog-featured-posts{padding:0}.hestia-blog-featured-posts article:nth-of-type(1) .card{margin-top:0}.hestia-blog-featured-posts article:nth-child(6n) .btn{background-color:#4caf50}.hestia-blog-featured-posts article:nth-child(6n+1) .btn{background-color:#89229b}.hestia-blog-featured-posts article:nth-child(6n+2) .btn{background-color:#00bcd4}.hestia-blog-featured-posts article:nth-child(6n+3) .btn{background-color:#f44336}.hestia-blog-featured-posts article:nth-child(6n+4) .btn{background-color:#ff9800}.hestia-blog-featured-posts article:nth-child(6n+5) .btn{background-color:#e91e63}.hestia-blog-featured-card .card-background{text-align:center}.hestia-blog-featured-card .card-background:after{position:absolute;z-index:1;width:100%;height:100%;display:block;left:0;top:0;content:"";background-color:rgba(0,0,0,.56);border-radius:6px;opacity:1}.hestia-blog-featured-card .card-background .card-body{position:relative;z-index:2;min-height:280px;padding-top:40px;padding-bottom:40px;max-width:440px;margin:0 auto}.hestia-blog-featured-card .card-background .card-body .card-description{color:rgba(255,255,255,.7)}.hestia-blog-featured-card .card-background .card-body .category a{color:rgba(255,255,255,.7)}.hestia-blog-featured-card .card-body{padding:15px 30px}.hestia-blog-featured-card.col-md-12 .card-body{max-width:750px}figure.wp-block-pullquote{border-left:none;border-top:4px solid;border-bottom:4px solid;margin:20px 0;padding:3em 0}figure.wp-block-pullquote p{font-size:28px;font-style:normal;margin-bottom:20px}figure.wp-block-pullquote blockquote{margin:1em;border:none}figure.wp-block-pullquote cite{text-transform:uppercase;font-size:13px;font-weight:300}.page-content-wrap .has-small-font-size,.single-post-wrap .has-small-font-size{font-size:13px}.page-content-wrap .has-medium-font-size,.single-post-wrap .has-medium-font-size{font-size:20px}.page-content-wrap .has-large-font-size,.single-post-wrap .has-large-font-size{font-size:36px}.page-content-wrap .has-huge-font-size,.single-post-wrap .has-huge-font-size{font-size:48px}.wp-block-separator{color:#eee;background-color:#eee;border:none}.wp-block-separator:not(.is-style-wide):not(.is-style-dots){height:2px;max-width:150px}.wp-block-separator .is-style-default{height:1px}.wp-block-separator.is-style-wide{max-width:100%;height:1px}.page-header .author,.page-header .author a,.page-header .container,.page-header .description,.page-header .hestia-title,.page-header .title{color:#fff}.page-content-wrap:after,.single-post-wrap:after{content:"";display:table;clear:both}#parallax_move~.item .page-header,#wp-custom-header~.item .page-header{overflow:inherit}.page-header{will-change:transform;overflow:hidden;margin:0;padding:0;border:0;background-position:center center;background-size:cover}.page-header .container{padding-top:30vh;color:#fff}.page-header .container .hestia-title,.page-header .container .title{margin:0 0 20px}.page-header.header-small .container .hestia-title,.page-header.header-small .container .title{margin:20px 0 10px}.page-header.header-small{min-height:300px;position:relative;height:auto}.page-header.header-small .container{padding-top:180px;padding-bottom:110px}.page-header.header-small .hestia-title,.page-header.header-small .title{font-family:Roboto,Helvetica,Arial,sans-serif}.boxed-layout-header{padding-bottom:60px}.header-filter-gradient{background:linear-gradient(45deg,#a81d84 0,#ea396f 100%)}.header-filter.header-filter-gradient:before{background-color:transparent}.header-filter{position:absolute;top:0;bottom:0;left:0;right:0;z-index:-1;background-position:center center;background-size:cover}.header-filter:after,.header-filter:before{display:block;position:absolute;top:0;left:0;width:100%;height:100%;content:""}.header-filter::before{background-color:rgba(0,0,0,.5)}.header-filter .container{position:relative}.carousel .header-filter:after,.carousel .header-filter:before{z-index:-1}.clear-filter:before{display:none}.header .wrapper{background:#ccc}.header .btn{margin:0}.header h6{margin-bottom:0}.phone-container img{width:100%}.main{position:relative;background:#fff}.main-raised{margin:-60px 30px 0;border-radius:6px 6px 0 0;-webkit-box-shadow:0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2);box-shadow:0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2)}.home .main-raised section:first-of-type{border-radius:6px 6px 0 0;overflow:hidden}.page-template-template-pagebuilder-blank .section{padding:0}.single .main-raised,.woocommerce.archive .main-raised{margin-top:-60px;margin-bottom:30px}.single .main-raised.classic-blog{margin-top:0}.content-sidebar-left{padding-left:30px;padding-right:0}.content-sidebar-right{padding-right:30px;padding-left:0}.shop-sidebar-wrapper{padding:0}.content-full.col-md-12{padding:0}.page:not(.home) .wrapper{display:flex;flex-direction:column;min-height:100vh}.page:not(.home) .wrapper .main{display:flex;flex-direction:column;flex:1 0 auto}.page:not(.home) .wrapper .main .blog-post{flex:1 0 auto}body:not(.home) .wrapper{display:flex;flex-direction:column;min-height:100vh}body:not(.home) .wrapper .main{display:flex;flex-direction:column;flex:1 0 auto}body:not(.home) .wrapper .main .hestia-blogs{flex:1 0 auto}body:not(.home) .wrapper .content-area{display:flex;flex-direction:column;flex:1 0 auto}@media (max-width:1199px){.contactus .row,.hestia-about .row,.hestia-features .row,.hestia-team .row,.hestia-testimonials .row,.hestia-work .row,.pricing .row,.products .row,section.hestia-blogs .row{padding:0 15px}.products .container{width:100%}.main-raised{margin:-60px 15px 0}}@media (max-width:991px){.navbar .navbar-nav>li{margin-right:10px;margin-left:10px}.page-header{height:auto;min-height:0}.card.card-raised .card-image{margin-top:-30px;display:block;margin-left:0;margin-right:0}.card.card-raised{padding:20px}.woocommerce-checkout .page-header{height:auto}.hestia-about .text-area{margin:0 0 10px}.blog .page-header.header-small h2{margin:0}.blog .page-header.header-small{height:auto;min-height:0}.page-header .iframe-container{padding:30px 0}.card-form-horizontal .form-group{padding-bottom:20px}.carousel .page-header{padding:0 30px}.btn.btn-simple{padding-right:0;padding-left:0;text-align:left}.hestia-work .col-md-4 .card-background .content,.hestia-work .col-md-6 .card-background .content{padding-top:15%}.about .row,.contactus .row,.features .row,.hestia-about .row,.hestia-features .row,.hestia-team .row,.hestia-testimonials .row,.hestia-work .row,.pricing .row,.products .row,.team .row,.testimonials .row,.work .row,section.hestia-blogs .row{padding:0 10px}.single aside.blog-sidebar{padding:40px 30px}.shop-sidebar.card{width:100%;text-align:initial}.shop-sidebar-wrapper{text-align:center}.products .shop-item:nth-of-type(2n+1){clear:both}.subscribe-line .card .content{padding:0}.subscribe-line .card .form-group{padding-bottom:0}.archive .hestia-blogs,.blog .hestia-blogs{padding-top:0}.archive .hestia-blogs .card-blog .card-image,.blog .hestia-blogs .card-blog .card-image{margin-bottom:30px}.archive #authors-on-blog,.blog #authors-on-blog{padding-bottom:40px}.home section.hestia-blogs{padding:30px 0 65px}.single.single-post .section-blog-info .card-profile .card-title,.single.single-post .section-blog-info .card-profile .description{text-align:center}.single.single-post .section-blog-info .card-profile .card-avatar{margin-bottom:20px}.hestia-sidebar-close,.hestia-sidebar-open{cursor:pointer;display:inline-block;margin:0;padding:12px 15px}.row-sidebar-toggle{margin:30px 15px 0;text-align:right}.row-sidebar-toggle.desktop{display:none}.page .row-sidebar-toggle{margin-top:0;margin-bottom:30px}.shop-sidebar-wrapper{position:fixed;top:0;z-index:1030;height:100%;background:#fff;border-right:1px solid #f0f0f0;left:-100%;transition:.5s ease;padding:60px 20px 20px;overflow-y:scroll}.shop-sidebar-wrapper.sidebar-open{left:0}.shop-sidebar-wrapper .card{box-shadow:none}.archive.woocommerce .hestia-sidebar-open{margin-top:15px}.archive.woocommerce .shop-sidebar-active{margin-top:10px}.archive.woocommerce .row-sidebar-toggle.col-sm-3{margin:0;text-align:left}.archive.woocommerce .row-sidebar-toggle.col-sm-3 .hestia-sidebar-open{margin:15px 0 0}.shop-sidebar.card.card-raised{box-shadow:none;margin:0;padding:0 15px}.hestia-top-bar .container{width:100%}.hestia-top-bar .col-md-6{width:50%}.hestia-team .card .content,.team .card .content{padding-top:15px}.hestia-team .card .content .footer .btn.btn-just-icon,.team .card .content .footer .btn.btn-just-icon{padding:12px;text-align:center}.pricing p.text-gray{margin-bottom:40px}.related-posts .hestia-title{margin-bottom:60px}.hestia-blog-featured-posts{padding-top:30px}.hestia-blog-featured-posts .card-raised{margin:30px 0}.hestia-blog-featured-posts .card-background .card-body{padding-top:20px;padding-bottom:20px;max-width:100%}.hestia-blog-featured-posts .card-body{padding:20px 15px}}@media (min-width:992px){.navbar .navbar-collapse{text-align:center}.card.card-raised .card-image{margin-left:0;margin-right:0}.navbar .navbar-center{display:inline-block;float:none}.navbar .navbar-nav>li{margin:0}.navbar .navbar-nav>li.btn{margin:0 10px}.navbar .navbar-nav>li.btn:last-child{margin-right:0}.entry-social{text-align:right}.footer .content{margin-left:-15px;margin-right:-15px}.footer .row{margin-left:-15px;margin-right:-15px}.footer .col-md-4{padding:0 30px}.blog-sidebar-wrapper,.shop-sidebar-wrapper{float:left;position:static;background:0 0}.big-title-sidebar-wrapper .pirate-forms-contact-widget{max-width:370px}.row-sidebar-toggle.desktop{display:block}.row-sidebar-toggle.mobile{display:none}}@media (min-width:783px) and (min-width:601px){body.admin-bar .navbar-default:not(.navbar-transparent){margin-top:32px}}@media (min-width:769px){.form-horizontal .control-label{padding-top:8px}.nav-cart.responsive-nav-cart{display:none}.navbar.hestia_left .title-logo-wrapper{min-width:250px}.navbar.hestia_right.navbar-scroll-point .header-sidebar-wrapper,.navbar.hestia_right.navbar-scroll-point .title-logo-wrapper{display:none}.navbar.hestia_right .title-logo-wrapper{min-width:250px}.navbar.hestia_right .navbar-collapse{min-width:100%}.navbar.hestia_center .navbar-brand{margin:0 auto}.navbar.hestia_center.navbar-scroll-point .title-logo-wrapper{display:none}.navbar.full-screen-menu .navbar-brand{float:none;margin:0;padding:0}.navbar.full-screen-menu .navbar-header{width:100%;display:flex}.navbar.full-screen-menu .navbar-toggle{z-index:999999}.navbar.full-screen-menu.navbar-scroll-point .title-logo-wrapper{display:block}.navbar.full-screen-menu .nav-cart:not(.responsive-nav-cart),.navbar.full-screen-menu .navbar-toggle{display:inline-block}.navbar.full-screen-menu .nav-cart .nav-cart-icon span{top:10px;left:15px}.navbar.full-screen-menu .navbar-nav{background-color:rgba(255,255,255,.9)}.navbar.full-screen-menu.hestia_center .navbar-header .title-logo-wrapper{left:50%;transform:translateX(-50%);position:relative}.navbar.full-screen-menu.hestia_right .navbar-header{max-width:100%}.navbar.full-screen-menu .navbar-nav.nav{opacity:0;display:flex;flex-direction:column;flex-wrap:inherit;justify-content:flex-start;transition:all .3s ease;visibility:hidden;pointer-events:none;z-index:9999;overflow-x:scroll;position:fixed;width:100%;background-color:rgba(255,255,255,.9);left:0;top:0;bottom:0;padding-top:100px}.navbar.full-screen-menu .navbar-nav.nav>li,.navbar.full-screen-menu .navbar-nav.nav>li.btn:last-child{display:table;margin:20px auto}.navbar.full-screen-menu .in .navbar-nav.nav{opacity:1;visibility:visible;pointer-events:inherit}.dropdown .dropdown-menu{display:block;visibility:hidden;margin-top:-20px;opacity:0;-webkit-transition:all 150ms linear;transition:all 150ms linear}.dropdown.open,.dropdown:hover{z-index:1}.dropdown.open>.dropdown-menu,.dropdown:hover>.dropdown-menu{visibility:visible;margin-top:1px;opacity:1;z-index:100}}@media (max-width:768px){li.nav-cart{display:none}li.nav-cart.responsive-nav-cart{display:block;margin-left:5px}.container .navbar-header{width:100%;display:flex;margin:0 auto}.navbar>.container{transition:padding .1s ease;padding:10px 15px;align-items:center;display:block}.navbar.navbar-transparent{background:#fff;color:#555}.navbar.navbar-transparent>.container{padding-top:10px}.navbar .nav.navbar-nav{display:block}.hestia-sidebar-header{display:none}.navbar.hestia_right .navbar-header{max-width:inherit}.navbar.navbar-default .dropdown.btn a .caret{border-color:#fff!important;color:#fff!important}.navbar.navbar-default .navbar-nav .menu-item.btn.active a,.navbar.navbar-default .navbar-nav .menu-item.btn.active a i,.navbar.navbar-default li.btn a,.navbar.navbar-default li.btn a i{color:#fff}.navbar.navbar-default li.btn:hover a,.navbar.navbar-default li.btn:hover i{color:#fff}.navbar.navbar-default li.btn:hover ul li i{color:#fff}.navbar.navbar-default li.btn ul li a,.navbar.navbar-default li.btn ul li i{opacity:1;color:#fff!important}.navbar.navbar-default li.btn ul li i,.navbar.navbar-default li.btn ul li:hover a{color:#fff!important}.navbar.navbar-fixed-top .navbar-collapse{max-height:calc(100% - 70px);margin-top:70px;overflow-y:auto;position:fixed;z-index:9999;background:#fff;width:100%;left:0;top:0;margin-left:0;margin-right:0;-webkit-overflow-scrolling:auto}.navbar.navbar-fixed-top.header-with-topbar:not(.navbar-scroll-point) .navbar-collapse{margin-top:110px}.navbar .navbar-nav{margin:7.5px 0}.navbar .navbar-nav li{box-sizing:border-box;float:left;margin:0;padding:0;width:100%;text-align:left}.navbar .navbar-nav li.btn{margin-top:10px}.navbar .navbar-nav .dropdown a .caret{border:1px solid #555;border-radius:2px;box-sizing:content-box;color:#555;cursor:pointer;display:inline-block;font-family:"Font Awesome 5 Free";font-weight:900;height:30px;margin-left:0;position:absolute;right:15px;text-align:center;top:10px;width:30px;z-index:100}.navbar .navbar-nav .dropdown a .caret svg{width:12.5px;margin:9px;transition:all .3s ease}.navbar .navbar-nav .dropdown a .caret-open .caret svg{transform:rotate(-180deg)}.navbar .navbar-nav .dropdown a>i{margin-right:12px}.navbar .navbar-nav .dropdown.open a>.caret:before{-webkit-transform:rotate(-180deg);-moz-transform:rotate(-180deg);-ms-transform:rotate(-180deg);-o-transform:rotate(-180deg);transform:rotate(-180deg)}.navbar .navbar-nav .dropdown.open .dropdown-menu{display:block!important}.navbar .navbar-nav .dropdown .dropdown-menu{background:0 0;box-shadow:none;position:static;margin-top:0;padding:0;width:100%}.navbar .navbar-nav .dropdown .dropdown-menu.open{display:block!important}.navbar .navbar-nav .dropdown .dropdown-menu li a{margin:0;padding:15px 0 15px 30px}.navbar .navbar-nav .dropdown .dropdown-menu li a:focus,.navbar .navbar-nav .dropdown .dropdown-menu li a:hover{background-color:transparent;color:#e91e63}.navbar .navbar-nav .dropdown .dropdown-menu li li a{padding:15px 0 15px 45px}.navbar .navbar-header .navbar-brand{padding-left:0}.navbar .navbar-brand h1,.navbar .navbar-brand p{padding:10px 0}.navbar .dropdown-submenu:hover .dropdown-menu{display:none!important}.navbar .dropdown-submenu.open>a{background:0 0!important;color:inherit;-webkit-box-shadow:none;box-shadow:none}.navbar.navbar-transparent .open .dropdown-menu>.active>a,.navbar.navbar-transparent .open .dropdown-menu>.active>a:focus,.navbar.navbar-transparent .open .dropdown-menu>.active>a:hover,.navbar.navbar-transparent .open .dropdown-menu>li>a:focus,.navbar.navbar-transparent .open .dropdown-menu>li>a:hover{color:inherit;background-color:transparent}.navbar.navbar-transparent .navbar-nav>.active>a{color:#555}.navbar .open .dropdown-menu>.active>a,.navbar .open .dropdown-menu>.active>a:focus,.navbar .open .dropdown-menu>.active>a:hover,.navbar .open .dropdown-menu>li>a:focus,.navbar .open .dropdown-menu>li>a:hover{color:#e91e63;background-color:transparent}.navbar .dropdown-menu li>a>i{opacity:1}.hestia_right .header-sidebar-wrapper{display:none}body.admin-bar .navbar{margin-top:45px}body.admin-bar .navbar.navbar-default .navbar-collapse{max-height:calc(100% - 115px);margin-top:115px}body.admin-bar .navbar.header-with-topbar{margin-top:0;top:85px}body.admin-bar .navbar.header-with-topbar.navbar-fixed-top .navbar-collapse{max-height:calc(100% - 155px);margin-top:155px}body.admin-bar .navbar.header-with-topbar.navbar-fixed-top.navbar-scroll-point .navbar-collapse{margin-top:115px}body.admin-bar .navbar.navbar-scroll-point.header-with-topbar{top:45px}body.admin-bar .navbar.navbar-scroll-point.navbar-fixed-top .navbar-collapse{max-height:calc(100% - 115px)}.big-title-sidebar-wrapper{width:100%;padding:0}.big-title-sidebar-wrapper .pirate-forms-contact-widget{max-width:370px;margin:0 auto}.single .section{padding:30px 0 0}.single .section.section-blog-info{padding:15px 0 30px}.media .avatar,.media-area .avatar,.media-body .avatar{margin:0;width:35px;height:35px}.subscribe-line .btn{margin-top:15px}ul.children{padding-left:5px;border-left:1px #cfcfcf solid}.blog-post .section-comments .comment-respond .author{display:none}.hestia-about .text-area{margin-bottom:20px}.home .main-raised section:first-of-type{border-radius:0}.footer.footer-big{padding:30px 0 26px}.footer .footer-menu{width:100%}.footer .copyright{display:inline-block;float:none!important;width:100%;padding:10px 0;text-align:center}.main-raised{margin-right:0;margin-left:0;border-radius:0}hr{margin-top:0}.hestia-about{padding-top:30px}.hestia-about h2{margin-top:0}.hestia-about .widget_sow-image .panel-widget-style{margin-top:-60px;padding:0 0 60px 0!important}.authors-on-blog .card-image,.hestia-team .card-image,.team .card-image{height:100px;margin:0 auto;width:100px}.authors-on-blog .card-image img,.hestia-team .card-image img,.team .card-image img{object-fit:cover}.authors-on-blog .col-xs-6:nth-of-type(2n+1),.hestia-team .col-xs-6:nth-of-type(2n+1),.team .col-xs-6:nth-of-type(2n+1){clear:both}.authors-on-blog .card .content,.hestia-team .card .content,.team .card .content{text-align:center}.authors-on-blog .card .content .card-description,.hestia-team .card .content .card-description,.team .card .content .card-description{display:none}.authors-on-blog .card .content .footer,.hestia-team .card .content .footer,.team .card .content .footer{margin-left:0;margin-top:0}.authors-on-blog .card .content .footer .btn.btn-just-icon,.hestia-team .card .content .footer .btn.btn-just-icon,.team .card .content .footer .btn.btn-just-icon{margin:0 5px;padding:0}.authors-on-blog .card .content .footer .btn.btn-just-icon i,.hestia-team .card .content .footer .btn.btn-just-icon i,.team .card .content .footer .btn.btn-just-icon i{width:auto}.hestia-work .card{cursor:pointer}.pricing{padding:60px 0 40px}.contactus .card-contact{margin-top:90px}.contactus .form_captcha_wrap .pirate-forms-google-recaptcha>div{margin:0 auto}.contactus .contact_submit_wrap{text-align:center}.hestia-clear-top-padding{margin-top:-30px}.single.single-post .section-blog-info .entry-social{margin:15px 0 30px}.single.single-post .section-blog-info .card-profile{margin-top:20px}.page .section.section-text{padding:30px 0}.archive .page-header.header-small,.blog .page-header.header-small,.category .page-header.header-small,.page .page-header.header-small,.single-post .page-header.header-small{min-height:0}.archive .page-header.header-small .container,.blog .page-header.header-small .container,.category .page-header.header-small .container,.page .page-header.header-small .container,.single-post .page-header.header-small .container{padding:120px 15px 50px}.archive .page-header.header-small .container .hestia-title,.blog .page-header.header-small .container .hestia-title,.category .page-header.header-small .container .hestia-title,.page .page-header.header-small .container .hestia-title,.single-post .page-header.header-small .container .hestia-title{margin-top:0}.hestia-top-bar{overflow:hidden}.hestia-top-bar .col-md-6{text-align:center;width:100%}.hestia-top-bar .col-md-6.pull-right{display:none}.hestia-top-bar .col-md-12,.hestia-top-bar .col-md-12.pull-right{float:none!important;text-align:center}.hestia-top-bar .widget.widget_shopping_cart{display:none}.home:not(.blog) .main-raised{margin-top:0}.home:not(.blog) .page-header{min-height:0}.header .carousel .item .container{padding-top:170px;padding-bottom:100px}.header .buttons>.btn-right~.btn-left{margin-top:40px}.header.header-with-topbar .carousel .item .container{padding-top:210px}.header .carousel .carousel-control{margin-top:35px}.header.header-with-topbar .carousel .carousel-control{margin-top:55px}.obfx-sharing-bottom{left:0}.carousel .buttons .btn-left,.carousel .buttons .btn-left+.btn-right,.carousel .buttons .btn-right{margin:0 15px 15px}.navbar.navbar-transparent .hestia-hide-if-transparent{display:block}.navbar.navbar-transparent .hestia-transparent-logo{display:none}}@media (max-width:767px){.carousel .page-header .row{flex-direction:column;justify-content:center;padding:0;text-align:center}.carousel .page-header .row .margin-left-auto,.carousel .page-header .row .margin-right-auto{margin:inherit}.carousel .page-header .row .big-title-slider-content{text-align:center}.carousel .item .container.container-height-auto{top:0;transform:none}.carousel .carousel-control.left i{left:10px}.carousel .carousel-control.right i{right:10px}}@media (max-width:600px){body.admin-bar .navbar{margin-top:0}}@media (max-width:600px){body.admin-bar .navbar.navbar-scroll-point{top:0}body.admin-bar .navbar.navbar-scroll-point.header-with-topbar{top:0}body.admin-bar .navbar.navbar-scroll-point.navbar-transparent{margin-top:0;top:46px}body.admin-bar .navbar.navbar-not-transparent{margin-top:0}body.admin-bar .navbar.navbar-scroll-point.header-with-topbar.navbar-fixed-top .navbar-collapse,body.admin-bar .navbar.navbar-scroll-point.navbar-fixed-top .navbar-collapse{max-height:calc(100% - 70px);margin-top:70px}body.admin-bar .navbar.navbar-scroll-point.header-with-topbar.navbar-fixed-top.navbar-transparent .navbar-collapse,body.admin-bar .navbar.navbar-scroll-point.navbar-fixed-top.navbar-transparent .navbar-collapse{max-height:calc(100% - 70px);margin-top:115px}}@media (max-width:480px){.single .main-raised{margin:-60px 0 30px}.comment-respond .form-submit input{display:block;float:none!important;margin:0 auto}.hestia-features{padding:40px 0 55px}.alternative-blog-row{display:table;width:100%;margin:0 auto;table-layout:fixed}.alternative-blog-row div:first-child{display:table-footer-group}.alternative-blog-row div:last-child{padding:0;display:block}.contactus .hestia-contact-form-col{padding:0 5px}.contactus .card-contact{margin-top:30px}.contactus .card-contact .content{padding:30px 15px 0}.contactus .pirate_forms_wrap .pirate-forms-footer .form_captcha_wrap{margin-bottom:0;padding:0}.contactus .pirate_forms_wrap .form_captcha_wrap>div>div{transform:scale(.8);overflow:visible}}.col-ms-1,.col-ms-10,.col-ms-11,.col-ms-12,.col-ms-2,.col-ms-3,.col-ms-4,.col-ms-5,.col-ms-6,.col-ms-7,.col-ms-8,.col-ms-9{position:relative;min-height:1px;padding-left:15px;padding-right:15px}@media (min-width:481px) and (max-width:767px){.col-ms-1,.col-ms-10,.col-ms-11,.col-ms-2,.col-ms-3,.col-ms-4,.col-ms-5,.col-ms-6,.col-ms-7,.col-ms-8,.col-ms-9{float:left}.col-ms-1{width:8.33333%}.col-ms-2{width:16.66667%}.col-ms-3{width:25%}.col-ms-4{width:33.33333%}.col-ms-5{width:41.66667%}.col-ms-6{width:50%}.col-ms-7{width:58.33333%}.col-ms-8{width:66.66667%}.col-ms-9{width:75%}.col-ms-10{width:83.33333%}.col-ms-11{width:91.66667%}.col-ms-12{width:100%}.col-ms-push-1{left:8.33333%}.col-ms-push-2{left:16.66667%}.col-ms-push-3{left:25%}.col-ms-push-4{left:33.33333%}.col-ms-push-5{left:41.66667%}.col-ms-push-6{left:50%}.col-ms-push-7{left:58.33333%}.col-ms-push-8{left:66.66667%}.col-ms-push-9{left:75%}.col-ms-push-10{left:83.33333%}.col-ms-push-11{left:91.66667%}.col-ms-pull-1{right:8.33333%}.col-ms-pull-2{right:16.66667%}.col-ms-pull-3{right:25%}.col-ms-pull-4{right:33.33333%}.col-ms-pull-5{right:41.66667%}.col-ms-pull-6{right:50%}.col-ms-pull-7{right:58.33333%}.col-ms-pull-8{right:66.66667%}.col-ms-pull-9{right:75%}.col-ms-pull-10{right:83.33333%}.col-ms-pull-11{right:91.66667%}.col-ms-offset-1{margin-left:8.33333%}.col-ms-offset-2{margin-left:16.66667%}.col-ms-offset-3{margin-left:25%}.col-ms-offset-4{margin-left:33.33333%}.col-ms-offset-5{margin-left:41.66667%}.col-ms-offset-6{margin-left:50%}.col-ms-offset-7{margin-left:58.33333%}.col-ms-offset-8{margin-left:66.66667%}.col-ms-offset-9{margin-left:75%}.col-ms-offset-10{margin-left:83.33333%}.col-ms-offset-11{margin-left:91.66667%}}@media (min-width:480px) and (max-width:767px){.form-horizontal .form-group .control-label{text-align:right}} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/aa7f28963ba59fa987ed24b8265a4fbe70678efb.00000497.html b/www/.content.EZtzwPjb/html/aa7f28963ba59fa987ed24b8265a4fbe70678efb.00000497.html new file mode 100644 index 0000000..172ca01 --- /dev/null +++ b/www/.content.EZtzwPjb/html/aa7f28963ba59fa987ed24b8265a4fbe70678efb.00000497.html @@ -0,0 +1,376 @@ + + + + + + + réparer – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +

                            Écran miraculé d’un Asus N53SN

                            Comme d’habitude tantine vient me voir pour me dire que son écran d’ordinateur ne marche plus. Le pc portable, un Asus N53SN d’un plus de 2 ans de services, présente un écran noir complètement éteint mais le portable fonctionne parfaitement sur un écran externe. Ni une ni deux je commence par démonter la bête pour récupérer la référence exacte du moniteur.

                            +

                            asusn53sn_open_lcd_front (suite…)

                            +
                            Par HugoPoi, il y a

                            Réparations Samsung SyncMaster 2232BW

                            Allô docteur on a un problème,

                            +

                            En ce dimanche calme avant la fin de mes partiels, mon écran Samsung SyncMaster 2232BW commençait à faire des siennes. Celui-ci depuis un mois ou deux clignotait de façon systématique au démarrage, au début pendant seulement quelques secondes, puis au fur et à mesure, de plus en plus jusqu’à devoir attendre 10 minutes pour que je puisse l’utiliser. Après 3 ans et 4 mois de bons et loyaux services, il voulait me quitter. J’ai tenté le support Samsung par email avec peu d’espoir car l’écran a dépassé sa garantie de 4 mois (oui oui les bâtards -> obsolescence programmée). Et donc j’ai eu le droit à un joli mail automatique me disant de contacter un numéro non surtaxé (mais avec combien de temps d’attente ?), ce que je n’ai pas fait car je n’avais pas envie de passer 30min au téléphone pour au final avoir un « On est désolé mais on ne peut rien faire pour vous car la garantie est dépassée, mais on peut envoyer votre écran en SAV pour faire un devis pour seulement 50 boules ». Concernant le support email de Samsung France, je leur donne une note de 0/20 puisque ce n’est pas un support mais une redirection vers le téléphone.

                            +

                            (suite…)

                            +
                            Par HugoPoi, il y a
                            +
                            + +
                            +
                            +
                            +
                            + +
                            +
                            + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/aa84e5030441db1fc5b7b73523fb8a3d2884ca8f.00000343.xml b/www/.content.EZtzwPjb/html/aa84e5030441db1fc5b7b73523fb8a3d2884ca8f.00000343.xml new file mode 100644 index 0000000..fd5908b --- /dev/null +++ b/www/.content.EZtzwPjb/html/aa84e5030441db1fc5b7b73523fb8a3d2884ca8f.00000343.xml @@ -0,0 +1,82 @@ + + + + HugoPoi » Asus + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Sat, 14 Sep 2013 23:01:40 +0000 + fr-FR + hourly + 1 + http://wordpress.org/?v=3.6 + + Asus U36 et OCZ Vertex 3 la suite + http://blog.hugopoi.net/2012/03/30/asus-u36-et-ocz-vertex-3-la-suite/ + http://blog.hugopoi.net/2012/03/30/asus-u36-et-ocz-vertex-3-la-suite/#comments + Fri, 30 Mar 2012 10:29:27 +0000 + HugoPoi + + + + + + + + + + + + + + + http://blog.hugopoi.net/?p=635 + Lire la suite »

                            ]]>
                            + http://blog.hugopoi.net/2012/03/30/asus-u36-et-ocz-vertex-3-la-suite/feed/ + 1 +
                            + + Démontage Asus U36 + http://blog.hugopoi.net/2011/07/30/demontage-asus-u36/ + http://blog.hugopoi.net/2011/07/30/demontage-asus-u36/#comments + Sat, 30 Jul 2011 13:19:08 +0000 + HugoPoi + + + + + + + + + http://blog.hugopoi.net/?p=495 + SSD MontéJ’ai acheté un petit SSD pour mettre dans mon U36 acheté il y a quelques mois, je n’ai pas trouvé de procédure de démontage sur Internet donc voici les photos de mon démontage. 1) Commencer par enlever toutes les vis …

                            Lire la suite »

                            ]]>
                            + http://blog.hugopoi.net/2011/07/30/demontage-asus-u36/feed/ + 17 +
                            + + Asus U36JC-RX260V + http://blog.hugopoi.net/2011/04/10/asus-u36jc-rx260v/ + http://blog.hugopoi.net/2011/04/10/asus-u36jc-rx260v/#comments + Sun, 10 Apr 2011 18:49:18 +0000 + HugoPoi + + + + + + + http://blog.hugopoi.net/?p=398 + Lire la suite »

                            ]]>
                            + http://blog.hugopoi.net/2011/04/10/asus-u36jc-rx260v/feed/ + 4 +
                            +
                            +
                            diff --git a/www/.content.EZtzwPjb/html/aa8989541d90cc50cb3395d8cf86106b0d85185b.00000318.xml b/www/.content.EZtzwPjb/html/aa8989541d90cc50cb3395d8cf86106b0d85185b.00000318.xml new file mode 100644 index 0000000..de25433 --- /dev/null +++ b/www/.content.EZtzwPjb/html/aa8989541d90cc50cb3395d8cf86106b0d85185b.00000318.xml @@ -0,0 +1,104 @@ + + + Test – HugoPoi + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Wed, 28 Oct 2015 19:01:08 +0000 + fr-FR + hourly + 1 + https://wordpress.org/?v=4.4.2 + + Test et démontage d’un Sony Multi Flip 15 SVF15N1C5E + http://blog.hugopoi.net/2014/08/04/test-et-demontage-dun-sony-multi-flip-15-svf15n1c5e/ + http://blog.hugopoi.net/2014/08/04/test-et-demontage-dun-sony-multi-flip-15-svf15n1c5e/#respond + Mon, 04 Aug 2014 13:25:59 +0000 + + + + + + + + + http://blog.hugopoi.net/?p=856 + Lire la suite »

                            ]]>
                            + http://blog.hugopoi.net/2014/08/04/test-et-demontage-dun-sony-multi-flip-15-svf15n1c5e/feed/ + 0 +
                            + + Asus U36JC-RX260V + http://blog.hugopoi.net/2011/04/10/asus-u36jc-rx260v/ + http://blog.hugopoi.net/2011/04/10/asus-u36jc-rx260v/#comments + Sun, 10 Apr 2011 18:49:18 +0000 + + + + + + + + http://blog.hugopoi.net/?p=398 + Lire la suite »

                            ]]>
                            + http://blog.hugopoi.net/2011/04/10/asus-u36jc-rx260v/feed/ + 4 +
                            + + Freebox Révolution #oupas + http://blog.hugopoi.net/2011/02/09/freebox-revolution-oupas/ + http://blog.hugopoi.net/2011/02/09/freebox-revolution-oupas/#comments + Wed, 09 Feb 2011 08:16:39 +0000 + + + + + + + + http://blog.hugopoi.net/?p=323 + Lire la suite »

                            ]]>
                            + http://blog.hugopoi.net/2011/02/09/freebox-revolution-oupas/feed/ + 2 +
                            + + Aventure PC + http://blog.hugopoi.net/2011/01/08/aventure-pc/ + http://blog.hugopoi.net/2011/01/08/aventure-pc/#respond + Sat, 08 Jan 2011 15:35:22 +0000 + + + + + + + + http://blog.hugopoi.net/?p=262 + Lire la suite »

                            ]]>
                            + http://blog.hugopoi.net/2011/01/08/aventure-pc/feed/ + 0 +
                            + + Test du Samsung Galaxy S + http://blog.hugopoi.net/2010/12/27/test-du-samsung-galaxy-s/ + http://blog.hugopoi.net/2010/12/27/test-du-samsung-galaxy-s/#comments + Mon, 27 Dec 2010 18:45:47 +0000 + + + + + + http://blog.hugopoi.net/?p=234 + Lire la suite »

                            ]]>
                            + http://blog.hugopoi.net/2010/12/27/test-du-samsung-galaxy-s/feed/ + 1 +
                            +
                            +
                            diff --git a/www/.content.EZtzwPjb/html/ab01407765feb42babeae36cce7e2b4962a4487b.00000581.css b/www/.content.EZtzwPjb/html/ab01407765feb42babeae36cce7e2b4962a4487b.00000581.css new file mode 100644 index 0000000..3bf7536 --- /dev/null +++ b/www/.content.EZtzwPjb/html/ab01407765feb42babeae36cce7e2b4962a4487b.00000581.css @@ -0,0 +1,111 @@ +.wpcf7 .screen-reader-response { + position: absolute; + overflow: hidden; + clip: rect(1px, 1px, 1px, 1px); + height: 1px; + width: 1px; + margin: 0; + padding: 0; + border: 0; +} + +.wpcf7 form .wpcf7-response-output { + margin: 2em 0.5em 1em; + padding: 0.2em 1em; + border: 2px solid #00a0d2; /* Blue */ +} + +.wpcf7 form.init .wpcf7-response-output { + display: none; +} + +.wpcf7 form.sent .wpcf7-response-output { + border-color: #46b450; /* Green */ +} + +.wpcf7 form.failed .wpcf7-response-output, +.wpcf7 form.aborted .wpcf7-response-output { + border-color: #dc3232; /* Red */ +} + +.wpcf7 form.spam .wpcf7-response-output { + border-color: #f56e28; /* Orange */ +} + +.wpcf7 form.invalid .wpcf7-response-output, +.wpcf7 form.unaccepted .wpcf7-response-output { + border-color: #ffb900; /* Yellow */ +} + +.wpcf7-form-control-wrap { + position: relative; +} + +.wpcf7-not-valid-tip { + color: #dc3232; + font-size: 1em; + font-weight: normal; + display: block; +} + +.use-floating-validation-tip .wpcf7-not-valid-tip { + position: absolute; + top: 20%; + left: 20%; + z-index: 100; + border: 1px solid #dc3232; + background: #fff; + padding: .2em .8em; +} + +span.wpcf7-list-item { + display: inline-block; + margin: 0 0 0 1em; +} + +span.wpcf7-list-item-label::before, +span.wpcf7-list-item-label::after { + content: " "; +} + +div.wpcf7 .ajax-loader { + visibility: hidden; + display: inline-block; + background-image: url('../../images/ajax-loader.gif'); + width: 16px; + height: 16px; + border: none; + padding: 0; + margin: 0 0 0 4px; + vertical-align: middle; +} + +div.wpcf7 .ajax-loader.is-active { + visibility: visible; +} + +div.wpcf7 div.ajax-error { + display: none; +} + +div.wpcf7 .placeheld { + color: #888; +} + +div.wpcf7 input[type="file"] { + cursor: pointer; +} + +div.wpcf7 input[type="file"]:disabled { + cursor: default; +} + +div.wpcf7 .wpcf7-submit:disabled { + cursor: not-allowed; +} + +.wpcf7 input[type="url"], +.wpcf7 input[type="email"], +.wpcf7 input[type="tel"] { + direction: ltr; +} diff --git a/www/.content.EZtzwPjb/html/ab2142dd197a2f83afc6141f280c485f5e71e562.00000270.html b/www/.content.EZtzwPjb/html/ab2142dd197a2f83afc6141f280c485f5e71e562.00000270.html new file mode 100644 index 0000000..fb7891b --- /dev/null +++ b/www/.content.EZtzwPjb/html/ab2142dd197a2f83afc6141f280c485f5e71e562.00000270.html @@ -0,0 +1,407 @@ + + + + + + + HugoPoi – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +

                            Je me barre de Facebook

                            Cela fait un long moment que je me dis que je vais supprimer mon compte Facebook, voilà mes raisons et pourquoi j’ai du mal a partir. Pourquoi Comme on m’a largement devancé sur pourquoi il faut se barrer à tout prix, je vous recommande la lecture des 31 raisons de Lire la suite…

                            +
                            Par HugoPoi, il y a

                            Le cloud maison

                            Voilà un petit moment que je me devais de faire cet article pour vous en dire un peu plus sur comment je gère mes données numériques au quotidien. Et après plusieurs essais et échecs, je peux enfin dire que j’ai trouvé des outils simples et maintenus pour cette quête. Même Lire la suite…

                            +
                            Par HugoPoi, il y a
                            +
                            +
                            + +
                            +
                            +
                            +
                            + +
                            +
                            + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/ab42ce384f8314a4d313844dba920a9142d43ce5.00000185.xml b/www/.content.EZtzwPjb/html/ab42ce384f8314a4d313844dba920a9142d43ce5.00000185.xml new file mode 100644 index 0000000..35f9d60 --- /dev/null +++ b/www/.content.EZtzwPjb/html/ab42ce384f8314a4d313844dba920a9142d43ce5.00000185.xml @@ -0,0 +1,17 @@ + + + Commentaires sur : Sony VPL-CX5 + + http://blog.hugopoi.net/2013/05/04/reparer-un-videoprojecteur-sony-vpl-cx5/samsung-91/ + Internet, Hardware et Bidouille + Wed, 21 Aug 2013 17:11:00 +0000 + hourly + 1 + http://wordpress.org/?v=3.6 + + diff --git a/www/.content.EZtzwPjb/html/ab43a29bb8b08d6283984ccb208366e56315ce9c.00000482.html b/www/.content.EZtzwPjb/html/ab43a29bb8b08d6283984ccb208366e56315ce9c.00000482.html new file mode 100644 index 0000000..071b52c --- /dev/null +++ b/www/.content.EZtzwPjb/html/ab43a29bb8b08d6283984ccb208366e56315ce9c.00000482.html @@ -0,0 +1,364 @@ + + + + + + + p2p – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +

                            Download-Day

                            Bon voilà, je vais officialiser ma participation au D-Day organisé par LinuxManua, en date du 1er novembre 2010. Le but de l’opération étant de télécharger 20 Go et cela uniquement sur les réseaux Peer to Peer de préférence pas anonyme : Edonkey2000, Gnutella, Bitorrent, etc. Alors comme je suis joueur, je Lire la suite…

                            +
                            +
                            + +
                            +
                            +
                            +
                            + +
                            +
                            + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/ab7029244c4856a22fa2234b1f99c11d1f4c8697.00000415.html b/www/.content.EZtzwPjb/html/ab7029244c4856a22fa2234b1f99c11d1f4c8697.00000415.html new file mode 100644 index 0000000..c09f312 --- /dev/null +++ b/www/.content.EZtzwPjb/html/ab7029244c4856a22fa2234b1f99c11d1f4c8697.00000415.html @@ -0,0 +1,364 @@ + + + + + + + gaming – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            + +
                            +
                            + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/ab73d2b66bd17a05c88960296e0b6afd3a262754.00000136.html b/www/.content.EZtzwPjb/html/ab73d2b66bd17a05c88960296e0b6afd3a262754.00000136.html new file mode 100644 index 0000000..28ab71c --- /dev/null +++ b/www/.content.EZtzwPjb/html/ab73d2b66bd17a05c88960296e0b6afd3a262754.00000136.html @@ -0,0 +1,1370 @@ + + + + + + + + Réparations Samsung SyncMaster 2232BW – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            +

                            Allô docteur on a un problème,

                            +

                            En ce dimanche calme avant la fin de mes partiels, mon écran Samsung SyncMaster 2232BW commençait à faire des siennes. Celui-ci depuis un mois ou deux clignotait de façon systématique au démarrage, au début pendant seulement quelques secondes, puis au fur et à mesure, de plus en plus jusqu’à devoir attendre 10 minutes pour que je puisse l’utiliser. Après 3 ans et 4 mois de bons et loyaux services, il voulait me quitter. J’ai tenté le support Samsung par email avec peu d’espoir car l’écran a dépassé sa garantie de 4 mois (oui oui les bâtards -> obsolescence programmée). Et donc j’ai eu le droit à un joli mail automatique me disant de contacter un numéro non surtaxé (mais avec combien de temps d’attente ?), ce que je n’ai pas fait car je n’avais pas envie de passer 30min au téléphone pour au final avoir un « On est désolé mais on ne peut rien faire pour vous car la garantie est dépassée, mais on peut envoyer votre écran en SAV pour faire un devis pour seulement 50 boules ». Concernant le support email de Samsung France, je leur donne une note de 0/20 puisque ce n’est pas un support mais une redirection vers le téléphone.

                            +

                            +

                            Symptômes

                            +

                            Clignotements de l’écran et de la LED power systématiques à chaque démarrage de l’écran. Je me suis tout de suite douté d’un problème d’alimentation et après quelques recherches sur google, confirmation du problème sur beaucoup d’écrans et téléviseurs. Dans 99% des cas ce clignotement est dû à des condensateurs défectueux qu’il faut simplement changer :-D

                            +

                            Démontage

                            +

                            Donc après avoir cerné le problème, j’ai ouvert l’écran pour chercher les condos défectueux. J’ai trouvé une petite vidéo pour mon écran :

                            +

                            +

                            Voici quelques photos en plus pour vous aider :

                            +

                            Les outils que j’ai utilisé pour le démontage

                            +

                            Position des clips

                            +

                            Carte d’alimentation dans son emplacement

                            +

                            Et voici les condensateurs qui posent problèmes. Comme vous pouvez le voir sur la photo, ils sont très facilement identifiable car ils sont bombés sur le dessus.

                            +

                            Condensateurs défectueux

                            +

                            Vous devez donc acheter des condensateurs de remplacement, par exemple sur Conrad.

                            +

                            Mes condensateurs suivant étaient endommagés:

                            +
                              +
                            • 1 de 330uF 25V remplacé par un 470uF 25V
                            • +
                            • 3 de 820uF 25V remplacé par des 1000uF 50V
                            • +
                            +

                            Pour la réparation, il vous faut un fer à souder avec une panne pas trop grosse mais d’une grosse puissance car les soudures sont très solides (j’ai galéré avec un fer pro qui monte jusqu’à 400°).

                            +

                            Tout remarche nickel après remontage, plus de clignotement pour seulement quelques euros.

                            +

                            edit du 19 aout 2014 : j’ai trouvé le service manuel de l’écran si besoin samsung_2232bw_chassis_lpe22bs_sm

                            + + +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +

                            + 41 commentaires

                            +
                            + +
                            +
                            +
                            +
                            +

                            + c'est_moi + · 30 janvier 2012 à 18 h 57 min +

                            +

                            Mille mercis et mille félicitations pour cette fiche technique si pédagogue.

                            +

                            J’espère que le partiels se passent plus que parfait !!

                            +

                            J’ai gardé l’url de la page pour réparer mon écran dans un petit mois : j’espère que la page soit toujours là ;-)

                            +

                            Merci encore.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Maxime + · 5 mai 2012 à 12 h 31 min +

                            +

                            Bonjour HugoPoi!

                            +

                            Merci pour toutes vos infos et votre topic, je voulais avoir quelques précisions sur les condos à changer pour samsung 2232bw, je veux passer commande mais j’ai un problème avec les dimensions des condos, si vous pouvez m’informer de ce que je pourrais acheter car il y a trop de références. En vous remerciant A+ Maxime

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 14 juin 2012 à 22 h 56 min +

                              +

                              N’importe quel condensateur polarisé avec des caractéristiques proches devrait marché.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + gaubjezj + · 14 juin 2012 à 22 h 32 min +

                            +

                            Merci pour le tuto qui m’a bien aidé.
                            +J’ai utilisé un fer de 40 W avec une panne fine et
                            +une pompe à dessouder et j’ai retiré les condensateurs sans problème.
                            +Merci encore (3€40 pour le dépannage).

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + DragonTribal + · 2 juillet 2012 à 12 h 02 min +

                            +

                            super merci pour manifique tuto.
                            +Est-il possible de changer les 5 condensateurs 820uF 25V par des 1000uF 50V? car moi mes 5 condensateurs sont presque HS ;-)

                            +

                            Cordialement

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 2 juillet 2012 à 12 h 25 min +

                              +

                              Oui je penses que ça marchera étant donné que c’est des valeurs plus grandes.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + FRED + · 11 juillet 2012 à 19 h 11 min +

                            +

                            Bravo, MERCI.
                            +Je n’ai encore rien fait…mais j’ai le même problème, et tu me donnes la solution.
                            +Super.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + daninpet + · 31 août 2012 à 10 h 10 min +

                            +

                            Merci mille fois!

                            +

                            J’avais ce problème, et j’ai emmener la photo des trucs a remplacer chez le réparateur du coin et voila!! Ça m’a coûté 7 Euros (mais j’habite en Thaïlande)

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + moi + · 15 novembre 2012 à 15 h 25 min +

                            +

                            super mon 2232bw vient de lâcher, les 3 + 1 condos sont gonflés j ai trouvé un 330 en 35v qui traîné sur un écran mort et j’ai commander 5 1000uf 35v sur ebay pour moins de 3 dollars, ca devrait le faire j’espere j’attend d’être livré merci! par contre j’ai qu’un gros pistolet a soudure et un gros fil d’étain, c’est pas évident mais bon ca le fait quand même =)

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + moi + · 7 décembre 2012 à 9 h 33 min +

                              +

                              parfait je vient de recevoir les condos; j ai meuler la panne du fer a souder pour la tailler en mine de crayon et j ai reussi a les souder facilement ils étaient un peu plus gros mais ca passe tout juste, mais attention ne pas prendre des plus gros! l écran fonctionne nickel maintenant.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Croco + · 19 janvier 2013 à 18 h 39 min +

                            +

                            Je souhaiterai savoir si tu as utilisé un fer à souder bien précis étant donné que la carte est une multi couche.
                            +Merci

                            + +
                            +
                            + + +
                            + +
                            +
                            +
                            +
                            +

                            + momo + · 10 juin 2013 à 13 h 15 min +

                            +

                            slut je voudrai savoir ou trouvé les condansateur a changer sur mon ecran qui clignote

                            + +
                            +
                            + + +
                            + +
                            +
                            +
                            +
                            +

                            + lokmane + · 5 juillet 2013 à 16 h 08 min +

                            +

                            merci j’avais un ecran rouge ! et c’etais la tresse qui relie mon ecran votre page m’a aider a l’ouvrir et a le reparer merci bien

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + ML + · 21 août 2013 à 19 h 11 min +

                            +

                            Merci ! Ecran réparé. Halte à l’obsolescence programmée.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + raymond + · 31 octobre 2013 à 13 h 20 min +

                            +

                            ai vu votre vidéo et les explications pour la reparation de mon écran , apparemment le méme probléme l écran passe au noir apres quelque seconde , j ai vu un le condensateur en bas a gauche gonflé , je l ai fait changé (10€) les autre condensateur étant toujour bon d après la personne qui me l a changé , mais j ai toujour le méme probléme cela peut il venir de la carte video a gauche ?

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 20 décembre 2013 à 12 h 27 min +

                              +

                              Si la led bleu du bouton power s’éteint aussi c’est un problème d’alimentation sinon c’est plus compliqué et ça peut provenir de condensateurs sur la partie vidéo. Changé tous les plus gros condensateurs sur la partie alimentation pourrait être un bon début même si ils ne paraissent pas endommagé.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + damien + · 4 novembre 2013 à 0 h 29 min +

                            +

                            bonjour,

                            +

                            j’ai des crasses coincées entres l’écran et le truc juste derrière, est ce qu’on sais les enlever en démontant la dalle ?

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 20 décembre 2013 à 12 h 28 min +

                              +

                              Je ne sais si cette partie de la dalle est démontable, je penses que c’est collé mais vous pouvez essayer.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + mac + · 1 décembre 2013 à 17 h 30 min +

                            +

                            Merci HugoPoi, avec ces excellents conseils et tuto vidéo, mon écran est reparti pour une nouvelle vie.
                            +Pour les composants, si vous êtes sur Paris ou proche. La boutique RAM électroniques est une bonne adresse, 138 bd Diderot 75012 Paris (Place de la Nation).

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Bouddhid + · 16 janvier 2014 à 19 h 21 min +

                            +

                            Merci beaucoup pour ces conseils ! J’étais à 2 doigts de jeter mon écran, le voilà comme neuf pour moins de 5€ ! Vive la bricole !

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Vincent + · 17 mai 2014 à 16 h 45 min +

                            +

                            Alors là merci.

                            +

                            Pour ce post, les photos, la vidéo, tout y est.

                            +

                            J’ai démonté l’écran assez vite, enlevé la carte, regarder quel condensateurs étaient gonflés,(il y en avaient 4), un magasin d’électronique sur lyon et une heure de démontage, soudure, remontage plus tard, voilà, c’est tout beau.
                            +Ca ne clignote plus, ça s’allume comme avant, comme neuf.

                            +

                            Et dire que j’allais jeter cet écran et claquer 350 euros pour un neuf…

                            +

                            Coût de l’opération pour 4 condensateurs, du fil d’étain 7 euros.

                            +

                            Je précise que je n’avais jamais fais de soudure sur composant électronique auparavant.
                            +Comme quoi cette opération de réparation est à la portée de tous.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Julot + · 6 juillet 2014 à 13 h 49 min +

                            +

                            Site vraiment détaillé et très claire. J’ai pu dépanner mon écran avec succès. Merci beaucoup pour ces précieuses explications.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + PaniK31 + · 29 juillet 2014 à 9 h 21 min +

                            +

                            Pas besoin d’une grosse puissance pour le fer, il faut au préalable gratter le vernis sur l’étain afin de pouvoir le faire fondre plus facilement

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + R211_IP-45130B + · 20 août 2014 à 14 h 04 min +

                            +

                            Bonjour à tous,

                            +

                            Une âme charitable peut-elle me communiquer ce qui est gravé sur la résistance CMS R211 de la carte d’alimentation/inverter IP-45130B qui équipe le SAMSUNG 2232BW ? Cette résistance a pris un coup de tournevis et je n’arrive pas à déterminer sa valeur de résistance car son marquage est effacé et comme le composant est abimé la mesure à l’ohmmètre indique l’infinie.

                            +

                            Merci par avance.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + roger + · 24 octobre 2014 à 17 h 21 min +

                            +

                            Ca refonctionne après échange de 4 condensateurs :
                            +-un 330uf25v remplacé à l’identique.
                            +-trois 820uf25v remplacés par 1000uf25v.
                            +Le tout pour quelques €. Le plus dur était le dessoudage, la tresse n’était pas très efficace contrairement à la pompe.
                            +Grand merci à HugoPoi.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Max + · 26 février 2015 à 16 h 28 min +

                            +

                            ENORME MERCI!! J’ai réparé mon écran en 20mn pour 3,50€, il était à 2 doigts de partir à la déchetterie. Ca faisait des mois qu’il clignotait, et l’allumage mettait parfois plus d’une demi heure. J’ai changé 5 condos 820uf25v et 1 330uf25v, par exactement les mêmes en neuf, et là il démarre au quart de tour! Ca fait plaisir! :)

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + rocco michelle + · 7 octobre 2015 à 10 h 16 min +

                              +

                              Bonjour je ne sais si vous verrez mon message mais je tente…je cherche quelqu’un qui accepterait de changer mes condensateurs sur mon samsung, les réparateurs me demandent 70 à 80 euros et encore ils n’ont pss envie de le faire et me disent d’acheter un nouvel écran. j’aurais bien tenter mais je n’ai pas de matériel et j’ai lu que les condo pouvaient être très dangereux s’ils avaient de la charge alors j’ai la trouille de bidouiller pq je n’y connais rien. si vous êtes de lyon acccepteriez vous de changer mes condensateurs pour 45 euros? merci de votre réponse.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + lecakeseb + · 27 juillet 2015 à 15 h 26 min +

                            +

                            Bonjour,

                            +

                            J’ai utilisé la vidéo pour démonter mon écran afin de le nettoyer de 4 bêtes d’orage infiltrés entre le premier écran (noir) et la dalle (blanche) de mon samsung SyncMaster 2232W

                            +

                            Petits conseils afin de modérer ce que j’ai pu voir dans cette vidéo :

                            +

                            0 : aspirez, nettoyez l’extérieur de l’écran avant de l’ouvrir et nettoyez la table qui vous servira d’atelier, pour éviter les poussières qui s’infiltreront forcément plus tard si vous ne le faites pas…
                            +1 : pour ouvrir, utilisez plutôt un couteau à enduire pour la première partie (le cadre). Vous n’abîmerez ainsi pas du tout l’écran. Soyez patients, ne forcez pas ! ça viendra doucement, mais ça viendra. Il m’a fallu à peine 10 minutes, sans détériorer l’écran, sans le griffer… Il est encore nickel !
                            +2 : attention à ne pas déconnecter les fils reliant le cadre à la carte. Inutile pour simplement nettoyer l’écran.
                            +3 : pour séparer les deux éléments de la dalle entre lesquels les bêtes se sont infiltrées, les doigts suffisent, pas besoin d’outils qui viendraient les endommager. La dalle blanche reste à l’horizontale, l’écran noir sera tenu à la verticale.
                            +4 : utiliser un chiffon doux ne peluchant pas pour enlever les bêtes (faites-vous aider de quelqu’un qui les enlèvera pendant que vous tenez l’écran extérieur en position verticale).
                            +5 : repositionnez la colle d’étanchéité qui aurait pu se déplacer, avant de repositionner les deux écrans.
                            +6 : commencer par refermer par le bas de l’écran (sinon les éléments de réglage situés au bas de l’écran – luminosité, contraste,…- ne se replaceront pas correctement).
                            +7 : Une fois l’écran refermé, j’ai appliqué un peu de « barrage aux insectes », avec un chiffon à l’arrière de mon écran en insistant surtout sur les bouches d’aération par lesquelles les maudites bestioles ont du s’infiltrer. En espérant ne pas avoir à ouvrir !

                            +

                            Bon courage à vous !

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Michel Jousserandot + · 20 janvier 2017 à 20 h 41 min +

                            +

                            Merci pour les conseils au démontage.
                            +J’avais un problème un peu différent :l’écran ne s’allumait plus du tout. Avec un copain beaucoup plus malin que moi, on a détecté 2 fusibles dont l’un était fichu. On l’a remplacé par un petit fil de cuivre. Et tout a remarché comme avant.
                            +Il faut surtout faire attention quand on teste la partie haute tension
                            +Michel.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Crec + · 14 juillet 2017 à 10 h 20 min +

                            +

                            Bonjour. Très bons conseils avertis. Merci beaucoup.
                            +Peut-on avoir les mêmes conseils pour un écran BX2250.
                            +Merci par avance.
                            +Crec

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 6 août 2017 à 14 h 03 min +

                              +

                              J’ai pas de BX2250 donc dans le détails non mais si c’est les même symptômes ça doit la même procédure.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Ferronnier + · 10 août 2017 à 17 h 42 min +

                            +

                            Un grand merci !
                            +J’ai changé tous les condensateurs de la partie alimentation de la carte, en déportant certains qui n’avaient pas le même format qu’à l’origine, et ça tourne nickel !

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Nours + · 1 décembre 2017 à 15 h 17 min +

                            +

                            Ca fait des années que j’ai cet article enregistré dans un coin, en nourrissant l’espoir d’avoir un jour le courage de réparer ce foutu écran… Après plus de cinq ans c’est chose faite \o/
                            +Un giga, hypra, immense merci pour ce tutoriel tellement bien expliqué et facile d’accès (je n’avais pas touché à un fer à souder depuis… Oh boy 15 ans déjà).
                            +Après une longue pause, l’écran reprend du service… Jusqu’à la prochaine panne /o/

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Alex + · 11 août 2018 à 13 h 28 min +

                            +

                            Quelqu’un sait qui pourrait me le faire svp j ai le même problème mais aucun matériel

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + David + · 5 février 2019 à 21 h 06 min +

                            +

                            Merci Hugo pour ce tuto qui m’a déjà servi en 2013 et qui va me resservir aujourd’hui car mon 2ème 2232bw commence à avoir les mêmes symptômes.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + yvan + · 23 novembre 2019 à 17 h 14 min +

                            +

                            Bonjour
                            +j’ai tenté de changer le condensateur qui avait l’air naze mais ça n’a pas marché … toujours le bouton bleu allumé, l’écran est reconnu par Windows 10 même si l’écran est éteint
                            +grâce au service manuel de l’écran fourni plus haut, j’ai vérifié les tensions jusque sur la carte de la dalle et elles sont correctes, ainsi que sur la carte elle-même, tout est ok, donc je pense que ce n’est plus un problème de condensateur
                            +pour les fusibles, ils ressemblent plutôt à des composants qu’à de simple fusibles, mais comme j’ai les bonnes tension, je ne pense pas que ça vienne de là
                            +j’ai bien peur que ce soit la dalle qui soit naze ? quelqu’un a t il des idées supplémentaires avant que je le jette avec grand regret (c’est un 2032bw, mais c’est la même chose, même si ma carte électronique est un peu différente car plus récente
                            +merci d’avance pour vos conseils

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + yvan + · 24 novembre 2019 à 17 h 26 min +

                            +

                            finalement j’ai trouvé, c’est un petit fusible vert qui ressemble à une résistance mais tout vert avec écrit 4A LF qui assure l’alimentation de la dalle.
                            +En le shuntant, mon écran a retrouvé l’image.
                            +après enquête il s’agit d’un fusible pico de 4ampères de chez little fuse, pas du tout évident à trouver
                            +Résolu !

                            + +
                            +
                            + +
                            +
                            +

                            + Reflow Dell 1546 | HugoPoi + · 22 août 2016 à 16 h 09 min +

                            +

                            […] « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable de marque Dell un 1546 pour être précis. Encore […]

                            + +
                            +
                            + +
                            +
                            +

                            + Reflow Dell Inspiron 1546 – HugoPoi + · 23 juin 2017 à 23 h 18 min +

                            +

                            […] d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un […]

                            + +
                            +
                            + +
                            +
                            +
                            +

                            Répondre à Julot Annuler la réponse

                            Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                            +
                            +
                            +

                            + +

                            +
                            +
                            +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            + + +
                            + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/ab754dc4b06569e52c890b5254d5d7cedcccfcb8.00000803.css b/www/.content.EZtzwPjb/html/ab754dc4b06569e52c890b5254d5d7cedcccfcb8.00000803.css new file mode 100644 index 0000000..68f9921 --- /dev/null +++ b/www/.content.EZtzwPjb/html/ab754dc4b06569e52c890b5254d5d7cedcccfcb8.00000803.css @@ -0,0 +1,372 @@ +/* +Theme Name:zBench +Theme URI:http://zww.me/archives/25131 +Description:It is a simple WordPress theme without any plugin needed (support plugin WP-PageNavi, WP Page Numbers, WP-PostViews, wp-utf8-excerpt, Related Posts of Simple Tags, WP-RecentComments), little images, custom-menu, widgets, threaded-comments. For WordPress version 3.0+ +Version:1.4.2 +Author:zwwooooo +Author URI:http://zww.me/ +Tags:custom-menu, threaded-comments, two-columns, fluid-layout, right-sidebar, theme-options + +License:GNU General Public License, v2 (or newer) +License URI:http://www.gnu.org/licenses/old-licenses/gpl-2.0.html + +*/ + +/* RESET */ +*{margin:0;padding:0;} +html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;vertical-align:baseline;} +/* BASIC */ +abbr[title], acronym[title]{border-bottom:thin solid;cursor:help;} +body{background:#f7f7f7;font-size:12px;font-family:Tahoma,Arial,Helvetica,sans-serif;color:#333;text-align:left;} +h1,h2,h3,h4,h5,h6{font-weight:bold;} +h1{font-size:24px;line-height:30px;} +h2{font-size:20px;line-height:26px;} +h3{font-size:16px;line-height:24px;} +h4{font-size:14px;line-height:20px;} +h5{font-size:14px;line-height:20px;} +h6{font-size:14px;line-height:20px;} +small{font-size:10px;line-height:16px;} +dl{font-size:12px;} +dt{font-weight:bold;} +a{color:#047;text-decoration:none;outline:none;} +a:hover{color:#4a630f;text-decoration:none;} +fieldset,img{border:none;} +hr{color:#ddd;background-color:#ddd;height:1px;border:0px;} +.clear{clear:both;margin:0;padding:0;} +.hidden{display:none;} + +/* radius */ +#search, +#sidebar-border,#sidebar, +.sticky, +#commentform textarea, +.page-title,.page-title h1, +#header_image,#header_image_border{-moz-border-radius:6px;-webkit-border-radius:6px;border-radius:6px;} +#rss_wrap,.rss_wrap{-moz-border-radius:18px;-webkit-border-radius:18px;border-radius:18px;} +#author,#email,#url,#submit{-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;} +#menus a, +#menus ul.menus-m li{-moz-border-radius:6px 6px 0 0;border-radius:6px 6px 0 0;-webkit-border-radius:6px 6px 0 0;} +#menus ul ul a{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;} + +/* #nav */ +#nav{z-index:5;position:relative;height:31px;padding-top:20px;clear:both;background:#454546;} +.nav-inside{position:relative;max-width:960px;height:31px;margin:0 auto;} +#menus{float:left;max-width:680px;font-size:14px;text-shadow:0 1px 0 #000;} +#menus ul{list-style:none;} +#menus ul.menus-m{display:none;} +#menus li{float:left;position:relative;margin-right:8px;} +#menus li:hover > a{background:#222;color:#fff;} +#menus li a, +#menus ul.menus-m li{border:1px solid #555;border-bottom:none;color:#abaaaa;display:block;line-height:30px;background:#333;padding:0 10px;} +#menus ul li.current_page_item > a, +#menus ul li.current-menu-ancestor > a, +#menus ul li.current-menu-item > a, +#menus ul li.current-menu-parent > a, +#menus ul.menus-m li{background:#f7f7f7;color:#333;text-shadow:0 1px 0 #fff;} +#menus ul li.current_page_item:hover > a, +#menus ul li.current-menu-ancestor:hover > a, +#menus ul li.current-menu-item:hover > a, +#menus ul li.current-menu-parent:hover > a{background:#222;color:#fff;text-shadow:0 1px 0 #000;} +#menus ul li:hover > ul{display:block;} +#menus ul ul a{background:#222;height:auto;color:#abaaaa;text-shadow:0 0 0 #222;white-space:nowrap;} +#menus ul ul{display:none;position:absolute;top:31px;left:0;float:left;z-index:99999;} +#menus ul ul li{float:none;} +#menus ul ul li.current_page_item > a, +#menus ul ul li.current-menu-ancestor > a, +#menus ul ul li.current-menu-item > a, +#menus ul ul li.current-menu-parent > a{background:#222;color:#fff;text-shadow:0 0 0 #222;} +#menus ul ul ul{left:100%;top:0;} + +/* #search */ +#search{position:absolute;overflow:hidden;right:33px;bottom:-14px;width:230px;height:26px;background:#565657;border:1px solid #999;box-shadow:2px 2px 5px #333;-moz-box-shadow:2px 2px 5px #333;-webkit-box-shadow:2px 2px 5px #333;} +#search form{padding:0;} +#search input#s{width:190px;height:14px;background:transparent;border:none;color:#ddd;padding:6px;font-size:12px;} +#search form input#searchsubmit{cursor:pointer;position:absolute;right:2px;top:0;width:30px;height:26px;padding-left:30px;background:#565657 url('images/search-input-bg.gif') no-repeat right 0;border:none;border-left:1px solid #999;text-indent:-9999px;} + +/* #header */ +#header{clear:both;overflow:hidden;z-index:1;position:relative;max-width:960px;margin:30px auto 0;} +.site_title{overflow:hidden;margin-bottom:30px;} +.st_hidden .site_title{display:none;} +.site_title h1{float:left;padding:0 0 0 10px;text-shadow:1px 1px 1px #999;font-size:28px;font-family:Georgia,"Times New Roman",Times,serif;} +.site_title h1.header_logo{width:100%;} +.site_title h1 a{color:#222;line-height:36px;} +.site_title h1.header_logo a{overflow:hidden;display:block;height:36px;text-indent:-9999px;} +.site_title h2{float:left;height:20px;overflow:hidden;line-height:18px;padding:10px 0 0 20px;color:#222;font-size:12px;font-weight:normal;text-shadow:0 1px 0 #fff;} +#header_image{max-width:952px;max-height:182px;margin-bottom:30px;padding:3px;border:1px solid #ccc;} +.st_hidden #header_image{margin-top:10px;} +#header_image_border{overflow:hidden;width:100%;height:100%;background:#565657;border:1px solid #fff;} +#header_image_border img{width:100%;height:auto;} + +/* #wrapper */ +#wrapper{clear:left;overflow:hidden;margin:0 auto;max-width:960px;} + +/* #content */ +#content,#content_ns{overflow:hidden;float:left;width:640px;padding:0;} +.LorR #content{float:right;} +#content_ns,.LorR #content_ns{float:none;width:100%;} +.page-title{margin:0 0 20px;background:#eee;border:1px solid #ccc;} +.page-title h1{font-size:18px;height:30px;line-height:30px;padding:5px 10px;border:1px solid #fff;} +.page-title-paged{font-weight:normal;color:#999;} + +/* #post */ +.post{position:relative;margin:0 0 22px;padding:0;} +.post_ns{} +.post-single{margin:0;} +.post-page{margin:0;border-bottom:1px solid #fff;} +.post-page-nocomment{border-bottom:none;} +h2.title{border-bottom:1px solid #fafafa;font-size:18px;text-shadow:0 1px 0 #fff,1px 2px 2px #aaa;padding:5px 10px;color:#345;} +h2.title a{color:#345;} +h2.title a:hover{color:#4a630f;} +.entry{font-size:13px;overflow:hidden;padding:0 10px;} +.entry ul,.entry ol{margin:0 30px 22px;} +.entry li{line-height:22px;} +.entry hr{display:block;margin:22px 0;} +.entry p{line-height:22px;margin:0 0 22px 0;} +.entry h1,.entry h2,.entry h3,.entry h4,.entry h5,.entry h6, +.comment-text h1,.comment-text h2,.comment-text h3,.comment-text h4,.comment-text h5,.comment-text h6{margin:0 0 22px 0;color:#555;} +.entry a{color:#4a630f;} +.entry a:hover{color:#333;text-decoration:underline;} +.entry img{max-width:99%;height:auto;margin:10px 0;} +.entry img.attachment-extra-featured-image{margin:0 0 22px;} +.entry img.wp-smiley{background:#fff;border:none;margin:0;padding:0;} +.entry .alignleft,.entry img.alignleft{display:inline;float:left;margin:10px 10px 10px 0;} +.entry .alignright,.entry img.alignright{display:inline;float:right;margin:10px 0 10px 10px;} +.entry .aligncenter,.entry img.aligncenter{clear:both;display:block;margin:10px auto;} +.entry table, +.comment-text table{background:#fff;border:1px solid #ccc;border-width:2px;border-collapse:collapse;margin:5px 0 10px;} +.entry th,.entry td, +.comment-text th,.comment-text td{border:1px solid #ccc;padding:3px 10px;text-align:left;vertical-align:top;} +.entry tr.even td, +.comment-text tr.even td{background:#f7f7f7;} +.entry th, +.comment-text th{background:#edeff0;} +.entry blockquote, +.comment-text blockquote{color:#555;padding:10px;margin:0 0 22px;border:1px solid #ddd;background:#eee;} +.entry code, +.comment-text code{background:#333;color:#ddd;} +.entry pre, +.comment-text pre{overflow:auto;width:95%;line-height:16px;margin:0 0 22px;padding:0 5px 16px;color:#555;font-family:"Courier New",FixedSys;font-size:12px;background:#fafafa;border:1px solid #ccc;border-left:15px solid #ccc;} +.post-info-top{border-top:1px solid #ddd;line-height:18px;height:18px;position:relative;color:#999;margin:0 0 22px;padding:2px 10px;display:block;} +.post-info-top-nocomment{height:1px;} +.post-info-bottom{border-bottom:1px solid #fff;line-height:24px;position:relative;color:#999;margin:0;padding:2px 10px;overflow:hidden;display:block;} +.post-info-top a,.post-info-bottom a{color:#999;} +.post-info-top a:hover,.post-info-bottom a:hover{color:#4a630f;text-decoration:underline;} +.entry p.read-more a,.entry p a.more-link,.post-info-date,.post-info-category,.post-info-tags,.gotocomments,.addcomment{display:block;padding-left:20px;background:url("images/icons.gif") no-repeat scroll 0 0;} +.post-info-date{float:left;background-position:0 -40px;} +.post-info-category{display:inline;background-position:-35px -60px;} +.post-info-tags{display:inline;background-position:-20px -240px;margin-left:10px;} +.gotocomments{float:right;background-position:0 -100px;margin-right:10px;} +.addcomment{float:right;background-position:0 -120px;} +.entry p.read-more a,.entry p a.more-link{display:inline-block;color:#999;text-decoration:none;background-position:0 -20px;} +.entry .zbench-more-link{display:block;margin-top:22px;} +.entry p.read-more a:hover,.entry p a.more-link:hover{color:#4a630f;} +.sticky{margin-top:12px;background:#f2f2f2;border:1px solid #ccc;} +h2.sticky-h2 a{color:#ff4e00;} +.page_link{clear:both;padding:10px 0 22px;} +.add-info{padding:0 10px;} +.add-info h3{line-height:16px;font-size:12px;color:#4a630f;margin-bottom:5px;background:#e5e5e5;} +.add-info ul{list-style:square;} + +/* #sidebar-border */ +#sidebar-border{position:relative;float:right;width:298px;margin-top:12px;background:#f2f2f2;border:1px solid #ccc;} +.LorR #sidebar-border{float:left;} +/* #rss */ +#rss_border{position:absolute;top:-12px;left:0;width:298px;height:24px;} +.rss_border{float:left;position:relative;top:0;left:50%;} +#rss_wrap{float:left;position:relative;right:50%;top:0;height:22px;border:1px solid #ccc;} +.rss_wrap{height:20px;padding:0 5px 0 10px;color:#464646;border:1px solid #fff;background-color:#f7f7f7;} +.rss_wrap a{float:left;width:20px;height:20px;line-height:20px;margin-right:5px;text-indent:-9999em;} +.rss_wrap a.rss{background:url("images/icons.gif") no-repeat -60px 0;} +.rss_wrap a.rss_text{width:auto;text-indent:20px;} +.rss_wrap a.facebook{background:url("images/icons.gif") no-repeat -20px 0;} +.rss_wrap a.twitter{background:url("images/icons.gif") no-repeat -40px 0;} +.rss_wrap a.googleplus{background:url("images/icons.gif") no-repeat 0 0;} +/* #sidebar */ +#sidebar{overflow:hidden;width:276px;border:1px solid #fff;padding:20px 10px 10px;} +#sidebar a{color:#555;text-shadow:0 1px 0 #fafafa;} +#sidebar a:hover{color:#999;} +#sidebar h3,#sidebar h2{text-shadow:0 1px 0 #f7f7f7,1px 2px 3px #999;color:#345;font-size:16px;margin:0;padding:0 5px;line-height:30px;border-bottom:1px solid #fff;} +#sidebar li{line-height:20px;} +#sidebar .widget{margin-bottom:10px;} +#sidebar .widget div{padding:8px 5px;border-top:1px solid #ddd;} +#sidebar .widget div div{padding:0;border-top:none;} +#sidebar .widget div.clear{padding:0;margin:0;border:none;} +#sidebar ul{list-style:none;padding:8px 5px;border-top:1px solid #ddd;} +#sidebar ul li{padding-left:15px;background:url("images/icons.gif") no-repeat 0 -280px;} +#sidebar ul li:hover{background:url("images/icons.gif") no-repeat -10px -260px;} +#sidebar ul ul{padding:0;border-top:none;} +#sidebar .widget select{width:260px;margin:8px 5px;padding:3px;} +/* widget */ +#sidebar .widget input#s{width:190px;height:22px;line-height:22px;padding:0 5px;} +#sidebar .widget input#searchsubmit{width:65px;} +/* WP-RecentComments */ +#sidebar ul li.rc-item,#sidebar ul li.rc-navi{background:none;padding:0;margin:3px 0;} +#sidebar ul li.rc-item div{padding:0;border:none;} +#sidebar ul li.rc-item .rc-avatar img{border:1px solid #ddd;} + +/* #comments */ +#comments-div{border-top:1px solid #ddd;position:relative;line-height:24px;height:24px;text-shadow:0 1px 0 #f7f7f7,1px 2px 1px #999;text-align:right;margin:0 0 30px;padding:2px 10px;} +h2#comments{line-height:24px;font-size:12px;font-weight:normal;width:300px;float:right;} +span#comments-addcomment{position:absolute;left:10px;top:2px;padding-left:20px;background:url("images/icons.gif") no-repeat 0 -115px;} +span#comments-addcomment a{color:#047;text-decoration:none;} +span#comments-addcomment a:hover{color:#4a630f;text-decoration:none;} + +/* comments list style */ +.commentlist li{position:relative;list-style:none;height:1%;margin:0 20px;padding-bottom:20px;} +.commentlist li.bypostauthor{} +.commentlist li .comment-author{margin:0;padding:0;line-height:16px;height:16px;border-bottom:1px solid #ddd;display:block;} +.commentlist li .pingback{height:auto;padding-bottom:10px;border-bottom:none;} +.commentlist li .vcard img.avatar{position:absolute;left:0;top:0;width:40px;height:40px;background:#fff;padding:2px;border:1px solid #ddd;} +.commentlist li .vcard cite.fn{margin-left:55px;font-style:normal;font-weight:bold;} +.commentlist li .vcard cite.zbench_pingback{margin-left:0;font-weight:normal;color:#999;} +.commentlist li .vcard cite.fn a.url{color:#047;} +.commentlist li .vcard cite.fn a.url:hover{color:#aaa;} +.commentlist li span.comment-meta{} +.commentlist li span.comment-meta a{color:#aaa;} +.commentlist li span.comment-meta a:hover{color:#555;} +.commentlist li .comment-text{border-top:1px solid #fff;margin:0 50px 10px 55px;padding-top:10px;} +.commentlist li.bypostauthor .comment-text{color:#777;} +.commentlist li em.approved{color:#f00;} +.commentlist li p{padding-bottom:10px;} +.commentlist li .reply{position:absolute;right:0;top:8px;} +.commentlist li .reply a{display:block;text-align:center;color:#aaa;padding:0 8px;background:#fafafa;border:1px solid #dfdfdf;-moz-border-radius:12px;-webkit-border-radius:12px;border-radius:12px;} +.commentlist li .reply a:hover{background:#f2f2f2;} +.commentlist li .children li{margin:0 0 0 30px;padding-bottom:0;border-bottom:none;color:#555;} +.commentlist li .children li.depth-2{margin:0 0 0 55px;} +.commentlist li .children li div{border-top:1px solid #dfdfdf;} +.commentlist li .children li div div{border-top:none;} +.commentlist li .children li .comment-author{border-top:1px solid #fff;border-bottom:none;} +.commentlist li .children li .vcard img.avatar{top:-8px;width:24px;height:24px;} +.commentlist li .children li .vcard cite.fn{margin-left:40px;} +.commentlist li .children li .comment-text{margin:0 50px 10px 40px;} +.commentlist li .children li .reply{top:-8px;} +.commentlist li .children li .reply a{background:#f2f2f2;} +.commentlist li .children li .reply a:hover{background:#fafafa;} +.commentlist .comment-text ul,.commentlist .comment-text ol{margin:0 0 15px 15px;padding:0;} +.commentlist .comment-text li{list-style-type:disc;margin:0;padding:0;line-height:16px;} +.commentlist .comment-text li li{list-style-type:circle;} +.commentlist .comment-text li li li{list-style-type:square;} +.commentlist .comment-text ol li, +.commentlist .comment-text ol ol li, +.commentlist .comment-text ol ol ol li{list-style-type:decimal;} + +/* navigation */ +#pagination,#nav-below{display:block;line-height:18px;padding:2px 10px;border-top:1px solid #ddd;} +.navigation{border-bottom:1px solid #fff;text-align:center;line-height:24px;padding:2px 10px;} +.page-numbers{margin:0 5px;} +.navigation .current{font-weight:bold;} +#nav-below{overflow:hidden;padding:20px 10px;border-top:1px solid #ddd;border-bottom:1px solid #fff;} +.nav-previous{float:left;width:49%;} +.nav-next{float:right;width:49%;text-align:right;} + +/* #respond */ +#respond{margin:0 0 20px 0;padding:20px 55px 0;border-top:1px solid #ddd;} +#respond small{font-size:12px;} +#respond h2,#respond h3{text-shadow:0 1px 0 #f7f7f7,1px 2px 3px #111;font-family:Georgia,"Times New Roman",Times,serif;margin-bottom:10px;} +#respond a#cancel-comment-reply-link{color:#920017;text-shadow:none;} +#respond a#cancel-comment-reply-link:hover{color:#ff4e00;} +#commentform{margin:0;padding:0;} +#commentform p{margin:0 0 10px;padding:0;} +#commentform p.smilies{margin:0 0 3px;padding:0 3px;} +#commentform p.comment-notes{margin:10px 0;color:#999;} +#commentform textarea{padding:3px;background:#fff;border:1px solid #ddd;} +#commentform .comment-form-comment label{display:none;} +#author,#email,#url{max-width:220px;width:70%;height:16px;margin-right:5px;padding:3px;border:1px solid #ddd;background:#fff;} +#comment{width:99%;height:125px;} +#submit{cursor:pointer;padding:5px 20px;background:#222;border:1px solid #555;font-weight:bold;font-size:14px;color:#ccc;letter-spacing:3px;} +#submit:hover{color:#fff;} +#respond code{color:#464646;background:none;} + +/* trackbacks-pingbacks */ +.trackbacks-pingbacks h3{font-weight:bold;margin-bottom:10px;border-bottom:1px solid #ddd;color:#555;padding:3px 0;} +.trackbacks-pingbacks ul{margin:5px 20px 15px;list-style-type:circle;} +.trackbacks-pingbacks ul li{margin-bottom:4px;} + +/* #footer */ +#footer{overflow:hidden;margin:20px auto 0;padding:0 0 20px;background:#454546;} +#footer-inside{position:relative;width:640px;margin:0 auto;padding:5px 320px 5px 0;color:#aaa;} +#footer-inside a{border-bottom:1px dashed #aaa;color:#aaa;} +#footer-inside #back-to-top{position:absolute;top:5px;right:150px;line-height:20px;color:#fafafa;font-weight:bold;} +#footer-inside #back-to-top a{line-height:20px;color:#aaa;font-weight:normal;border:none;} +#footer-inside #back-to-top a:hover{color:#f7f7f7;} + +/* Other */ +.aligncenter,div.aligncenter{display:block;margin:auto;} +.alignleft{float:left;} +.alignright{float:right;} +.wp-caption{max-width:620px;text-align:center;margin-top:10px;margin-bottom:10px;padding:4px;border-radius:3px;background:#fff;border:1px solid #ddd;} +.wp-caption img{margin:0;padding:0;background:none;} +.wp-caption p.wp-caption-text{font-size:12px;line-height:20px;padding:4px 0 0;margin:0;} +/* calendar START */ +.widget_calendar h3{display:none;} +#wp-calendar{width:100%;} +#wp-calendar #today{background:#e6e6e6;} +#wp-calendar tbody a{font-weight:bolder;} +#wp-calendar caption{font-family:Arial;font-weight:bolder;letter-spacing:-0.05em;font-size:150%;text-align:left;padding-bottom:5px;} +#wp-calendar th,#wp-calendar td{text-align:center;} +#wp-calendar tbody td{border:1px solid #ccc;} +#wp-calendar tbody td.pad{border:0 none;} +#wp-calendar th{background:#999;color:#fff;} +#wp-calendar td#prev{text-align:left;padding-top:5px;} +#wp-calendar td#next{text-align:right;padding-top:5px;} +/* .gallery-caption */ +#content .gallery .gallery-caption{color:#888;font-size:12px;margin:0 0 12px;} + +/* for Mobile: since 1.3.8 */ +@media screen and (max-width:1000px) { + #nav{padding-top:10px;} + #menus{position:relative;padding:0 10px 0 25px;} + #menus ul.menus-m{display:block;} + #menus ul.menus-dt{overflow:hidden;display:none;z-index:9999;position:absolute;left:25px;top:31px;min-width:200px;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;} + #menus ul.toggled-on{display:block;} + #menus li{width:240px;margin:0;background:#333;} + #menus ul.menus-m li{width:auto;cursor:pointer;} + #menus ul.b-toggled-on li{background:#333;color:#fff;font-weight:700;text-shadow:0 1px 0 #000;} + #menus li:first-child{} + #menus li a{line-height:20px;padding:8px 10px;margin:0;border:none;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} + #menus ul li:hover > a, + #menus ul li.current_page_item > a, + #menus ul li.current-menu-ancestor > a, + #menus ul li.current-menu-item > a, + #menus ul li.current-menu-parent > a{background:transparent!important;color:#eee;text-shadow:none;} + #menus ul ul{position:static;display:block;} + #menus ul ul li, #menus ul ul ul li{width:220px;margin-left:19px;background:#333;border-left:1px solid #555;} + #menus ul ul a{white-space:normal;} + #menus ul ul a, #menus ul ul ul a{background:#333;} + #menus ul ul li:hover > a, + #menus ul ul li.current_page_item:hover > a, + #menus ul ul li.current-menu-ancestor:hover > a, + #menus ul ul li.current-menu-item:hover > a, + #menus ul ul li.current-menu-parent:hover > a{background:transparent;} + #menus ul ul ul li{width:200px;} + #menus ul ul ul a{width:180px;} + #menus ul ul ul li:hover > ul{display:none;} + #menus ul ul ul ul{display:none;} + + /* simulate click + #menus:active .menus-dt{display:block;} + #menus .menus-dt:hover{display:block;} */ + + #search{bottom:0;right:25px;width:180px;-webkit-box-shadow:0 0 0 #333;-moz-box-shadow:0 0 0 #333;box-shadow:0 0 0 #333;-webkit-border-radius:6px 6px 0 0;-moz-border-radius:6px 6px 0 0;border-radius:6px 6px 0 0;border-bottom:none;} + #search input#s{width:140px;} + + #header{padding:0 15px;} + .st_hidden #header_image{margin-top:0;} + + #wrapper{margin:0 15px;} + #content, + .LorR #content, + #sidebar-border, + .LorR #sidebar-border{float:none;clear:left;width:auto;} + #sidebar-border, + .LorR #sidebar-border{margin-top:20px;} + #sidebar{width:auto;} + #sidebar .widget{width:276px;float:left;} + .commentlist li{margin: 0;} + .commentlist li .children li #respond{padding:20px 40px 0;} + #footer-inside{position:static;max-width:640px;padding:5px 15px 5px;} + #footer-inside #back-to-top{position:fixed;top:auto;bottom:10px;right:10px;padding:5px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;background:#666;} +} +@media screen and (max-width:400px) { + .entry pre{width:85%;} +} diff --git a/www/.content.EZtzwPjb/html/ac00b08fa0a3b541ad8db30c8c8360d131468ac2.00000542.xml b/www/.content.EZtzwPjb/html/ac00b08fa0a3b541ad8db30c8c8360d131468ac2.00000542.xml new file mode 100644 index 0000000..804f345 --- /dev/null +++ b/www/.content.EZtzwPjb/html/ac00b08fa0a3b541ad8db30c8c8360d131468ac2.00000542.xml @@ -0,0 +1,65 @@ + + + + HugoPoi » U36JC + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Sat, 14 Sep 2013 23:01:40 +0000 + fr-FR + hourly + 1 + http://wordpress.org/?v=3.6 + + Asus U36 et OCZ Vertex 3 la suite + http://blog.hugopoi.net/2012/03/30/asus-u36-et-ocz-vertex-3-la-suite/ + http://blog.hugopoi.net/2012/03/30/asus-u36-et-ocz-vertex-3-la-suite/#comments + Fri, 30 Mar 2012 10:29:27 +0000 + HugoPoi + + + + + + + + + + + + + + + http://blog.hugopoi.net/?p=635 + Lire la suite »

                            ]]>
                            + http://blog.hugopoi.net/2012/03/30/asus-u36-et-ocz-vertex-3-la-suite/feed/ + 1 +
                            + + Démontage Asus U36 + http://blog.hugopoi.net/2011/07/30/demontage-asus-u36/ + http://blog.hugopoi.net/2011/07/30/demontage-asus-u36/#comments + Sat, 30 Jul 2011 13:19:08 +0000 + HugoPoi + + + + + + + + + http://blog.hugopoi.net/?p=495 + SSD MontéJ’ai acheté un petit SSD pour mettre dans mon U36 acheté il y a quelques mois, je n’ai pas trouvé de procédure de démontage sur Internet donc voici les photos de mon démontage. 1) Commencer par enlever toutes les vis …

                            Lire la suite »

                            ]]>
                            + http://blog.hugopoi.net/2011/07/30/demontage-asus-u36/feed/ + 17 +
                            +
                            +
                            diff --git a/www/.content.EZtzwPjb/html/ac3bbf932e6a4719cecd4555e666c2ade903e6f5.00000085.html b/www/.content.EZtzwPjb/html/ac3bbf932e6a4719cecd4555e666c2ade903e6f5.00000085.html new file mode 100644 index 0000000..1bbda8e --- /dev/null +++ b/www/.content.EZtzwPjb/html/ac3bbf932e6a4719cecd4555e666c2ade903e6f5.00000085.html @@ -0,0 +1,497 @@ + + + + + + Démontage Asus U36 | HugoPoi + + + + + + + + + + + + + + + + + +
                            + +
                            +
                            +

                            Démontage Asus U36

                            + +
                            +
                            + +

                            J’ai acheté un petit SSD pour mettre dans mon U36 acheté il y a quelques mois, je n’ai pas trouvé de procédure de démontage sur Internet donc voici les photos de mon démontage.

                            +

                            1) Commencer par enlever toutes les vis et la trappe pour accéder à la RAM, puis déconnecter les deux connecteurs clavier et touchpad qui se situent juste à coté de la carte wifi.

                            +

                            2) Retourner le pc et à l’aide d’un petit tournevis plat, dé-clipser les petits clips sur tout le tour du pc. Vous pouvez maintenant enlever toute la partie supérieur.

                            +

                            +

                            3) Démontage Terminé :D

                            +

                            4) Galerie

                            + + +
                            +
                            +
                            + + +
                            + + +
                              +
                            1. +
                              + +
                              +

                              Salut Hugo,

                              +

                              Comment as tu fait pour déconnecter les deux connecteurs clavier et touchpad qui se situent juste à coté de la carte wifi ?

                              +

                              Merci d’avance,
                              +John

                              +
                              + +
                              +
                                +
                              • +
                                + +
                                +

                                Désolé pour l’attente,

                                +

                                Il faut prendre un petit tournevis plat et relever les petites languettes au dessus des nappes de façon à la mettre à 90° par rapport à la carte mère.

                                +
                                + +
                                +
                              • +
                              +
                            2. +
                            3. +
                              +
                              + leboulanger + +
                              +
                              +

                              bonjour,
                              +super ton tuto ! j’ai la m idée que toi à savoir mettre un ssd mais est ce que tu sais si çest du SATA 1 ou 2 ? concernant les connecteurs je ne l’ai situe pas du tout. est ce que tu pourrais ajoutait une photo stp ?
                              +merci en ts cas pour la contribution

                              +
                              + +
                              +
                                +
                              • +
                                + +
                                +

                                Salut,
                                +Pour le mode SATA c’est du 2. Après j’ai pas d’autre photo mais le connecteur il est situé juste au bout du disque sur la gauche.

                                +
                                + +
                                +
                              • +
                              +
                            4. +
                            5. +
                              +
                              + Asus U36 et OCZ Vertex 3 la suite | HugoPoi - pingback on 15 mai 2012 at 3 h 39 min +
                              +
                              +
                            6. +
                            7. +
                              + +
                              +

                              J’ai aussi démonté le mien pour mettre un ssd et il n’a plus jamais redémarré (même avec le disque dur initial) …
                              +Un conseil, soyez très prudents !

                              +
                              + +
                              + +
                            8. +
                            9. +
                              + +
                              +

                              Emiso tu es un boulet

                              +
                              + +
                              + +
                            10. +
                            11. +
                              + +
                              +

                              Mon U36 avec un SSD Crucial M4 et une carte Intel Centrino n-6230 à la place de la n-100… que du bonheur.

                              +

                              Merci pour le tuto bien utile.

                              +
                              + +
                              +
                            12. +
                            13. +
                              + +
                              +

                              merci pour ce tuto; a noter un truc pour ne pas perdre les vis et savoir où les replacer:

                              +

                              http://fr.slideshare.net/stepmond/remplacement-ecran-sony-vaio?ref=http://www.pcsoleil.fr/ecran-pc-portable-sony-vaio-casse/

                              +

                              3eme diapo

                              +
                              + +
                              +
                            14. +
                            15. +
                              + +
                              +

                              Can you send me a close up picture of both sides of the U36JC I/O board? It would be nice if you could give me also the resistor/capacitor values. I need to connect my SATA hard drive, but the board itself is very expensive. Do you think I can solder the SATA wires to a cable and plug that to the hard drive?

                              +
                              + +
                              +
                                +
                              • +
                                + +
                                +

                                I don’t want to reopen my laptop just for take picture. I don’t know if there are any out pins to solder a SATA connector but in Intel driver menu on Windows a port with no-connection appear.

                                +
                                + +
                                +
                              • +
                              +
                            16. +
                            17. +
                              + +
                              +

                              Hello , j’ai également cet Asus et comme tout le monde je pense, bien tenté de remplacer le disque dur de base par un ssd ^^.
                              + Sur la première image de ton petit tuto, tu sembles montrer des emplacements vis sous les antidérapants.. ca me semble étrange ;p. Je voulais savoir si ceux si ne risquaient pas de s’abîmer (et du coup s’ils se remettaient également facilement).
                              + Si tu passe par là, merci de la réponse!

                              +
                              + +
                              +
                                +
                              • +
                                + +
                                +

                                J’ai pu décoller et recoller sans problème les patins antidérapants. Mais à la rigueur prévoir du double-face pour remplacement.

                                +
                                + +
                                +
                              • +
                              +
                            18. +
                            19. +
                              + +
                              +

                              Oh my goodness! Incredible article dude! Thank
                              +you so much, However I am going through issues with your RSS.
                              +I don’t know why I am unable to subscribe to it. Is there anyone else getting the same RSS problems? Anybody who knows the answer will you kindly respond? Thanks!!

                              +
                              + +
                              + +
                            20. +
                            + +
                            +

                            Répondre à stepmond ¬
                            Annuler la réponse

                            +
                            +

                            + +

                            +

                            NOTE - Vous pouvez utiliser les éléments et attributs HTML tags and attributes:
                            <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

                            + + + +

                            +

                            +
                            +
                            +

                            Trackbacks and Pingbacks:

                            + +
                            +
                            +
                            +
                            + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/ac833db115159e862a4de4c6ffc1aadccd7328c0.00000708.css b/www/.content.EZtzwPjb/html/ac833db115159e862a4de4c6ffc1aadccd7328c0.00000708.css new file mode 100644 index 0000000..20df2bb --- /dev/null +++ b/www/.content.EZtzwPjb/html/ac833db115159e862a4de4c6ffc1aadccd7328c0.00000708.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7 .screen-reader-response{position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);height:1px;width:1px;margin:0;padding:0;border:0}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{color:#f00;font-size:1em;display:block}.use-floating-validation-tip span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;border:1px +solid #f00;background:#fff;padding: .2em .8em}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/ac9d8fb48821c4c8643e5cc596a03193b65fafbb.00000107.html b/www/.content.EZtzwPjb/html/ac9d8fb48821c4c8643e5cc596a03193b65fafbb.00000107.html new file mode 100644 index 0000000..58d826b --- /dev/null +++ b/www/.content.EZtzwPjb/html/ac9d8fb48821c4c8643e5cc596a03193b65fafbb.00000107.html @@ -0,0 +1,1370 @@ + + + + + + + + Réparations Samsung SyncMaster 2232BW – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            +

                            Allô docteur on a un problème,

                            +

                            En ce dimanche calme avant la fin de mes partiels, mon écran Samsung SyncMaster 2232BW commençait à faire des siennes. Celui-ci depuis un mois ou deux clignotait de façon systématique au démarrage, au début pendant seulement quelques secondes, puis au fur et à mesure, de plus en plus jusqu’à devoir attendre 10 minutes pour que je puisse l’utiliser. Après 3 ans et 4 mois de bons et loyaux services, il voulait me quitter. J’ai tenté le support Samsung par email avec peu d’espoir car l’écran a dépassé sa garantie de 4 mois (oui oui les bâtards -> obsolescence programmée). Et donc j’ai eu le droit à un joli mail automatique me disant de contacter un numéro non surtaxé (mais avec combien de temps d’attente ?), ce que je n’ai pas fait car je n’avais pas envie de passer 30min au téléphone pour au final avoir un « On est désolé mais on ne peut rien faire pour vous car la garantie est dépassée, mais on peut envoyer votre écran en SAV pour faire un devis pour seulement 50 boules ». Concernant le support email de Samsung France, je leur donne une note de 0/20 puisque ce n’est pas un support mais une redirection vers le téléphone.

                            +

                            +

                            Symptômes

                            +

                            Clignotements de l’écran et de la LED power systématiques à chaque démarrage de l’écran. Je me suis tout de suite douté d’un problème d’alimentation et après quelques recherches sur google, confirmation du problème sur beaucoup d’écrans et téléviseurs. Dans 99% des cas ce clignotement est dû à des condensateurs défectueux qu’il faut simplement changer :-D

                            +

                            Démontage

                            +

                            Donc après avoir cerné le problème, j’ai ouvert l’écran pour chercher les condos défectueux. J’ai trouvé une petite vidéo pour mon écran :

                            +

                            +

                            Voici quelques photos en plus pour vous aider :

                            +

                            Les outils que j’ai utilisé pour le démontage

                            +

                            Position des clips

                            +

                            Carte d’alimentation dans son emplacement

                            +

                            Et voici les condensateurs qui posent problèmes. Comme vous pouvez le voir sur la photo, ils sont très facilement identifiable car ils sont bombés sur le dessus.

                            +

                            Condensateurs défectueux

                            +

                            Vous devez donc acheter des condensateurs de remplacement, par exemple sur Conrad.

                            +

                            Mes condensateurs suivant étaient endommagés:

                            +
                              +
                            • 1 de 330uF 25V remplacé par un 470uF 25V
                            • +
                            • 3 de 820uF 25V remplacé par des 1000uF 50V
                            • +
                            +

                            Pour la réparation, il vous faut un fer à souder avec une panne pas trop grosse mais d’une grosse puissance car les soudures sont très solides (j’ai galéré avec un fer pro qui monte jusqu’à 400°).

                            +

                            Tout remarche nickel après remontage, plus de clignotement pour seulement quelques euros.

                            +

                            edit du 19 aout 2014 : j’ai trouvé le service manuel de l’écran si besoin samsung_2232bw_chassis_lpe22bs_sm

                            + + +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +

                            + 41 commentaires

                            +
                            + +
                            +
                            +
                            +
                            +

                            + c'est_moi + · 30 janvier 2012 à 18 h 57 min +

                            +

                            Mille mercis et mille félicitations pour cette fiche technique si pédagogue.

                            +

                            J’espère que le partiels se passent plus que parfait !!

                            +

                            J’ai gardé l’url de la page pour réparer mon écran dans un petit mois : j’espère que la page soit toujours là ;-)

                            +

                            Merci encore.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Maxime + · 5 mai 2012 à 12 h 31 min +

                            +

                            Bonjour HugoPoi!

                            +

                            Merci pour toutes vos infos et votre topic, je voulais avoir quelques précisions sur les condos à changer pour samsung 2232bw, je veux passer commande mais j’ai un problème avec les dimensions des condos, si vous pouvez m’informer de ce que je pourrais acheter car il y a trop de références. En vous remerciant A+ Maxime

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 14 juin 2012 à 22 h 56 min +

                              +

                              N’importe quel condensateur polarisé avec des caractéristiques proches devrait marché.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + gaubjezj + · 14 juin 2012 à 22 h 32 min +

                            +

                            Merci pour le tuto qui m’a bien aidé.
                            +J’ai utilisé un fer de 40 W avec une panne fine et
                            +une pompe à dessouder et j’ai retiré les condensateurs sans problème.
                            +Merci encore (3€40 pour le dépannage).

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + DragonTribal + · 2 juillet 2012 à 12 h 02 min +

                            +

                            super merci pour manifique tuto.
                            +Est-il possible de changer les 5 condensateurs 820uF 25V par des 1000uF 50V? car moi mes 5 condensateurs sont presque HS ;-)

                            +

                            Cordialement

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 2 juillet 2012 à 12 h 25 min +

                              +

                              Oui je penses que ça marchera étant donné que c’est des valeurs plus grandes.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + FRED + · 11 juillet 2012 à 19 h 11 min +

                            +

                            Bravo, MERCI.
                            +Je n’ai encore rien fait…mais j’ai le même problème, et tu me donnes la solution.
                            +Super.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + daninpet + · 31 août 2012 à 10 h 10 min +

                            +

                            Merci mille fois!

                            +

                            J’avais ce problème, et j’ai emmener la photo des trucs a remplacer chez le réparateur du coin et voila!! Ça m’a coûté 7 Euros (mais j’habite en Thaïlande)

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + moi + · 15 novembre 2012 à 15 h 25 min +

                            +

                            super mon 2232bw vient de lâcher, les 3 + 1 condos sont gonflés j ai trouvé un 330 en 35v qui traîné sur un écran mort et j’ai commander 5 1000uf 35v sur ebay pour moins de 3 dollars, ca devrait le faire j’espere j’attend d’être livré merci! par contre j’ai qu’un gros pistolet a soudure et un gros fil d’étain, c’est pas évident mais bon ca le fait quand même =)

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + moi + · 7 décembre 2012 à 9 h 33 min +

                              +

                              parfait je vient de recevoir les condos; j ai meuler la panne du fer a souder pour la tailler en mine de crayon et j ai reussi a les souder facilement ils étaient un peu plus gros mais ca passe tout juste, mais attention ne pas prendre des plus gros! l écran fonctionne nickel maintenant.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Croco + · 19 janvier 2013 à 18 h 39 min +

                            +

                            Je souhaiterai savoir si tu as utilisé un fer à souder bien précis étant donné que la carte est une multi couche.
                            +Merci

                            + +
                            +
                            + + +
                            + +
                            +
                            +
                            +
                            +

                            + momo + · 10 juin 2013 à 13 h 15 min +

                            +

                            slut je voudrai savoir ou trouvé les condansateur a changer sur mon ecran qui clignote

                            + +
                            +
                            + + +
                            + +
                            +
                            +
                            +
                            +

                            + lokmane + · 5 juillet 2013 à 16 h 08 min +

                            +

                            merci j’avais un ecran rouge ! et c’etais la tresse qui relie mon ecran votre page m’a aider a l’ouvrir et a le reparer merci bien

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + ML + · 21 août 2013 à 19 h 11 min +

                            +

                            Merci ! Ecran réparé. Halte à l’obsolescence programmée.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + raymond + · 31 octobre 2013 à 13 h 20 min +

                            +

                            ai vu votre vidéo et les explications pour la reparation de mon écran , apparemment le méme probléme l écran passe au noir apres quelque seconde , j ai vu un le condensateur en bas a gauche gonflé , je l ai fait changé (10€) les autre condensateur étant toujour bon d après la personne qui me l a changé , mais j ai toujour le méme probléme cela peut il venir de la carte video a gauche ?

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 20 décembre 2013 à 12 h 27 min +

                              +

                              Si la led bleu du bouton power s’éteint aussi c’est un problème d’alimentation sinon c’est plus compliqué et ça peut provenir de condensateurs sur la partie vidéo. Changé tous les plus gros condensateurs sur la partie alimentation pourrait être un bon début même si ils ne paraissent pas endommagé.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + damien + · 4 novembre 2013 à 0 h 29 min +

                            +

                            bonjour,

                            +

                            j’ai des crasses coincées entres l’écran et le truc juste derrière, est ce qu’on sais les enlever en démontant la dalle ?

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 20 décembre 2013 à 12 h 28 min +

                              +

                              Je ne sais si cette partie de la dalle est démontable, je penses que c’est collé mais vous pouvez essayer.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + mac + · 1 décembre 2013 à 17 h 30 min +

                            +

                            Merci HugoPoi, avec ces excellents conseils et tuto vidéo, mon écran est reparti pour une nouvelle vie.
                            +Pour les composants, si vous êtes sur Paris ou proche. La boutique RAM électroniques est une bonne adresse, 138 bd Diderot 75012 Paris (Place de la Nation).

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Bouddhid + · 16 janvier 2014 à 19 h 21 min +

                            +

                            Merci beaucoup pour ces conseils ! J’étais à 2 doigts de jeter mon écran, le voilà comme neuf pour moins de 5€ ! Vive la bricole !

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Vincent + · 17 mai 2014 à 16 h 45 min +

                            +

                            Alors là merci.

                            +

                            Pour ce post, les photos, la vidéo, tout y est.

                            +

                            J’ai démonté l’écran assez vite, enlevé la carte, regarder quel condensateurs étaient gonflés,(il y en avaient 4), un magasin d’électronique sur lyon et une heure de démontage, soudure, remontage plus tard, voilà, c’est tout beau.
                            +Ca ne clignote plus, ça s’allume comme avant, comme neuf.

                            +

                            Et dire que j’allais jeter cet écran et claquer 350 euros pour un neuf…

                            +

                            Coût de l’opération pour 4 condensateurs, du fil d’étain 7 euros.

                            +

                            Je précise que je n’avais jamais fais de soudure sur composant électronique auparavant.
                            +Comme quoi cette opération de réparation est à la portée de tous.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Julot + · 6 juillet 2014 à 13 h 49 min +

                            +

                            Site vraiment détaillé et très claire. J’ai pu dépanner mon écran avec succès. Merci beaucoup pour ces précieuses explications.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + PaniK31 + · 29 juillet 2014 à 9 h 21 min +

                            +

                            Pas besoin d’une grosse puissance pour le fer, il faut au préalable gratter le vernis sur l’étain afin de pouvoir le faire fondre plus facilement

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + R211_IP-45130B + · 20 août 2014 à 14 h 04 min +

                            +

                            Bonjour à tous,

                            +

                            Une âme charitable peut-elle me communiquer ce qui est gravé sur la résistance CMS R211 de la carte d’alimentation/inverter IP-45130B qui équipe le SAMSUNG 2232BW ? Cette résistance a pris un coup de tournevis et je n’arrive pas à déterminer sa valeur de résistance car son marquage est effacé et comme le composant est abimé la mesure à l’ohmmètre indique l’infinie.

                            +

                            Merci par avance.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + roger + · 24 octobre 2014 à 17 h 21 min +

                            +

                            Ca refonctionne après échange de 4 condensateurs :
                            +-un 330uf25v remplacé à l’identique.
                            +-trois 820uf25v remplacés par 1000uf25v.
                            +Le tout pour quelques €. Le plus dur était le dessoudage, la tresse n’était pas très efficace contrairement à la pompe.
                            +Grand merci à HugoPoi.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Max + · 26 février 2015 à 16 h 28 min +

                            +

                            ENORME MERCI!! J’ai réparé mon écran en 20mn pour 3,50€, il était à 2 doigts de partir à la déchetterie. Ca faisait des mois qu’il clignotait, et l’allumage mettait parfois plus d’une demi heure. J’ai changé 5 condos 820uf25v et 1 330uf25v, par exactement les mêmes en neuf, et là il démarre au quart de tour! Ca fait plaisir! :)

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + rocco michelle + · 7 octobre 2015 à 10 h 16 min +

                              +

                              Bonjour je ne sais si vous verrez mon message mais je tente…je cherche quelqu’un qui accepterait de changer mes condensateurs sur mon samsung, les réparateurs me demandent 70 à 80 euros et encore ils n’ont pss envie de le faire et me disent d’acheter un nouvel écran. j’aurais bien tenter mais je n’ai pas de matériel et j’ai lu que les condo pouvaient être très dangereux s’ils avaient de la charge alors j’ai la trouille de bidouiller pq je n’y connais rien. si vous êtes de lyon acccepteriez vous de changer mes condensateurs pour 45 euros? merci de votre réponse.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + lecakeseb + · 27 juillet 2015 à 15 h 26 min +

                            +

                            Bonjour,

                            +

                            J’ai utilisé la vidéo pour démonter mon écran afin de le nettoyer de 4 bêtes d’orage infiltrés entre le premier écran (noir) et la dalle (blanche) de mon samsung SyncMaster 2232W

                            +

                            Petits conseils afin de modérer ce que j’ai pu voir dans cette vidéo :

                            +

                            0 : aspirez, nettoyez l’extérieur de l’écran avant de l’ouvrir et nettoyez la table qui vous servira d’atelier, pour éviter les poussières qui s’infiltreront forcément plus tard si vous ne le faites pas…
                            +1 : pour ouvrir, utilisez plutôt un couteau à enduire pour la première partie (le cadre). Vous n’abîmerez ainsi pas du tout l’écran. Soyez patients, ne forcez pas ! ça viendra doucement, mais ça viendra. Il m’a fallu à peine 10 minutes, sans détériorer l’écran, sans le griffer… Il est encore nickel !
                            +2 : attention à ne pas déconnecter les fils reliant le cadre à la carte. Inutile pour simplement nettoyer l’écran.
                            +3 : pour séparer les deux éléments de la dalle entre lesquels les bêtes se sont infiltrées, les doigts suffisent, pas besoin d’outils qui viendraient les endommager. La dalle blanche reste à l’horizontale, l’écran noir sera tenu à la verticale.
                            +4 : utiliser un chiffon doux ne peluchant pas pour enlever les bêtes (faites-vous aider de quelqu’un qui les enlèvera pendant que vous tenez l’écran extérieur en position verticale).
                            +5 : repositionnez la colle d’étanchéité qui aurait pu se déplacer, avant de repositionner les deux écrans.
                            +6 : commencer par refermer par le bas de l’écran (sinon les éléments de réglage situés au bas de l’écran – luminosité, contraste,…- ne se replaceront pas correctement).
                            +7 : Une fois l’écran refermé, j’ai appliqué un peu de « barrage aux insectes », avec un chiffon à l’arrière de mon écran en insistant surtout sur les bouches d’aération par lesquelles les maudites bestioles ont du s’infiltrer. En espérant ne pas avoir à ouvrir !

                            +

                            Bon courage à vous !

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Michel Jousserandot + · 20 janvier 2017 à 20 h 41 min +

                            +

                            Merci pour les conseils au démontage.
                            +J’avais un problème un peu différent :l’écran ne s’allumait plus du tout. Avec un copain beaucoup plus malin que moi, on a détecté 2 fusibles dont l’un était fichu. On l’a remplacé par un petit fil de cuivre. Et tout a remarché comme avant.
                            +Il faut surtout faire attention quand on teste la partie haute tension
                            +Michel.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Crec + · 14 juillet 2017 à 10 h 20 min +

                            +

                            Bonjour. Très bons conseils avertis. Merci beaucoup.
                            +Peut-on avoir les mêmes conseils pour un écran BX2250.
                            +Merci par avance.
                            +Crec

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 6 août 2017 à 14 h 03 min +

                              +

                              J’ai pas de BX2250 donc dans le détails non mais si c’est les même symptômes ça doit la même procédure.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Ferronnier + · 10 août 2017 à 17 h 42 min +

                            +

                            Un grand merci !
                            +J’ai changé tous les condensateurs de la partie alimentation de la carte, en déportant certains qui n’avaient pas le même format qu’à l’origine, et ça tourne nickel !

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Nours + · 1 décembre 2017 à 15 h 17 min +

                            +

                            Ca fait des années que j’ai cet article enregistré dans un coin, en nourrissant l’espoir d’avoir un jour le courage de réparer ce foutu écran… Après plus de cinq ans c’est chose faite \o/
                            +Un giga, hypra, immense merci pour ce tutoriel tellement bien expliqué et facile d’accès (je n’avais pas touché à un fer à souder depuis… Oh boy 15 ans déjà).
                            +Après une longue pause, l’écran reprend du service… Jusqu’à la prochaine panne /o/

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Alex + · 11 août 2018 à 13 h 28 min +

                            +

                            Quelqu’un sait qui pourrait me le faire svp j ai le même problème mais aucun matériel

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + David + · 5 février 2019 à 21 h 06 min +

                            +

                            Merci Hugo pour ce tuto qui m’a déjà servi en 2013 et qui va me resservir aujourd’hui car mon 2ème 2232bw commence à avoir les mêmes symptômes.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + yvan + · 23 novembre 2019 à 17 h 14 min +

                            +

                            Bonjour
                            +j’ai tenté de changer le condensateur qui avait l’air naze mais ça n’a pas marché … toujours le bouton bleu allumé, l’écran est reconnu par Windows 10 même si l’écran est éteint
                            +grâce au service manuel de l’écran fourni plus haut, j’ai vérifié les tensions jusque sur la carte de la dalle et elles sont correctes, ainsi que sur la carte elle-même, tout est ok, donc je pense que ce n’est plus un problème de condensateur
                            +pour les fusibles, ils ressemblent plutôt à des composants qu’à de simple fusibles, mais comme j’ai les bonnes tension, je ne pense pas que ça vienne de là
                            +j’ai bien peur que ce soit la dalle qui soit naze ? quelqu’un a t il des idées supplémentaires avant que je le jette avec grand regret (c’est un 2032bw, mais c’est la même chose, même si ma carte électronique est un peu différente car plus récente
                            +merci d’avance pour vos conseils

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + yvan + · 24 novembre 2019 à 17 h 26 min +

                            +

                            finalement j’ai trouvé, c’est un petit fusible vert qui ressemble à une résistance mais tout vert avec écrit 4A LF qui assure l’alimentation de la dalle.
                            +En le shuntant, mon écran a retrouvé l’image.
                            +après enquête il s’agit d’un fusible pico de 4ampères de chez little fuse, pas du tout évident à trouver
                            +Résolu !

                            + +
                            +
                            + +
                            +
                            +

                            + Reflow Dell 1546 | HugoPoi + · 22 août 2016 à 16 h 09 min +

                            +

                            […] « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable de marque Dell un 1546 pour être précis. Encore […]

                            + +
                            +
                            + +
                            +
                            +

                            + Reflow Dell Inspiron 1546 – HugoPoi + · 23 juin 2017 à 23 h 18 min +

                            +

                            […] d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un […]

                            + +
                            +
                            + +
                            +
                            +
                            +

                            Répondre à daninpet Annuler la réponse

                            Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                            +
                            +
                            +

                            + +

                            +
                            +
                            +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            + + +
                            + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/acb8654064450d174738060e1f59ddbc129f4b68.00000408.html b/www/.content.EZtzwPjb/html/acb8654064450d174738060e1f59ddbc129f4b68.00000408.html new file mode 100644 index 0000000..ff66b2e --- /dev/null +++ b/www/.content.EZtzwPjb/html/acb8654064450d174738060e1f59ddbc129f4b68.00000408.html @@ -0,0 +1,364 @@ + + + + + + + fin du monde – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +

                            IPv6 – Intro

                            Etant donné la proche pénurie d’adresse IP v4, plus que 5% seraient disponible sur le réseau public qu’est Internet, je vais faire un dossier qui parlera d’IP v6. Dans ce dossier, je vais vous faire des tutoriels, des RFC et des découvertes. (suite…)

                            +
                            +
                            + +
                            +
                            +
                            +
                            + +
                            +
                            + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/ad3b7d52c1532438b5ad65e085b59fe62f37111b.00000686.css b/www/.content.EZtzwPjb/html/ad3b7d52c1532438b5ad65e085b59fe62f37111b.00000686.css new file mode 100644 index 0000000..20df2bb --- /dev/null +++ b/www/.content.EZtzwPjb/html/ad3b7d52c1532438b5ad65e085b59fe62f37111b.00000686.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7 .screen-reader-response{position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);height:1px;width:1px;margin:0;padding:0;border:0}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{color:#f00;font-size:1em;display:block}.use-floating-validation-tip span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;border:1px +solid #f00;background:#fff;padding: .2em .8em}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/adb712e534278eef1e21283f18afaff32b87b9a2.00000674.css b/www/.content.EZtzwPjb/html/adb712e534278eef1e21283f18afaff32b87b9a2.00000674.css new file mode 100644 index 0000000..20df2bb --- /dev/null +++ b/www/.content.EZtzwPjb/html/adb712e534278eef1e21283f18afaff32b87b9a2.00000674.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7 .screen-reader-response{position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);height:1px;width:1px;margin:0;padding:0;border:0}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{color:#f00;font-size:1em;display:block}.use-floating-validation-tip span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;border:1px +solid #f00;background:#fff;padding: .2em .8em}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/add584e6f69f208f994f4ff9acc21c335c3467a9.00000125.html b/www/.content.EZtzwPjb/html/add584e6f69f208f994f4ff9acc21c335c3467a9.00000125.html new file mode 100644 index 0000000..2655a94 --- /dev/null +++ b/www/.content.EZtzwPjb/html/add584e6f69f208f994f4ff9acc21c335c3467a9.00000125.html @@ -0,0 +1,1370 @@ + + + + + + + + Réparations Samsung SyncMaster 2232BW – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            +

                            Allô docteur on a un problème,

                            +

                            En ce dimanche calme avant la fin de mes partiels, mon écran Samsung SyncMaster 2232BW commençait à faire des siennes. Celui-ci depuis un mois ou deux clignotait de façon systématique au démarrage, au début pendant seulement quelques secondes, puis au fur et à mesure, de plus en plus jusqu’à devoir attendre 10 minutes pour que je puisse l’utiliser. Après 3 ans et 4 mois de bons et loyaux services, il voulait me quitter. J’ai tenté le support Samsung par email avec peu d’espoir car l’écran a dépassé sa garantie de 4 mois (oui oui les bâtards -> obsolescence programmée). Et donc j’ai eu le droit à un joli mail automatique me disant de contacter un numéro non surtaxé (mais avec combien de temps d’attente ?), ce que je n’ai pas fait car je n’avais pas envie de passer 30min au téléphone pour au final avoir un « On est désolé mais on ne peut rien faire pour vous car la garantie est dépassée, mais on peut envoyer votre écran en SAV pour faire un devis pour seulement 50 boules ». Concernant le support email de Samsung France, je leur donne une note de 0/20 puisque ce n’est pas un support mais une redirection vers le téléphone.

                            +

                            +

                            Symptômes

                            +

                            Clignotements de l’écran et de la LED power systématiques à chaque démarrage de l’écran. Je me suis tout de suite douté d’un problème d’alimentation et après quelques recherches sur google, confirmation du problème sur beaucoup d’écrans et téléviseurs. Dans 99% des cas ce clignotement est dû à des condensateurs défectueux qu’il faut simplement changer :-D

                            +

                            Démontage

                            +

                            Donc après avoir cerné le problème, j’ai ouvert l’écran pour chercher les condos défectueux. J’ai trouvé une petite vidéo pour mon écran :

                            +

                            +

                            Voici quelques photos en plus pour vous aider :

                            +

                            Les outils que j’ai utilisé pour le démontage

                            +

                            Position des clips

                            +

                            Carte d’alimentation dans son emplacement

                            +

                            Et voici les condensateurs qui posent problèmes. Comme vous pouvez le voir sur la photo, ils sont très facilement identifiable car ils sont bombés sur le dessus.

                            +

                            Condensateurs défectueux

                            +

                            Vous devez donc acheter des condensateurs de remplacement, par exemple sur Conrad.

                            +

                            Mes condensateurs suivant étaient endommagés:

                            +
                              +
                            • 1 de 330uF 25V remplacé par un 470uF 25V
                            • +
                            • 3 de 820uF 25V remplacé par des 1000uF 50V
                            • +
                            +

                            Pour la réparation, il vous faut un fer à souder avec une panne pas trop grosse mais d’une grosse puissance car les soudures sont très solides (j’ai galéré avec un fer pro qui monte jusqu’à 400°).

                            +

                            Tout remarche nickel après remontage, plus de clignotement pour seulement quelques euros.

                            +

                            edit du 19 aout 2014 : j’ai trouvé le service manuel de l’écran si besoin samsung_2232bw_chassis_lpe22bs_sm

                            + + +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +

                            + 41 commentaires

                            +
                            + +
                            +
                            +
                            +
                            +

                            + c'est_moi + · 30 janvier 2012 à 18 h 57 min +

                            +

                            Mille mercis et mille félicitations pour cette fiche technique si pédagogue.

                            +

                            J’espère que le partiels se passent plus que parfait !!

                            +

                            J’ai gardé l’url de la page pour réparer mon écran dans un petit mois : j’espère que la page soit toujours là ;-)

                            +

                            Merci encore.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Maxime + · 5 mai 2012 à 12 h 31 min +

                            +

                            Bonjour HugoPoi!

                            +

                            Merci pour toutes vos infos et votre topic, je voulais avoir quelques précisions sur les condos à changer pour samsung 2232bw, je veux passer commande mais j’ai un problème avec les dimensions des condos, si vous pouvez m’informer de ce que je pourrais acheter car il y a trop de références. En vous remerciant A+ Maxime

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 14 juin 2012 à 22 h 56 min +

                              +

                              N’importe quel condensateur polarisé avec des caractéristiques proches devrait marché.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + gaubjezj + · 14 juin 2012 à 22 h 32 min +

                            +

                            Merci pour le tuto qui m’a bien aidé.
                            +J’ai utilisé un fer de 40 W avec une panne fine et
                            +une pompe à dessouder et j’ai retiré les condensateurs sans problème.
                            +Merci encore (3€40 pour le dépannage).

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + DragonTribal + · 2 juillet 2012 à 12 h 02 min +

                            +

                            super merci pour manifique tuto.
                            +Est-il possible de changer les 5 condensateurs 820uF 25V par des 1000uF 50V? car moi mes 5 condensateurs sont presque HS ;-)

                            +

                            Cordialement

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 2 juillet 2012 à 12 h 25 min +

                              +

                              Oui je penses que ça marchera étant donné que c’est des valeurs plus grandes.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + FRED + · 11 juillet 2012 à 19 h 11 min +

                            +

                            Bravo, MERCI.
                            +Je n’ai encore rien fait…mais j’ai le même problème, et tu me donnes la solution.
                            +Super.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + daninpet + · 31 août 2012 à 10 h 10 min +

                            +

                            Merci mille fois!

                            +

                            J’avais ce problème, et j’ai emmener la photo des trucs a remplacer chez le réparateur du coin et voila!! Ça m’a coûté 7 Euros (mais j’habite en Thaïlande)

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + moi + · 15 novembre 2012 à 15 h 25 min +

                            +

                            super mon 2232bw vient de lâcher, les 3 + 1 condos sont gonflés j ai trouvé un 330 en 35v qui traîné sur un écran mort et j’ai commander 5 1000uf 35v sur ebay pour moins de 3 dollars, ca devrait le faire j’espere j’attend d’être livré merci! par contre j’ai qu’un gros pistolet a soudure et un gros fil d’étain, c’est pas évident mais bon ca le fait quand même =)

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + moi + · 7 décembre 2012 à 9 h 33 min +

                              +

                              parfait je vient de recevoir les condos; j ai meuler la panne du fer a souder pour la tailler en mine de crayon et j ai reussi a les souder facilement ils étaient un peu plus gros mais ca passe tout juste, mais attention ne pas prendre des plus gros! l écran fonctionne nickel maintenant.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Croco + · 19 janvier 2013 à 18 h 39 min +

                            +

                            Je souhaiterai savoir si tu as utilisé un fer à souder bien précis étant donné que la carte est une multi couche.
                            +Merci

                            + +
                            +
                            + + +
                            + +
                            +
                            +
                            +
                            +

                            + momo + · 10 juin 2013 à 13 h 15 min +

                            +

                            slut je voudrai savoir ou trouvé les condansateur a changer sur mon ecran qui clignote

                            + +
                            +
                            + + +
                            + +
                            +
                            +
                            +
                            +

                            + lokmane + · 5 juillet 2013 à 16 h 08 min +

                            +

                            merci j’avais un ecran rouge ! et c’etais la tresse qui relie mon ecran votre page m’a aider a l’ouvrir et a le reparer merci bien

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + ML + · 21 août 2013 à 19 h 11 min +

                            +

                            Merci ! Ecran réparé. Halte à l’obsolescence programmée.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + raymond + · 31 octobre 2013 à 13 h 20 min +

                            +

                            ai vu votre vidéo et les explications pour la reparation de mon écran , apparemment le méme probléme l écran passe au noir apres quelque seconde , j ai vu un le condensateur en bas a gauche gonflé , je l ai fait changé (10€) les autre condensateur étant toujour bon d après la personne qui me l a changé , mais j ai toujour le méme probléme cela peut il venir de la carte video a gauche ?

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 20 décembre 2013 à 12 h 27 min +

                              +

                              Si la led bleu du bouton power s’éteint aussi c’est un problème d’alimentation sinon c’est plus compliqué et ça peut provenir de condensateurs sur la partie vidéo. Changé tous les plus gros condensateurs sur la partie alimentation pourrait être un bon début même si ils ne paraissent pas endommagé.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + damien + · 4 novembre 2013 à 0 h 29 min +

                            +

                            bonjour,

                            +

                            j’ai des crasses coincées entres l’écran et le truc juste derrière, est ce qu’on sais les enlever en démontant la dalle ?

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 20 décembre 2013 à 12 h 28 min +

                              +

                              Je ne sais si cette partie de la dalle est démontable, je penses que c’est collé mais vous pouvez essayer.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + mac + · 1 décembre 2013 à 17 h 30 min +

                            +

                            Merci HugoPoi, avec ces excellents conseils et tuto vidéo, mon écran est reparti pour une nouvelle vie.
                            +Pour les composants, si vous êtes sur Paris ou proche. La boutique RAM électroniques est une bonne adresse, 138 bd Diderot 75012 Paris (Place de la Nation).

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Bouddhid + · 16 janvier 2014 à 19 h 21 min +

                            +

                            Merci beaucoup pour ces conseils ! J’étais à 2 doigts de jeter mon écran, le voilà comme neuf pour moins de 5€ ! Vive la bricole !

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Vincent + · 17 mai 2014 à 16 h 45 min +

                            +

                            Alors là merci.

                            +

                            Pour ce post, les photos, la vidéo, tout y est.

                            +

                            J’ai démonté l’écran assez vite, enlevé la carte, regarder quel condensateurs étaient gonflés,(il y en avaient 4), un magasin d’électronique sur lyon et une heure de démontage, soudure, remontage plus tard, voilà, c’est tout beau.
                            +Ca ne clignote plus, ça s’allume comme avant, comme neuf.

                            +

                            Et dire que j’allais jeter cet écran et claquer 350 euros pour un neuf…

                            +

                            Coût de l’opération pour 4 condensateurs, du fil d’étain 7 euros.

                            +

                            Je précise que je n’avais jamais fais de soudure sur composant électronique auparavant.
                            +Comme quoi cette opération de réparation est à la portée de tous.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Julot + · 6 juillet 2014 à 13 h 49 min +

                            +

                            Site vraiment détaillé et très claire. J’ai pu dépanner mon écran avec succès. Merci beaucoup pour ces précieuses explications.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + PaniK31 + · 29 juillet 2014 à 9 h 21 min +

                            +

                            Pas besoin d’une grosse puissance pour le fer, il faut au préalable gratter le vernis sur l’étain afin de pouvoir le faire fondre plus facilement

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + R211_IP-45130B + · 20 août 2014 à 14 h 04 min +

                            +

                            Bonjour à tous,

                            +

                            Une âme charitable peut-elle me communiquer ce qui est gravé sur la résistance CMS R211 de la carte d’alimentation/inverter IP-45130B qui équipe le SAMSUNG 2232BW ? Cette résistance a pris un coup de tournevis et je n’arrive pas à déterminer sa valeur de résistance car son marquage est effacé et comme le composant est abimé la mesure à l’ohmmètre indique l’infinie.

                            +

                            Merci par avance.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + roger + · 24 octobre 2014 à 17 h 21 min +

                            +

                            Ca refonctionne après échange de 4 condensateurs :
                            +-un 330uf25v remplacé à l’identique.
                            +-trois 820uf25v remplacés par 1000uf25v.
                            +Le tout pour quelques €. Le plus dur était le dessoudage, la tresse n’était pas très efficace contrairement à la pompe.
                            +Grand merci à HugoPoi.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Max + · 26 février 2015 à 16 h 28 min +

                            +

                            ENORME MERCI!! J’ai réparé mon écran en 20mn pour 3,50€, il était à 2 doigts de partir à la déchetterie. Ca faisait des mois qu’il clignotait, et l’allumage mettait parfois plus d’une demi heure. J’ai changé 5 condos 820uf25v et 1 330uf25v, par exactement les mêmes en neuf, et là il démarre au quart de tour! Ca fait plaisir! :)

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + rocco michelle + · 7 octobre 2015 à 10 h 16 min +

                              +

                              Bonjour je ne sais si vous verrez mon message mais je tente…je cherche quelqu’un qui accepterait de changer mes condensateurs sur mon samsung, les réparateurs me demandent 70 à 80 euros et encore ils n’ont pss envie de le faire et me disent d’acheter un nouvel écran. j’aurais bien tenter mais je n’ai pas de matériel et j’ai lu que les condo pouvaient être très dangereux s’ils avaient de la charge alors j’ai la trouille de bidouiller pq je n’y connais rien. si vous êtes de lyon acccepteriez vous de changer mes condensateurs pour 45 euros? merci de votre réponse.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + lecakeseb + · 27 juillet 2015 à 15 h 26 min +

                            +

                            Bonjour,

                            +

                            J’ai utilisé la vidéo pour démonter mon écran afin de le nettoyer de 4 bêtes d’orage infiltrés entre le premier écran (noir) et la dalle (blanche) de mon samsung SyncMaster 2232W

                            +

                            Petits conseils afin de modérer ce que j’ai pu voir dans cette vidéo :

                            +

                            0 : aspirez, nettoyez l’extérieur de l’écran avant de l’ouvrir et nettoyez la table qui vous servira d’atelier, pour éviter les poussières qui s’infiltreront forcément plus tard si vous ne le faites pas…
                            +1 : pour ouvrir, utilisez plutôt un couteau à enduire pour la première partie (le cadre). Vous n’abîmerez ainsi pas du tout l’écran. Soyez patients, ne forcez pas ! ça viendra doucement, mais ça viendra. Il m’a fallu à peine 10 minutes, sans détériorer l’écran, sans le griffer… Il est encore nickel !
                            +2 : attention à ne pas déconnecter les fils reliant le cadre à la carte. Inutile pour simplement nettoyer l’écran.
                            +3 : pour séparer les deux éléments de la dalle entre lesquels les bêtes se sont infiltrées, les doigts suffisent, pas besoin d’outils qui viendraient les endommager. La dalle blanche reste à l’horizontale, l’écran noir sera tenu à la verticale.
                            +4 : utiliser un chiffon doux ne peluchant pas pour enlever les bêtes (faites-vous aider de quelqu’un qui les enlèvera pendant que vous tenez l’écran extérieur en position verticale).
                            +5 : repositionnez la colle d’étanchéité qui aurait pu se déplacer, avant de repositionner les deux écrans.
                            +6 : commencer par refermer par le bas de l’écran (sinon les éléments de réglage situés au bas de l’écran – luminosité, contraste,…- ne se replaceront pas correctement).
                            +7 : Une fois l’écran refermé, j’ai appliqué un peu de « barrage aux insectes », avec un chiffon à l’arrière de mon écran en insistant surtout sur les bouches d’aération par lesquelles les maudites bestioles ont du s’infiltrer. En espérant ne pas avoir à ouvrir !

                            +

                            Bon courage à vous !

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Michel Jousserandot + · 20 janvier 2017 à 20 h 41 min +

                            +

                            Merci pour les conseils au démontage.
                            +J’avais un problème un peu différent :l’écran ne s’allumait plus du tout. Avec un copain beaucoup plus malin que moi, on a détecté 2 fusibles dont l’un était fichu. On l’a remplacé par un petit fil de cuivre. Et tout a remarché comme avant.
                            +Il faut surtout faire attention quand on teste la partie haute tension
                            +Michel.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Crec + · 14 juillet 2017 à 10 h 20 min +

                            +

                            Bonjour. Très bons conseils avertis. Merci beaucoup.
                            +Peut-on avoir les mêmes conseils pour un écran BX2250.
                            +Merci par avance.
                            +Crec

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 6 août 2017 à 14 h 03 min +

                              +

                              J’ai pas de BX2250 donc dans le détails non mais si c’est les même symptômes ça doit la même procédure.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Ferronnier + · 10 août 2017 à 17 h 42 min +

                            +

                            Un grand merci !
                            +J’ai changé tous les condensateurs de la partie alimentation de la carte, en déportant certains qui n’avaient pas le même format qu’à l’origine, et ça tourne nickel !

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Nours + · 1 décembre 2017 à 15 h 17 min +

                            +

                            Ca fait des années que j’ai cet article enregistré dans un coin, en nourrissant l’espoir d’avoir un jour le courage de réparer ce foutu écran… Après plus de cinq ans c’est chose faite \o/
                            +Un giga, hypra, immense merci pour ce tutoriel tellement bien expliqué et facile d’accès (je n’avais pas touché à un fer à souder depuis… Oh boy 15 ans déjà).
                            +Après une longue pause, l’écran reprend du service… Jusqu’à la prochaine panne /o/

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Alex + · 11 août 2018 à 13 h 28 min +

                            +

                            Quelqu’un sait qui pourrait me le faire svp j ai le même problème mais aucun matériel

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + David + · 5 février 2019 à 21 h 06 min +

                            +

                            Merci Hugo pour ce tuto qui m’a déjà servi en 2013 et qui va me resservir aujourd’hui car mon 2ème 2232bw commence à avoir les mêmes symptômes.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + yvan + · 23 novembre 2019 à 17 h 14 min +

                            +

                            Bonjour
                            +j’ai tenté de changer le condensateur qui avait l’air naze mais ça n’a pas marché … toujours le bouton bleu allumé, l’écran est reconnu par Windows 10 même si l’écran est éteint
                            +grâce au service manuel de l’écran fourni plus haut, j’ai vérifié les tensions jusque sur la carte de la dalle et elles sont correctes, ainsi que sur la carte elle-même, tout est ok, donc je pense que ce n’est plus un problème de condensateur
                            +pour les fusibles, ils ressemblent plutôt à des composants qu’à de simple fusibles, mais comme j’ai les bonnes tension, je ne pense pas que ça vienne de là
                            +j’ai bien peur que ce soit la dalle qui soit naze ? quelqu’un a t il des idées supplémentaires avant que je le jette avec grand regret (c’est un 2032bw, mais c’est la même chose, même si ma carte électronique est un peu différente car plus récente
                            +merci d’avance pour vos conseils

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + yvan + · 24 novembre 2019 à 17 h 26 min +

                            +

                            finalement j’ai trouvé, c’est un petit fusible vert qui ressemble à une résistance mais tout vert avec écrit 4A LF qui assure l’alimentation de la dalle.
                            +En le shuntant, mon écran a retrouvé l’image.
                            +après enquête il s’agit d’un fusible pico de 4ampères de chez little fuse, pas du tout évident à trouver
                            +Résolu !

                            + +
                            +
                            + +
                            +
                            +

                            + Reflow Dell 1546 | HugoPoi + · 22 août 2016 à 16 h 09 min +

                            +

                            […] « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable de marque Dell un 1546 pour être précis. Encore […]

                            + +
                            +
                            + +
                            +
                            +

                            + Reflow Dell Inspiron 1546 – HugoPoi + · 23 juin 2017 à 23 h 18 min +

                            +

                            […] d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un […]

                            + +
                            +
                            + +
                            +
                            +
                            +

                            Répondre à Reflow Dell 1546 | HugoPoi Annuler la réponse

                            Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                            +
                            +
                            +

                            + +

                            +
                            +
                            +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            + + +
                            + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/ae8d2b1de88d41a723a1b45db5268eae15f20b78.00000707.css b/www/.content.EZtzwPjb/html/ae8d2b1de88d41a723a1b45db5268eae15f20b78.00000707.css new file mode 100644 index 0000000..20df2bb --- /dev/null +++ b/www/.content.EZtzwPjb/html/ae8d2b1de88d41a723a1b45db5268eae15f20b78.00000707.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7 .screen-reader-response{position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);height:1px;width:1px;margin:0;padding:0;border:0}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{color:#f00;font-size:1em;display:block}.use-floating-validation-tip span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;border:1px +solid #f00;background:#fff;padding: .2em .8em}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/aec3512011c907793af588f03a6e762dfdf0b94c.00000348.html b/www/.content.EZtzwPjb/html/aec3512011c907793af588f03a6e762dfdf0b94c.00000348.html new file mode 100644 index 0000000..d000b1d --- /dev/null +++ b/www/.content.EZtzwPjb/html/aec3512011c907793af588f03a6e762dfdf0b94c.00000348.html @@ -0,0 +1,364 @@ + + + + + + + bienvenu – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +

                            Hello World

                            Bienvenue sur mon blog, voila c’est fait, je voulais depuis un petit moment ouvrir un blog pour m’ exprimer sur l’ actualité geek et raconter ma vie parler technique. Alors j’annonce les couleurs ici je vais pas parler coupe de cheveux ni sous-vêtement mais des sujets orientés internet, réseaux, développement et politique #hadopi #fail.

                            +
                            +
                            + +
                            +
                            +
                            +
                            + +
                            +
                            + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/aef34da93f44f6a8d450aec9024c317b17879acb.00000400.xml b/www/.content.EZtzwPjb/html/aef34da93f44f6a8d450aec9024c317b17879acb.00000400.xml new file mode 100644 index 0000000..84bad1c --- /dev/null +++ b/www/.content.EZtzwPjb/html/aef34da93f44f6a8d450aec9024c317b17879acb.00000400.xml @@ -0,0 +1,37 @@ + + + écran – HugoPoi + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Mon, 22 Aug 2016 14:10:26 +0000 + fr-FR + hourly + 1 + https://wordpress.org/?v=4.6 + + Écran miraculé d’un Asus N53SN + http://blog.hugopoi.net/2014/08/02/ecran-miracule-dun-asus-n53sn/ + http://blog.hugopoi.net/2014/08/02/ecran-miracule-dun-asus-n53sn/#comments + Sat, 02 Aug 2014 17:53:57 +0000 + + + + + + + + http://blog.hugopoi.net/?p=819 + Lire la suite »

                            ]]>
                            + http://blog.hugopoi.net/2014/08/02/ecran-miracule-dun-asus-n53sn/feed/ + 1 +
                            +
                            +
                            diff --git a/www/.content.EZtzwPjb/html/af08bf76c1dd65d76e6dfb70877db2419d529570.00000119.html b/www/.content.EZtzwPjb/html/af08bf76c1dd65d76e6dfb70877db2419d529570.00000119.html new file mode 100644 index 0000000..24aa661 --- /dev/null +++ b/www/.content.EZtzwPjb/html/af08bf76c1dd65d76e6dfb70877db2419d529570.00000119.html @@ -0,0 +1,1370 @@ + + + + + + + + Réparations Samsung SyncMaster 2232BW – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            +

                            Allô docteur on a un problème,

                            +

                            En ce dimanche calme avant la fin de mes partiels, mon écran Samsung SyncMaster 2232BW commençait à faire des siennes. Celui-ci depuis un mois ou deux clignotait de façon systématique au démarrage, au début pendant seulement quelques secondes, puis au fur et à mesure, de plus en plus jusqu’à devoir attendre 10 minutes pour que je puisse l’utiliser. Après 3 ans et 4 mois de bons et loyaux services, il voulait me quitter. J’ai tenté le support Samsung par email avec peu d’espoir car l’écran a dépassé sa garantie de 4 mois (oui oui les bâtards -> obsolescence programmée). Et donc j’ai eu le droit à un joli mail automatique me disant de contacter un numéro non surtaxé (mais avec combien de temps d’attente ?), ce que je n’ai pas fait car je n’avais pas envie de passer 30min au téléphone pour au final avoir un « On est désolé mais on ne peut rien faire pour vous car la garantie est dépassée, mais on peut envoyer votre écran en SAV pour faire un devis pour seulement 50 boules ». Concernant le support email de Samsung France, je leur donne une note de 0/20 puisque ce n’est pas un support mais une redirection vers le téléphone.

                            +

                            +

                            Symptômes

                            +

                            Clignotements de l’écran et de la LED power systématiques à chaque démarrage de l’écran. Je me suis tout de suite douté d’un problème d’alimentation et après quelques recherches sur google, confirmation du problème sur beaucoup d’écrans et téléviseurs. Dans 99% des cas ce clignotement est dû à des condensateurs défectueux qu’il faut simplement changer :-D

                            +

                            Démontage

                            +

                            Donc après avoir cerné le problème, j’ai ouvert l’écran pour chercher les condos défectueux. J’ai trouvé une petite vidéo pour mon écran :

                            +

                            +

                            Voici quelques photos en plus pour vous aider :

                            +

                            Les outils que j’ai utilisé pour le démontage

                            +

                            Position des clips

                            +

                            Carte d’alimentation dans son emplacement

                            +

                            Et voici les condensateurs qui posent problèmes. Comme vous pouvez le voir sur la photo, ils sont très facilement identifiable car ils sont bombés sur le dessus.

                            +

                            Condensateurs défectueux

                            +

                            Vous devez donc acheter des condensateurs de remplacement, par exemple sur Conrad.

                            +

                            Mes condensateurs suivant étaient endommagés:

                            +
                              +
                            • 1 de 330uF 25V remplacé par un 470uF 25V
                            • +
                            • 3 de 820uF 25V remplacé par des 1000uF 50V
                            • +
                            +

                            Pour la réparation, il vous faut un fer à souder avec une panne pas trop grosse mais d’une grosse puissance car les soudures sont très solides (j’ai galéré avec un fer pro qui monte jusqu’à 400°).

                            +

                            Tout remarche nickel après remontage, plus de clignotement pour seulement quelques euros.

                            +

                            edit du 19 aout 2014 : j’ai trouvé le service manuel de l’écran si besoin samsung_2232bw_chassis_lpe22bs_sm

                            + + +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +

                            + 41 commentaires

                            +
                            + +
                            +
                            +
                            +
                            +

                            + c'est_moi + · 30 janvier 2012 à 18 h 57 min +

                            +

                            Mille mercis et mille félicitations pour cette fiche technique si pédagogue.

                            +

                            J’espère que le partiels se passent plus que parfait !!

                            +

                            J’ai gardé l’url de la page pour réparer mon écran dans un petit mois : j’espère que la page soit toujours là ;-)

                            +

                            Merci encore.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Maxime + · 5 mai 2012 à 12 h 31 min +

                            +

                            Bonjour HugoPoi!

                            +

                            Merci pour toutes vos infos et votre topic, je voulais avoir quelques précisions sur les condos à changer pour samsung 2232bw, je veux passer commande mais j’ai un problème avec les dimensions des condos, si vous pouvez m’informer de ce que je pourrais acheter car il y a trop de références. En vous remerciant A+ Maxime

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 14 juin 2012 à 22 h 56 min +

                              +

                              N’importe quel condensateur polarisé avec des caractéristiques proches devrait marché.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + gaubjezj + · 14 juin 2012 à 22 h 32 min +

                            +

                            Merci pour le tuto qui m’a bien aidé.
                            +J’ai utilisé un fer de 40 W avec une panne fine et
                            +une pompe à dessouder et j’ai retiré les condensateurs sans problème.
                            +Merci encore (3€40 pour le dépannage).

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + DragonTribal + · 2 juillet 2012 à 12 h 02 min +

                            +

                            super merci pour manifique tuto.
                            +Est-il possible de changer les 5 condensateurs 820uF 25V par des 1000uF 50V? car moi mes 5 condensateurs sont presque HS ;-)

                            +

                            Cordialement

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 2 juillet 2012 à 12 h 25 min +

                              +

                              Oui je penses que ça marchera étant donné que c’est des valeurs plus grandes.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + FRED + · 11 juillet 2012 à 19 h 11 min +

                            +

                            Bravo, MERCI.
                            +Je n’ai encore rien fait…mais j’ai le même problème, et tu me donnes la solution.
                            +Super.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + daninpet + · 31 août 2012 à 10 h 10 min +

                            +

                            Merci mille fois!

                            +

                            J’avais ce problème, et j’ai emmener la photo des trucs a remplacer chez le réparateur du coin et voila!! Ça m’a coûté 7 Euros (mais j’habite en Thaïlande)

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + moi + · 15 novembre 2012 à 15 h 25 min +

                            +

                            super mon 2232bw vient de lâcher, les 3 + 1 condos sont gonflés j ai trouvé un 330 en 35v qui traîné sur un écran mort et j’ai commander 5 1000uf 35v sur ebay pour moins de 3 dollars, ca devrait le faire j’espere j’attend d’être livré merci! par contre j’ai qu’un gros pistolet a soudure et un gros fil d’étain, c’est pas évident mais bon ca le fait quand même =)

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + moi + · 7 décembre 2012 à 9 h 33 min +

                              +

                              parfait je vient de recevoir les condos; j ai meuler la panne du fer a souder pour la tailler en mine de crayon et j ai reussi a les souder facilement ils étaient un peu plus gros mais ca passe tout juste, mais attention ne pas prendre des plus gros! l écran fonctionne nickel maintenant.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Croco + · 19 janvier 2013 à 18 h 39 min +

                            +

                            Je souhaiterai savoir si tu as utilisé un fer à souder bien précis étant donné que la carte est une multi couche.
                            +Merci

                            + +
                            +
                            + + +
                            + +
                            +
                            +
                            +
                            +

                            + momo + · 10 juin 2013 à 13 h 15 min +

                            +

                            slut je voudrai savoir ou trouvé les condansateur a changer sur mon ecran qui clignote

                            + +
                            +
                            + + +
                            + +
                            +
                            +
                            +
                            +

                            + lokmane + · 5 juillet 2013 à 16 h 08 min +

                            +

                            merci j’avais un ecran rouge ! et c’etais la tresse qui relie mon ecran votre page m’a aider a l’ouvrir et a le reparer merci bien

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + ML + · 21 août 2013 à 19 h 11 min +

                            +

                            Merci ! Ecran réparé. Halte à l’obsolescence programmée.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + raymond + · 31 octobre 2013 à 13 h 20 min +

                            +

                            ai vu votre vidéo et les explications pour la reparation de mon écran , apparemment le méme probléme l écran passe au noir apres quelque seconde , j ai vu un le condensateur en bas a gauche gonflé , je l ai fait changé (10€) les autre condensateur étant toujour bon d après la personne qui me l a changé , mais j ai toujour le méme probléme cela peut il venir de la carte video a gauche ?

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 20 décembre 2013 à 12 h 27 min +

                              +

                              Si la led bleu du bouton power s’éteint aussi c’est un problème d’alimentation sinon c’est plus compliqué et ça peut provenir de condensateurs sur la partie vidéo. Changé tous les plus gros condensateurs sur la partie alimentation pourrait être un bon début même si ils ne paraissent pas endommagé.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + damien + · 4 novembre 2013 à 0 h 29 min +

                            +

                            bonjour,

                            +

                            j’ai des crasses coincées entres l’écran et le truc juste derrière, est ce qu’on sais les enlever en démontant la dalle ?

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 20 décembre 2013 à 12 h 28 min +

                              +

                              Je ne sais si cette partie de la dalle est démontable, je penses que c’est collé mais vous pouvez essayer.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + mac + · 1 décembre 2013 à 17 h 30 min +

                            +

                            Merci HugoPoi, avec ces excellents conseils et tuto vidéo, mon écran est reparti pour une nouvelle vie.
                            +Pour les composants, si vous êtes sur Paris ou proche. La boutique RAM électroniques est une bonne adresse, 138 bd Diderot 75012 Paris (Place de la Nation).

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Bouddhid + · 16 janvier 2014 à 19 h 21 min +

                            +

                            Merci beaucoup pour ces conseils ! J’étais à 2 doigts de jeter mon écran, le voilà comme neuf pour moins de 5€ ! Vive la bricole !

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Vincent + · 17 mai 2014 à 16 h 45 min +

                            +

                            Alors là merci.

                            +

                            Pour ce post, les photos, la vidéo, tout y est.

                            +

                            J’ai démonté l’écran assez vite, enlevé la carte, regarder quel condensateurs étaient gonflés,(il y en avaient 4), un magasin d’électronique sur lyon et une heure de démontage, soudure, remontage plus tard, voilà, c’est tout beau.
                            +Ca ne clignote plus, ça s’allume comme avant, comme neuf.

                            +

                            Et dire que j’allais jeter cet écran et claquer 350 euros pour un neuf…

                            +

                            Coût de l’opération pour 4 condensateurs, du fil d’étain 7 euros.

                            +

                            Je précise que je n’avais jamais fais de soudure sur composant électronique auparavant.
                            +Comme quoi cette opération de réparation est à la portée de tous.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Julot + · 6 juillet 2014 à 13 h 49 min +

                            +

                            Site vraiment détaillé et très claire. J’ai pu dépanner mon écran avec succès. Merci beaucoup pour ces précieuses explications.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + PaniK31 + · 29 juillet 2014 à 9 h 21 min +

                            +

                            Pas besoin d’une grosse puissance pour le fer, il faut au préalable gratter le vernis sur l’étain afin de pouvoir le faire fondre plus facilement

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + R211_IP-45130B + · 20 août 2014 à 14 h 04 min +

                            +

                            Bonjour à tous,

                            +

                            Une âme charitable peut-elle me communiquer ce qui est gravé sur la résistance CMS R211 de la carte d’alimentation/inverter IP-45130B qui équipe le SAMSUNG 2232BW ? Cette résistance a pris un coup de tournevis et je n’arrive pas à déterminer sa valeur de résistance car son marquage est effacé et comme le composant est abimé la mesure à l’ohmmètre indique l’infinie.

                            +

                            Merci par avance.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + roger + · 24 octobre 2014 à 17 h 21 min +

                            +

                            Ca refonctionne après échange de 4 condensateurs :
                            +-un 330uf25v remplacé à l’identique.
                            +-trois 820uf25v remplacés par 1000uf25v.
                            +Le tout pour quelques €. Le plus dur était le dessoudage, la tresse n’était pas très efficace contrairement à la pompe.
                            +Grand merci à HugoPoi.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Max + · 26 février 2015 à 16 h 28 min +

                            +

                            ENORME MERCI!! J’ai réparé mon écran en 20mn pour 3,50€, il était à 2 doigts de partir à la déchetterie. Ca faisait des mois qu’il clignotait, et l’allumage mettait parfois plus d’une demi heure. J’ai changé 5 condos 820uf25v et 1 330uf25v, par exactement les mêmes en neuf, et là il démarre au quart de tour! Ca fait plaisir! :)

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + rocco michelle + · 7 octobre 2015 à 10 h 16 min +

                              +

                              Bonjour je ne sais si vous verrez mon message mais je tente…je cherche quelqu’un qui accepterait de changer mes condensateurs sur mon samsung, les réparateurs me demandent 70 à 80 euros et encore ils n’ont pss envie de le faire et me disent d’acheter un nouvel écran. j’aurais bien tenter mais je n’ai pas de matériel et j’ai lu que les condo pouvaient être très dangereux s’ils avaient de la charge alors j’ai la trouille de bidouiller pq je n’y connais rien. si vous êtes de lyon acccepteriez vous de changer mes condensateurs pour 45 euros? merci de votre réponse.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + lecakeseb + · 27 juillet 2015 à 15 h 26 min +

                            +

                            Bonjour,

                            +

                            J’ai utilisé la vidéo pour démonter mon écran afin de le nettoyer de 4 bêtes d’orage infiltrés entre le premier écran (noir) et la dalle (blanche) de mon samsung SyncMaster 2232W

                            +

                            Petits conseils afin de modérer ce que j’ai pu voir dans cette vidéo :

                            +

                            0 : aspirez, nettoyez l’extérieur de l’écran avant de l’ouvrir et nettoyez la table qui vous servira d’atelier, pour éviter les poussières qui s’infiltreront forcément plus tard si vous ne le faites pas…
                            +1 : pour ouvrir, utilisez plutôt un couteau à enduire pour la première partie (le cadre). Vous n’abîmerez ainsi pas du tout l’écran. Soyez patients, ne forcez pas ! ça viendra doucement, mais ça viendra. Il m’a fallu à peine 10 minutes, sans détériorer l’écran, sans le griffer… Il est encore nickel !
                            +2 : attention à ne pas déconnecter les fils reliant le cadre à la carte. Inutile pour simplement nettoyer l’écran.
                            +3 : pour séparer les deux éléments de la dalle entre lesquels les bêtes se sont infiltrées, les doigts suffisent, pas besoin d’outils qui viendraient les endommager. La dalle blanche reste à l’horizontale, l’écran noir sera tenu à la verticale.
                            +4 : utiliser un chiffon doux ne peluchant pas pour enlever les bêtes (faites-vous aider de quelqu’un qui les enlèvera pendant que vous tenez l’écran extérieur en position verticale).
                            +5 : repositionnez la colle d’étanchéité qui aurait pu se déplacer, avant de repositionner les deux écrans.
                            +6 : commencer par refermer par le bas de l’écran (sinon les éléments de réglage situés au bas de l’écran – luminosité, contraste,…- ne se replaceront pas correctement).
                            +7 : Une fois l’écran refermé, j’ai appliqué un peu de « barrage aux insectes », avec un chiffon à l’arrière de mon écran en insistant surtout sur les bouches d’aération par lesquelles les maudites bestioles ont du s’infiltrer. En espérant ne pas avoir à ouvrir !

                            +

                            Bon courage à vous !

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Michel Jousserandot + · 20 janvier 2017 à 20 h 41 min +

                            +

                            Merci pour les conseils au démontage.
                            +J’avais un problème un peu différent :l’écran ne s’allumait plus du tout. Avec un copain beaucoup plus malin que moi, on a détecté 2 fusibles dont l’un était fichu. On l’a remplacé par un petit fil de cuivre. Et tout a remarché comme avant.
                            +Il faut surtout faire attention quand on teste la partie haute tension
                            +Michel.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Crec + · 14 juillet 2017 à 10 h 20 min +

                            +

                            Bonjour. Très bons conseils avertis. Merci beaucoup.
                            +Peut-on avoir les mêmes conseils pour un écran BX2250.
                            +Merci par avance.
                            +Crec

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 6 août 2017 à 14 h 03 min +

                              +

                              J’ai pas de BX2250 donc dans le détails non mais si c’est les même symptômes ça doit la même procédure.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Ferronnier + · 10 août 2017 à 17 h 42 min +

                            +

                            Un grand merci !
                            +J’ai changé tous les condensateurs de la partie alimentation de la carte, en déportant certains qui n’avaient pas le même format qu’à l’origine, et ça tourne nickel !

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Nours + · 1 décembre 2017 à 15 h 17 min +

                            +

                            Ca fait des années que j’ai cet article enregistré dans un coin, en nourrissant l’espoir d’avoir un jour le courage de réparer ce foutu écran… Après plus de cinq ans c’est chose faite \o/
                            +Un giga, hypra, immense merci pour ce tutoriel tellement bien expliqué et facile d’accès (je n’avais pas touché à un fer à souder depuis… Oh boy 15 ans déjà).
                            +Après une longue pause, l’écran reprend du service… Jusqu’à la prochaine panne /o/

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Alex + · 11 août 2018 à 13 h 28 min +

                            +

                            Quelqu’un sait qui pourrait me le faire svp j ai le même problème mais aucun matériel

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + David + · 5 février 2019 à 21 h 06 min +

                            +

                            Merci Hugo pour ce tuto qui m’a déjà servi en 2013 et qui va me resservir aujourd’hui car mon 2ème 2232bw commence à avoir les mêmes symptômes.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + yvan + · 23 novembre 2019 à 17 h 14 min +

                            +

                            Bonjour
                            +j’ai tenté de changer le condensateur qui avait l’air naze mais ça n’a pas marché … toujours le bouton bleu allumé, l’écran est reconnu par Windows 10 même si l’écran est éteint
                            +grâce au service manuel de l’écran fourni plus haut, j’ai vérifié les tensions jusque sur la carte de la dalle et elles sont correctes, ainsi que sur la carte elle-même, tout est ok, donc je pense que ce n’est plus un problème de condensateur
                            +pour les fusibles, ils ressemblent plutôt à des composants qu’à de simple fusibles, mais comme j’ai les bonnes tension, je ne pense pas que ça vienne de là
                            +j’ai bien peur que ce soit la dalle qui soit naze ? quelqu’un a t il des idées supplémentaires avant que je le jette avec grand regret (c’est un 2032bw, mais c’est la même chose, même si ma carte électronique est un peu différente car plus récente
                            +merci d’avance pour vos conseils

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + yvan + · 24 novembre 2019 à 17 h 26 min +

                            +

                            finalement j’ai trouvé, c’est un petit fusible vert qui ressemble à une résistance mais tout vert avec écrit 4A LF qui assure l’alimentation de la dalle.
                            +En le shuntant, mon écran a retrouvé l’image.
                            +après enquête il s’agit d’un fusible pico de 4ampères de chez little fuse, pas du tout évident à trouver
                            +Résolu !

                            + +
                            +
                            + +
                            +
                            +

                            + Reflow Dell 1546 | HugoPoi + · 22 août 2016 à 16 h 09 min +

                            +

                            […] « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable de marque Dell un 1546 pour être précis. Encore […]

                            + +
                            +
                            + +
                            +
                            +

                            + Reflow Dell Inspiron 1546 – HugoPoi + · 23 juin 2017 à 23 h 18 min +

                            +

                            […] d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un […]

                            + +
                            +
                            + +
                            +
                            +
                            +

                            Répondre à mac Annuler la réponse

                            Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                            +
                            +
                            +

                            + +

                            +
                            +
                            +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            + + +
                            + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/af35a05e85ff6975da29899e5267a70f175f2230.00000802.css b/www/.content.EZtzwPjb/html/af35a05e85ff6975da29899e5267a70f175f2230.00000802.css new file mode 100644 index 0000000..df09fb8 --- /dev/null +++ b/www/.content.EZtzwPjb/html/af35a05e85ff6975da29899e5267a70f175f2230.00000802.css @@ -0,0 +1,18 @@ +/* +Theme Name: zBench Mod +Theme URI: http://blog.hugopoi.net/ +Description: Mod pour le thème zBench (footer and css) +Author: HugoPoi +Author URI: http://blog.hugopoi.net/ +Template: zbench +Version: 1.0.0 + +License:GNU General Public License, v2 (or newer) +License URI:http://www.gnu.org/licenses/old-licenses/gpl-2.0.html +*/ + +/*import original css*/ +@import url("../zbench/style.css"); + +#header{margin:25px auto;} +#header h1 a{line-height:35px;} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/afa7f9d967667bc5e2c84fb7ac4ecb0786404e7a.00000701.css b/www/.content.EZtzwPjb/html/afa7f9d967667bc5e2c84fb7ac4ecb0786404e7a.00000701.css new file mode 100644 index 0000000..20df2bb --- /dev/null +++ b/www/.content.EZtzwPjb/html/afa7f9d967667bc5e2c84fb7ac4ecb0786404e7a.00000701.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7 .screen-reader-response{position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);height:1px;width:1px;margin:0;padding:0;border:0}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{color:#f00;font-size:1em;display:block}.use-floating-validation-tip span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;border:1px +solid #f00;background:#fff;padding: .2em .8em}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/b00724327f5efb21e3c99798d1b4c6ca026bf1a7.00000090.html b/www/.content.EZtzwPjb/html/b00724327f5efb21e3c99798d1b4c6ca026bf1a7.00000090.html new file mode 100644 index 0000000..2b171e0 --- /dev/null +++ b/www/.content.EZtzwPjb/html/b00724327f5efb21e3c99798d1b4c6ca026bf1a7.00000090.html @@ -0,0 +1,497 @@ + + + + + + Démontage Asus U36 | HugoPoi + + + + + + + + + + + + + + + + + +
                            + +
                            +
                            +

                            Démontage Asus U36

                            + +
                            +
                            + +

                            J’ai acheté un petit SSD pour mettre dans mon U36 acheté il y a quelques mois, je n’ai pas trouvé de procédure de démontage sur Internet donc voici les photos de mon démontage.

                            +

                            1) Commencer par enlever toutes les vis et la trappe pour accéder à la RAM, puis déconnecter les deux connecteurs clavier et touchpad qui se situent juste à coté de la carte wifi.

                            +

                            2) Retourner le pc et à l’aide d’un petit tournevis plat, dé-clipser les petits clips sur tout le tour du pc. Vous pouvez maintenant enlever toute la partie supérieur.

                            +

                            +

                            3) Démontage Terminé :D

                            +

                            4) Galerie

                            + + +
                            +
                            +
                            + + +
                            + + +
                              +
                            1. +
                              + +
                              +

                              Salut Hugo,

                              +

                              Comment as tu fait pour déconnecter les deux connecteurs clavier et touchpad qui se situent juste à coté de la carte wifi ?

                              +

                              Merci d’avance,
                              +John

                              +
                              + +
                              +
                                +
                              • +
                                + +
                                +

                                Désolé pour l’attente,

                                +

                                Il faut prendre un petit tournevis plat et relever les petites languettes au dessus des nappes de façon à la mettre à 90° par rapport à la carte mère.

                                +
                                + +
                                +
                              • +
                              +
                            2. +
                            3. +
                              +
                              + leboulanger + +
                              +
                              +

                              bonjour,
                              +super ton tuto ! j’ai la m idée que toi à savoir mettre un ssd mais est ce que tu sais si çest du SATA 1 ou 2 ? concernant les connecteurs je ne l’ai situe pas du tout. est ce que tu pourrais ajoutait une photo stp ?
                              +merci en ts cas pour la contribution

                              +
                              + +
                              +
                                +
                              • +
                                + +
                                +

                                Salut,
                                +Pour le mode SATA c’est du 2. Après j’ai pas d’autre photo mais le connecteur il est situé juste au bout du disque sur la gauche.

                                +
                                + +
                                +
                              • +
                              +
                            4. +
                            5. +
                              +
                              + Asus U36 et OCZ Vertex 3 la suite | HugoPoi - pingback on 15 mai 2012 at 3 h 39 min +
                              +
                              +
                            6. +
                            7. +
                              + +
                              +

                              J’ai aussi démonté le mien pour mettre un ssd et il n’a plus jamais redémarré (même avec le disque dur initial) …
                              +Un conseil, soyez très prudents !

                              +
                              + +
                              + +
                            8. +
                            9. +
                              + +
                              +

                              Emiso tu es un boulet

                              +
                              + +
                              + +
                            10. +
                            11. +
                              + +
                              +

                              Mon U36 avec un SSD Crucial M4 et une carte Intel Centrino n-6230 à la place de la n-100… que du bonheur.

                              +

                              Merci pour le tuto bien utile.

                              +
                              + +
                              +
                            12. +
                            13. +
                              + +
                              +

                              merci pour ce tuto; a noter un truc pour ne pas perdre les vis et savoir où les replacer:

                              +

                              http://fr.slideshare.net/stepmond/remplacement-ecran-sony-vaio?ref=http://www.pcsoleil.fr/ecran-pc-portable-sony-vaio-casse/

                              +

                              3eme diapo

                              +
                              + +
                              +
                            14. +
                            15. +
                              + +
                              +

                              Can you send me a close up picture of both sides of the U36JC I/O board? It would be nice if you could give me also the resistor/capacitor values. I need to connect my SATA hard drive, but the board itself is very expensive. Do you think I can solder the SATA wires to a cable and plug that to the hard drive?

                              +
                              + +
                              +
                                +
                              • +
                                + +
                                +

                                I don’t want to reopen my laptop just for take picture. I don’t know if there are any out pins to solder a SATA connector but in Intel driver menu on Windows a port with no-connection appear.

                                +
                                + +
                                +
                              • +
                              +
                            16. +
                            17. +
                              + +
                              +

                              Hello , j’ai également cet Asus et comme tout le monde je pense, bien tenté de remplacer le disque dur de base par un ssd ^^.
                              + Sur la première image de ton petit tuto, tu sembles montrer des emplacements vis sous les antidérapants.. ca me semble étrange ;p. Je voulais savoir si ceux si ne risquaient pas de s’abîmer (et du coup s’ils se remettaient également facilement).
                              + Si tu passe par là, merci de la réponse!

                              +
                              + +
                              +
                                +
                              • +
                                + +
                                +

                                J’ai pu décoller et recoller sans problème les patins antidérapants. Mais à la rigueur prévoir du double-face pour remplacement.

                                +
                                + +
                                +
                              • +
                              +
                            18. +
                            19. +
                              + +
                              +

                              Oh my goodness! Incredible article dude! Thank
                              +you so much, However I am going through issues with your RSS.
                              +I don’t know why I am unable to subscribe to it. Is there anyone else getting the same RSS problems? Anybody who knows the answer will you kindly respond? Thanks!!

                              +
                              + +
                              + +
                            20. +
                            + +
                            +

                            Répondre à leboulanger ¬
                            Annuler la réponse

                            +
                            +

                            + +

                            +

                            NOTE - Vous pouvez utiliser les éléments et attributs HTML tags and attributes:
                            <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

                            + + + +

                            +

                            +
                            +
                            +

                            Trackbacks and Pingbacks:

                            + +
                            +
                            +
                            +
                            + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/b00b77cfea015a2ac4b397d597f7bece6a8fb4d6.00000257.html b/www/.content.EZtzwPjb/html/b00b77cfea015a2ac4b397d597f7bece6a8fb4d6.00000257.html new file mode 100644 index 0000000..75366fd --- /dev/null +++ b/www/.content.EZtzwPjb/html/b00b77cfea015a2ac4b397d597f7bece6a8fb4d6.00000257.html @@ -0,0 +1,817 @@ + + + + + + + + Install RancherOs on FreeNas 11.3 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            +

                            Install RancherOs on FreeNas 11.3

                            +
                              +
                            • The automated RancherOs installation aka Docker VM has been removed in
                              +11.3
                            • +
                            • RancherOs doesn’t support EFI boot out of the box
                            • +
                            • Thanks to MKinney howto
                            • +
                            • This howto is provided without warranty
                            • +
                            • TODO the proper way of doing it is somewhere here
                            • +
                            • Some stuff about losetup
                            • +
                            +

                            1. Make a EFI bootable RancherOs image

                            + +
                              +
                            1. wget https://releases.rancher.com/os/v1.5.5/rancheros.iso
                            2. +
                            3. wget http://releases.ubuntu.com/18.04/ubuntu-18.04.4-live-server-amd64.iso
                            4. +
                            5. mkdir tmpubuntu tmprancheros tmprancheros_dest
                            6. +
                            7. sudo mount ubuntuserverlive.iso tmpubuntu
                            8. +
                            9. sudo mount rancheros.iso tmprancheros
                            10. +
                            11. fallocate -l 150M rancheros.img
                            12. +
                            13. gdisk rancheros.img o,y,n,enter,enter,ef00,w,Y
                            14. +
                            15. sudo losetup --partscan --show --find rancheros.img
                            16. +
                            17. sudo mkfs.fat /dev/loop2p1
                            18. +
                            19. sudo mount /dev/loop2p1 rancheros_dest
                            20. +
                            21. sudo cp -r tmprancheros/* tmprancheros_dest/
                            22. +
                            23. sudo cp -r tmpubuntu/EFI tmprancheros_dest/
                            24. +
                            25. Replace the content of tmprancheros_dest/boot/grub/grub.cfg with:
                            26. +
                            +
                            set timeout=5
                            +menuentry "Install Rancher" {
                            +    linux   /boot/vmlinuz-4.14.138-rancher rancher.autologin=tty1 rancher.autologin=ttyS0 rancher.autologin=ttyS1 console=tty1 console=ttyS0 console=ttyS1 printk.devkmsg=on panic=10 ---
                            +    initrd  /boot/initrd-v1.5.5
                            +}
                            +
                            +
                              +
                            1. sudo umount tmprancheros_dest
                            2. +
                            3. sudo losetup -d /dev/loop2
                            4. +
                            5. sudo umount tmpubuntu tmprancheros
                            6. +
                            +

                            2. Installation in FreeNas as Vm

                            +
                              +
                            1. Create a VM with EFI boot 2GB RAM choose virtio for all the driver
                              +better performance with linux
                            2. +
                            3. Add a RAW device and select your rancheros.img
                            4. +
                            5. Start the VM
                            6. +
                            7. Go to serial and in the shell cu -l /dev/nmdmXX at this point you should
                              +have a rancher shell
                            8. +
                            9. sudo fdisk /dev/vda then g,n,1,+200M,t,1,n,enter,enter,w you
                              +should something like at the end
                            10. +
                            +
                            Disk /dev/vda: 10 GiB, 10737418240 bytes, 20971520 sectors
                            +Units: sectors of 1 * 512 = 512 bytes
                            +Sector size (logical/physical): 512 bytes / 16384 bytes
                            +I/O size (minimum/optimal): 16384 bytes / 16384 bytes
                            +Disklabel type: gpt
                            +Disk identifier: 2B56EE14-44BF-6443-A197-EF73723B715F
                            +Device      Start      End  Sectors  Size Type
                            +/dev/vda1    2048   411647   409600  200M EFI System
                            +/dev/vda2  411648 20971486 20559839  9.8G Linux filesystem
                            +
                            +
                              +
                            1. Format the boot partition sudo mkdosfs -n RANCHER -F 32 /dev/vda1
                            2. +
                            3. Format the main filesystem sudo mkfs.ext4 -L RANCHER_STATE /dev/vda2
                            4. +
                            5. Create a cloud-config.yml see https://rancher.com/docs/os/v1.x/en/installation/running-rancheros/server/install-to-disk/ for minimum content
                            6. +
                            7. sudo mkdir /dev/sr0 for installer checking about iso mounted before
                              +install
                            8. +
                            9. Install ros with sudo ros install -t gptsyslinux -c cloud-config.yml -d /dev/vda -p /dev/vda2
                            10. +
                            11. mkdir /mnt/efipart && sudo mount /dev/vda1 /mnt/efipart
                            12. +
                            13. mkdir /mnt/installer && sudo mount /dev/vdb1 /mnt/installer
                            14. +
                            15. sudo cp -r /mnt/installer/EFI /mnt/efipart
                            16. +
                            17. Add a grub.cfg in /mnt/efipart/EFI/BOOT/grub.cfg with in it:
                              +You might want to add/remove autologin as you wish below

                              +
                                +
                              • tty0 I think is VNC but I havent tested it
                              • +
                              • ttyS0 is serial (I have autologin enable in serial see below)
                              • +
                              +
                            18. +
                            +
                            set timeout=1
                            +menuentry "Rancher from GPT" {
                            +    search --no-floppy --set=root --label RANCHER_STATE
                            +    linux    /boot/vmlinuz-4.14.138-rancher printk.devkmsg=on rancher.state.dev=LABEL=RANCHER_STATE rancher.state.wait panic=10 console=tty0 console=ttyS0 rancher.autologin=ttyS0
                            +    initrd    /boot/initrd-v1.5.5
                            +}
                            +
                            +
                              +
                            1. sudo umount /mnt/*
                            2. +
                            3. sudo reboot
                            4. +
                            5. You are good to go
                            6. +
                            7. You can remove the RAW device in the VM config in FreeNas
                            8. +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +

                            + 12 commentaires

                            +
                            + +
                            +
                            +
                            +
                            +

                            + Rudi Pittman + · 18 mars 2020 à 17 h 46 min +

                            +

                            Can I or can I not use my existing rancher img that was previously being used by freenas? ie

                            +

                            -rw-r–r– 1 root wheel 21474836480 Mar 18 02:13 rancher.img_docker1

                            +

                            I have around 10 different docker containers defined inside and I really don’t want to have to redo all of them.

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 11 avril 2020 à 16 h 32 min +

                              +

                              If the image is a VM image like a zvol, I think it will work, but I’m not sure, it will only work if the 11.2 behavior is EFI compatible.
                              +You may patch your existing image/snapshot by justing installing the efi bootloader aka grub in it.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Rob RD + · 4 avril 2020 à 19 h 36 min +

                            +

                            Parfait – Merci Beaucoup! :)

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + dario + · 12 avril 2020 à 14 h 07 min +

                            +

                            Thanks for this guide. I am stuck at Step 12:
                            +> sudo mount /dev/vdb1 /mnt/installer
                            +ther is no /dev/vdb1, regardingless if I choose to boot at step 10 or not

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 22 avril 2020 à 23 h 34 min +

                              +

                              Your installer may be on a different disk if you choose SCSI in place of virtio when you add the raw image device in Freenas, you can identified with

                              +

                              cat /proc/partitions

                              +

                              and

                              +

                              mount

                              +

                              it should be /dev/sda1 maybe

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + somebody + · 19 avril 2020 à 13 h 07 min +

                            +

                            Thank you so much for the step by step guide, it was very helpful. With this I can finally transition from my old Docker VM inherited from FreeNAS 11.1.

                            +

                            Going to state the obvious (for some) and mention that when new version gets released and you run

                            +

                            sudo ros os upgrade

                            +

                            to upgrade you’ll also need to update initrd command in your grub.cfg file on EFI partition, otherwise you’re just going to boot into the same version.

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + Rudi Pittman + · 1 juin 2020 à 1 h 58 min +

                              +

                              The problem I have is even though grub is specifying 4.14.138 and initird-v1.5.5 on reboot it tells me those don’t exist. Doing a grub edit and using autocomplete the files it ACTUALLY find are /boot/vmlinuz-4.14.73-rancher and /boot/initrd-v1.4.2. Where the heck are those coming from? When I look on /dev/vda2/boot I see the 4.14.138 and initrd-v1.5.5 as the grub reflects. /mnt/efipart/EFI/BOOT has:

                              +

                              -rwxr-xr-x 1 root root 1334816 May 30 15:13 BOOTx64.EFI
                              +-rwxr-xr-x 1 root root 316 May 30 15:15 grub.cfg
                              +-rwxr-xr-x 1 root root 1146744 May 30 15:13 grubx64.efi

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Max + · 3 mai 2020 à 16 h 40 min +

                            +

                            The image i downloaded does not start. Stuck at step4 in the bhyve shell. Any idea how to proceed from there?

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 10 mai 2020 à 14 h 53 min +

                              +

                              Try to change the device order to a lower or higher number to be sure it try to load the good bootloader.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Rudi Pittman + · 1 juin 2020 à 18 h 28 min +

                            +

                            If you do a « ros os version » on your efi image it’s NOT v1.5.5. It’s v1.4.2 and running the command although it MAY download the files does nothing to actually make the grub.cfg FIND those new files. It’s still looking for vmlinuz-4.14.73 and initrd-v1.4.2.

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + Johnny Z + · 25 juin 2020 à 8 h 49 min +

                              +

                              I found them. The guide doesn’t necessarily state where or when to get the files. You should be able to do this to find and copy the files

                              +

                              cd /mnt/installer/boot/
                              +ls -asl
                              +(here you will find the two files)
                              +cp vmlinuz-4.14.138-rancher ../../efipart/efi/boot/
                              +cp initrd-v1.5.5.5 ../../efipart/efi/boot

                              +

                              Double check my paths here but that should basically get you the files so the kernel can load proper

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Toohai + · 16 septembre 2020 à 8 h 18 min +

                            +

                            Missing step after 12 in part 1?

                            +

                            sudo cp -r tmpubuntu/boot/grub tmprancheros_dest/boot/

                            + +
                            +
                            + +
                            +
                            +
                            +

                            Répondre à Toohai Annuler la réponse

                            Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                            +
                            +
                            +

                            + +

                            +
                            +
                            +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            + + +
                            + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/b03d9a883e4d7a0f05c4705de8e9f9efed3c9ac8.00000060.xml b/www/.content.EZtzwPjb/html/b03d9a883e4d7a0f05c4705de8e9f9efed3c9ac8.00000060.xml new file mode 100644 index 0000000..31d878e --- /dev/null +++ b/www/.content.EZtzwPjb/html/b03d9a883e4d7a0f05c4705de8e9f9efed3c9ac8.00000060.xml @@ -0,0 +1,17 @@ + + + Commentaires sur : Préparation Migration + + http://blog.hugopoi.net/2011/02/16/preparation-migration/ + Internet, Hardware et Bidouille + Mon, 22 Aug 2016 14:09:10 +0000 + hourly + 1 + https://wordpress.org/?v=4.6.1 + + diff --git a/www/.content.EZtzwPjb/html/b0c1ecc495e15ed6019e4fecc652f22390f59946.00000612.css b/www/.content.EZtzwPjb/html/b0c1ecc495e15ed6019e4fecc652f22390f59946.00000612.css new file mode 100644 index 0000000..fe440fe --- /dev/null +++ b/www/.content.EZtzwPjb/html/b0c1ecc495e15ed6019e4fecc652f22390f59946.00000612.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;background:#fff;border:1px +solid #f00;font-size:10pt;width:280px;padding:2px}span.wpcf7-not-valid-tip-no-ajax{color:#f00;font-size:10pt;display:block}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/b0c4a3f14639bdaf211445cf67c9f72240180de9.00000520.html b/www/.content.EZtzwPjb/html/b0c4a3f14639bdaf211445cf67c9f72240180de9.00000520.html new file mode 100644 index 0000000..2a36b26 --- /dev/null +++ b/www/.content.EZtzwPjb/html/b0c4a3f14639bdaf211445cf67c9f72240180de9.00000520.html @@ -0,0 +1,364 @@ + + + + + + + stream – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            + +
                            +
                            + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/b19b95acef4bc2e053d2cd90a0db6635c7671750.00000788.js b/www/.content.EZtzwPjb/html/b19b95acef4bc2e053d2cd90a0db6635c7671750.00000788.js new file mode 100644 index 0000000..f912c2b --- /dev/null +++ b/www/.content.EZtzwPjb/html/b19b95acef4bc2e053d2cd90a0db6635c7671750.00000788.js @@ -0,0 +1,386 @@ +jQuery(document).ready(function($) { + + $.material.init(); + + var window_width = $(window).width(); + + // Activate the Tooltips + $( '[data-toggle="tooltip"], [rel="tooltip"]' ).tooltip(); + + // Activate bootstrap-select + $( '.select' ).dropdown({ + 'dropdownClass': 'dropdown-menu', + 'optionClass': '' + }); + + // Active Carousel + $( '.carousel' ).carousel({ + interval: 10000 + }); + + var transparent = true; + + if ($( '.navbar-color-on-scroll' ).length !== 0) { + $(window).on( 'scroll', debounce(function () { + if ($(document).scrollTop() > 200) { + if (transparent) { + transparent = false; + $( '.navbar-color-on-scroll' ).removeClass( 'navbar-transparent' ); + $( '.navbar-color-on-scroll' ).addClass( 'navbar-not-transparent' ); + } + } else { + if (!transparent) { + transparent = true; + $( '.navbar-color-on-scroll' ).addClass( 'navbar-transparent' ); + $( '.navbar-color-on-scroll' ).removeClass( 'navbar-not-transparent' ); + } + } + }, 17)); + } + + if (window_width >= 768) { + var big_image = $( '.page-header[data-parallax="active"]' ); + if (big_image.length !== 0) { + $(window).on( 'scroll', debounce(function () { + if (isElementInViewport(big_image)) { + var oVal = ($(window).scrollTop() / 3); + big_image.css({ + 'transform': 'translate3d(0,' + oVal + 'px,0)', + '-webkit-transform': 'translate3d(0,' + oVal + 'px,0)', + '-ms-transform': 'translate3d(0,' + oVal + 'px,0)', + '-o-transform': 'translate3d(0,' + oVal + 'px,0)' + }); + } + }, 4)); + } + + } + + function debounce(func, wait, immediate) { + var timeout; + return function () { + var context = this, + args = arguments; + clearTimeout(timeout); + timeout = setTimeout(function () { + timeout = null; + if (!immediate) { + func.apply(context, args); + } + }, wait); + if (immediate && !timeout) { + func.apply(context, args); + } + }; + } + + function isElementInViewport(elem) { + var $elem = $(elem); + + // Get the scroll position of the page. + var scrollElem = ((navigator.userAgent.toLowerCase().indexOf( 'webkit' ) !== -1) ? 'body' : 'html' ); + var viewportTop = $(scrollElem).scrollTop(); + var viewportBottom = viewportTop + $(window).height(); + + // Get the position of the element on the page. + var elemTop = Math.round($elem.offset().top); + var elemBottom = elemTop + $elem.height(); + + return ((elemTop < viewportBottom) && (elemBottom > viewportTop)); + } + + /* Smooth Scroll */ + var verifiedNavHeight; + verifiedNavHeight = verifyNavHeight(); + + // Verify again on resize + $(window).resize(function() { + verifiedNavHeight = verifyNavHeight(); + }); + + function verifyNavHeight() { + var navHeight; + if (window_width < 768) { + navHeight = $('.navbar').outerHeight(); + } else { + navHeight = ( $('.navbar').outerHeight() - 15 ); + } + return navHeight; + } + + $( '.navbar a[href*="#"], a.btn[href*="#"]' ).click(function () { + var menuitem = $(this).attr( 'class' ); + if (menuitem === 'dropdown-toggle' ) { + return; + } + if (location.pathname.replace(/^\//, '' ) === this.pathname.replace(/^\//, '' ) && location.hostname === this.hostname) { + var target = $(this.hash); + target = target.length ? target : $( '[name=' + this.hash.slice(1) + ']' ); + if (target.length) { + $( 'html,body' ).animate({ + scrollTop: ( target.offset().top - verifiedNavHeight ) + }, 1200); + + // Hide drop-down and submenu + if( $('.navbar .navbar-collapse').hasClass( 'in' ) ) { + $('.navbar .navbar-collapse.in').removeClass('in'); + } + if( $('.navbar li.dropdown').hasClass('open') ) { + $('.navbar li.dropdown.open').removeClass('open'); + } + + return false; + } + } + }); + + /* Apply matchHeight to match team grid */ + var byRow = $( 'body' ).hasClass( 'home' ); + + if (typeof $( '#features' ) !== 'undefined' ) { + $( '.hestia-features .row, .features .row' ).each(function () { + $(this).children( '.col-md-4' ).matchHeight(byRow); + }); + } + + if (typeof $( '#products' ) !== 'undefined' ) { + $( '.products .row' ).each(function () { + $(this).children( '.col-md-3' ).matchHeight(byRow); + }); + } + + if (typeof $( '.products' ) !== 'undefined' ) { + $( '.products' ).each(function () { + $(this).children( '.col-sm-6' ).matchHeight(byRow); + }); + } + + if (typeof $( '#portfolio' ) !== 'undefined' ) { + $( '.hestia-work .row, .work .row' ).each(function () { + $(this).children( '.col-md-4' ).matchHeight(byRow); + }); + + $( '.hestia-work .row, .work .row' ).each(function () { + $(this).children( '.col-md-6' ).matchHeight(byRow); + }); + } + + if (typeof $( '#team' ) !== 'undefined' ) { + $( '.hestia-team .row, .team .row' ).each(function () { + $(this).children( '.col-md-6' ).matchHeight(byRow); + }); + } + + if (typeof $( '#testimonials' ) !== 'undefined' ) { + $( '.hestia-testimonials .row, .testimonials .row' ).each(function () { + $(this).children( '.col-md-4' ).matchHeight(byRow); + }); + } + + if (typeof $( '#pricing' ) !== 'undefined' ) { + $( '.pricing .row .col-md-7' ).each(function () { + $(this).children( '.col-md-6' ).matchHeight(byRow); + }); + } + + if ( typeof $( '#blog' ) !== 'undefined' ) { + $( '.hestia-blogs .row, .blogs .row' ).each( function() { + $( this ).children( '.col-md-4' ).matchHeight( byRow ); + }); + } + + if (typeof $( '.contact_name_wrap' ) !== 'undefined' ) { + if ($( '.contact_name_wrap' ).hasClass( 'col-sm-4' )) { + $( '.contact_name_wrap' ).removeClass( 'col-sm-4' ); + } + if ($( '.contact_name_wrap' ).hasClass( 'col-lg-4' )) { + $( '.contact_name_wrap' ).removeClass( 'col-lg-4' ); + } + $( '.contact_name_wrap' ).addClass( 'col-md-6' ); + $( '.contact_name_wrap .form-group' ).addClass( 'label-floating' ); + var placeholder1 = $( '.contact_name_wrap #pirate-forms-contact-name' ).attr( 'placeholder' ); + $( '.contact_name_wrap #pirate-forms-contact-name' ).removeAttr( 'placeholder' ); + $( '' ).insertBefore( '.contact_name_wrap #pirate-forms-contact-name' ); + } + + if (typeof $( '.contact_email_wrap' ) !== 'undefined' ) { + if ($( '.contact_email_wrap' ).hasClass( 'col-sm-4' )) { + $( '.contact_email_wrap' ).removeClass( 'col-sm-4' ); + } + if ($( '.contact_email_wrap' ).hasClass( 'col-lg-4' )) { + $( '.contact_email_wrap' ).removeClass( 'col-lg-4' ); + } + $( '.contact_email_wrap' ).addClass( 'col-md-6' ); + $( '.contact_email_wrap .form-group' ).addClass( 'label-floating' ); + var placeholder2 = $( '.contact_email_wrap #pirate-forms-contact-email' ).attr( 'placeholder' ); + $( '.contact_email_wrap #pirate-forms-contact-email' ).removeAttr( 'placeholder' ); + $( '' ).insertBefore( '.contact_email_wrap #pirate-forms-contact-email' ); + } + + if (typeof $( '.contact_subject_wrap' ) !== 'undefined' ) { + if ($( '.contact_subject_wrap' ).hasClass( 'col-sm-4' )) { + $( '.contact_subject_wrap' ).removeClass( 'col-sm-4' ); + } + if ($( '.contact_subject_wrap' ).hasClass( 'col-lg-4' )) { + $( '.contact_subject_wrap' ).removeClass( 'col-lg-4' ); + } + $( '.contact_subject_wrap' ).addClass( 'col-md-12' ); + $( '.contact_subject_wrap .form-group' ).addClass( 'label-floating' ); + var placeholder3 = $( '.contact_subject_wrap #pirate-forms-contact-subject' ).attr( 'placeholder' ); + $( '.contact_subject_wrap #pirate-forms-contact-subject' ).removeAttr( 'placeholder' ); + $( '' ).insertBefore( '.contact_subject_wrap #pirate-forms-contact-subject' ); + } + + if (typeof $( '.contact_message_wrap' ) !== 'undefined' ) { + $( '.contact_message_wrap textarea' ).attr( 'rows', '6' ); + $( '.contact_message_wrap .form-group' ).addClass( 'label-floating' ); + var placeholder4 = $( '.contact_message_wrap #pirate-forms-contact-message' ).attr( 'placeholder' ); + $( '.contact_message_wrap #pirate-forms-contact-message' ).removeAttr( 'placeholder' ); + $( '' ).insertBefore( '.contact_message_wrap #pirate-forms-contact-message' ); + } + + var searchForm = $('.search-form label'); + if (typeof (searchForm) !== 'undefined' ) { + + var searchField = $(searchForm).find('.search-field'); + var placeholder = $(searchField).attr( 'placeholder' ); + if( $(searchField).attr('value') === '') { + $(searchForm).addClass('label-floating is-empty'); + } else { + $(searchForm).addClass('label-floating'); + } + $( searchField ).removeAttr( 'placeholder' ); + $( '' ).insertBefore( searchField ); + } + + var wooSearchForm = $('.woocommerce-product-search'); + if (typeof (wooSearchForm) !== 'undefined' ) { + + var wooSearchField = $(wooSearchForm).find('.search-field'); + var wooPlaceholder = $(wooSearchField).attr( 'placeholder' ); + if( $(wooSearchField).attr('value') === '') { + $(wooSearchForm).addClass('label-floating is-empty'); + } else { + $(wooSearchForm).addClass('label-floating'); + } + $( wooSearchField ).removeAttr( 'placeholder' ); + $( '' ).insertBefore( wooSearchField ); + + } + if (typeof $( '.contact_submit_wrap' ) !== 'undefined' ) { + $( '.pirate-forms-submit-button' ).addClass( 'btn btn-primary' ); + } + + if (typeof $( '.form_captcha_wrap' ) !== 'undefined' ) { + if ($( '.form_captcha_wrap' ).hasClass( 'col-sm-4' )) { + $( '.form_captcha_wrap' ).removeClass( 'col-sm-6' ); + } + if ($( '.form_captcha_wrap' ).hasClass( 'col-lg-6' )) { + $( '.form_captcha_wrap' ).removeClass( 'col-lg-6' ); + } + $( '.form_captcha_wrap' ).addClass( 'col-md-12' ); + } + + if (typeof $( 'form' ) !== 'undefined' ) { + $( 'form' ).addClass( 'form-group' ); + } + + if (typeof $( 'input' ) !== 'undefined' ) { + if (typeof $( 'input[type="text"]' ) !== 'undefined' ) { + $( 'input[type="text"]' ).addClass( 'form-control' ); + } + + if (typeof $( 'input[type="email"]' ) !== 'undefined' ) { + $( 'input[type="email"]' ).addClass( 'form-control' ); + } + + if (typeof $( 'input[type="url"]' ) !== 'undefined' ) { + $( 'input[type="url"]' ).addClass( 'form-control' ); + } + + if (typeof $( 'input[type="password"]' ) !== 'undefined' ) { + $( 'input[type="password"]' ).addClass( 'form-control' ); + } + + if (typeof $( 'input[type="tel"]' ) !== 'undefined' ) { + $( 'input[type="tel"]' ).addClass( 'form-control' ); + } + + if (typeof $( 'input[type="search"]' ) !== 'undefined' ) { + $( 'input[type="search"]' ).addClass( 'form-control' ); + } + + if (typeof $( 'input.select2-input' ) !== 'undefined' ) { + $( 'input.select2-input' ).removeClass( 'form-control' ); + } + } + + if (typeof $( 'textarea' ) !== 'undefined' ) { + $( 'textarea' ).addClass( 'form-control' ); + } + + if (typeof $( '.form-control' ) !== 'undefined' ) { + $( '.form-control' ).parent().addClass( 'form-group' ); + + $(window).on( 'scroll', function () { + $( '.form-control' ).parent().addClass( 'form-group' ); + }); + } + + $(window).on( 'scroll', function () { + if( $('body').hasClass('home') ) { + if ($(window).width() >= 751) { + var hestia_scrollTop = $(window).scrollTop(); // cursor position + var headerHeight = $('.navbar').outerHeight(); // header height + var isInOneSection = 'no'; // used for checking if the cursor is in one section or not + // for all sections check if the cursor is inside a section + $('#carousel-hestia-generic, section').each(function () { + var thisID = '#' + $(this).attr('id'); // section id + var hestia_offset = $(this).offset().top; // distance between top and our section + var thisHeight = $(this).outerHeight(); // section height + var thisBegin = hestia_offset - headerHeight; // where the section begins + var thisEnd = hestia_offset + thisHeight - headerHeight; // where the section ends + // if position of the cursor is inside of the this section + if (hestia_scrollTop + verifiedNavHeight >= thisBegin && hestia_scrollTop + verifiedNavHeight <= thisEnd) { + isInOneSection = 'yes'; + $('nav .active').removeClass('active'); + $('nav a[href$="' + thisID + '"]').parent('li').addClass('active'); // find the menu button with the same ID section + return false; + } + if (isInOneSection === 'no') { + $('nav .active').removeClass('active'); + } + }); + } + } + }); + + $('body').on('added_to_cart',function(){ + + if( typeof $( '.added_to_cart' ) !== 'undefined' ) { + + $( '.added_to_cart' ).each( function () { + if ( ! ( $( this ).parent().hasClass( 'hestia-view-cart-wrapper' ) ) ) { + $( this ).wrap( '
                            ' ); + } + }); + } + }); + + + function fixHeaderPadding() { + var navbar_height = $('.navbar-fixed-top').outerHeight(); + var beaver_offset = 40; + $('.pagebuilder-section').css('padding-top', navbar_height); + $('.fl-builder-edit .pagebuilder-section').css('padding-top', navbar_height + beaver_offset); + $('.page-header.header-small .container').css('padding-top', navbar_height + 110); + } + + fixHeaderPadding(); + + $( window ).resize(function() { + fixHeaderPadding(); + }); + +}); + diff --git a/www/.content.EZtzwPjb/html/b1d453b5971457dda331783a1e037d8bb1603dd6.00001204.js b/www/.content.EZtzwPjb/html/b1d453b5971457dda331783a1e037d8bb1603dd6.00001204.js new file mode 100644 index 0000000..bc1b451 --- /dev/null +++ b/www/.content.EZtzwPjb/html/b1d453b5971457dda331783a1e037d8bb1603dd6.00001204.js @@ -0,0 +1,2 @@ +/*! This file is auto-generated */ +window.addComment=function(v){var I,C,h,E=v.document,b={commentReplyClass:"comment-reply-link",commentReplyTitleId:"reply-title",cancelReplyId:"cancel-comment-reply-link",commentFormId:"commentform",temporaryFormId:"wp-temp-form-div",parentIdFieldId:"comment_parent",postIdFieldId:"comment_post_ID"},e=v.MutationObserver||v.WebKitMutationObserver||v.MozMutationObserver,r="querySelector"in E&&"addEventListener"in v,n=!!E.documentElement.dataset;function t(){d(),e&&new e(o).observe(E.body,{childList:!0,subtree:!0})}function d(e){if(r&&(I=g(b.cancelReplyId),C=g(b.commentFormId),I)){I.addEventListener("touchstart",l),I.addEventListener("click",l);var t=function(e){if((e.metaKey||e.ctrlKey)&&13===e.keyCode)return C.removeEventListener("keydown",t),e.preventDefault(),C.submit.click(),!1};C&&C.addEventListener("keydown",t);for(var n,d=function(e){var t=b.commentReplyClass;e&&e.childNodes||(e=E);t=E.getElementsByClassName?e.getElementsByClassName(t):e.querySelectorAll("."+t);return t}(e),o=0,i=d.length;o + + galaxy – HugoPoi + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Mon, 22 Aug 2016 14:10:26 +0000 + fr-FR + hourly + 1 + https://wordpress.org/?v=4.6.1 + + Orange et consort, impossible d’obtenir le désimlockage + http://blog.hugopoi.net/2013/09/15/orange-et-consort-impossible-dobtenir-le-desimlockage/ + http://blog.hugopoi.net/2013/09/15/orange-et-consort-impossible-dobtenir-le-desimlockage/#comments + Sat, 14 Sep 2013 23:01:40 +0000 + + + + + + + + + + http://blog.hugopoi.net/?p=794 + Lire la suite »

                            ]]>
                            + http://blog.hugopoi.net/2013/09/15/orange-et-consort-impossible-dobtenir-le-desimlockage/feed/ + 1 +
                            + + Test du Samsung Galaxy S + http://blog.hugopoi.net/2010/12/27/test-du-samsung-galaxy-s/ + http://blog.hugopoi.net/2010/12/27/test-du-samsung-galaxy-s/#comments + Mon, 27 Dec 2010 18:45:47 +0000 + + + + + + http://blog.hugopoi.net/?p=234 + Lire la suite »

                            ]]>
                            + http://blog.hugopoi.net/2010/12/27/test-du-samsung-galaxy-s/feed/ + 1 +
                            +
                            +
                            diff --git a/www/.content.EZtzwPjb/html/b26e2f97eab17223642bc991165889a533874b52.00000131.html b/www/.content.EZtzwPjb/html/b26e2f97eab17223642bc991165889a533874b52.00000131.html new file mode 100644 index 0000000..c8f0cfd --- /dev/null +++ b/www/.content.EZtzwPjb/html/b26e2f97eab17223642bc991165889a533874b52.00000131.html @@ -0,0 +1,1370 @@ + + + + + + + + Réparations Samsung SyncMaster 2232BW – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            +

                            Allô docteur on a un problème,

                            +

                            En ce dimanche calme avant la fin de mes partiels, mon écran Samsung SyncMaster 2232BW commençait à faire des siennes. Celui-ci depuis un mois ou deux clignotait de façon systématique au démarrage, au début pendant seulement quelques secondes, puis au fur et à mesure, de plus en plus jusqu’à devoir attendre 10 minutes pour que je puisse l’utiliser. Après 3 ans et 4 mois de bons et loyaux services, il voulait me quitter. J’ai tenté le support Samsung par email avec peu d’espoir car l’écran a dépassé sa garantie de 4 mois (oui oui les bâtards -> obsolescence programmée). Et donc j’ai eu le droit à un joli mail automatique me disant de contacter un numéro non surtaxé (mais avec combien de temps d’attente ?), ce que je n’ai pas fait car je n’avais pas envie de passer 30min au téléphone pour au final avoir un « On est désolé mais on ne peut rien faire pour vous car la garantie est dépassée, mais on peut envoyer votre écran en SAV pour faire un devis pour seulement 50 boules ». Concernant le support email de Samsung France, je leur donne une note de 0/20 puisque ce n’est pas un support mais une redirection vers le téléphone.

                            +

                            +

                            Symptômes

                            +

                            Clignotements de l’écran et de la LED power systématiques à chaque démarrage de l’écran. Je me suis tout de suite douté d’un problème d’alimentation et après quelques recherches sur google, confirmation du problème sur beaucoup d’écrans et téléviseurs. Dans 99% des cas ce clignotement est dû à des condensateurs défectueux qu’il faut simplement changer :-D

                            +

                            Démontage

                            +

                            Donc après avoir cerné le problème, j’ai ouvert l’écran pour chercher les condos défectueux. J’ai trouvé une petite vidéo pour mon écran :

                            +

                            +

                            Voici quelques photos en plus pour vous aider :

                            +

                            Les outils que j’ai utilisé pour le démontage

                            +

                            Position des clips

                            +

                            Carte d’alimentation dans son emplacement

                            +

                            Et voici les condensateurs qui posent problèmes. Comme vous pouvez le voir sur la photo, ils sont très facilement identifiable car ils sont bombés sur le dessus.

                            +

                            Condensateurs défectueux

                            +

                            Vous devez donc acheter des condensateurs de remplacement, par exemple sur Conrad.

                            +

                            Mes condensateurs suivant étaient endommagés:

                            +
                              +
                            • 1 de 330uF 25V remplacé par un 470uF 25V
                            • +
                            • 3 de 820uF 25V remplacé par des 1000uF 50V
                            • +
                            +

                            Pour la réparation, il vous faut un fer à souder avec une panne pas trop grosse mais d’une grosse puissance car les soudures sont très solides (j’ai galéré avec un fer pro qui monte jusqu’à 400°).

                            +

                            Tout remarche nickel après remontage, plus de clignotement pour seulement quelques euros.

                            +

                            edit du 19 aout 2014 : j’ai trouvé le service manuel de l’écran si besoin samsung_2232bw_chassis_lpe22bs_sm

                            + + +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +

                            + 41 commentaires

                            +
                            + +
                            +
                            +
                            +
                            +

                            + c'est_moi + · 30 janvier 2012 à 18 h 57 min +

                            +

                            Mille mercis et mille félicitations pour cette fiche technique si pédagogue.

                            +

                            J’espère que le partiels se passent plus que parfait !!

                            +

                            J’ai gardé l’url de la page pour réparer mon écran dans un petit mois : j’espère que la page soit toujours là ;-)

                            +

                            Merci encore.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Maxime + · 5 mai 2012 à 12 h 31 min +

                            +

                            Bonjour HugoPoi!

                            +

                            Merci pour toutes vos infos et votre topic, je voulais avoir quelques précisions sur les condos à changer pour samsung 2232bw, je veux passer commande mais j’ai un problème avec les dimensions des condos, si vous pouvez m’informer de ce que je pourrais acheter car il y a trop de références. En vous remerciant A+ Maxime

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 14 juin 2012 à 22 h 56 min +

                              +

                              N’importe quel condensateur polarisé avec des caractéristiques proches devrait marché.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + gaubjezj + · 14 juin 2012 à 22 h 32 min +

                            +

                            Merci pour le tuto qui m’a bien aidé.
                            +J’ai utilisé un fer de 40 W avec une panne fine et
                            +une pompe à dessouder et j’ai retiré les condensateurs sans problème.
                            +Merci encore (3€40 pour le dépannage).

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + DragonTribal + · 2 juillet 2012 à 12 h 02 min +

                            +

                            super merci pour manifique tuto.
                            +Est-il possible de changer les 5 condensateurs 820uF 25V par des 1000uF 50V? car moi mes 5 condensateurs sont presque HS ;-)

                            +

                            Cordialement

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 2 juillet 2012 à 12 h 25 min +

                              +

                              Oui je penses que ça marchera étant donné que c’est des valeurs plus grandes.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + FRED + · 11 juillet 2012 à 19 h 11 min +

                            +

                            Bravo, MERCI.
                            +Je n’ai encore rien fait…mais j’ai le même problème, et tu me donnes la solution.
                            +Super.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + daninpet + · 31 août 2012 à 10 h 10 min +

                            +

                            Merci mille fois!

                            +

                            J’avais ce problème, et j’ai emmener la photo des trucs a remplacer chez le réparateur du coin et voila!! Ça m’a coûté 7 Euros (mais j’habite en Thaïlande)

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + moi + · 15 novembre 2012 à 15 h 25 min +

                            +

                            super mon 2232bw vient de lâcher, les 3 + 1 condos sont gonflés j ai trouvé un 330 en 35v qui traîné sur un écran mort et j’ai commander 5 1000uf 35v sur ebay pour moins de 3 dollars, ca devrait le faire j’espere j’attend d’être livré merci! par contre j’ai qu’un gros pistolet a soudure et un gros fil d’étain, c’est pas évident mais bon ca le fait quand même =)

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + moi + · 7 décembre 2012 à 9 h 33 min +

                              +

                              parfait je vient de recevoir les condos; j ai meuler la panne du fer a souder pour la tailler en mine de crayon et j ai reussi a les souder facilement ils étaient un peu plus gros mais ca passe tout juste, mais attention ne pas prendre des plus gros! l écran fonctionne nickel maintenant.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Croco + · 19 janvier 2013 à 18 h 39 min +

                            +

                            Je souhaiterai savoir si tu as utilisé un fer à souder bien précis étant donné que la carte est une multi couche.
                            +Merci

                            + +
                            +
                            + + +
                            + +
                            +
                            +
                            +
                            +

                            + momo + · 10 juin 2013 à 13 h 15 min +

                            +

                            slut je voudrai savoir ou trouvé les condansateur a changer sur mon ecran qui clignote

                            + +
                            +
                            + + +
                            + +
                            +
                            +
                            +
                            +

                            + lokmane + · 5 juillet 2013 à 16 h 08 min +

                            +

                            merci j’avais un ecran rouge ! et c’etais la tresse qui relie mon ecran votre page m’a aider a l’ouvrir et a le reparer merci bien

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + ML + · 21 août 2013 à 19 h 11 min +

                            +

                            Merci ! Ecran réparé. Halte à l’obsolescence programmée.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + raymond + · 31 octobre 2013 à 13 h 20 min +

                            +

                            ai vu votre vidéo et les explications pour la reparation de mon écran , apparemment le méme probléme l écran passe au noir apres quelque seconde , j ai vu un le condensateur en bas a gauche gonflé , je l ai fait changé (10€) les autre condensateur étant toujour bon d après la personne qui me l a changé , mais j ai toujour le méme probléme cela peut il venir de la carte video a gauche ?

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 20 décembre 2013 à 12 h 27 min +

                              +

                              Si la led bleu du bouton power s’éteint aussi c’est un problème d’alimentation sinon c’est plus compliqué et ça peut provenir de condensateurs sur la partie vidéo. Changé tous les plus gros condensateurs sur la partie alimentation pourrait être un bon début même si ils ne paraissent pas endommagé.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + damien + · 4 novembre 2013 à 0 h 29 min +

                            +

                            bonjour,

                            +

                            j’ai des crasses coincées entres l’écran et le truc juste derrière, est ce qu’on sais les enlever en démontant la dalle ?

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 20 décembre 2013 à 12 h 28 min +

                              +

                              Je ne sais si cette partie de la dalle est démontable, je penses que c’est collé mais vous pouvez essayer.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + mac + · 1 décembre 2013 à 17 h 30 min +

                            +

                            Merci HugoPoi, avec ces excellents conseils et tuto vidéo, mon écran est reparti pour une nouvelle vie.
                            +Pour les composants, si vous êtes sur Paris ou proche. La boutique RAM électroniques est une bonne adresse, 138 bd Diderot 75012 Paris (Place de la Nation).

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Bouddhid + · 16 janvier 2014 à 19 h 21 min +

                            +

                            Merci beaucoup pour ces conseils ! J’étais à 2 doigts de jeter mon écran, le voilà comme neuf pour moins de 5€ ! Vive la bricole !

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Vincent + · 17 mai 2014 à 16 h 45 min +

                            +

                            Alors là merci.

                            +

                            Pour ce post, les photos, la vidéo, tout y est.

                            +

                            J’ai démonté l’écran assez vite, enlevé la carte, regarder quel condensateurs étaient gonflés,(il y en avaient 4), un magasin d’électronique sur lyon et une heure de démontage, soudure, remontage plus tard, voilà, c’est tout beau.
                            +Ca ne clignote plus, ça s’allume comme avant, comme neuf.

                            +

                            Et dire que j’allais jeter cet écran et claquer 350 euros pour un neuf…

                            +

                            Coût de l’opération pour 4 condensateurs, du fil d’étain 7 euros.

                            +

                            Je précise que je n’avais jamais fais de soudure sur composant électronique auparavant.
                            +Comme quoi cette opération de réparation est à la portée de tous.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Julot + · 6 juillet 2014 à 13 h 49 min +

                            +

                            Site vraiment détaillé et très claire. J’ai pu dépanner mon écran avec succès. Merci beaucoup pour ces précieuses explications.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + PaniK31 + · 29 juillet 2014 à 9 h 21 min +

                            +

                            Pas besoin d’une grosse puissance pour le fer, il faut au préalable gratter le vernis sur l’étain afin de pouvoir le faire fondre plus facilement

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + R211_IP-45130B + · 20 août 2014 à 14 h 04 min +

                            +

                            Bonjour à tous,

                            +

                            Une âme charitable peut-elle me communiquer ce qui est gravé sur la résistance CMS R211 de la carte d’alimentation/inverter IP-45130B qui équipe le SAMSUNG 2232BW ? Cette résistance a pris un coup de tournevis et je n’arrive pas à déterminer sa valeur de résistance car son marquage est effacé et comme le composant est abimé la mesure à l’ohmmètre indique l’infinie.

                            +

                            Merci par avance.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + roger + · 24 octobre 2014 à 17 h 21 min +

                            +

                            Ca refonctionne après échange de 4 condensateurs :
                            +-un 330uf25v remplacé à l’identique.
                            +-trois 820uf25v remplacés par 1000uf25v.
                            +Le tout pour quelques €. Le plus dur était le dessoudage, la tresse n’était pas très efficace contrairement à la pompe.
                            +Grand merci à HugoPoi.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Max + · 26 février 2015 à 16 h 28 min +

                            +

                            ENORME MERCI!! J’ai réparé mon écran en 20mn pour 3,50€, il était à 2 doigts de partir à la déchetterie. Ca faisait des mois qu’il clignotait, et l’allumage mettait parfois plus d’une demi heure. J’ai changé 5 condos 820uf25v et 1 330uf25v, par exactement les mêmes en neuf, et là il démarre au quart de tour! Ca fait plaisir! :)

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + rocco michelle + · 7 octobre 2015 à 10 h 16 min +

                              +

                              Bonjour je ne sais si vous verrez mon message mais je tente…je cherche quelqu’un qui accepterait de changer mes condensateurs sur mon samsung, les réparateurs me demandent 70 à 80 euros et encore ils n’ont pss envie de le faire et me disent d’acheter un nouvel écran. j’aurais bien tenter mais je n’ai pas de matériel et j’ai lu que les condo pouvaient être très dangereux s’ils avaient de la charge alors j’ai la trouille de bidouiller pq je n’y connais rien. si vous êtes de lyon acccepteriez vous de changer mes condensateurs pour 45 euros? merci de votre réponse.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + lecakeseb + · 27 juillet 2015 à 15 h 26 min +

                            +

                            Bonjour,

                            +

                            J’ai utilisé la vidéo pour démonter mon écran afin de le nettoyer de 4 bêtes d’orage infiltrés entre le premier écran (noir) et la dalle (blanche) de mon samsung SyncMaster 2232W

                            +

                            Petits conseils afin de modérer ce que j’ai pu voir dans cette vidéo :

                            +

                            0 : aspirez, nettoyez l’extérieur de l’écran avant de l’ouvrir et nettoyez la table qui vous servira d’atelier, pour éviter les poussières qui s’infiltreront forcément plus tard si vous ne le faites pas…
                            +1 : pour ouvrir, utilisez plutôt un couteau à enduire pour la première partie (le cadre). Vous n’abîmerez ainsi pas du tout l’écran. Soyez patients, ne forcez pas ! ça viendra doucement, mais ça viendra. Il m’a fallu à peine 10 minutes, sans détériorer l’écran, sans le griffer… Il est encore nickel !
                            +2 : attention à ne pas déconnecter les fils reliant le cadre à la carte. Inutile pour simplement nettoyer l’écran.
                            +3 : pour séparer les deux éléments de la dalle entre lesquels les bêtes se sont infiltrées, les doigts suffisent, pas besoin d’outils qui viendraient les endommager. La dalle blanche reste à l’horizontale, l’écran noir sera tenu à la verticale.
                            +4 : utiliser un chiffon doux ne peluchant pas pour enlever les bêtes (faites-vous aider de quelqu’un qui les enlèvera pendant que vous tenez l’écran extérieur en position verticale).
                            +5 : repositionnez la colle d’étanchéité qui aurait pu se déplacer, avant de repositionner les deux écrans.
                            +6 : commencer par refermer par le bas de l’écran (sinon les éléments de réglage situés au bas de l’écran – luminosité, contraste,…- ne se replaceront pas correctement).
                            +7 : Une fois l’écran refermé, j’ai appliqué un peu de « barrage aux insectes », avec un chiffon à l’arrière de mon écran en insistant surtout sur les bouches d’aération par lesquelles les maudites bestioles ont du s’infiltrer. En espérant ne pas avoir à ouvrir !

                            +

                            Bon courage à vous !

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Michel Jousserandot + · 20 janvier 2017 à 20 h 41 min +

                            +

                            Merci pour les conseils au démontage.
                            +J’avais un problème un peu différent :l’écran ne s’allumait plus du tout. Avec un copain beaucoup plus malin que moi, on a détecté 2 fusibles dont l’un était fichu. On l’a remplacé par un petit fil de cuivre. Et tout a remarché comme avant.
                            +Il faut surtout faire attention quand on teste la partie haute tension
                            +Michel.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Crec + · 14 juillet 2017 à 10 h 20 min +

                            +

                            Bonjour. Très bons conseils avertis. Merci beaucoup.
                            +Peut-on avoir les mêmes conseils pour un écran BX2250.
                            +Merci par avance.
                            +Crec

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 6 août 2017 à 14 h 03 min +

                              +

                              J’ai pas de BX2250 donc dans le détails non mais si c’est les même symptômes ça doit la même procédure.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Ferronnier + · 10 août 2017 à 17 h 42 min +

                            +

                            Un grand merci !
                            +J’ai changé tous les condensateurs de la partie alimentation de la carte, en déportant certains qui n’avaient pas le même format qu’à l’origine, et ça tourne nickel !

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Nours + · 1 décembre 2017 à 15 h 17 min +

                            +

                            Ca fait des années que j’ai cet article enregistré dans un coin, en nourrissant l’espoir d’avoir un jour le courage de réparer ce foutu écran… Après plus de cinq ans c’est chose faite \o/
                            +Un giga, hypra, immense merci pour ce tutoriel tellement bien expliqué et facile d’accès (je n’avais pas touché à un fer à souder depuis… Oh boy 15 ans déjà).
                            +Après une longue pause, l’écran reprend du service… Jusqu’à la prochaine panne /o/

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Alex + · 11 août 2018 à 13 h 28 min +

                            +

                            Quelqu’un sait qui pourrait me le faire svp j ai le même problème mais aucun matériel

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + David + · 5 février 2019 à 21 h 06 min +

                            +

                            Merci Hugo pour ce tuto qui m’a déjà servi en 2013 et qui va me resservir aujourd’hui car mon 2ème 2232bw commence à avoir les mêmes symptômes.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + yvan + · 23 novembre 2019 à 17 h 14 min +

                            +

                            Bonjour
                            +j’ai tenté de changer le condensateur qui avait l’air naze mais ça n’a pas marché … toujours le bouton bleu allumé, l’écran est reconnu par Windows 10 même si l’écran est éteint
                            +grâce au service manuel de l’écran fourni plus haut, j’ai vérifié les tensions jusque sur la carte de la dalle et elles sont correctes, ainsi que sur la carte elle-même, tout est ok, donc je pense que ce n’est plus un problème de condensateur
                            +pour les fusibles, ils ressemblent plutôt à des composants qu’à de simple fusibles, mais comme j’ai les bonnes tension, je ne pense pas que ça vienne de là
                            +j’ai bien peur que ce soit la dalle qui soit naze ? quelqu’un a t il des idées supplémentaires avant que je le jette avec grand regret (c’est un 2032bw, mais c’est la même chose, même si ma carte électronique est un peu différente car plus récente
                            +merci d’avance pour vos conseils

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + yvan + · 24 novembre 2019 à 17 h 26 min +

                            +

                            finalement j’ai trouvé, c’est un petit fusible vert qui ressemble à une résistance mais tout vert avec écrit 4A LF qui assure l’alimentation de la dalle.
                            +En le shuntant, mon écran a retrouvé l’image.
                            +après enquête il s’agit d’un fusible pico de 4ampères de chez little fuse, pas du tout évident à trouver
                            +Résolu !

                            + +
                            +
                            + +
                            +
                            +

                            + Reflow Dell 1546 | HugoPoi + · 22 août 2016 à 16 h 09 min +

                            +

                            […] « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable de marque Dell un 1546 pour être précis. Encore […]

                            + +
                            +
                            + +
                            +
                            +

                            + Reflow Dell Inspiron 1546 – HugoPoi + · 23 juin 2017 à 23 h 18 min +

                            +

                            […] d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un […]

                            + +
                            +
                            + +
                            +
                            +
                            +

                            Répondre à Nours Annuler la réponse

                            Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                            +
                            +
                            +

                            + +

                            +
                            +
                            +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            + + +
                            + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/b2c989392dea155c998946b268a1b3b1d6993b3c.00000198.html b/www/.content.EZtzwPjb/html/b2c989392dea155c998946b268a1b3b1d6993b3c.00000198.html new file mode 100644 index 0000000..f11cba4 --- /dev/null +++ b/www/.content.EZtzwPjb/html/b2c989392dea155c998946b268a1b3b1d6993b3c.00000198.html @@ -0,0 +1,645 @@ + + + + + + + + Réparer et transformer une clé USB de 4Go en 8Go – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            +

                            J’étais en train de bosser sur un projet Java quand ma belle mère me demande si je peux regarder une clé USB Maxell 4GB qui ne marche plus.Clé USB Maxell

                            +

                            Je branche et la clé se connecte correctement mais pas de table des partitions et la clé indiquait 0 octet de disponible. Je tente un « diskpart.exe » celui-ci me dit « pas de media ». Autre symptôme la LED sur la clé restait continuellement allumé. Je commence à me dire que c’est mort puis comme d’habitude je fais une recherche Google et je tombe sur ça http://www.easytutoriel.com/flasher-reparer-cle-usb-memoire/(ce lien est à moitié mort la DB est cassée) . Donc je télécharge ChipGenius_v4_00_0022_RC3 et il reconnait ma clé il me dit que c’est un controleur Phison PS2251-67(PS2267) et une puce mémoire Toshiba de type TLC.ChipGenius4

                            +

                            Rien de bien exceptionnel je vais sur http://flashboot.ru/iflash/ je farfouille je trouve des noms de logiciels mais pas de lien téléchargement qui marche puis pour finir je vais sur http://dl.mydigit.net/special/up/phison.html, sans traduire je comprends vite que c’est une mine d’or ce site web, tout un tas de nom de logiciel récupérer chez les fabricants de puces en tout genre de quoi flasher n’importe quoi. J’arrive à ça http://rghost.net/39050058, je télécharge j’exécute GetInfo.exe  (sans les droits administrateur) qui me donne les même infos que ChipGenius.GetInfo V3.8.3.2

                            +

                            Après il y a deux soft MPALL_F1_8400_v360_0B.exe et MPALL_F2_v360_0B.exe . Au hasard je lance le premier (sans les droits administrateur) et je clic sur Update sans vraiment savoir ce que ça allait vraiment faire. Et la ça reconnait la clé dans la liste et surprise il me dit que la puce de mémoire est une 8Go au début je crois à une erreur.MPAll 8400 3.60.0B

                            +

                            N’ayant plus rien à perdre je clic sur Start et cela lance la procédure de flash du firmware du contrôleur, pas de documentation donc je peux pas vraiment savoir ce que ça fait réellement. DRAME ça affiche une erreur et un beau fail, je ne désespère pas je débranche rebranche la clé. Et c’est un ………………….WIN Windaube m’affiche le beau panneau voulez-vous formater cette merde. Deuxième WIN de taille, la clé est reconnu comme une clé de 8 Go LOL. Je mets plus de 4 Go de données dedans je fais un checksum des fichiers et ça marche !!!

                            +

                            L’erreur survenu à la fin du flash peu provenir du fait que je n’avais pas lancé l’exécutable avec des privilèges élevés donc le programme n’a pas pu effectuer le formatage.

                            +

                            Maintenant la grande question comment ce fait t’il que Maxell qui est l’assembleur de cet clé USB nous vend t’il des clé USB 4GB comme sont en réalité des clé de 8Go. J’ai trois début de réponse :

                            +

                            1) Soit Maxell se fout de notre gueule sur les prix et du coup au lieu d’acheter 4000 puces Toshiba de 4 Go et 4000 de puces de 8Go , Maxell achète 8000 puces de 8Go et bidouille les firmware des contrôleurs pour faire des clés USB de 4 et 8 Go.

                            +

                            2) Maxell utilise des puces 8Go qui ont des défauts d’usines et utilise uniquement une parti de la puce. Ce qui expliquerait les problèmes que j’ai rencontré avec cette clé au début.

                            +

                            3) Maxell utilise les 4 Go restant pour faire du over-provisioning pour les cellules de mémoire défectueuse en écriture étant donné que je penses que ce genre de mémoire n’a pas beaucoup de cycle d’écriture mais c’est très peu probable que ce type technologie propre aux SSD soit dans de vulgaire clé USB bas de gamme.

                            +
                            +
                            +
                            +
                            +
                            Catégories : BidouilleHardwareNews
                            +
                            +
                            +
                            + + + + + + + + + +
                            +
                            +
                            +
                            +
                            +
                            +
                            +

                            + 8 commentaires

                            +
                            + +
                            +
                            +
                            +
                            +

                            + 2Pi informatique + · 16 mai 2013 à 9 h 01 min +

                            +

                            Je n’avais jamais entendu parler de ce genre de manip, et du gain potentiel de capacité.

                            +

                            C’est assez étonnant, et je me demande si tous les constructeurs « brident » la capacité des clés usb …

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Amedoumba + · 22 juillet 2013 à 14 h 15 min +

                            +

                            Hello !
                            +Intéressant comme manip. J’ai une de mes clés USB avec le même genre de probleme. Je vais donc tester et voir si cela fonctionne. Je n’ai rien à perdre de toute façon.
                            +Merci en tout cas.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + diop + · 14 novembre 2013 à 15 h 11 min +

                            +

                            pour répéré cle usb

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + diop + · 14 novembre 2013 à 15 h 12 min +

                            +

                            salut pour ma cle usb

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + watchix + · 28 décembre 2013 à 10 h 40 min +

                            +

                            « File is deleted » :-(

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 4 janvier 2014 à 12 h 38 min +

                              +

                              à moitié réparer ;-)

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Jean + · 22 avril 2015 à 20 h 18 min +

                            +

                            Je penche pour ma part pour les raisons 1 et 2.

                            +

                            La première raison car le coût de la flash est diminuée plus on en commande, et aussi ça évite d’avoir deux chaines d’assemblage pour le PCB de la clé.

                            +

                            La seconde raison car c’est ce qui est pratiqué par pas mal de fabricants du domaine du semi-conducteur pour « créer » une gamme : AMD n’hésitait pas à vendre en entrée de gamme des processeurs amputés de certains coeurs défectueux. Et si il manque des processeurs défectueux … et bien on désactive quand même des coeurs !

                            +

                            Il y a aussi un paramètre à prendre en compte : la redevance sur la copie privée. Elle est proportionnelle à la capacité du support de stockage (cf. http://www.culturecommunication.gouv.fr/Politiques-ministerielles/Propriete-litteraire-et-artistique/Commission-pour-la-remuneration-de-la-copie-privee/Questions-pratiques/Les-montants-de-la-Remuneration-pour-Copie-Privee). Elle est de 0,64€ pour une clé de 4 Go, et 1,04€ pour une clé de 8 Go.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Pila + · 10 décembre 2015 à 21 h 45 min +

                            +

                            Salut,
                            +Je pense qu’il s’agit de puce MLC ( je crois que c’est le terme ? ), qui ont de très bonne performances sur la première moitié de leur capacité, et des très mauvaises sur la seconde moitié, car celle-ci est obtenu par réécriture sur la première partie.

                            +

                            En tout cas merci pour les différentes infos que tu as glanées !

                            + +
                            +
                            + +
                            +
                            +
                            +

                            Répondre à Pila Annuler la réponse

                            Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                            +
                            +
                            +

                            + +

                            +
                            +
                            +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            + + +
                            + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/b33095582121e3696dfe420fcec15bb623141131.00000224.html b/www/.content.EZtzwPjb/html/b33095582121e3696dfe420fcec15bb623141131.00000224.html new file mode 100644 index 0000000..5f4699a --- /dev/null +++ b/www/.content.EZtzwPjb/html/b33095582121e3696dfe420fcec15bb623141131.00000224.html @@ -0,0 +1,611 @@ + + + + + + + + Niquer les DRMs d’Amazon AKA convertir vos ebook vers EPUB sans DRM – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            +

                            Comment j’en suis arrivé là

                            +

                            Un jour dans une contrée de la blogosphère version 0.666 d’Internet, je voulais acheter un livre  numérique car moins cher et puis ça pollue moins ça équivaut à un aller-retour Paris-Nice en BM de CO2 quand tu le télécharge. Aussi gros avantages du livre numérique vous pouvez l’avoir à plusieurs endroits en même temps, sur mon téléphone et sur mes ordinateurs et bien sûr il est possible de Ctrl+F. Maintenant j’aime bien garder ma vie privée et choisir quand et avec quoi je peux ouvrir mes livres numériques. Donc l’application Kindle Amazon qui envoie toute les minutes les pages que vous avez lues, ce que vous avez cherché & cie. Ça craint un max NO WAY. Deuxième truc chiant j’ai pas les services Google sur mon inteliphone et j’ai que des OS Unix libre sous la main et je n’ai pas non plus de Kindle. Donc les DRMs ça devient une galère.

                            +

                            Comment qu’on va faire ?

                            +
                              +
                            • Utiliser l’application Windows Amazon Kindle dans un préfixe Wine avec PlayOnLinux pour pouvoir récupérer ses livres et vos clés de déchiffrement.
                            • +
                            • Utiliser Calibre avec le plugin DeDRM pour pouvoir lire vos livres et les convertir au format EPUB sans DRM.
                            • +
                            • La solution présenté ici devrait marcher sans problème sous Windows. (Sans PlayOnLinux/Wine)
                            • +
                            • Pour Mac OSX je ne sais si c’est aussi simple mais il y a moyen. (Avec Homebrew)
                            • +
                            +

                            Niquer les DRM avec classe et Calibre

                            +

                            1. Pré-requis

                            +

                            Pour cette recette vous aurez besoin de :

                            + +

                            2. Installer Amazon Kindle avec wine

                            +
                              +
                            • Ouvrir PlayOnLinux
                            • +
                            • Aller dans Outils / Gérer les versions de Wine
                            • +
                            • Installer la version 3.5 de Wine en x86 (32bits)
                            • +
                            • Installer un programme non-listé
                            • +
                            • Installer un programme dans un nouveau disque virtuel
                            • +
                            • Choisir un nom du genre `amazonkindle`
                            • +
                            • Cocher Utiliser une autre version de Wine
                            • +
                            • Sélectionner la version 3.5
                            • +
                            • Sélectionner Windows version 32bits
                            • +
                            • Cancel l’installation de mono et gecko il ne vous servirons pas
                            • +
                            • Sélectionner l’installateur de Amazon Kindle
                            • +
                            • Normalement à cette étape Amazon Kindle ce lance et vous demande de vous authentifiez avec votre compte Amazon, pensez à choisir le bon domaine Amazon en bas.
                            • +
                            • Une fois connecté dans Amazon Kindle, quitter l’application et finir l’installation dans PlayOnLinux
                            • +
                            • Re-lancer Amazon Kindle depuis PlayOnLinux puis téléchargé vos livres ( commencez par un pour tester)
                            • +
                            +

                            3. Ajouter python 2.7 dans le préfixe Wine de Amazon Kindle

                            +

                            Cette étape va nous permettre d’exécuter correctement le script d’extraction de DeDRM des clés de déchiffrement dans le préfixe Wine contenant nos clés.

                            +
                              +
                            • Allez dans Configurer/Divers de votre préfixe Amazon Kindle
                            • +
                            • Cliquer sur Exécuter un .exe dans ce disque virtuel
                            • +
                            • Choisir l’installateur de python 2.7 (le .msi préalablement téléchargé)
                            • +
                            • Installer python 2.7 en laissant tout par défaut
                            • +
                            +

                            4. Configurer Calibre

                            +
                              +
                            • Décompresser DeDRM_tools
                            • +
                            • Lancer Calibre
                            • +
                            • Aller dans Préférences / Extensions
                            • +
                            • Charger une extension à partir d’un fichier et choisir dans le dossier plugin calibre de DeDRM_tools DeDRM_plugin.zip
                            • +
                            • Maintenant FERMER Calibre
                            • +
                            +

                            5. Importer vos clés de déchiffrement

                            +

                            Cette étape est l’astuce en carton du jour permettant que tout fonctionne.

                            +
                              +
                            • Aller dans PlayOnLinux
                            • +
                            • Aller dans Configurer/Divers de votre préfixe Amazon Kindle
                            • +
                            • Cliquer sur Ouvrir un Shell
                            • +
                            • Lancer echo $WINEPREFIX
                            • +
                            • Vous devriez avoir un truc du genre : /home/vagrant/.PlayOnLinux//wineprefix/amazonkindle
                            • +
                            • Lancer echo $PATH
                            • +
                            • Vous devriez avoir un truc du genre : /home/vagrant/.PlayOnLinux//wine/linux-x86/3.5/bin/:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/usr/lib/wine
                            • +
                            • Garder ces 2 variables nous allons en avoir besoin
                            • +
                            • Maintenant ouvrez un terminal normal
                            • +
                            • Lancer PATH='/home/vagrant/.PlayOnLinux//wine/linux-x86/3.5/bin/:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/usr/lib/wine' wine --version
                            • +
                            • Vous devriez avoir wine-3.5 afficher ce qui veut dire que tout est bon et que c’est bien la version de wine installer pour le prefixe Amazon Kindle qui se lance
                            • +
                            • Lancer PATH='/home/vagrant/.PlayOnLinux//wine/linux-x86/3.5/bin/:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/usr/lib/wine' calibre
                            • +
                            • Cliquer sur Afficher uniquement les extensions installées par l’utilisateur, puis Sélectionner DeDRM, puis Personnaliser une extension
                            • +
                            • Cliquer sur Kindle for Mac/PC ebooks
                            • +
                            • Dans le champs WINEPREFIX mettez la valeur correspondante relevé plus haut chez moi /home/vagrant/.PlayOnLinux//wineprefix/amazonkindle
                            • +
                            • Puis cliquer sur le plus + en vert
                            • +
                            • Normalement si tout va bien vous avez le panneau Unique Key Name qui s’affiche vous pouvez le valider
                            • +
                            • Voilà vous avez importé une clé de déchiffrement
                            • +
                            +

                            6. Importer vos livres puis les convertir

                            +
                              +
                            • Cliquer sur Ajouter des livres
                            • +
                            • Aller chercher vos livres Kindle dans Documents/My Kindle Content
                            • +
                            • Si tout est bon vous pouvez ouvrir vos livres et les visualiser
                            • +
                            • Faites un clique droit Convertir sur un livre au format AZW3 puis vous pouvez lancer la conversion au format EPUB
                            • +
                            +

                            Fin

                            +

                            Clairement j’en ai chier pour en arriver jusque là.

                            +

                            Beaucoup de choses sont automatisables dans Calibre une fois la récupérations des clés réussi.

                            +

                            Vous devez toujours repasser par l’application Amazon Kindle pour la partie téléchargement des livres je ne crois pas qu’il y est d’autre solutions pour le moment. (à part disposer d’un Kindle enregistré sur votre compte Amazon)

                            +

                            Calibre est parfait pour synchroniser vos E-readeuses.

                            +

                            PS : Faut pas le dire mais la technique montré ici marche aussi avec les livres empruntés dans le cadre de l’abonnement Kindle à 9€ par mois. Cependant je ne sais pas comment Amazon va calculer les redevances pour vos auteurs préférés car normalement il se base sur le pourcentage de lecture d’un livre. Dans notre cas ce sera 0% systématiquement …

                            +

                            Inspirations

                            +
                              +
                            1. WineHQ Amazon Kindle https://appdb.winehq.org/objectManager.php?sClass=version&iId=35955&iTestingId=102115
                            2. +
                            3. Korben https://korben.info/comment-deproteger-un-livre-kindle-pour-le-preter-le-lire-sur-lordi-ou-lexporter-sous-un-autre-format-pdf-epub.html
                            4. +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +

                            + 2 commentaires

                            +
                            + +
                            +
                            +
                            +
                            +

                            + Romaric + · 3 mai 2019 à 18 h 19 min +

                            +

                            Juste dire un ENORME MERCI pour ce tutoriel, grâce auquel j’ai réussi à récupérer un livre acheté sur Amazon pour le lire sur une liseuse KOBO.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Romaric + · 4 mai 2019 à 20 h 11 min +

                            +

                            Seule chose à penser à faire, sous peine sinon de ne pas réussir à relancer Kindle.
                            +Une fois installée et lancée, dans l’appli Kindle, dans les réglages, désactiver l’installation automatique des mises à jour. Sinon au prochain lancement de Kindle par Playonlinux, il tombera sur l’installeur de nouvelle version et plantera.

                            + +
                            +
                            + +
                            +
                            +
                            +

                            Laisser un commentaire

                            Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                            +
                            +
                            +

                            + +

                            +
                            +
                            +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            + + +
                            + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/b3bcda7805c521ce1506fcfa71b2e35feb0586dd.00000698.css b/www/.content.EZtzwPjb/html/b3bcda7805c521ce1506fcfa71b2e35feb0586dd.00000698.css new file mode 100644 index 0000000..20df2bb --- /dev/null +++ b/www/.content.EZtzwPjb/html/b3bcda7805c521ce1506fcfa71b2e35feb0586dd.00000698.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7 .screen-reader-response{position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);height:1px;width:1px;margin:0;padding:0;border:0}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{color:#f00;font-size:1em;display:block}.use-floating-validation-tip span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;border:1px +solid #f00;background:#fff;padding: .2em .8em}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/b477c09eb51e81f9b847720c8e9169f02270ef0e.00000733.js b/www/.content.EZtzwPjb/html/b477c09eb51e81f9b847720c8e9169f02270ef0e.00000733.js new file mode 100644 index 0000000..8472db3 --- /dev/null +++ b/www/.content.EZtzwPjb/html/b477c09eb51e81f9b847720c8e9169f02270ef0e.00000733.js @@ -0,0 +1,96 @@ +jQuery(document).ready(function($) +{ + $('.wp_syntax').bind( + { + mouseover: function() + { + var w = $(this).find('table').outerWidth(); + var hw = $(document).width() - $(this).offset().left - 20; + + /* + * Test code. + */ + /*var left, top; + left = $(this).offset().left; + top = $(this).offset().top; + + $(this) + .appendTo('body') + .css({ + 'position': 'absolute', + 'left': left + 'px', + 'top': top + 'px' + }); + */ + + if(w > $(this).outerWidth()) { + // $(this).css({'position':'relative', 'z-index':'9999', 'box-shadow':'5px 5px 5px #888', 'width':(w > hw ? hw : w)+'px'}); + $(this).css({'position':'relative', 'z-index':'9999', 'width':(w > hw ? hw : w)+'px'}); + } + }, + mouseout: function() + { + // $(this).removeAttr('style'); + $(this).css({'position':'relative', 'z-index':'', 'width':'auto'}); + }, + dblclick: function() + { + //Create text area on top of code on double click + //This can make copying of the code easier + + var jthis = $(this); + if (!jthis.data('hasTextArea')) { + var code = jthis.find(".theCode").html(); + var ta = $('

                            + +

                            + + + + + +
                            + +
                            + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/b788ba64ea150440b1b311d1487711793367f93e.00000069.html b/www/.content.EZtzwPjb/html/b788ba64ea150440b1b311d1487711793367f93e.00000069.html new file mode 100644 index 0000000..e541b96 --- /dev/null +++ b/www/.content.EZtzwPjb/html/b788ba64ea150440b1b311d1487711793367f93e.00000069.html @@ -0,0 +1,590 @@ + + + + + + + + Asus U36JC-RX260V – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            +

                            Depuis le temps que je voulais investir dans un pc portable, je l’ai enfin fait. Je cherchais une machine en complément de mon fixe avec comme premiers critères l’autonomie et un minimum de puissance. J’ai donc acheté un ultra-portable Asus, un chassie U36JC avec les caractéristiques suivantes :

                            +
                              +
                            • Ecran 13,3″ 1366×768
                            • +
                            • Processeur Intel Core I5-480M
                            • +
                            • 4Go de Ram
                            • +
                            • Carte Graphique Intel HD2000 et Nvidia Geforce 310M (Optimus)
                            • +
                            • Batterie 8 cellules
                            • +
                            • Dimension 32.2 x 23.2 x 1.90 cm Poids 1,6 Kg avec batterie
                            • +
                            +

                            Déballage

                            +

                            L’emballage est petit et contient le strict minimum, le pc et l’alimentation. Alors au niveau de l’équipement on a pour ce prix :

                            +
                              +
                            • Wifi Intel AGN
                            • +
                            • Un disque-dur 640 Go Western Digital Scorpio Blue
                            • +
                            • Un port USB 3.0
                            • +
                            • et déception pas de bluetooth
                            • +
                            +

                            L’écran est rétro-éclairé par LED, la luminosité minimum est très forte c’est un bon point par contre je trouve que les contrastes sont pâles et le rendu est un peu blanchâtre. La finition extérieure est bonne sans être excellente. L’autonomie est d’un peu moins de 5 heures en utilisation bureautique intensive web.

                            +

                            Optimus

                            +

                            Ce modèle dispose de la technologie Nvidia Optimus qui permet de switcher l’affichage entre le chipset graphique interne au processeur Intel et la carte Nvidia qui est sur le port PCI-Express de la carte mère. Cela permet en théorie de gagner en autonomie en utilisant le chip intel pour la bureautique et la carte Nvidia pour faire un peu de  jeux vidéo quand le pc est branché. J’ai testé et j’ai trouvé plusieurs points noirs concernant cette techno :

                            +
                              +
                            • Ne fonctionne que sous Windows car le système est conçu à partir de cet OS
                            • +
                            • Quand je switch d’un chip à l’autre je ne peux pas savoir quel carte est réellement active #lol ou j’ai loupé un truc ?
                            • +
                            • Pour switcher il faut utiliser le logiciel Power4Gear d’Asus enfin je suppose car c’est uniquement par ce biais que j’ai réussi …
                            • +
                            +

                            Je vais essayer de vous pondre un billet si je trouve des astuces permettant d’exploiter cette techno qui pour l’instant est un peu merdique. J’ai aussi remarqué un truc. Quand je suis sur le chip Intel, la carte Nvidia reste alimentée et monte en charge à environ 2-3%… bizarre !

                            +

                            Software

                            +

                            Un grand bravo à tout les éditeurs qui ont un partenariat avec Asus pour pré-installer toutes leur merdes sur les machines neuves. Cela me conforte dans l’idée que Windows est un OS poubelle, ou du moins les éditeurs font tout pour que ça le reste. Et tout ces pauvres gens qui subissent Microsoft et tout ces éditeurs. Bientôt on ne pourra plus choisir l’antivirus que l’on veut à moins de formater sa machine neuve. J’ai du passer environ deux bonnes heures pour dégager toutes les merdes qui étaient pré-installées.

                            +

                            Un petit merci à Asus pour tous ces logiciels avec des supers nom geek « fast boot », « Power4Gear », « virtual camera » mais dont la moitié est super impossible à utiliser ou même au début c’est tellement transparent qu’on ne sait pas vraiment à quoi ils servent vraiment. C’est l’impression que j’en ai eu.

                            +

                            L’aventure Cdiscount

                            +

                            J’ai eu de la « chance » et j’ai trouvé sur Cdiscount le modèle RX260V au prix de 680€ donc une affaire. C’était la première fois que je commandais chez Cdiscount, je soupçonnes des méthodes pas très catholique pour manipuler leurs clients. Sur la page du produit qui était une vente flash, il y avait le stock affiché en temps réel, et le nombre d’articles disponible est passé de 7 à 30 vers minuit le samedi du week-end durant lequel j’ai commandé. Je doute qu’il y ait eu un réapprovisionnement un samedi soir. Le délai de livraison est moyen, une semaine avec le mode de transport le moins cher. Et malgré avoir décoché les cases « recevoir nos offres promotionnelles » et compagnie, elles se sont re-cochées après la création de mon compte. J’ai reçu des mails assez intrusifs, car le site s’est rendu compte que je traquais un article, et m’ a envoyé plusieurs mails pour me dire « achetez, achetez, il y en aura plus après. »

                            +

                            Comme j’ai commandé avant le 14 mars j’étais éligible à l’offre promotionnelle -25% remboursé sur le rayon informatique. j’ai donc rempli le formulaire en ligne puis renvoyé le code barre de mon Asus. Cdiscount m’a confirmé (le 07/04/2011) seulement deux semaines après qu’il avait reçu mon dossier(reçu 24/03/2011), très réactif, pour me dire en plus que je recevrais mes bons d’achats dans un délai de 3 semaines ! (les emails c’est pire que la poste …) Donc 7+3*7=28, j’aurais 2 jours pour utiliser mon bon d’achat, c’est limite comme pratique non ?

                            +

                            Conclusion

                            +

                            Après relecture, mon article n’est pas très positif mais j’ai gardé le meilleur pour la fin. C’est mon premier PC portable, j’avais un peu peur qu’il soit plus lent que mon fixe mais il s’avère que non. En utilisation bureautique donc bon point, rapide à démarrer, sortir de veille. L’autonomie de 5h est un minimum, et pour 700 €, on a l’équivalent d’un netbook mais avec la puissance d’un notebook de base. L’équipement est complet pour ce niveau de prix mais j’aurais aimé avoir un port e-sata et du bluetooth pour qu’il soit top ! Sinon si on compare avec un Macbook air :

                            +
                              +
                            1. Le processeur Core i5-480M vs Core 2 Duo Asus Win !
                            2. +
                            3. Carte Graphique Nvidia Geforce 310M vs 320M Apple Win :(
                            4. +
                            5. Poids 1,6 Kg vs 1,32 kg mais impossible de trouver le poids avec équipement comparable ? so ==
                            6. +
                            7. Taille 1.90 cm vs 1,7 cm Apple Win
                            8. +
                            9. Equipement USB3/VGA-HDMI/Eth1Gb vs 2USB/DP Apple FAIL
                            10. +
                            11. Easy Upgrade Batterie/Disque-dur/RAM vs ???? Asus Win
                            12. +
                            13. Et pour finir le prix 700€ sans SSD vs 1400€ donc même si je rajoute un putain de SSD à 300€ Asus MegaWin
                            14. +
                            +

                            En résumé, ça fait  4 à 2, donc Apple peut aller se rhabiller avec ses MacBook air même pas foutu d’avoir un port Ethernet (et celui qui est vendu en option est 10/100 )

                            +

                             

                            +

                            Mince je me suis trompé d’image :

                            +

                            c'est pas un RX260V ...??...

                            +
                            +
                            +
                            +
                            +
                            Catégories : HardwareLogicielsTest
                            +
                            +
                            +
                            + + + + + + + + + +
                            +
                            +
                            +
                            +
                            +
                            +
                            +

                            + 4 commentaires

                            +
                            + +
                            +
                            +
                            +
                            +

                            + Mikky + · 1 mai 2011 à 20 h 51 min +

                            +

                            Yop Hugo,
                            +sache que lorsqu’on achète un pc portable faut le réinstaller comme ça tu peux dégager tout les merdes pré-installés car on peut choisir ceux qu’on veut intaller ;)

                            +

                            Bisous =)

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + darkneo + · 28 mai 2011 à 17 h 21 min +

                            +

                            Par contre sur ce modèle je crois que l’accès au disque n’est pas possible sans ouvrir toute la coque!

                            + +
                            +
                            + +
                            +
                            +

                            + Optimus vs Mégatron | HugoPoi + · 5 mai 2011 à 2 h 00 min +

                            +

                            […] l’heureux acquéreur #oupas d’un pc portable avec technologie Optimus de Nvidia (voir Asus U36JC). Après quelques jours de recherches et de tests je vais essayer de vous faire un résumé […]

                            + +
                            +
                            + +
                            +
                            +

                            + Démontage Asus U36 | HugoPoi + · 31 juillet 2011 à 2 h 00 min +

                            +

                            […] acheté un petit SSD pour mettre dans mon U36 acheté il y a quelques mois, je n’ai pas trouvé de procédure de démontage sur Internet donc voici les photos de mon […]

                            + +
                            +
                            + +
                            +
                            +
                            +

                            Répondre à darkneo Annuler la réponse

                            Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                            +
                            +
                            +

                            + +

                            +
                            +
                            +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            + + +
                            + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/b789470afc1f2edbabadd2c5f3dcf7ce75f6475d.00001315.xml b/www/.content.EZtzwPjb/html/b789470afc1f2edbabadd2c5f3dcf7ce75f6475d.00001315.xml new file mode 100644 index 0000000..95a47fe --- /dev/null +++ b/www/.content.EZtzwPjb/html/b789470afc1f2edbabadd2c5f3dcf7ce75f6475d.00001315.xml @@ -0,0 +1,7 @@ + +1.0HugoPoihttp://blog.hugopoi.netHugoPoihttp://blog.hugopoi.net/author/hugopoi/Reflow Dell Inspiron 1546rich600338<blockquote class="wp-embedded-content"><a href="/2016/08/22/reflow-dell-1546/">Reflow Dell Inspiron 1546</a></blockquote> +<script type='text/javascript'> +<!--//--><![CDATA[//><!-- + !function(a,b){"use strict";function c(){if(!e){e=!0;var a,c,d,f,g=-1!==navigator.appVersion.indexOf("MSIE 10"),h=!!navigator.userAgent.match(/Trident.*rv:11\./),i=b.querySelectorAll("iframe.wp-embedded-content");for(c=0;c<i.length;c++){if(d=i[c],!d.getAttribute("data-secret"))f=Math.random().toString(36).substr(2,10),d.src+="#?secret="+f,d.setAttribute("data-secret",f);if(g||h)a=d.cloneNode(!0),a.removeAttribute("security"),d.parentNode.replaceChild(a,d)}}}var d=!1,e=!1;if(b.querySelector)if(a.addEventListener)d=!0;if(a.wp=a.wp||{},!a.wp.receiveEmbedMessage)if(a.wp.receiveEmbedMessage=function(c){var d=c.data;if(d.secret||d.message||d.value)if(!/[^a-zA-Z0-9]/.test(d.secret)){var e,f,g,h,i,j=b.querySelectorAll('iframe[data-secret="'+d.secret+'"]'),k=b.querySelectorAll('blockquote[data-secret="'+d.secret+'"]');for(e=0;e<k.length;e++)k[e].style.display="none";for(e=0;e<j.length;e++)if(f=j[e],c.source===f.contentWindow){if(f.removeAttribute("style"),"height"===d.message){if(g=parseInt(d.value,10),g>1e3)g=1e3;else if(~~g<200)g=200;f.height=g}if("link"===d.message)if(h=b.createElement("a"),i=b.createElement("a"),h.href=f.getAttribute("src"),i.href=d.value,i.host===h.host)if(b.activeElement===f)a.top.location.href=d.value}else;}},d)a.addEventListener("message",a.wp.receiveEmbedMessage,!1),b.addEventListener("DOMContentLoaded",c,!1),a.addEventListener("load",c,!1)}(window,document); +//--><!]]> +</script><iframe sandbox="allow-scripts" security="restricted" src="/2016/08/22/reflow-dell-1546/embed/" width="600" height="338" title="« Reflow Dell Inspiron 1546 » — HugoPoi" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" class="wp-embedded-content"></iframe> diff --git a/www/.content.EZtzwPjb/html/b7920beeb1191ff3abca05575be93a228f070290.00000057.html b/www/.content.EZtzwPjb/html/b7920beeb1191ff3abca05575be93a228f070290.00000057.html new file mode 100644 index 0000000..26414af --- /dev/null +++ b/www/.content.EZtzwPjb/html/b7920beeb1191ff3abca05575be93a228f070290.00000057.html @@ -0,0 +1,554 @@ + + + + + + + + Freebox Révolution #oupas – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            +

                            Après une longue longue attente, ma Freebox révolution est finalement arrivée à la maison. J’ai opté pour la livraison par relai Kiala qui est gratuite mais moins rapide que par UPS, 20€ ça fait cher après les 120 € dégressifs à payer pour obtenir la nouvelle boite magique. Bon cette nouvelle box est grosse et plus lourde que la dernière voir le carton :

                            +

                            +

                            Une fois le carton ouvert, encore des cartons :

                            +

                            +

                            Et enfin voici la Freebox Server qui remplace la Freebox v5 ADSL, le modem-routeur mais celui-ci fait un plus que ça :

                            +

                            +

                            Alors le point fort, c’est qu’ on branche et ça marche, tous vos paramètres sont transférés dans votre nouvelle box (wifi, routeur, ip) en moins de 5 minutes votre connexion internet est de nouveau opérationnelle ! Au niveau esthétique, on aime ou on aime pas perso je la trouve plus « belle » que l’ancienne. Passons le nouveau design et voici les points forts :

                            +

                            Une première pour free l’interface Web locale pour gérer la box Server, celle-ci est disponible via http://mafreebox.freebox.fr. Elle sert à configurer tous les paramètres routeurs et wifi disponible via l’interface distante, affiche des infos temps réel sur votre connexion. Elle contient aussi un explorateur de fichier pour manager le disque-dur de 250Go intégré, ainsi qu’un système de téléchargement autonome succin qui prend en charge HTTP FTP et BitTorrent.

                            +

                            Cette freebox est aussi équipée d’un module DECT qui permet de connecter directement vos téléphones compatibles, moi j’ai essayé ça marche bien au début puis mon téléphone se dés-associe au bout 30 min tout seul mais toujours paramétré dans la freebox, affaire à suivre. (modèle : Siemens Gigaset C2)

                            +

                            Pour ce qui est du réseau, le wifi est de norme n avec support du WPA2-AES, et un switch Gigabit 4 ports dont 3 sont utilisables car le dernier sert à connecter le freeplug pour la box tv.

                            +

                            Donc pour conclure sur la Freebox Server, plus grosse que la V5 ADSL mais plus de fonctionnalités pas encore toutes au point mais ça avance toute les semaines avec les mises à jour. J’ai noté de mon coté une petite baisse de débit en download depuis mon passage à la v6 mais bon je suis à 4 Km du DSLAM donc 4,5Mbits c’est déjà bien. J’ai trouvé que la fonctionnalité de téléchargement autonome pouvait servir occasionnellement mais est trop simple et ne pourras pas remplacer un NAS ou un serveur pour l’instant. Des surprises sont à venir car elle contient une puce Broadcom VDSL2 qui permet de monter à 50Mbits sismétric sur des lignes de moins d’un kilomètre ; et aussi un emplacement pci-express pour une extension fem-to-cell maybe ? #freemobilevatoutpeter

                            +

                            Maintenant je vais parler TV avec la Freebox Player qui remplace la v5 HD :

                            +

                            +

                            Les points positifs :

                            +
                              +
                            • Interface agréable et simple à l’usage.(merci à @hkoprod)
                            • +
                            • Support USB complet : stockage, clavier, manette de jeux.
                            • +
                            • Support des vidéos HD en H264 1080p mkv
                            • +
                            +

                            Les points négatifs :

                            +
                              +
                            • La fonction Télévision ADSL et TNT, elle marche quand elle veut des fois faut que je redémarre ma box pour voir disparaître le jolie cercle de chargement.
                            • +
                            • Le navigateur internet est plus long que mon Galaxy S pour charger les pages.
                            • +
                            • Pas de sous-titres .srt et .mkv affiché
                            • +
                            • Les .avi ne marchent que après avoir lancé un .mkv avant sinon ça affiche « format non supporté » bizarre ??? (en Upnp avec Tversity et Vuze)
                            • +
                            • Problèmes de programmation des enregistrements
                            • +
                            • Les Blu-Ray mettent trois plombes pour se charger mais ils marchent
                            • +
                            +

                            Je vais m’arrêter là, liste complète sur le bugtracker de freeplayer.org.

                            +

                            Conclusion

                            +

                            Est-ce une révolution cette Freebox ? Pour moi non, car comme toujours chez free la finition n’est pas au rendez-vous. Beaucoup de fonctions sont bogués ou inexistante. Et puis la politique de prix pratiquée par Free avec cette nouvelle offre est détestable on se croirait presque chez Orange avec cette option dégroupage totale à 5.99€ qui au final est de la vente forcée, puis le coup de l’option TV à 2€/mois pour éviter les résiliations c’est pitoyable. Sinon, revenons sur du positif. Cette Freebox apporte un mini-pc Atom dans le salon pour seulement 8€/mois avec lecteur Blu-Ray, TNT HD, navigateur internet, « jeux vidéo » et seedbox ; les possibilités offertes par la puissance de ces deux boîtes sont prometteuses, vivement que les développeurs se bougent le cul ! (promis dans 3 ans je rejoins l’équipe de Free pour donner un coup de main)

                            +

                            Liens Complémentaires :

                            +

                            La freebox démontée

                            +

                            Un test complet et le dossier évolutif

                            +

                            Le dossier de presse de freenews.fr

                            +
                            +
                            +
                            +
                            +
                            Catégories : HardwareNewsTest
                            +
                            +
                            +
                            + + + + + + + + + +
                            +
                            +
                            +
                            +
                            +
                            +
                            +

                            + 2 commentaires

                            +
                            + +
                            +
                            +
                            +
                            +

                            + sebclick + · 9 février 2011 à 12 h 22 min +

                            +

                            Les points négatifs sont en majorité des bugs. Free aurait sûrement pu améliorer la satisfaction utilisateurs si des tests plus poussé avait été effectué avant. L’idéal serait presque que des bêta-testeurs (de vrais clients) soient sélectionné pour tester les box.

                            + +
                            +
                            + +
                            +
                            +

                            + Tweets that mention Freebox Révolution #oupas | HugoPoi -- Topsy.com + · 9 février 2011 à 12 h 44 min +

                            +

                            […] This post was mentioned on Twitter by HugoPoi and HugoPoi, Bim.im. Bim.im said: New Bim.im link: Freebox Révolution #oupas | HugoPoi http://bim.im/yk […]

                            + +
                            +
                            + +
                            +
                            +
                            +

                            Répondre à sebclick Annuler la réponse

                            Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                            +
                            +
                            +

                            + +

                            +
                            +
                            +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            + + +
                            + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/b79e04c078f7bb240c322fc92a50c9199df533f5.00001321.xml b/www/.content.EZtzwPjb/html/b79e04c078f7bb240c322fc92a50c9199df533f5.00001321.xml new file mode 100644 index 0000000..9b0b4dc --- /dev/null +++ b/www/.content.EZtzwPjb/html/b79e04c078f7bb240c322fc92a50c9199df533f5.00001321.xml @@ -0,0 +1,15 @@ + + + WordPress + https://wordpress.org/ + https://blog.hugopoi.net + + + + + + + + + + \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/b814b12efadf81e9d99dc2f87ea5060a61fefd5c.00000555.html b/www/.content.EZtzwPjb/html/b814b12efadf81e9d99dc2f87ea5060a61fefd5c.00000555.html new file mode 100644 index 0000000..1a1c8ab --- /dev/null +++ b/www/.content.EZtzwPjb/html/b814b12efadf81e9d99dc2f87ea5060a61fefd5c.00000555.html @@ -0,0 +1,372 @@ + + + + + + + Windows Mobile – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            + +
                            +
                            + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/b821206dbbd699f4066395ac1c9ac17d415b11b7.00000569.js b/www/.content.EZtzwPjb/html/b821206dbbd699f4066395ac1c9ac17d415b11b7.00000569.js new file mode 100644 index 0000000..3a5be8a --- /dev/null +++ b/www/.content.EZtzwPjb/html/b821206dbbd699f4066395ac1c9ac17d415b11b7.00000569.js @@ -0,0 +1,30 @@ +var ak_js = document.getElementById( "ak_js" ); + +if ( ! ak_js ) { + ak_js = document.createElement( 'input' ); + ak_js.setAttribute( 'id', 'ak_js' ); + ak_js.setAttribute( 'name', 'ak_js' ); + ak_js.setAttribute( 'type', 'hidden' ); +} +else { + ak_js.parentNode.removeChild( ak_js ); +} + +ak_js.setAttribute( 'value', ( new Date() ).getTime() ); + +var commentForm = document.getElementById( 'commentform' ); + +if ( commentForm ) { + commentForm.appendChild( ak_js ); +} +else { + var replyRowContainer = document.getElementById( 'replyrow' ); + + if ( replyRowContainer ) { + var children = replyRowContainer.getElementsByTagName( 'td' ); + + if ( children.length > 0 ) { + children[0].appendChild( ak_js ); + } + } +} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/b8d56c609baabdd764033d509f0953d890303c4b.00001296.json b/www/.content.EZtzwPjb/html/b8d56c609baabdd764033d509f0953d890303c4b.00001296.json new file mode 100644 index 0000000..cc345a5 --- /dev/null +++ b/www/.content.EZtzwPjb/html/b8d56c609baabdd764033d509f0953d890303c4b.00001296.json @@ -0,0 +1 @@ +{"version":"1.0","provider_name":"HugoPoi","provider_url":"http:\/\/blog.hugopoi.net","author_name":"HugoPoi","author_url":"http:\/\/blog.hugopoi.net\/author\/hugopoi\/","title":"Asus U36 et OCZ Vertex 3 la suite","type":"rich","width":600,"height":338,"html":"
                            Asus U36 et OCZ Vertex 3 la suite<\/a><\/blockquote>\n + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            +

                            Bon les cocos, j’ai récupéré un vidéo projecteur Sony VPL-CX5 en état décédé. Comme je sais que c’est encore et toujours ce problème d’obsolescence programmée j’ai donc décidé de le réparer.

                            +

                            Sony VPL-CX5

                            +

                            Première étape, identifier la panne

                            +

                            Le vidéoprojecteur ne donnait aucun signe de vie, aucune led ne s’allume quand je l’ai branché rien du tout même pas un petit crépitement d’alimentation. Je pense a un problème d’alimentation mais rien est sur tant que je ne l’ai pas démonté. Mais avant le dévissage je vais quand même faire une recherche Google car le Internet il est grand et il est beau. J’ai trouvé un truc qui m’a mis la puce à l’oreille sans même avoir enlever la première visse, sur un forum quelconque que je n’arrive plus à retrouver, un mec dit qu’il a changé un composant (un certain MCZ3001) sur une des cartes d’alimentation, et le vidéoprojecteur remarchait.

                            +

                            Démontage

                            +

                            Sony VPL-CX5

                            +

                            J’ai donc commencé par enlever les quelques visses, puis démonter toutes les cartes une par une, une vrai galère. Pour m’aider j’ai trouvé le « manuel de service » (or Service Manual) que je mets a disposition ici même : sony_vpl-cx5_cs5_servicemanual. J’ai mis dans la suite les références des connecteurs pour les mesures.

                            +

                            1) Premier test vérifier le fusible sur la première carte d’alimentation GA, faire le test avec la carte débranché, j’ai utilisé un voltmètre sur la position test de résistance : test OK.

                            +

                            2) Deuxième test, vérifier la tension continu fournie par cette carte GA sur le connecteur de sortie CN2001 environ 380V DC, DONC FAIRE CECI AVEC PRÉCAUTION (je l’ai fait avec un voltmètre de merde à 5€) : test OK j’ai 380 Volt en sortie. Sur cette carte il y un gros condensateur de 400V donc faire TRÈS ATTENTION MÊME QUAND LA CARTE EST DÉBRANCHÉ DU SECTEUR.(j’ai vérifier le condensateur se décharge assez vite j’ai mesuré 4V 10 secondes après avoir débranché)

                            +

                            3) Maintenant test de la carte GB qui transforme le 400V continu en basse tension continu ici du 24V d’après le SM. Donc j’ai le point de mesure parfait, c’est le connecteur CN3201.

                            +
                            N'oubliez d'ouvrir le manuel de service ça donne des infos précieuses pour le dépannage

                            N’oubliez d’ouvrir le manuel de service ça donne des infos précieuses pour le dépannage

                            +

                            Plusieurs points pour tester le plus pratique étant le petit connecteur blanc de 3 broches qui fournit la masse et VCC 24V. Après mesure sur ce connecteur j’ai une tension stable mais pas du 24VDC, les composants n’ont pas l’air endommagés donc je vérifie à l’entrée du fameux MCZ3001 il est bien alimenté correctement mais ne sort pas 24VDC. Pas de condensateurs chimiques endommagés.

                            +

                            Donc la panne est certainement dû à ce composant, achetons-le !

                            +

                            Trouver le composant de rechange

                            +

                            Au début j’ai cherché chez des e-commerçant d’électronique comme Farnell,Conrad, etc pas trouvé en france, puis j’ai fait les marchants Anglais et je l’ai trouvé mais à 30€ frais de port inclus. Et comme un con j’avais oublié de faire Ebay : encore un coup des chinois 4.27€ avec le support DIP et les frais de port inclus OMFG j’adore la mondialisation. J’en ai pris 2 pour mois de 10€ et comme les chinois ils sont trop fort j’ai tout reçu en moins de 2 semaines.

                            +

                            Capture-ebay-mcz3001

                            +

                            Dés-soudage

                            +

                            Bon j’avais des fer à souder de merde et du coup c’est le #FAIL, j’ai pas réussi à dés-souder proprement, j’ai donc été obligé d’investir dans une merde à 10€ :

                            +

                            Fer à souderEnsuite j’ai finalement réussi à dés-souder :

                            +

                            Carte GB MCZ3001 dés-soudéEt il me semble que sur cette photo j’avais nettoyer avec du dissolvant.

                            +

                            Remontage

                            +

                            Alors je suis désolé mais je n’ai pas de photos pour le MCZ soudé car j’avais déjà remonté le projecteur. Les étapes :

                            +
                              +
                            1. Souder un support fourni (au cas ou ce fameux MCZ rendrais encore l’âme)
                            2. +
                            3. Placer un MCZ neuf dans le support
                            4. +
                            5. Relier la carte GA et GB ensemble
                            6. +
                            7. Brancher sur le 220V
                            8. +
                            9. Tester le 24VDC sur le connecteur CN3201
                            10. +
                            11. #WIN
                            12. +
                            13. Remonter le projecteur
                            14. +
                            15. Tester en vrai
                            16. +
                            17. #WIN2
                            18. +
                            +

                            Conclusion

                            +

                            Oui c’est un WIN d’une valeur 4€ mais je tiens à préciser que ça représente environ 10 heures de travail continu. Entre les recherches Google et la lecture de la documentation, les heures passés au démontage, les quelques fois ou je me suis arraché les cheveux et risquer ma vie avec un voltmètre à 5€.

                            +

                            Mon banc de test

                            +

                            Banc de test chez HugoLa table du salon 2Les Tofs

                            + + +
                            +
                            +
                            + +
                            +
                            + + + + + + + + + +
                            +
                            +
                            +
                            +
                            +
                            +
                            +

                            + 16 commentaires

                            +
                            + +
                            +
                            +
                            +
                            +

                            + Georg + · 30 janvier 2014 à 12 h 22 min +

                            +

                            Hello,
                            +dear Hugo, at first: HAVE MANY THANKS FOR YOUR VERY INTERESTING BLOG!!!

                            +

                            I also have a cx5 and try to repair it.

                            +

                            It has the same problems like your projector…

                            +

                            I’ve measured the CN2001 but in my power supply there are only 320 V (stable).
                            +Are you sure, that there have to be 380V?
                            +In the service manual, I didn’t find a value (either 320V nor 380V)

                            +

                            Best Regards
                            +Your Georg

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 21 février 2014 à 17 h 36 min +

                              +

                              Sorry to be so long to answer,
                              +320V seems to be OK, I have extrapolated the value from the schema ~ 220Vxrootsquare(2) but this depends of the quality of your current source. I think 320 will not impact the power for the next card.

                              +

                              Good repair !
                              +Thanks for the comment :-D

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + henri moine + · 2 février 2014 à 20 h 43 min +

                            +

                            Bonsoir,
                            +Merci beaucoup pour l’explication détaillée et les photos.
                            +Je vais pas tarder de m’attaquer à mon SONY VPL CS7 bizarrement inerte depuis quelques semaines…
                            +Bonne continuation !

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + florian + · 21 avril 2014 à 9 h 09 min +

                              +

                              Bonjour,
                              +Je possède également un sony VPL CS7, et depuis plusieurs mois il a quelques signes de faiblesses.

                              +

                              1) lorsque je le débranche du secteur et que je le rebranche, il faut que j’attende 24 à 48 h pour que le voyant on/off se mette à éclairer, donc je ne peux pas l’allumer pendant ce temps.

                              +

                              2) aujourd’hui j’ai beau le laisser brancher, aucun signe de vie plus rien ne s’allume.

                              +

                              As tu attaqué ton VPL, As tu trouvé quelque chose ?

                              +

                              Merci

                              + +
                              +
                              +
                                +
                                + +
                                +
                                +
                                +
                                +

                                + HugoPoi + · 9 mai 2014 à 17 h 50 min +

                                +

                                Le VPL que j’avais était en panne je l’ai réparé jusqu’à il y a 2 mois ou il retombé en panne. Ton problème d’allumage ressemble à un problème de condensateur cramé. tu peux regarder si tu en vois des gonflés en démontant.

                                + +
                                +
                                + +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Ghent + · 21 septembre 2014 à 12 h 48 min +

                            +

                            Bonjour,

                            +

                            Déjà, super tuto.
                            +Je rencontre un problème à priori similaire avec mon CX5: le bouton de mise sous tension n’est plus éclairé et il ne se passe rien quand j’appuie dessus.

                            +

                            Je me suis donc lancé, et j’ai démonté jusqu’à atteindre les cartes d’alimentation.
                            +J’ai mesuré donc au niveau du CN3201, et là j’ai 22V continu stable.
                            +D’où ma première question, ai-je le même problème que toi avec le MCZ3001, ou dois-je chercher autre part ?
                            +Faut-il 24V exactement ?

                            +

                            Ensuite, j’ai essayé de me rapprocher du composant lui-même, mais je ne sais pas où mesurer. Le diagramme indique le VC1 sur la patte 8, mais je ne sais pas où prendre la masse.
                            +Saurais-tu m’aider ?

                            +

                            J’ai enfin voulu tester la tension en sortie de la carte GB, le point 17V, mais même question, si je teste la patte 1 du connecteur, où prendre la masse pour vérifier qu’il y a bien 17V ?
                            +Cette partie est-elle alimentée malgré que l’appareil soit éteint ?

                            +

                            Dans tous les cas, j’ai commandé le MCZ3001D, mais je voudrais m’assurer qu’il est bien le responsable avant de le changer.

                            +

                            Merci d’avance pour tes réponses, et encore une fois, merci de partager ton travail !

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 26 septembre 2014 à 15 h 01 min +

                              +

                              Je penses que si tu as 22V sur CN3201 le problème est sûrement ailleurs. Même si cela ne coûte rien de changer le MCZ3001D si tu as de quoi dessouder proprement. Regarde sur le service manuel pour tester les autres tensions qui sortent de la carte après les partie d’isolement, de mémoire il y a 3,3 V et du 5V.

                              + +
                              +
                              +
                                +
                                + +
                                +
                                +
                                +
                                +

                                + Neckron + · 12 décembre 2014 à 21 h 32 min +

                                +

                                Bonsoir, je déterre un peu ce vpl-cx5 que je possède et que je vends !!!
                                +Je voie qu’il y a encore des personnes qui s’y intéresse.
                                +Je précise juste que le mien est en excellent état de marche, il y a la télécommande et qu’il n’a servi QUE 220 Heures. Lampe d’origine. Je cherchais pendant un temps un moyen de l’upgrader pour l’image, mais finalement…. je change…

                                + +
                                +
                                + +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Jean-Marie + · 31 décembre 2014 à 14 h 43 min +

                            +

                            Bonjour Hugo.
                            +Merci pour ton partage d’expérience.
                            +Moi aussi, j’ai un VPL-CS7 inerte comme tu dis. Pas la moindre led s’allume ou clignote quand je le branche.
                            +Je l’ai complètement démonté. Je soupçonne un composant sur le bloc d’alim.
                            +As-tu réparé le tien ?
                            +Merci.
                            +JM.

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 31 janvier 2015 à 15 h 13 min +

                              +

                              Moi j’ai bien réparé mon CX5 mais celui-ci est retombé en panne 6 mois plus tard. Cette fois-ci avec plus de composants endommagés :-(
                              +Bon courage pour les réparations.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Sorce + · 14 mars 2015 à 16 h 05 min +

                            +

                            Bonjour ,j’ai un vpl cs6 ,qui ne s’allume pas rien du tous j’ai suivi tes étape et sur le connecteur con 2001 et la 325v bizarre bon je relie la carte gb pour tester au borne du con 3201 et la 15v et sa retombe et sa remonte a 15v peut tu m aider cdt richard (pense tu que je doi changer le mcz)

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 29 avril 2015 à 16 h 18 min +

                              +

                              Vérifiez les autres tensions en sortie de la carte GB, de mémoire il doit y avoir 3,3 V du 5 V et du 15V. Si tout est OK, la carte-mère principale est peut-être endommagé et pas moyen de réparer sans changement.

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + Gilles + · 16 juin 2018 à 13 h 44 min +

                              +

                              Même chose que vous ?
                              +Avez-vous trouvé une solution ?
                              +Est-ce que c’est normal cette tension non stable ?

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Daoud Yacoub + · 20 octobre 2015 à 9 h 54 min +

                            +

                            Je remercie beaucoup l’equipe

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Daoud Yacoub + · 20 octobre 2015 à 10 h 02 min +

                            +

                            Aidez moi à depanner mon vidéo projecteur le tout ne s’allume pas ;jai démonté et nettoyer toutes les plaques alimentation et logique me rien ne se passe mais en toute sincérité si je peux avoir le document technique de réparation m’est indispensable

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 24 octobre 2015 à 13 h 39 min +

                              +

                              Les commentaires n’ont pas pour vocation d’être un forum :-)

                              + +
                              +
                              + +
                            + +
                            +
                            +
                            +

                            Répondre à HugoPoi Annuler la réponse

                            Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                            +
                            +
                            +

                            + +

                            +
                            +
                            +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            + + +
                            + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/ba112ea79ca6e55d7c8008d7108576fd79927ab2.00000194.html b/www/.content.EZtzwPjb/html/ba112ea79ca6e55d7c8008d7108576fd79927ab2.00000194.html new file mode 100644 index 0000000..e29714c --- /dev/null +++ b/www/.content.EZtzwPjb/html/ba112ea79ca6e55d7c8008d7108576fd79927ab2.00000194.html @@ -0,0 +1,645 @@ + + + + + + + + Réparer et transformer une clé USB de 4Go en 8Go – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            +

                            J’étais en train de bosser sur un projet Java quand ma belle mère me demande si je peux regarder une clé USB Maxell 4GB qui ne marche plus.Clé USB Maxell

                            +

                            Je branche et la clé se connecte correctement mais pas de table des partitions et la clé indiquait 0 octet de disponible. Je tente un « diskpart.exe » celui-ci me dit « pas de media ». Autre symptôme la LED sur la clé restait continuellement allumé. Je commence à me dire que c’est mort puis comme d’habitude je fais une recherche Google et je tombe sur ça http://www.easytutoriel.com/flasher-reparer-cle-usb-memoire/(ce lien est à moitié mort la DB est cassée) . Donc je télécharge ChipGenius_v4_00_0022_RC3 et il reconnait ma clé il me dit que c’est un controleur Phison PS2251-67(PS2267) et une puce mémoire Toshiba de type TLC.ChipGenius4

                            +

                            Rien de bien exceptionnel je vais sur http://flashboot.ru/iflash/ je farfouille je trouve des noms de logiciels mais pas de lien téléchargement qui marche puis pour finir je vais sur http://dl.mydigit.net/special/up/phison.html, sans traduire je comprends vite que c’est une mine d’or ce site web, tout un tas de nom de logiciel récupérer chez les fabricants de puces en tout genre de quoi flasher n’importe quoi. J’arrive à ça http://rghost.net/39050058, je télécharge j’exécute GetInfo.exe  (sans les droits administrateur) qui me donne les même infos que ChipGenius.GetInfo V3.8.3.2

                            +

                            Après il y a deux soft MPALL_F1_8400_v360_0B.exe et MPALL_F2_v360_0B.exe . Au hasard je lance le premier (sans les droits administrateur) et je clic sur Update sans vraiment savoir ce que ça allait vraiment faire. Et la ça reconnait la clé dans la liste et surprise il me dit que la puce de mémoire est une 8Go au début je crois à une erreur.MPAll 8400 3.60.0B

                            +

                            N’ayant plus rien à perdre je clic sur Start et cela lance la procédure de flash du firmware du contrôleur, pas de documentation donc je peux pas vraiment savoir ce que ça fait réellement. DRAME ça affiche une erreur et un beau fail, je ne désespère pas je débranche rebranche la clé. Et c’est un ………………….WIN Windaube m’affiche le beau panneau voulez-vous formater cette merde. Deuxième WIN de taille, la clé est reconnu comme une clé de 8 Go LOL. Je mets plus de 4 Go de données dedans je fais un checksum des fichiers et ça marche !!!

                            +

                            L’erreur survenu à la fin du flash peu provenir du fait que je n’avais pas lancé l’exécutable avec des privilèges élevés donc le programme n’a pas pu effectuer le formatage.

                            +

                            Maintenant la grande question comment ce fait t’il que Maxell qui est l’assembleur de cet clé USB nous vend t’il des clé USB 4GB comme sont en réalité des clé de 8Go. J’ai trois début de réponse :

                            +

                            1) Soit Maxell se fout de notre gueule sur les prix et du coup au lieu d’acheter 4000 puces Toshiba de 4 Go et 4000 de puces de 8Go , Maxell achète 8000 puces de 8Go et bidouille les firmware des contrôleurs pour faire des clés USB de 4 et 8 Go.

                            +

                            2) Maxell utilise des puces 8Go qui ont des défauts d’usines et utilise uniquement une parti de la puce. Ce qui expliquerait les problèmes que j’ai rencontré avec cette clé au début.

                            +

                            3) Maxell utilise les 4 Go restant pour faire du over-provisioning pour les cellules de mémoire défectueuse en écriture étant donné que je penses que ce genre de mémoire n’a pas beaucoup de cycle d’écriture mais c’est très peu probable que ce type technologie propre aux SSD soit dans de vulgaire clé USB bas de gamme.

                            +
                            +
                            +
                            +
                            +
                            Catégories : BidouilleHardwareNews
                            +
                            +
                            +
                            + + + + + + + + + +
                            +
                            +
                            +
                            +
                            +
                            +
                            +

                            + 8 commentaires

                            +
                            + +
                            +
                            +
                            +
                            +

                            + 2Pi informatique + · 16 mai 2013 à 9 h 01 min +

                            +

                            Je n’avais jamais entendu parler de ce genre de manip, et du gain potentiel de capacité.

                            +

                            C’est assez étonnant, et je me demande si tous les constructeurs « brident » la capacité des clés usb …

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Amedoumba + · 22 juillet 2013 à 14 h 15 min +

                            +

                            Hello !
                            +Intéressant comme manip. J’ai une de mes clés USB avec le même genre de probleme. Je vais donc tester et voir si cela fonctionne. Je n’ai rien à perdre de toute façon.
                            +Merci en tout cas.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + diop + · 14 novembre 2013 à 15 h 11 min +

                            +

                            pour répéré cle usb

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + diop + · 14 novembre 2013 à 15 h 12 min +

                            +

                            salut pour ma cle usb

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + watchix + · 28 décembre 2013 à 10 h 40 min +

                            +

                            « File is deleted » :-(

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 4 janvier 2014 à 12 h 38 min +

                              +

                              à moitié réparer ;-)

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Jean + · 22 avril 2015 à 20 h 18 min +

                            +

                            Je penche pour ma part pour les raisons 1 et 2.

                            +

                            La première raison car le coût de la flash est diminuée plus on en commande, et aussi ça évite d’avoir deux chaines d’assemblage pour le PCB de la clé.

                            +

                            La seconde raison car c’est ce qui est pratiqué par pas mal de fabricants du domaine du semi-conducteur pour « créer » une gamme : AMD n’hésitait pas à vendre en entrée de gamme des processeurs amputés de certains coeurs défectueux. Et si il manque des processeurs défectueux … et bien on désactive quand même des coeurs !

                            +

                            Il y a aussi un paramètre à prendre en compte : la redevance sur la copie privée. Elle est proportionnelle à la capacité du support de stockage (cf. http://www.culturecommunication.gouv.fr/Politiques-ministerielles/Propriete-litteraire-et-artistique/Commission-pour-la-remuneration-de-la-copie-privee/Questions-pratiques/Les-montants-de-la-Remuneration-pour-Copie-Privee). Elle est de 0,64€ pour une clé de 4 Go, et 1,04€ pour une clé de 8 Go.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Pila + · 10 décembre 2015 à 21 h 45 min +

                            +

                            Salut,
                            +Je pense qu’il s’agit de puce MLC ( je crois que c’est le terme ? ), qui ont de très bonne performances sur la première moitié de leur capacité, et des très mauvaises sur la seconde moitié, car celle-ci est obtenu par réécriture sur la première partie.

                            +

                            En tout cas merci pour les différentes infos que tu as glanées !

                            + +
                            +
                            + +
                            +
                            +
                            +

                            Répondre à diop Annuler la réponse

                            Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                            +
                            +
                            +

                            + +

                            +
                            +
                            +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            + + +
                            + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/ba6c3686854aa871b6d0029745db94635f45a73e.00000032.html b/www/.content.EZtzwPjb/html/ba6c3686854aa871b6d0029745db94635f45a73e.00000032.html new file mode 100644 index 0000000..b178816 --- /dev/null +++ b/www/.content.EZtzwPjb/html/ba6c3686854aa871b6d0029745db94635f45a73e.00000032.html @@ -0,0 +1,661 @@ + + + + + + + + GET to POST – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            +

                            Il est 00h16, comme d’habitude je suis en train de développer un truc useless pour passer le temps donc je vais le mettre histoire de dire que ça va peut-être servir à plus d’une personne.

                            +

                            Language : JavaScript

                            +

                            Dépendance : Aucune

                            +

                            Type d’exécution : Local

                            +

                            Description : Ce script sert à transformer une requête HTTP de type GET via URL en méthode POST.

                            +

                            Fonctionnement : Il prend les arguments passés en get dans l’url et les envois via un formulaire de type hidden créé à la volée.

                            +

                            Exemple : https://blog.hugopoi.net/wp-content/uploads/2010/12/script.html?urlserverpage=http://fr.php.net/search.php&pattern=test&lang=en&show=quickref

                            +

                            Download : Script Get to Post

                            +

                            Note: pour télécharge le fichier en lien ci-dessus faites un clic droit « enregistrer la cible sous ».

                            +
                            +
                            +
                            +
                            +
                            Catégories : DéveloppementNews
                            +
                            +
                            +
                            + + + + + + + + + +
                            +
                            +
                            +
                            +
                            +
                            +
                            +

                            + 9 commentaires

                            +
                            + +
                            +
                            +
                            +
                            +

                            + watchix + · 12 juillet 2011 à 17 h 50 min +

                            +

                            Merci mon bon Hugo :-)
                            +J’étais en train de chercher ce genre de script lorsque je suis tombé sur le blog de Camille Descombes, puis ensuite sur ton commentaire :-)
                            +Internet est petit dans le monde des développeurs ^^

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + mou7a + · 25 mai 2012 à 13 h 01 min +

                            +

                            bonjour, Je sais que l’article date un peu mais je n’arrive pas à récupérer la source elle n’est plus disponible merci!!!

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 14 juin 2012 à 23 h 00 min +

                              +

                              la source est dans le fichier HTML.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + houhou + · 10 juillet 2012 à 9 h 29 min +

                            +

                            Bonjour HugoPoi;
                            +j’ai besoin du script pour récupérer le contenu d’une div généré en js,l’envoyer à une autre page de traitement pour le convertir en pdf.c’est urgent,merci!!!

                            + +
                            +
                            + + +
                            + +
                            +
                            +
                            +
                            +

                            + Geolocalise Ip + · 25 avril 2014 à 10 h 42 min +

                            +

                            Bonjour,
                            +Merci beaucoup pour l’idée, mais ta page : http://blog.hugopoi.net/wp-content/uploads/2010/12/script.html est morte …

                            +

                            Quant à « houhou », il est formidable, je prendrai bien son adresse IP à celui là pour voir de quel pays il vient !!!! Grrr ….
                            +Bon c’était en 2012, il a dû changer de métiers depuis !

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 9 mai 2014 à 18 h 12 min +

                              +

                              Le lien n’est pas mort mais le script se lance même sans paramètres valide donc tu es redirigé quand tu clic.
                              +Fait un clic droit enregistrer sous.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Gab Wink + · 13 février 2015 à 0 h 06 min +

                            +

                            Merci, ceci m’a été utile (et c’est toujours cool de le dire).

                            + +
                            +
                            + +
                            +
                            +
                            +

                            Répondre à Alexandre Annuler la réponse

                            Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                            +
                            +
                            +

                            + +

                            +
                            +
                            +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            + + +
                            + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/bab8d7b95b78318d69057032f9e4d8d38545242d.00000044.html b/www/.content.EZtzwPjb/html/bab8d7b95b78318d69057032f9e4d8d38545242d.00000044.html new file mode 100644 index 0000000..5c548d3 --- /dev/null +++ b/www/.content.EZtzwPjb/html/bab8d7b95b78318d69057032f9e4d8d38545242d.00000044.html @@ -0,0 +1,599 @@ + + + + + + + + Test du Samsung Galaxy S – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            +

                            C’est une petite révolution pour moi qui passe d’un HTC Touch à un Galaxy S. Le Touch était bien en son temps, smartphone de première génération, mais vite dépassé par les évènements et l’avènement du web sur mobile. Alors déjà pour commencer les caractéristiques techniques :

                            +
                              +
                            • Poids : 118 g
                            • +
                            • Dimensions : 122.4 x 64.2 x 9.9 mm
                            • +
                            • Ecran : Super AMOLED 4.0 » – 16 millions de couleurs 480 x 800
                            • +
                            • Processeur : ARM Cortex A8 @ 1 Ghz – Hummingbird
                            • +
                            • GPU : PowerVR SGX540
                            • +
                            • Ram : 512 Mo
                            • +
                            • Stockage : 8 Go interne + extension via microSD
                            • +
                            • Caméra : 5 mégapixels avec enregistrement vidéo en 720p à 30 images/seconde + caméra frontale
                            • +
                            • Com. : Wifi (b/g/n) , Bluetooth 3.0, Modem 3G+ HSDPA
                            • +
                            • Batterie : 1500 mAh
                            • +
                            +

                            Les accessoires fournis sont :

                            +
                              +
                            • Un cable USB
                            • +
                            • Un chargeur
                            • +
                            • Une paire d’écouteurs intra-auriculaire qui sert d’antenne pour la radio FM (donc inutilisable avec mon casque bluetooth).
                            • +
                            +

                            D’aspect extérieur on dirait un iPhone en légèrement plus grand et moins bien fini, la coque fais un peu cheap. Par contre il est très léger malgré l’écran 4 pouces et la grosse batterie, il tient très bien en poche.

                            +

                            L’écran est tout simplement bleuffant, rien à voir avec du LCD, là c’est du superAmoled et le contraste est très bon. Le tactile capacitif multitouch est sans commentaire… exemplaire !

                            +

                            Je l’ai acheté chez Orange, donc avec une Rom Android 2.1 custom Orange Daube. J’ai viré tout ça et j’ai mis une Darky’s v5.6 Gingerbread Edition mais la v7 est sortie 5 jours après donc pas encore eu le temps de tester. Ce téléphone est très facile à rooter et à flasher surtout avec l’aide fournie par frandroid.com.

                            +

                            Le compte rendu sur la fluidité du téléphone en général est donc basé sur une Android 2.2.1 Custom Darky v5.6. Alors c’est de la bombe, c’est fluide et tout est instantané. L’interface ressemble beaucoup à celle d’un iPhone, mais avec explorateur de fichier, player video DIVX, stockage de masse… Pour les détails c’est du Android donc vous pouvez tout personnaliser avec des thèmes, widgets, et applications via le Market. Le lecteur vidéo intégré lit de base les divx/xvid, mkv 720p mais j’ai pas testé la prise en charge de sous-titre. Il y a aussi une application très intéressante qui s’appelle AllShare qui permet de lire ou de diffuser via Upnp AV (DLNA) mais je n’ai pas reussi à la faire marcher avec Vuze, Tversity et ma Freebox donc pour l’instant je considère que c’est de la merde.

                            +

                            La caméra ça donne cela :

                            +

                            Rouen sous la neige

                            +

                            La qualité vidéo est très bonne mais le micro est un peu trop sensible du coup quand on parle trop près ça sature un peu vite.
                            +

                            +

                            Au niveau de l’autonomie, c’est comme sur les autres smartphones, environ 1 journée en usage intensif (surf, mail, vidéo, map). Par contre en utilisation Navigation GPS c’est plutôt une demi-journée. Si vous vous contentez de SMS et téléphone, 2 3 jours sans recharger c’est possible.

                            +

                            Pour conclure voici les plus et moins :

                            +

                            Les +

                            +

                            Léger

                            +

                            Ecran 4″ Amoled

                            +

                            Réactivité Générale

                            +

                            Le lecteur vidéo lit tout jusqu’à 720p compris

                            +

                            Wifi et Bluetooth efficace et grande portée

                            +

                            Les –

                            +

                            La coque fait un peu cheap

                            +

                            L’autonomie en prend un coup dés qu’on utilise le GPS

                            +

                            L’Appli AllShare qui nemarche pas, ou mal

                            +

                            Le connecteur USB pas standard

                            +

                            L’adaptateur HDMI en option

                            +

                            Voici quelques photos de la bête :

                            + + +
                            +
                            +
                            +
                            +
                            Catégories : Test
                            +
                            +
                            +
                            + + + + + + + + + +
                            +
                            +
                            +
                            +
                            +
                            +
                            +

                            + 1 commentaire

                            +
                            +
                            +

                            + Tweets that mention Test du #Samsung #Galaxy S #GSPowa -- Topsy.com + · 27 décembre 2010 à 21 h 18 min +

                            +

                            […] This post was mentioned on Twitter by Da Costa. Da Costa said: RT @HugoPoi #Test du #Samsung #Galaxy S http://bit.ly/eNER4X #GSPowa Ouais […]

                            + +
                            +
                            + +
                            +
                            +
                            +

                            Laisser un commentaire

                            Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                            +
                            +
                            +

                            + +

                            +
                            +
                            +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            + + +
                            + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/bb1e21a0355a1da49689e58575f0b84a065f686e.00000434.html b/www/.content.EZtzwPjb/html/bb1e21a0355a1da49689e58575f0b84a065f686e.00000434.html new file mode 100644 index 0000000..007a89d --- /dev/null +++ b/www/.content.EZtzwPjb/html/bb1e21a0355a1da49689e58575f0b84a065f686e.00000434.html @@ -0,0 +1,371 @@ + + + + + + + liste – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +

                            Liste de Noël

                            Comme presque tout le monde, je cède à la magie de noël, le plus grand coup marketing des deux derniers millénaires pour nous faire dépenser notre argent. Alors comme j’ai beaucoup de chance, je viens d’avoir un accident avec ma voiture, ça tombe à pique pour le mois de décembre. Heureusement, je vais pouvoir la réparer DIY pour pas trop chère. Je ne sais pas si des opérations de ce type sont en cours mais je me disais que l’on pourrais m’offrir une carte cadeau ou un bon d’achat dans une casse auto pour y acheter les pièces dont j’ai besoin (Je cherche : un capot violet, une traverse frontale et 2 phares complets pour Twingo 1gen). Après ce moment de rigolade déception je vous donne ci-dessous ma liste de noël. Elle est destinée à mes lecteurs généreux, ma famille, amis et autres donateurs qui sont les bienvenus. Je préviens c’est un peu plus qu’une liste de noël puisque je vais y mettre tous les truc fun, gadgets super high-tech dernier cri et super pc de la mort qui tue. Par contre il n’y aura pas d’objet Apple donc les fanboys de la pomme vous pouvez aller profiter de votre temps libre sur Apple.com. (suite…)

                            +
                            +
                            + +
                            +
                            +
                            +
                            + +
                            +
                            + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/bbf630e2a317ebf14558d70a8af777dff49eb4d1.00000338.html b/www/.content.EZtzwPjb/html/bbf630e2a317ebf14558d70a8af777dff49eb4d1.00000338.html new file mode 100644 index 0000000..984169a --- /dev/null +++ b/www/.content.EZtzwPjb/html/bbf630e2a317ebf14558d70a8af777dff49eb4d1.00000338.html @@ -0,0 +1,379 @@ + + + + + + + AnyDVD HD – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +

                            Home Cinéma

                            Bientôt fini mais peut-être jamais terminé tellement il y a de boulot autour d’un système home-cinema complet et parfait. Cela fait bientôt deux semaines que je suis dans mes travaux et ma configuration HTPC. Première semaine, je suis parti de rien, aucun câble posé, pas de pc installé et pas de meuble. Du coup, le lundi, je suis allé à Ikea et j’ai trouvé à peu près ce que je voulais pour pas trop cher (120 € pour de l’aggloméré de merde). Le mardi, je venais de recevoir tout le matos, à savoir :

                            +
                              +
                            • Un Amplificateur Yamaha RX-671
                            • +
                            • Un kit d’enceinte Jamo 5.1
                            • +
                            • Un boitier Antec Remote black et les 2-3 composants qui vont bien
                            • +
                            +

                            Salon Wii

                            +

                             

                            + +
                            Par HugoPoi, il y a
                            +
                            + +
                            +
                            +
                            +
                            + +
                            +
                            + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/bc3afa99ff1370af69ec8e538a64578cd58f29f5.00000282.html b/www/.content.EZtzwPjb/html/bc3afa99ff1370af69ec8e538a64578cd58f29f5.00000282.html new file mode 100644 index 0000000..4549da8 --- /dev/null +++ b/www/.content.EZtzwPjb/html/bc3afa99ff1370af69ec8e538a64578cd58f29f5.00000282.html @@ -0,0 +1,394 @@ + + + + + + + Dossiers – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +

                            Le cloud maison

                            Voilà un petit moment que je me devais de faire cet article pour vous en dire un peu plus sur comment je gère mes données numériques au quotidien. Et après plusieurs essais et échecs, je peux enfin dire que j’ai trouvé des outils simples et maintenus pour cette quête. Même Lire la suite…

                            +
                            Par HugoPoi, il y a

                            Secure Boot n’est pas simple

                            1. Pourquoi cet article La sécurité de nos ordinateurs c’est un peu amélioré si on sait ce qu’on fait avec. Avant pour démarrer votre OS le BIOS utilisait un MBR Master Boot Record présent dans le premier secteur de votre disque-dur. Ce MBR pouvait être écrasé par n’importe quel programme Lire la suite…

                            +
                            Par HugoPoi, il y a

                            Pourquoi je suis sous Linux bordel !

                            Début d’année 2017, 6 mois que j’ai pas écrit sur le blog ! Cette année j’ai pris une résolution un choix de merde je n’installerais plus Windaube que se soit pour moi ou pour la dépanne, les amis, la famille, mon chat … Bref pendant les fêtes j’avais de la maintenance à faire comme d’habitude fallait faire une réinstallation pour la famille « met moi Windows 7 ça me suffit et au moins il y tout qui marche dessus » ça faisait environ plus 1 an que j’avais pas installé de windaube. Je me dit que ça va me prendre une petite demi journée. J’ai mis plus d’une journée si on compte le temps de faire les mises à jour. (suite…)

                            +
                            Par HugoPoi, il y a
                            +
                            +
                            + +
                            +
                            +
                            +
                            + +
                            +
                            + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/bd1fa67c9b5e7f182111d8ce2ed7ab6b4132a73b.00001285.json b/www/.content.EZtzwPjb/html/bd1fa67c9b5e7f182111d8ce2ed7ab6b4132a73b.00001285.json new file mode 100644 index 0000000..2f7b7af --- /dev/null +++ b/www/.content.EZtzwPjb/html/bd1fa67c9b5e7f182111d8ce2ed7ab6b4132a73b.00001285.json @@ -0,0 +1 @@ +{"version":"1.0","provider_name":"HugoPoi","provider_url":"http:\/\/blog.hugopoi.net","author_name":"HugoPoi","author_url":"http:\/\/blog.hugopoi.net\/author\/hugopoi\/","title":"Quel age pour s'inscrire sur Facebook ?","type":"rich","width":600,"height":338,"html":"
                            Quel age pour s’inscrire sur Facebook ?<\/a><\/blockquote>\n + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            +

                            Install RancherOs on FreeNas 11.3

                            +
                              +
                            • The automated RancherOs installation aka Docker VM has been removed in
                              +11.3
                            • +
                            • RancherOs doesn’t support EFI boot out of the box
                            • +
                            • Thanks to MKinney howto
                            • +
                            • This howto is provided without warranty
                            • +
                            • TODO the proper way of doing it is somewhere here
                            • +
                            • Some stuff about losetup
                            • +
                            +

                            1. Make a EFI bootable RancherOs image

                            + +
                              +
                            1. wget https://releases.rancher.com/os/v1.5.5/rancheros.iso
                            2. +
                            3. wget http://releases.ubuntu.com/18.04/ubuntu-18.04.4-live-server-amd64.iso
                            4. +
                            5. mkdir tmpubuntu tmprancheros tmprancheros_dest
                            6. +
                            7. sudo mount ubuntuserverlive.iso tmpubuntu
                            8. +
                            9. sudo mount rancheros.iso tmprancheros
                            10. +
                            11. fallocate -l 150M rancheros.img
                            12. +
                            13. gdisk rancheros.img o,y,n,enter,enter,ef00,w,Y
                            14. +
                            15. sudo losetup --partscan --show --find rancheros.img
                            16. +
                            17. sudo mkfs.fat /dev/loop2p1
                            18. +
                            19. sudo mount /dev/loop2p1 rancheros_dest
                            20. +
                            21. sudo cp -r tmprancheros/* tmprancheros_dest/
                            22. +
                            23. sudo cp -r tmpubuntu/EFI tmprancheros_dest/
                            24. +
                            25. Replace the content of tmprancheros_dest/boot/grub/grub.cfg with:
                            26. +
                            +
                            set timeout=5
                            +menuentry "Install Rancher" {
                            +    linux   /boot/vmlinuz-4.14.138-rancher rancher.autologin=tty1 rancher.autologin=ttyS0 rancher.autologin=ttyS1 console=tty1 console=ttyS0 console=ttyS1 printk.devkmsg=on panic=10 ---
                            +    initrd  /boot/initrd-v1.5.5
                            +}
                            +
                            +
                              +
                            1. sudo umount tmprancheros_dest
                            2. +
                            3. sudo losetup -d /dev/loop2
                            4. +
                            5. sudo umount tmpubuntu tmprancheros
                            6. +
                            +

                            2. Installation in FreeNas as Vm

                            +
                              +
                            1. Create a VM with EFI boot 2GB RAM choose virtio for all the driver
                              +better performance with linux
                            2. +
                            3. Add a RAW device and select your rancheros.img
                            4. +
                            5. Start the VM
                            6. +
                            7. Go to serial and in the shell cu -l /dev/nmdmXX at this point you should
                              +have a rancher shell
                            8. +
                            9. sudo fdisk /dev/vda then g,n,1,+200M,t,1,n,enter,enter,w you
                              +should something like at the end
                            10. +
                            +
                            Disk /dev/vda: 10 GiB, 10737418240 bytes, 20971520 sectors
                            +Units: sectors of 1 * 512 = 512 bytes
                            +Sector size (logical/physical): 512 bytes / 16384 bytes
                            +I/O size (minimum/optimal): 16384 bytes / 16384 bytes
                            +Disklabel type: gpt
                            +Disk identifier: 2B56EE14-44BF-6443-A197-EF73723B715F
                            +Device      Start      End  Sectors  Size Type
                            +/dev/vda1    2048   411647   409600  200M EFI System
                            +/dev/vda2  411648 20971486 20559839  9.8G Linux filesystem
                            +
                            +
                              +
                            1. Format the boot partition sudo mkdosfs -n RANCHER -F 32 /dev/vda1
                            2. +
                            3. Format the main filesystem sudo mkfs.ext4 -L RANCHER_STATE /dev/vda2
                            4. +
                            5. Create a cloud-config.yml see https://rancher.com/docs/os/v1.x/en/installation/running-rancheros/server/install-to-disk/ for minimum content
                            6. +
                            7. sudo mkdir /dev/sr0 for installer checking about iso mounted before
                              +install
                            8. +
                            9. Install ros with sudo ros install -t gptsyslinux -c cloud-config.yml -d /dev/vda -p /dev/vda2
                            10. +
                            11. mkdir /mnt/efipart && sudo mount /dev/vda1 /mnt/efipart
                            12. +
                            13. mkdir /mnt/installer && sudo mount /dev/vdb1 /mnt/installer
                            14. +
                            15. sudo cp -r /mnt/installer/EFI /mnt/efipart
                            16. +
                            17. Add a grub.cfg in /mnt/efipart/EFI/BOOT/grub.cfg with in it:
                              +You might want to add/remove autologin as you wish below

                              +
                                +
                              • tty0 I think is VNC but I havent tested it
                              • +
                              • ttyS0 is serial (I have autologin enable in serial see below)
                              • +
                              +
                            18. +
                            +
                            set timeout=1
                            +menuentry "Rancher from GPT" {
                            +    search --no-floppy --set=root --label RANCHER_STATE
                            +    linux    /boot/vmlinuz-4.14.138-rancher printk.devkmsg=on rancher.state.dev=LABEL=RANCHER_STATE rancher.state.wait panic=10 console=tty0 console=ttyS0 rancher.autologin=ttyS0
                            +    initrd    /boot/initrd-v1.5.5
                            +}
                            +
                            +
                              +
                            1. sudo umount /mnt/*
                            2. +
                            3. sudo reboot
                            4. +
                            5. You are good to go
                            6. +
                            7. You can remove the RAW device in the VM config in FreeNas
                            8. +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +

                            + 12 commentaires

                            +
                            + +
                            +
                            +
                            +
                            +

                            + Rudi Pittman + · 18 mars 2020 à 17 h 46 min +

                            +

                            Can I or can I not use my existing rancher img that was previously being used by freenas? ie

                            +

                            -rw-r–r– 1 root wheel 21474836480 Mar 18 02:13 rancher.img_docker1

                            +

                            I have around 10 different docker containers defined inside and I really don’t want to have to redo all of them.

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 11 avril 2020 à 16 h 32 min +

                              +

                              If the image is a VM image like a zvol, I think it will work, but I’m not sure, it will only work if the 11.2 behavior is EFI compatible.
                              +You may patch your existing image/snapshot by justing installing the efi bootloader aka grub in it.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Rob RD + · 4 avril 2020 à 19 h 36 min +

                            +

                            Parfait – Merci Beaucoup! :)

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + dario + · 12 avril 2020 à 14 h 07 min +

                            +

                            Thanks for this guide. I am stuck at Step 12:
                            +> sudo mount /dev/vdb1 /mnt/installer
                            +ther is no /dev/vdb1, regardingless if I choose to boot at step 10 or not

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 22 avril 2020 à 23 h 34 min +

                              +

                              Your installer may be on a different disk if you choose SCSI in place of virtio when you add the raw image device in Freenas, you can identified with

                              +

                              cat /proc/partitions

                              +

                              and

                              +

                              mount

                              +

                              it should be /dev/sda1 maybe

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + somebody + · 19 avril 2020 à 13 h 07 min +

                            +

                            Thank you so much for the step by step guide, it was very helpful. With this I can finally transition from my old Docker VM inherited from FreeNAS 11.1.

                            +

                            Going to state the obvious (for some) and mention that when new version gets released and you run

                            +

                            sudo ros os upgrade

                            +

                            to upgrade you’ll also need to update initrd command in your grub.cfg file on EFI partition, otherwise you’re just going to boot into the same version.

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + Rudi Pittman + · 1 juin 2020 à 1 h 58 min +

                              +

                              The problem I have is even though grub is specifying 4.14.138 and initird-v1.5.5 on reboot it tells me those don’t exist. Doing a grub edit and using autocomplete the files it ACTUALLY find are /boot/vmlinuz-4.14.73-rancher and /boot/initrd-v1.4.2. Where the heck are those coming from? When I look on /dev/vda2/boot I see the 4.14.138 and initrd-v1.5.5 as the grub reflects. /mnt/efipart/EFI/BOOT has:

                              +

                              -rwxr-xr-x 1 root root 1334816 May 30 15:13 BOOTx64.EFI
                              +-rwxr-xr-x 1 root root 316 May 30 15:15 grub.cfg
                              +-rwxr-xr-x 1 root root 1146744 May 30 15:13 grubx64.efi

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Max + · 3 mai 2020 à 16 h 40 min +

                            +

                            The image i downloaded does not start. Stuck at step4 in the bhyve shell. Any idea how to proceed from there?

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 10 mai 2020 à 14 h 53 min +

                              +

                              Try to change the device order to a lower or higher number to be sure it try to load the good bootloader.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Rudi Pittman + · 1 juin 2020 à 18 h 28 min +

                            +

                            If you do a « ros os version » on your efi image it’s NOT v1.5.5. It’s v1.4.2 and running the command although it MAY download the files does nothing to actually make the grub.cfg FIND those new files. It’s still looking for vmlinuz-4.14.73 and initrd-v1.4.2.

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + Johnny Z + · 25 juin 2020 à 8 h 49 min +

                              +

                              I found them. The guide doesn’t necessarily state where or when to get the files. You should be able to do this to find and copy the files

                              +

                              cd /mnt/installer/boot/
                              +ls -asl
                              +(here you will find the two files)
                              +cp vmlinuz-4.14.138-rancher ../../efipart/efi/boot/
                              +cp initrd-v1.5.5.5 ../../efipart/efi/boot

                              +

                              Double check my paths here but that should basically get you the files so the kernel can load proper

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Toohai + · 16 septembre 2020 à 8 h 18 min +

                            +

                            Missing step after 12 in part 1?

                            +

                            sudo cp -r tmpubuntu/boot/grub tmprancheros_dest/boot/

                            + +
                            +
                            + +
                            +
                            +
                            +

                            Répondre à Rudi Pittman Annuler la réponse

                            Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                            +
                            +
                            +

                            + +

                            +
                            +
                            +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            + + +
                            + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/bde7c51b08bb3584b906cc5aeed2dbe8cc27c6f6.00001225.js b/www/.content.EZtzwPjb/html/bde7c51b08bb3584b906cc5aeed2dbe8cc27c6f6.00001225.js new file mode 100644 index 0000000..aab28fa --- /dev/null +++ b/www/.content.EZtzwPjb/html/bde7c51b08bb3584b906cc5aeed2dbe8cc27c6f6.00001225.js @@ -0,0 +1,116 @@ +/*! jQuery UI - v1.12.1 - 2020-09-25 +* http://jqueryui.com +* Includes: data.js, disable-selection.js, escape-selector.js, focusable.js, form-reset-mixin.js, form.js, ie.js, jquery-1-7.js, keycode.js, labels.js, plugin.js, position.js, safe-active-element.js, safe-blur.js, scroll-parent.js, tabbable.js, unique-id.js, version.js, widget.js +* Copyright jQuery Foundation and other contributors; Licensed */ +!function(t){"function"==typeof define&&define.amd?define(["jquery"],t):t(jQuery)}(function(x){var t,e,n,W,C,o,s,r,l,a,i,h;function E(t,e,i){return[parseFloat(t[0])*(a.test(t[0])?e/100:1),parseFloat(t[1])*(a.test(t[1])?i/100:1)]}function H(t,e){return parseInt(x.css(t,e),10)||0}x.ui=x.ui||{},x.ui.version="1.12.1", +/*! + * jQuery UI :data 1.12.1 + * http://jqueryui.com + * + * Copyright jQuery Foundation and other contributors + * Released under the MIT license. + * http://jquery.org/license + */ +x.extend(x.expr[":"],{data:x.expr.createPseudo?x.expr.createPseudo(function(e){return function(t){return!!x.data(t,e)}}):function(t,e,i){return!!x.data(t,i[3])}}), +/*! + * jQuery UI Disable Selection 1.12.1 + * http://jqueryui.com + * + * Copyright jQuery Foundation and other contributors + * Released under the MIT license. + * http://jquery.org/license + */ +x.fn.extend({disableSelection:(t="onselectstart"in document.createElement("div")?"selectstart":"mousedown",function(){return this.on(t+".ui-disableSelection",function(t){t.preventDefault()})}),enableSelection:function(){return this.off(".ui-disableSelection")}}),x.ui.escapeSelector=(e=/([!"#$%&'()*+,./:;<=>?@[\]^`{|}~])/g,function(t){return t.replace(e,"\\$1")}), +/*! + * jQuery UI Focusable 1.12.1 + * http://jqueryui.com + * + * Copyright jQuery Foundation and other contributors + * Released under the MIT license. + * http://jquery.org/license + */ +x.ui.focusable=function(t,e){var i,n,o,s,r=t.nodeName.toLowerCase();return"area"===r?(n=(i=t.parentNode).name,!(!t.href||!n||"map"!==i.nodeName.toLowerCase())&&(0<(n=x("img[usemap='#"+n+"']")).length&&n.is(":visible"))):(/^(input|select|textarea|button|object)$/.test(r)?(o=!t.disabled)&&(s=x(t).closest("fieldset")[0])&&(o=!s.disabled):o="a"===r&&t.href||e,o&&x(t).is(":visible")&&function(t){var e=t.css("visibility");for(;"inherit"===e;)t=t.parent(),e=t.css("visibility");return"hidden"!==e}(x(t)))},x.extend(x.expr[":"],{focusable:function(t){return x.ui.focusable(t,null!=x.attr(t,"tabindex"))}}),x.fn.form=function(){return"string"==typeof this[0].form?this.closest("form"):x(this[0].form)}, +/*! + * jQuery UI Form Reset Mixin 1.12.1 + * http://jqueryui.com + * + * Copyright jQuery Foundation and other contributors + * Released under the MIT license. + * http://jquery.org/license + */ +x.ui.formResetMixin={_formResetHandler:function(){var e=x(this);setTimeout(function(){var t=e.data("ui-form-reset-instances");x.each(t,function(){this.refresh()})})},_bindFormResetHandler:function(){var t;this.form=this.element.form(),this.form.length&&((t=this.form.data("ui-form-reset-instances")||[]).length||this.form.on("reset.ui-form-reset",this._formResetHandler),t.push(this),this.form.data("ui-form-reset-instances",t))},_unbindFormResetHandler:function(){var t;this.form.length&&((t=this.form.data("ui-form-reset-instances")).splice(x.inArray(this,t),1),t.length?this.form.data("ui-form-reset-instances",t):this.form.removeData("ui-form-reset-instances").off("reset.ui-form-reset"))}},x.ui.ie=!!/msie [\w.]+/.exec(navigator.userAgent.toLowerCase()), +/*! + * jQuery UI Support for jQuery core 1.7.x 1.12.1 + * http://jqueryui.com + * + * Copyright jQuery Foundation and other contributors + * Released under the MIT license. + * http://jquery.org/license + * + */ +"1.7"===x.fn.jquery.substring(0,3)&&(x.each(["Width","Height"],function(t,i){var o="Width"===i?["Left","Right"]:["Top","Bottom"],n=i.toLowerCase(),s={innerWidth:x.fn.innerWidth,innerHeight:x.fn.innerHeight,outerWidth:x.fn.outerWidth,outerHeight:x.fn.outerHeight};function r(t,e,i,n){return x.each(o,function(){e-=parseFloat(x.css(t,"padding"+this))||0,i&&(e-=parseFloat(x.css(t,"border"+this+"Width"))||0),n&&(e-=parseFloat(x.css(t,"margin"+this))||0)}),e}x.fn["inner"+i]=function(t){return void 0===t?s["inner"+i].call(this):this.each(function(){x(this).css(n,r(this,t)+"px")})},x.fn["outer"+i]=function(t,e){return"number"!=typeof t?s["outer"+i].call(this,t):this.each(function(){x(this).css(n,r(this,t,!0,e)+"px")})}}),x.fn.addBack=function(t){return this.add(null==t?this.prevObject:this.prevObject.filter(t))}), +/*! + * jQuery UI Keycode 1.12.1 + * http://jqueryui.com + * + * Copyright jQuery Foundation and other contributors + * Released under the MIT license. + * http://jquery.org/license + */ +x.ui.keyCode={BACKSPACE:8,COMMA:188,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,LEFT:37,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SPACE:32,TAB:9,UP:38}, +/*! + * jQuery UI Labels 1.12.1 + * http://jqueryui.com + * + * Copyright jQuery Foundation and other contributors + * Released under the MIT license. + * http://jquery.org/license + */ +x.fn.labels=function(){var t,e,i;return this[0].labels&&this[0].labels.length?this.pushStack(this[0].labels):(e=this.eq(0).parents("label"),(t=this.attr("id"))&&(i=(i=this.eq(0).parents().last()).add((i.length?i:this).siblings()),t="label[for='"+x.ui.escapeSelector(t)+"']",e=e.add(i.find(t).addBack(t))),this.pushStack(e))},x.ui.plugin={add:function(t,e,i){var n,o=x.ui[t].prototype;for(n in i)o.plugins[n]=o.plugins[n]||[],o.plugins[n].push([e,i[n]])},call:function(t,e,i,n){var o,s=t.plugins[e];if(s&&(n||t.element[0].parentNode&&11!==t.element[0].parentNode.nodeType))for(o=0;o
                            "),i=e.children()[0];return x("body").append(e),t=i.offsetWidth,e.css("overflow","scroll"),t===(i=i.offsetWidth)&&(i=e[0].clientWidth),e.remove(),n=t-i},getScrollInfo:function(t){var e=t.isWindow||t.isDocument?"":t.element.css("overflow-x"),i=t.isWindow||t.isDocument?"":t.element.css("overflow-y"),e="scroll"===e||"auto"===e&&t.widthW(C(n),C(o))?s.important="horizontal":s.important="vertical",f.using.call(this,t,s)}),r.offset(x.extend(h,{using:t}))})},x.ui.position={fit:{left:function(t,e){var i=e.within,n=i.isWindow?i.scrollLeft:i.offset.left,o=i.width,s=t.left-e.collisionPosition.marginLeft,r=n-s,l=s+e.collisionWidth-o-n;e.collisionWidth>o?0o?0",options:{classes:{},disabled:!1,create:null},_createWidget:function(t,e){e=x(e||this.defaultElement||this)[0],this.element=x(e),this.uuid=f++,this.eventNamespace="."+this.widgetName+this.uuid,this.bindings=x(),this.hoverable=x(),this.focusable=x(),this.classesElementLookup={},e!==this&&(x.data(e,this.widgetFullName,this),this._on(!0,this.element,{remove:function(t){t.target===e&&this.destroy()}}),this.document=x(e.style?e.ownerDocument:e.document||e),this.window=x(this.document[0].defaultView||this.document[0].parentWindow)),this.options=x.widget.extend({},this.options,this._getCreateOptions(),t),this._create(),this.options.disabled&&this._setOptionDisabled(this.options.disabled),this._trigger("create",null,this._getCreateEventData()),this._init()},_getCreateOptions:function(){return{}},_getCreateEventData:x.noop,_create:x.noop,_init:x.noop,destroy:function(){var i=this;this._destroy(),x.each(this.classesElementLookup,function(t,e){i._removeClass(e,t)}),this.element.off(this.eventNamespace).removeData(this.widgetFullName),this.widget().off(this.eventNamespace).removeAttr("aria-disabled"),this.bindings.off(this.eventNamespace)},_destroy:x.noop,widget:function(){return this.element},option:function(t,e){var i,n,o,s=t;if(0===arguments.length)return x.widget.extend({},this.options);if("string"==typeof t)if(s={},t=(i=t.split(".")).shift(),i.length){for(n=s[t]=x.widget.extend({},this.options[t]),o=0;oli>a.btn.btn-behance.btn-simple,.navbar .navbar-nav>li>a.btn.btn-deviantart.btn-simple,.navbar .navbar-nav>li>a.btn.btn-dribbble.btn-simple,.navbar .navbar-nav>li>a.btn.btn-facebook.btn-simple,.navbar .navbar-nav>li>a.btn.btn-github.btn-simple,.navbar .navbar-nav>li>a.btn.btn-google.btn-simple,.navbar .navbar-nav>li>a.btn.btn-instagram.btn-simple,.navbar .navbar-nav>li>a.btn.btn-linkedin.btn-simple,.navbar .navbar-nav>li>a.btn.btn-pinterest.btn-simple,.navbar .navbar-nav>li>a.btn.btn-reddit.btn-simple,.navbar .navbar-nav>li>a.btn.btn-snapchat.btn-simple,.navbar .navbar-nav>li>a.btn.btn-tumblr.btn-simple,.navbar .navbar-nav>li>a.btn.btn-twitter.btn-simple,.navbar .navbar-nav>li>a.btn.btn-vimeo.btn-simple,.navbar .navbar-nav>li>a.btn.btn-youtube.btn-simple,.navbar button.navbar-toggle,.navbar button.navbar-toggle:hover,.woocommerce form .form-row input.input-text,.woocommerce form .form-row textarea,fieldset[disabled] .btn,fieldset[disabled] .btn.active,fieldset[disabled] .btn.focus,fieldset[disabled] .btn:active,fieldset[disabled] .btn:focus,fieldset[disabled] .btn:hover,select.form-control{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.form-control,.form-group .form-control,.woocommerce form .form-row input.input-text,.woocommerce form .form-row textarea{background-image:-webkit-gradient(linear,left top,left bottom,from(#9c27b0),to(#9c27b0)),-webkit-gradient(linear,left top,left bottom,from(#d2d2d2),to(#d2d2d2));background-image:-webkit-linear-gradient(#9c27b0,#9c27b0),-webkit-linear-gradient(#d2d2d2,#d2d2d2);background-image:linear-gradient(#9c27b0,#9c27b0),linear-gradient(#d2d2d2,#d2d2d2);float:none;border:0;border-radius:0;background-color:transparent;background-repeat:no-repeat;background-position:center bottom,center -webkit-calc(100% - 1px);background-position:center bottom,center calc(100% - 1px);background-size:0 2px,100% 1px;font-weight:400;-webkit-transition:background 0s ease-out;transition:background 0s ease-out}.form-group.is-focused .form-control{background-image:-webkit-gradient(linear,left top,left bottom,from(#9c27b0),to(#9c27b0)),-webkit-gradient(linear,left top,left bottom,from(#d2d2d2),to(#d2d2d2));background-image:-webkit-linear-gradient(#9c27b0,#9c27b0),-webkit-linear-gradient(#d2d2d2,#d2d2d2);background-image:linear-gradient(#9c27b0,#9c27b0),linear-gradient(#d2d2d2,#d2d2d2);outline:0;background-size:100% 2px,100% 1px;-webkit-transition-duration:.3s;transition-duration:.3s}.blog-sidebar .widget h5,.card-product .price,.card-product .price h4,.carousel .sub-title,.hestia-about p,.media .media-heading,.navbar .navbar-brand,.shop-sidebar .widget h5,.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta,blockquote,h4.author{font-size:18px}a:not(.btn){transition:.3s ease}a:not(.btn):not(.button):not(.added_to_cart):hover{opacity:.75}.media p,h3#ship-to-different-address{font-size:16px}.btn,.form-control,.woocommerce #reviews #comments label,body{font-size:14px}.footer .footer-menu a,.hestia-top-bar,.label,.media-footer a,.navbar,.navbar a{font-size:12px}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-weight:300;line-height:1.618}.blog-post .section-text p,ol,output,ul{line-height:1.618}h1,h2,h3,h4,h5,h6{font-weight:500;line-height:1.618}.card-product .price h4,h4.author,h5.description,h5.subscribe-description{font-weight:300}h6.category{font-weight:500}.card-title,.footer-big h4,.footer-big h5,.footer-brand,.hestia-title,.info-title,.media .media-heading,.title,.woocommerce ul.products[class*=columns-] li.product-category h2{font-weight:700}.hestia-title{word-break:break-word}.btn,button,input[type=button],input[type=submit]{font-size:12px;font-weight:400}.btn:not(.btn-just-icon):not(.btn-fab) i{font-size:18px}.btn.btn-just-icon{font-size:20px;line-height:20px}.btn.btn-just-icon.btn-lg{font-size:22px}.btn i{font-size:17px}legend{font-size:21px}output{font-size:14px}button,input,select,textarea{font-size:inherit;line-height:inherit}.form-control{font-size:14px;line-height:1.42857}.checkbox label,.form-control:-ms-input-placeholder,.form-control::-moz-placeholder,.form-control::-webkit-input-placeholder,.form-group .checkbox label,.form-group .form-control:-ms-input-placeholder,.form-group .form-control::-moz-placeholder,.form-group .form-control::-webkit-input-placeholder,.form-group .radio label,.form-group label,.radio label,label{font-size:14px;font-weight:400;line-height:1.42857}.form-control:-ms-input-placeholder,.form-control::-moz-placeholder,.form-control::-webkit-input-placeholder,.form-group .form-control:-ms-input-placeholder,.form-group .form-control::-moz-placeholder,.form-group .form-control::-webkit-input-placeholder{font-weight:400}.form-group label.control-label{font-size:11px;font-weight:400;line-height:1.07143}.form-group.label-floating label.control-label,.form-group.label-placeholder label.control-label{font-size:14px;line-height:1.42857}.form-group.label-floating.is-focused label.control-label,.form-group.label-floating:not(.is-empty) label.control-label,.form-group.label-static label.control-label{font-size:11px;line-height:1.07143}label.control-label{font-size:11px;font-weight:400;line-height:1.07143}label.subscribe-label{font-weight:300}table>thead>tr>th{font-size:17px;font-weight:300}.help-block{font-size:11px}.hestia-info .icon>i,.info .icon>i{font-size:61.6px}.info-horizontal .icon>i{font-size:36.4px}.media .media-heading{font-size:18.2px}.media p{font-size:16px}.wp-caption-text{font-size:14px;font-weight:700}.blog-post .comment-reply-link{font-size:12px;font-weight:400}.blog-post .section-blog-info .card-profile .description{font-size:14px}.carousel .carousel-control i{font-size:50px}.card .footer .stats{line-height:30px}.card .footer .stats i{font-size:18px}.card .category i{line-height:0}.card-product .footer h4{line-height:1.2}.card-product .category,.card-title{line-height:1.4}.card-pricing .card-title{font-size:60px;line-height:35px}.card-pricing .card-title small{font-size:18px}.card-pricing .card-title small:first-child{font-size:26px}.navbar .navbar-brand{line-height:30px}.navbar .navbar-nav>li>a{font-weight:400}.navbar .navbar-nav>li>a i{font-size:20px}.navbar .dropdown-menu li>a{font-size:13px}.navbar .dropdown-menu li>a>i{font-size:20px}.navbar .dropdown-menu li>a i{font-size:20px}.navbar .hestia-mm-heading>span{font-size:14px;font-weight:600}.hestia-mm-description{font-size:12px;font-weight:400}.hestia-top-bar{line-height:40px}.hestia-top-bar .widget,.hestia-top-bar .widget .textwidget,.hestia-top-bar .widget h5{line-height:inherit}.hestia-top-bar .widget.widget_product_search .label-floating,.hestia-top-bar .widget.widget_search .label-floating{font-size:inherit}.hestia-top-bar .widget.widget_product_search .label-floating.is-empty,.hestia-top-bar .widget.widget_search .label-floating.is-empty{font-size:inherit;font-weight:300}.hestia-top-bar .widget.widget_product_search .label-floating.is-focused .control-label,.hestia-top-bar .widget.widget_search .label-floating.is-focused .control-label{font-size:inherit;line-height:20px}.hestia-top-bar .widget.widget_product_search form.form-group input[type=search],.hestia-top-bar .widget.widget_search form.form-group input[type=search]{font-size:inherit;font-weight:300}.hestia-top-bar .widget.widget_product_search form.form-group:before,.hestia-top-bar .widget.widget_search form.form-group:before{font-size:18px}.hestia-top-bar ul{line-height:inherit}.hestia-top-bar ul li a{font-size:inherit;line-height:inherit}.hestia-top-bar ul li a:before{font-size:16px}.pagination a,.pagination span{font-size:12px;font-weight:400;line-height:30px}.footer .widget h5{line-height:1.4}.footer-big .footer-menu li a[href*="mailto:"],.footer-big .footer-menu li a[href*="tel:"]{font-size:0}.footer-big .footer-menu li a[href*="mailto:"]:before,.footer-big .footer-menu li a[href*="tel:"]:before{font-size:16px}.footer-big ul li a{font-weight:500}h5.description{line-height:1.5}.hestia-about{font-weight:300}.hestia-about h1,.hestia-about h2,.hestia-about h3,.hestia-about h4,.hestia-about h5{font-weight:700}.widget h5{font-weight:700}.search-form:after,.searchform:after,.woocommerce-product-search:after{font-size:18px}.header-widgets-wrapper .widget,.header-widgets-wrapper .widget .textwidget,.header-widgets-wrapper .widget h5{line-height:inherit}.header-widgets-wrapper ul{line-height:inherit}.header-widgets-wrapper ul li a{font-size:inherit;line-height:inherit}.header-widgets-wrapper ul li a:before{font-size:16px}aside .widget a{font-weight:500}.star-rating{line-height:1;font-size:12px}.woocommerce-cart .shop_table .actions .coupon .input-text{font-size:14px}.woocommerce-cart table.shop_table th{font-size:13px;font-weight:300}.woocommerce-cart table.shop_table .product-name a{font-size:16px;font-weight:500;line-height:30px}.woocommerce-cart table.shop_table td.actions button[type=submit],.woocommerce-cart table.shop_table td.actions input[type=submit]{font-size:14px}.woocommerce-cart p.units-info{line-height:1.5;font-size:14px}.woocommerce-cart .wc-gzd-additional-wrapper p{font-size:14px;font-weight:700}.woocommerce-checkout .form-row label{font-weight:300}.woocommerce-checkout .woocommerce-checkout-payment .form-row .woocommerce-form__label-for-checkbox,.woocommerce-checkout .woocommerce-checkout-payment li>label{font-weight:400}.woocommerce-checkout .woocommerce-shipping-fields h3 label{line-height:1}.woocommerce-checkout .woocommerce-shipping-fields h3 label span{font-weight:300}.woocommerce-checkout .col-md-12 #customer_details label{font-weight:500}.woocommerce-checkout .shop_table tr td p.units-info{font-size:12px}.woocommerce-checkout .shop_table .wc-gzd-additional-info{font-size:14px}#add_payment_method .wc-proceed-to-checkout a.checkout-button,.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button{font-size:12px;font-weight:400}.woocommerce-account .woocommerce-Button,.woocommerce-account .woocommerce-button,.woocommerce-account a.button{line-height:20px!important}.woocommerce-account .woocommerce-MyAccount-content h2{font-weight:600}.added_to_cart.wc-forward{font-weight:400;font-size:10px;line-height:30px}.variations tr .label{font-size:14px}.woocommerce-error,.woocommerce-info,.woocommerce-message{line-height:20px}.woocommerce-error li,.woocommerce-info li,.woocommerce-message li{line-height:1.5}.woocommerce-error>a.button,.woocommerce-info>a.button,.woocommerce-message>a.button{font-size:12px;font-weight:700}.woocommerce-info a{font-weight:700}.woocommerce-message a:not(.button){font-weight:800}@media (max-width:991px){.woocommerce-account input.woocommerce-Button.button{font-size:11px}.woocommerce-breadcrumb{line-height:33px}}@media (min-width:769px){.navbar.full-screen-menu .navbar-nav>li a{font-size:17px}}@media (max-width:768px){h4.author{font-size:16px}.woocommerce-cart table.shop_table dl.variation dd,.woocommerce-cart table.shop_table dl.variation dt{font-size:16px;line-height:30px}.woocommerce-cart table.shop_table dl.variation dd p{font-size:16px}.woocommerce-cart table.shop_table td.product-name{line-height:30px}.woocommerce-checkout td.product-name dl.variation dd,.woocommerce-checkout td.product-name dl.variation dt{font-size:16px}.woocommerce-checkout td.product-name dl.variation dd p{font-size:16px}.navbar .navbar-nav li>a i,.navbar .navbar-nav li>a>i{font-size:22px}.navbar .navbar-nav li .caret{font-size:20px}.navbar .navbar-nav li .dropdown i,.navbar .navbar-nav li .dropdown>i{font-size:20px}.navbar .navbar-nav .dropdown .dropdown-menu li a{line-height:20px}.navbar .navbar-nav .dropdown .dropdown-menu li a .caret{line-height:1}}@media (max-width:480px){.woocommerce .woocommerce-ordering select,.woocommerce-page .woocommerce-ordering select{font-size:12px}}body{direction:ltr;color:#3c4858;font-family:Roboto,Helvetica,Arial,sans-serif}h1,h2,h3,h4,h5,h6{font-family:Roboto,Helvetica,Arial,sans-serif}a{color:#9c27b0}a:focus,a:hover{color:#89229b;text-decoration:none}blockquote p{font-style:italic}h3{margin:20px 0 10px}h5{margin-bottom:15px}h6.category{text-transform:uppercase}.card-title,.footer-big h4,.footer-big h5,.footer-brand,.hestia-title,.info-title,.media .media-heading,.title,.woocommerce ul.products[class*=columns-] li.product-category h2{font-family:"Roboto Slab","Times New Roman",serif}.card-title,.card-title a,.card-title a:hover,.footer-big h4,.footer-big h4 a,.footer-big h4 a:hover,.footer-big h5,.footer-big h5 a,.footer-big h5 a:hover,.footer-brand,.footer-brand a,.footer-brand a:hover,.hestia-title,.hestia-title a,.hestia-title a:hover,.info-title,.info-title a,.info-title a:hover,.media .media-heading,.media .media-heading a,.media .media-heading a:hover,.title,.title a,.title a:hover,.woocommerce ul.products[class*=columns-] li.product-category h2,.woocommerce ul.products[class*=columns-] li.product-category h2 a,.woocommerce ul.products[class*=columns-] li.product-category h2 a:hover{color:#3c4858;text-decoration:none;word-wrap:break-word}.page-header .hestia-title{line-height:1.4}.title-in-content{line-height:1.3}.contactus h2.hestia-title,.contactus h2.title,.pricing h2.hestia-title,.pricing h2.title,h1.hestia-title,h1.title{margin-bottom:30px}h2.hestia-title,h2.title{margin-bottom:10px}.carousel h1.hestia-title,.carousel h2.title{font-family:Roboto,Helvetica,Arial,sans-serif}.carousel span.sub-title{display:block;margin:10px 0 0;font-family:"Roboto Slab","Times New Roman",serif}.carousel .buttons{margin-top:60px}.card-description,.description,.footer-big{color:#999}.card-description.entry-content{color:#3c4858}.subscribe-line-image .subscribe-description{color:#efefef}.text-warning{color:#ff9800}.text-primary{color:#9c27b0}.text-danger{color:#f44336}.text-success{color:#4caf50}.text-info{color:#00bcd4}.text-rose{color:#e91e63}.text-gray{color:#999}.has-black-color{color:#000}.has-white-color{color:#fff}.has-background.has-black-background-color{background-color:#000}.has-background.has-white-background-color{background-color:#fff}.page:not(.woocommerce-page) .blog-post .section-text h1,.page:not(.woocommerce-page) .blog-post .section-text h2,.page:not(.woocommerce-page) .blog-post .section-text h3,.page:not(.woocommerce-page) .blog-post .section-text h4,.page:not(.woocommerce-page) .blog-post .section-text h5,.page:not(.woocommerce-page) .blog-post .section-text h6,.page:not(.woocommerce-page) .blog-post .section-text p,.single-post .blog-post .section-text h1,.single-post .blog-post .section-text h2,.single-post .blog-post .section-text h3,.single-post .blog-post .section-text h4,.single-post .blog-post .section-text h5,.single-post .blog-post .section-text h6,.single-post .blog-post .section-text p{margin:0 0 15px}.page:not(.woocommerce-page) .blog-post .section-text h1.form-submit,.page:not(.woocommerce-page) .blog-post .section-text h2.form-submit,.page:not(.woocommerce-page) .blog-post .section-text h3.form-submit,.page:not(.woocommerce-page) .blog-post .section-text h4.form-submit,.page:not(.woocommerce-page) .blog-post .section-text h5.form-submit,.page:not(.woocommerce-page) .blog-post .section-text h6.form-submit,.page:not(.woocommerce-page) .blog-post .section-text p.form-submit,.single-post .blog-post .section-text h1.form-submit,.single-post .blog-post .section-text h2.form-submit,.single-post .blog-post .section-text h3.form-submit,.single-post .blog-post .section-text h4.form-submit,.single-post .blog-post .section-text h5.form-submit,.single-post .blog-post .section-text h6.form-submit,.single-post .blog-post .section-text p.form-submit{margin:0 0 10px}.tooltip{opacity:0;-webkit-transition:opacity,-webkit-transform .2s ease;transition:opacity,-webkit-transform .2s ease;transition:opacity,transform .2s ease;transition:opacity,transform .2s ease,-webkit-transform .2s ease;-webkit-transform:translate3d(0,5px,0);-ms-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}.tooltip.in{opacity:1;-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.tooltip.left .tooltip-arrow{border-left-color:#fff}.tooltip.right .tooltip-arrow{border-right-color:#fff}.tooltip.top .tooltip-arrow{border-top-color:#fff}.tooltip.bottom .tooltip-arrow{border-bottom-color:#fff}.tooltip-inner{min-width:130px;padding:10px 15px;border:none;border-radius:3px;color:#555;background:#fff;-webkit-box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12),0 5px 5px -3px rgba(0,0,0,.2);box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12),0 5px 5px -3px rgba(0,0,0,.2);font-size:12px;line-height:1.5;text-transform:none}.screen-reader-text{clip:rect(1px,1px,1px,1px);position:absolute!important;height:1px;width:1px;overflow:hidden}.screen-reader-text:focus{background-color:#f1f1f1;border-radius:3px;-webkit-box-shadow:0 0 2px 2px rgba(0,0,0,.6);box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;color:#21759b;display:block;font-size:14px;font-weight:700;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}.container{max-width:100%}@media (min-width:749px){.container{max-width:748px}}@media (min-width:768px){.container{max-width:750px}}@media (min-width:992px){.container{max-width:970px}}@media (min-width:1200px){.container{max-width:2000px}}body{direction:ltr;background-color:#e5e5e5;overflow-x:hidden}*{-webkit-tap-highlight-color:rgba(255,255,255,0);-webkit-tap-highlight-color:transparent}.wp-caption,button,embed,iframe,img,input,object,select,textarea,video{max-width:100%}img{height:auto}ol,ul{margin-bottom:30px}legend{border-bottom:0}.container{max-width:100%}.margin-left-auto{margin-left:auto}.margin-right-auto{margin-right:auto}.animation-transition-fast,.navbar,.panel .panel-heading i,.section-cards .card{-webkit-transition:all 150ms ease;transition:all 150ms ease}.thumbnail{padding:0;border:0 none;border-radius:0}.default-link,.default-link:hover,.hestia-title .default-link,.section-image .default-link,.section-image .description .default-link,.title .default-link{color:#fff}.description .default-link{color:#999}body.menu-open{overflow:hidden}@media (min-width:992px){.row.hestia-like-table{display:table;width:100%}.row.hestia-like-table>div{display:table-cell;vertical-align:middle;float:none}}@media (max-width:991px){.hestia-xs-text-center{text-align:center}}.hestia-blogs article:nth-of-type(6n) .category a,.related-posts div:nth-of-type(6n) .category a,.related.products ul li:nth-of-type(6n) .category a,.shop-item:nth-of-type(6n) .category a,.woocommerce .products li:nth-of-type(6n) .category a,.woocommerce.archive .blog-post .products li:nth-of-type(6n) .category a{color:#4caf50}.hestia-blogs article:nth-of-type(6n+1) .category a,.related-posts div:nth-of-type(6n+1) .category a,.related.products ul li:nth-of-type(6n+1) .category a,.shop-item:nth-of-type(6n+1) .category a,.woocommerce .products li:nth-of-type(6n+1) .category a,.woocommerce.archive .blog-post .products li:nth-of-type(6n+1) .category a{color:#89229b}.hestia-blogs article:nth-of-type(6n+2) .category a,.related-posts div:nth-of-type(6n+2) .category a,.related.products ul li:nth-of-type(6n+2) .category a,.shop-item:nth-of-type(6n+2) .category a,.woocommerce .products li:nth-of-type(6n+2) .category a,.woocommerce.archive .blog-post .products li:nth-of-type(6n+2) .category a{color:#00bcd4}.hestia-blogs article:nth-of-type(6n+3) .category a,.related-posts div:nth-of-type(6n+3) .category a,.related.products ul li:nth-of-type(6n+3) .category a,.shop-item:nth-of-type(6n+3) .category a,.woocommerce .products li:nth-of-type(6n+3) .category a,.woocommerce.archive .blog-post .products li:nth-of-type(6n+3) .category a{color:#f44336}.hestia-blogs article:nth-of-type(6n+4) .category a,.related-posts div:nth-of-type(6n+4) .category a,.related.products ul li:nth-of-type(6n+4) .category a,.shop-item:nth-of-type(6n+4) .category a,.woocommerce .products li:nth-of-type(6n+4) .category a,.woocommerce.archive .blog-post .products li:nth-of-type(6n+4) .category a{color:#ff9800}.hestia-blogs article:nth-of-type(6n+5) .category a,.related-posts div:nth-of-type(6n+5) .category a,.related.products ul li:nth-of-type(6n+5) .category a,.shop-item:nth-of-type(6n+5) .category a,.woocommerce .products li:nth-of-type(6n+5) .category a,.woocommerce.archive .blog-post .products li:nth-of-type(6n+5) .category a{color:#e91e63}.hestia-blogs article:nth-of-type(6n) .card-body .btn{background-color:#4caf50}.hestia-blogs article:nth-of-type(6n+1) .card-body .btn{background-color:#89229b}.hestia-blogs article:nth-of-type(6n+2) .card-body .btn{background-color:#00bcd4}.hestia-blogs article:nth-of-type(6n+3) .card-body .btn{background-color:#f44336}.hestia-blogs article:nth-of-type(6n+4) .card-body .btn{background-color:#ff9800}.hestia-blogs article:nth-of-type(6n+5) .card-body .btn{background-color:#e91e63}.wp-audio-shortcode{margin-bottom:20px}.wp-video-shortcode{margin-bottom:20px}input[type=checkbox]+label,input[type=radio]+label{font-weight:400}blockquote.has-text-align-right{border-left:0;border-right:5px solid #eee}blockquote cite{font-size:.8em;color:#777;font-style:normal;font-weight:400}::-moz-focus-inner,:active,:focus{outline:0!important}.btn::-moz-focus-inner,button,input[type=button]::-moz-focus-inner,input[type=submit]::-moz-focus-inner{border:0}button,input,select,textarea{font-family:inherit;padding:7px}button:focus,input:focus,select:focus,textarea:focus{outline:0!important}.btn,button,input[type=button],input[type=submit]{position:relative;margin:10px 1px;padding:12px 30px;border:none;border-radius:3px;white-space:normal;letter-spacing:0;text-transform:uppercase}input[type=number]{padding:0}.btn,.btn.btn-default,button,input[type=button],input[type=submit]{-webkit-box-shadow:0 2px 2px 0 rgba(153,153,153,.14),0 3px 1px -2px rgba(153,153,153,.2),0 1px 5px 0 rgba(153,153,153,.12);-moz-box-shadow:0 2px 2px 0 rgba(153,153,153,.14),0 3px 1px -2px rgba(153,153,153,.2),0 1px 5px 0 rgba(153,153,153,.12);box-shadow:0 2px 2px 0 rgba(153,153,153,.14),0 3px 1px -2px rgba(153,153,153,.2),0 1px 5px 0 rgba(153,153,153,.12)}.btn.btn-default:active,.btn.btn-default:focus,.btn.btn-default:hover,.btn:active,.btn:focus,.btn:hover,button:active,button:focus,button:hover,input[type=button]:active,input[type=button]:focus,input[type=button]:hover,input[type=submit]:active,input[type=submit]:focus,input[type=submit]:hover{-webkit-box-shadow:0 14px 26px -12px rgba(153,153,153,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(153,153,153,.2);-moz-box-shadow:0 14px 26px -12px rgba(153,153,153,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(153,153,153,.2);box-shadow:0 14px 26px -12px rgba(153,153,153,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(153,153,153,.2)}.btn,.btn.active,.btn.active:focus,.btn.active:hover,.btn.btn-default,.btn.btn-default.active,.btn.btn-default.active:focus,.btn.btn-default.active:hover,.btn.btn-default:active,.btn.btn-default:active:focus,.btn.btn-default:active:hover,.btn.btn-default:focus,.btn.btn-default:hover,.btn:active,.btn:active:focus,.btn:active:hover,.btn:focus,.btn:hover,.open>.btn.btn-default.dropdown-toggle,.open>.btn.btn-default.dropdown-toggle:focus,.open>.btn.btn-default.dropdown-toggle:hover,.open>.btn.dropdown-toggle,.open>.btn.dropdown-toggle:focus,.open>.btn.dropdown-toggle:hover,button:focus,button:hover,input[type=button]:active,input[type=button]:focus,input[type=button]:hover,input[type=submit]:active,input[type=submit]:focus,input[type=submit]:hover{color:#fff;background-color:#999;outline:0}.btn:active>a,.btn:focus>a,.btn:hover>a,.btn>a:active,.btn>a:focus,.btn>a:hover{color:#fff}.btn.btn-default.btn-simple,.btn.btn-default.btn-simple:active,.btn.btn-default.btn-simple:focus,.btn.btn-default.btn-simple:hover,.btn.btn-simple,.btn.btn-simple:active,.btn.btn-simple:focus,.btn.btn-simple:hover{color:#999;background-color:transparent}.btn.btn-primary,button,input[type=button],input[type=submit]{-webkit-box-shadow:0 2px 2px 0 rgba(156,39,176,.14),0 3px 1px -2px rgba(156,39,176,.2),0 1px 5px 0 rgba(156,39,176,.12);-moz-box-shadow:0 2px 2px 0 rgba(156,39,176,.14),0 3px 1px -2px rgba(156,39,176,.2),0 1px 5px 0 rgba(156,39,176,.12);box-shadow:0 2px 2px 0 rgba(156,39,176,.14),0 3px 1px -2px rgba(156,39,176,.2),0 1px 5px 0 rgba(156,39,176,.12)}.btn.btn-primary:active,.btn.btn-primary:focus,.btn.btn-primary:hover,button:active,button:focus,button:hover,input[type=button]:active,input[type=button]:focus,input[type=button]:hover,input[type=submit]:active,input[type=submit]:focus,input[type=submit]:hover{-webkit-box-shadow:0 14px 26px -12px rgba(156,39,176,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(156,39,176,.2);-moz-box-shadow:0 14px 26px -12px rgba(156,39,176,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(156,39,176,.2);box-shadow:0 14px 26px -12px rgba(156,39,176,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(156,39,176,.2)}.btn.btn-primary.btn-simple,.btn.btn-primary.btn-simple:active,.btn.btn-primary.btn-simple:focus,.btn.btn-primary.btn-simple:hover{color:#9c27b0;background-color:transparent}.btn.btn-primary,.btn.btn-primary.active,.btn.btn-primary.active:focus,.btn.btn-primary.active:hover,.btn.btn-primary:active,.btn.btn-primary:active:focus,.btn.btn-primary:active:hover,.btn.btn-primary:focus,.btn.btn-primary:hover,.open>.btn.btn-primary.dropdown-toggle,.open>.btn.btn-primary.dropdown-toggle:focus,.open>.btn.btn-primary.dropdown-toggle:hover,button,button:hover,input#searchsubmit,input[type=button],input[type=button]:hover,input[type=submit],input[type=submit]:hover{color:#fff;background-color:#9c27b0}.btn.btn-white{box-shadow:0 2px 2px 0 rgba(153,153,153,.14),0 3px 1px -2px rgba(153,153,153,.2),0 1px 5px 0 rgba(153,153,153,.12);color:#999;background-color:#fff}.btn.btn-white.btn-white:focus,.btn.btn-white.btn-white:hover{color:#fff;background-color:rgba(153,153,153,.6)}.btn.btn-white.btn-simple{color:#fff;background:0 0}.btn.btn-round{border-radius:30px}.btn:not(.btn-just-icon):not(.btn-fab) i{position:relative}.btn.btn-just-icon{padding:12px}.btn.btn-just-icon:hover{box-shadow:none}.btn.btn-just-icon i{width:20px}.btn.btn-just-icon.btn-lg{padding:13px 18px}.btn.btn-border{background:0 0;border:1px solid #d2d2d2;color:#999}.btn.btn-border:focus,.btn.btn-border:hover{background:0 0;color:#3c4858}.btn i{position:relative;top:-1px;vertical-align:middle}.navbar button.navbar-toggle,.navbar button.navbar-toggle:hover{color:#555}.navbar .button:hover{box-shadow:none!important;color:#e91e63}.navbar .dropdown-menu li.btn:active>a,.navbar .dropdown-menu li.btn:focus>a,.navbar .dropdown-menu li.btn:hover>a{color:#fff!important}.btn.btn-facebook,.btn.btn-facebook:active,.btn.btn-facebook:focus,.btn.btn-facebook:hover,.navbar .navbar-nav>li>a.btn.btn-facebook,.navbar .navbar-nav>li>a.btn.btn-facebook:active,.navbar .navbar-nav>li>a.btn.btn-facebook:focus,.navbar .navbar-nav>li>a.btn.btn-facebook:hover{color:#fff;background-color:#3b5998}.btn.btn-facebook,.navbar .navbar-nav>li>a.btn.btn-facebook{-webkit-box-shadow:0 2px 2px 0 rgba(59,89,152,.14),0 3px 1px -2px rgba(59,89,152,.2),0 1px 5px 0 rgba(59,89,152,.12);-moz-box-shadow:0 2px 2px 0 rgba(59,89,152,.14),0 3px 1px -2px rgba(59,89,152,.2),0 1px 5px 0 rgba(59,89,152,.12);box-shadow:0 2px 2px 0 rgba(59,89,152,.14),0 3px 1px -2px rgba(59,89,152,.2),0 1px 5px 0 rgba(59,89,152,.12)}.btn.btn-facebook:active,.btn.btn-facebook:focus,.btn.btn-facebook:hover,.navbar .navbar-nav>li>a.btn.btn-facebook:active,.navbar .navbar-nav>li>a.btn.btn-facebook:focus,.navbar .navbar-nav>li>a.btn.btn-facebook:hover{-webkit-box-shadow:0 14px 26px -12px rgba(59,89,152,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(59,89,152,.2);-moz-box-shadow:0 14px 26px -12px rgba(59,89,152,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(59,89,152,.2);box-shadow:0 14px 26px -12px rgba(59,89,152,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(59,89,152,.2)}.btn.btn-facebook.btn-simple,.navbar .navbar-nav>li>a.btn.btn-facebook.btn-simple{color:#3b5998;background-color:transparent}.btn.btn-twitter,.btn.btn-twitter:active,.btn.btn-twitter:focus,.btn.btn-twitter:hover,.navbar .navbar-nav>li>a.btn.btn-twitter,.navbar .navbar-nav>li>a.btn.btn-twitter:active,.navbar .navbar-nav>li>a.btn.btn-twitter:focus,.navbar .navbar-nav>li>a.btn.btn-twitter:hover{color:#fff;background-color:#55acee}.btn.btn-twitter,.navbar .navbar-nav>li>a.btn.btn-twitter{-webkit-box-shadow:0 2px 2px 0 rgba(85,172,238,.14),0 3px 1px -2px rgba(85,172,238,.2),0 1px 5px 0 rgba(85,172,238,.12);-moz-box-shadow:0 2px 2px 0 rgba(85,172,238,.14),0 3px 1px -2px rgba(85,172,238,.2),0 1px 5px 0 rgba(85,172,238,.12);box-shadow:0 2px 2px 0 rgba(85,172,238,.14),0 3px 1px -2px rgba(85,172,238,.2),0 1px 5px 0 rgba(85,172,238,.12)}.btn.btn-twitter:active,.btn.btn-twitter:focus,.btn.btn-twitter:hover,.navbar .navbar-nav>li>a.btn.btn-twitter:active,.navbar .navbar-nav>li>a.btn.btn-twitter:focus,.navbar .navbar-nav>li>a.btn.btn-twitter:hover{-webkit-box-shadow:0 14px 26px -12px rgba(85,172,238,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(85,172,238,.2);-moz-box-shadow:0 14px 26px -12px rgba(85,172,238,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(85,172,238,.2);box-shadow:0 14px 26px -12px rgba(85,172,238,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(85,172,238,.2)}.btn.btn-twitter.btn-simple,.navbar .navbar-nav>li>a.btn.btn-twitter.btn-simple{color:#55acee;background-color:transparent}.btn.btn-pinterest,.btn.btn-pinterest:active,.btn.btn-pinterest:focus,.btn.btn-pinterest:hover,.navbar .navbar-nav>li>a.btn.btn-pinterest,.navbar .navbar-nav>li>a.btn.btn-pinterest:active,.navbar .navbar-nav>li>a.btn.btn-pinterest:focus,.navbar .navbar-nav>li>a.btn.btn-pinterest:hover{color:#fff;background-color:#cc2127}.btn.btn-pinterest,.navbar .navbar-nav>li>a.btn.btn-pinterest{-webkit-box-shadow:0 2px 2px 0 rgba(204,33,39,.14),0 3px 1px -2px rgba(204,33,39,.2),0 1px 5px 0 rgba(204,33,39,.12);-moz-box-shadow:0 2px 2px 0 rgba(204,33,39,.14),0 3px 1px -2px rgba(204,33,39,.2),0 1px 5px 0 rgba(204,33,39,.12);box-shadow:0 2px 2px 0 rgba(204,33,39,.14),0 3px 1px -2px rgba(204,33,39,.2),0 1px 5px 0 rgba(204,33,39,.12)}.btn.btn-pinterest:active,.btn.btn-pinterest:focus,.btn.btn-pinterest:hover,.navbar .navbar-nav>li>a.btn.btn-pinterest:active,.navbar .navbar-nav>li>a.btn.btn-pinterest:focus,.navbar .navbar-nav>li>a.btn.btn-pinterest:hover{-webkit-box-shadow:0 14px 26px -12px rgba(204,33,39,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(204,33,39,.2);-moz-box-shadow:0 14px 26px -12px rgba(204,33,39,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(204,33,39,.2);box-shadow:0 14px 26px -12px rgba(204,33,39,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(204,33,39,.2)}.btn.btn-pinterest.btn-simple,.navbar .navbar-nav>li>a.btn.btn-pinterest.btn-simple{color:#cc2127;background-color:transparent}.btn.btn-google,.btn.btn-google:active,.btn.btn-google:focus,.btn.btn-google:hover,.navbar .navbar-nav>li>a.btn.btn-google,.navbar .navbar-nav>li>a.btn.btn-google:active,.navbar .navbar-nav>li>a.btn.btn-google:focus,.navbar .navbar-nav>li>a.btn.btn-google:hover{color:#fff;background-color:#dd4b39}.btn.btn-google,.navbar .navbar-nav>li>a.btn.btn-google{-webkit-box-shadow:0 2px 2px 0 rgba(221,75,57,.14),0 3px 1px -2px rgba(221,75,57,.2),0 1px 5px 0 rgba(221,75,57,.12);-moz-box-shadow:0 2px 2px 0 rgba(221,75,57,.14),0 3px 1px -2px rgba(221,75,57,.2),0 1px 5px 0 rgba(221,75,57,.12);box-shadow:0 2px 2px 0 rgba(221,75,57,.14),0 3px 1px -2px rgba(221,75,57,.2),0 1px 5px 0 rgba(221,75,57,.12)}.btn.btn-google:active,.btn.btn-google:focus,.btn.btn-google:hover,.navbar .navbar-nav>li>a.btn.btn-google:active,.navbar .navbar-nav>li>a.btn.btn-google:focus,.navbar .navbar-nav>li>a.btn.btn-google:hover{-webkit-box-shadow:0 14px 26px -12px rgba(221,75,57,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(221,75,57,.2);-moz-box-shadow:0 14px 26px -12px rgba(221,75,57,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(221,75,57,.2);box-shadow:0 14px 26px -12px rgba(221,75,57,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(221,75,57,.2)}.btn.btn-google.btn-simple,.navbar .navbar-nav>li>a.btn.btn-google.btn-simple{color:#dd4b39;background-color:transparent}.btn.btn-linkedin,.btn.btn-linkedin:active,.btn.btn-linkedin:focus,.btn.btn-linkedin:hover,.navbar .navbar-nav>li>a.btn.btn-linkedin,.navbar .navbar-nav>li>a.btn.btn-linkedin:active,.navbar .navbar-nav>li>a.btn.btn-linkedin:focus,.navbar .navbar-nav>li>a.btn.btn-linkedin:hover{color:#fff;background-color:#0976b4}.btn.btn-linkedin,.navbar .navbar-nav>li>a.btn.btn-linkedin{-webkit-box-shadow:0 2px 2px 0 rgba(9,118,180,.14),0 3px 1px -2px rgba(9,118,180,.2),0 1px 5px 0 rgba(9,118,180,.12);-moz-box-shadow:0 2px 2px 0 rgba(9,118,180,.14),0 3px 1px -2px rgba(9,118,180,.2),0 1px 5px 0 rgba(9,118,180,.12);box-shadow:0 2px 2px 0 rgba(9,118,180,.14),0 3px 1px -2px rgba(9,118,180,.2),0 1px 5px 0 rgba(9,118,180,.12)}.btn.btn-linkedin:active,.btn.btn-linkedin:focus,.btn.btn-linkedin:hover,.navbar .navbar-nav>li>a.btn.btn-linkedin:active,.navbar .navbar-nav>li>a.btn.btn-linkedin:focus,.navbar .navbar-nav>li>a.btn.btn-linkedin:hover{-webkit-box-shadow:0 14px 26px -12px rgba(9,118,180,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(9,118,180,.2);-moz-box-shadow:0 14px 26px -12px rgba(9,118,180,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(9,118,180,.2);box-shadow:0 14px 26px -12px rgba(9,118,180,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(9,118,180,.2)}.btn.btn-linkedin.btn-simple,.navbar .navbar-nav>li>a.btn.btn-linkedin.btn-simple{color:#0976b4;background-color:transparent}.btn.btn-dribbble,.btn.btn-dribbble:active,.btn.btn-dribbble:focus,.btn.btn-dribbble:hover,.navbar .navbar-nav>li>a.btn.btn-dribbble,.navbar .navbar-nav>li>a.btn.btn-dribbble:active,.navbar .navbar-nav>li>a.btn.btn-dribbble:focus,.navbar .navbar-nav>li>a.btn.btn-dribbble:hover{color:#fff;background-color:#ea4c89}.btn.btn-dribbble,.navbar .navbar-nav>li>a.btn.btn-dribbble{-webkit-box-shadow:0 2px 2px 0 rgba(234,76,137,.14),0 3px 1px -2px rgba(234,76,137,.2),0 1px 5px 0 rgba(234,76,137,.12);-moz-box-shadow:0 2px 2px 0 rgba(234,76,137,.14),0 3px 1px -2px rgba(234,76,137,.2),0 1px 5px 0 rgba(234,76,137,.12);box-shadow:0 2px 2px 0 rgba(234,76,137,.14),0 3px 1px -2px rgba(234,76,137,.2),0 1px 5px 0 rgba(234,76,137,.12)}.btn.btn-dribbble:active,.btn.btn-dribbble:focus,.btn.btn-dribbble:hover,.navbar .navbar-nav>li>a.btn.btn-dribbble:active,.navbar .navbar-nav>li>a.btn.btn-dribbble:focus,.navbar .navbar-nav>li>a.btn.btn-dribbble:hover{-webkit-box-shadow:0 14px 26px -12px rgba(234,76,137,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(234,76,137,.2);-moz-box-shadow:0 14px 26px -12px rgba(234,76,137,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(234,76,137,.2);box-shadow:0 14px 26px -12px rgba(234,76,137,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(234,76,137,.2)}.btn.btn-dribbble.btn-simple,.navbar .navbar-nav>li>a.btn.btn-dribbble.btn-simple{color:#ea4c89;background-color:transparent}.btn.btn-github,.btn.btn-github:active,.btn.btn-github:focus,.btn.btn-github:hover,.navbar .navbar-nav>li>a.btn.btn-github,.navbar .navbar-nav>li>a.btn.btn-github:active,.navbar .navbar-nav>li>a.btn.btn-github:focus,.navbar .navbar-nav>li>a.btn.btn-github:hover{color:#fff;background-color:#000}.btn.btn-github,.navbar .navbar-nav>li>a.btn.btn-github{-webkit-box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);-moz-box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12)}.btn.btn-github:active,.btn.btn-github:focus,.btn.btn-github:hover,.navbar .navbar-nav>li>a.btn.btn-github:active,.navbar .navbar-nav>li>a.btn.btn-github:focus,.navbar .navbar-nav>li>a.btn.btn-github:hover{-webkit-box-shadow:0 14px 26px -12px rgba(0,0,0,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2);-moz-box-shadow:0 14px 26px -12px rgba(0,0,0,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2);box-shadow:0 14px 26px -12px rgba(0,0,0,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2)}.btn.btn-github.btn-simple,.navbar .navbar-nav>li>a.btn.btn-github.btn-simple{color:#000;background-color:transparent}.btn.btn-youtube,.btn.btn-youtube:active,.btn.btn-youtube:focus,.btn.btn-youtube:hover,.navbar .navbar-nav>li>a.btn.btn-youtube,.navbar .navbar-nav>li>a.btn.btn-youtube:active,.navbar .navbar-nav>li>a.btn.btn-youtube:focus,.navbar .navbar-nav>li>a.btn.btn-youtube:hover{color:#fff;background-color:#e52d27}.btn.btn-youtube,.navbar .navbar-nav>li>a.btn.btn-youtube{-webkit-box-shadow:0 2px 2px 0 rgba(229,45,39,.14),0 3px 1px -2px rgba(229,45,39,.2),0 1px 5px 0 rgba(229,45,39,.12);-moz-box-shadow:0 2px 2px 0 rgba(229,45,39,.14),0 3px 1px -2px rgba(229,45,39,.2),0 1px 5px 0 rgba(229,45,39,.12);box-shadow:0 2px 2px 0 rgba(229,45,39,.14),0 3px 1px -2px rgba(229,45,39,.2),0 1px 5px 0 rgba(229,45,39,.12)}.btn.btn-youtube:active,.btn.btn-youtube:focus,.btn.btn-youtube:hover,.navbar .navbar-nav>li>a.btn.btn-youtube:active,.navbar .navbar-nav>li>a.btn.btn-youtube:focus,.navbar .navbar-nav>li>a.btn.btn-youtube:hover{-webkit-box-shadow:0 14px 26px -12px rgba(229,45,39,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(229,45,39,.2);-moz-box-shadow:0 14px 26px -12px rgba(229,45,39,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(229,45,39,.2);box-shadow:0 14px 26px -12px rgba(229,45,39,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(229,45,39,.2)}.btn.btn-youtube.btn-simple,.navbar .navbar-nav>li>a.btn.btn-youtube.btn-simple{color:#e52d27;background-color:transparent}.btn.btn-instagram,.btn.btn-instagram:active,.btn.btn-instagram:focus,.btn.btn-instagram:hover,.navbar .navbar-nav>li>a.btn.btn-instagram,.navbar .navbar-nav>li>a.btn.btn-instagram:active,.navbar .navbar-nav>li>a.btn.btn-instagram:focus,.navbar .navbar-nav>li>a.btn.btn-instagram:hover{color:#fff;background-color:#125688}.btn.btn-instagram,.navbar .navbar-nav>li>a.btn.btn-instagram{-webkit-box-shadow:0 2px 2px 0 rgba(18,86,136,.14),0 3px 1px -2px rgba(18,86,136,.2),0 1px 5px 0 rgba(18,86,136,.12);-moz-box-shadow:0 2px 2px 0 rgba(18,86,136,.14),0 3px 1px -2px rgba(18,86,136,.2),0 1px 5px 0 rgba(18,86,136,.12);box-shadow:0 2px 2px 0 rgba(18,86,136,.14),0 3px 1px -2px rgba(18,86,136,.2),0 1px 5px 0 rgba(18,86,136,.12)}.btn.btn-instagram:active,.btn.btn-instagram:focus,.btn.btn-instagram:hover,.navbar .navbar-nav>li>a.btn.btn-instagram:active,.navbar .navbar-nav>li>a.btn.btn-instagram:focus,.navbar .navbar-nav>li>a.btn.btn-instagram:hover{-webkit-box-shadow:0 14px 26px -12px rgba(18,86,136,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(18,86,136,.2);-moz-box-shadow:0 14px 26px -12px rgba(18,86,136,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(18,86,136,.2);box-shadow:0 14px 26px -12px rgba(18,86,136,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(18,86,136,.2)}.btn.btn-instagram.btn-simple,.navbar .navbar-nav>li>a.btn.btn-instagram.btn-simple{color:#125688;background-color:transparent}.btn.btn-reddit,.btn.btn-reddit:active,.btn.btn-reddit:focus,.btn.btn-reddit:hover,.navbar .navbar-nav>li>a.btn.btn-reddit,.navbar .navbar-nav>li>a.btn.btn-reddit:active,.navbar .navbar-nav>li>a.btn.btn-reddit:focus,.navbar .navbar-nav>li>a.btn.btn-reddit:hover{color:#fff;background-color:#ff4500}.btn.btn-reddit,.navbar .navbar-nav>li>a.btn.btn-reddit{-webkit-box-shadow:0 2px 2px 0 rgba(255,69,0,.14),0 3px 1px -2px rgba(255,69,0,.2),0 1px 5px 0 rgba(255,69,0,.12);-moz-box-shadow:0 2px 2px 0 rgba(255,69,0,.14),0 3px 1px -2px rgba(255,69,0,.2),0 1px 5px 0 rgba(255,69,0,.12);box-shadow:0 2px 2px 0 rgba(255,69,0,.14),0 3px 1px -2px rgba(255,69,0,.2),0 1px 5px 0 rgba(255,69,0,.12)}.btn.btn-reddit:active,.btn.btn-reddit:focus,.btn.btn-reddit:hover,.navbar .navbar-nav>li>a.btn.btn-reddit:active,.navbar .navbar-nav>li>a.btn.btn-reddit:focus,.navbar .navbar-nav>li>a.btn.btn-reddit:hover{-webkit-box-shadow:0 14px 26px -12px rgba(255,69,0,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(255,69,0,.2);-moz-box-shadow:0 14px 26px -12px rgba(255,69,0,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(255,69,0,.2);box-shadow:0 14px 26px -12px rgba(255,69,0,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(255,69,0,.2)}.btn.btn-reddit.btn-simple,.navbar .navbar-nav>li>a.btn.btn-reddit.btn-simple{color:#ff4500;background-color:transparent}.btn.btn-tumblr,.btn.btn-tumblr:active,.btn.btn-tumblr:focus,.btn.btn-tumblr:hover,.navbar .navbar-nav>li>a.btn.btn-tumblr,.navbar .navbar-nav>li>a.btn.btn-tumblr:active,.navbar .navbar-nav>li>a.btn.btn-tumblr:focus,.navbar .navbar-nav>li>a.btn.btn-tumblr:hover{color:#fff;background-color:#35465c}.btn.btn-tumblr,.navbar .navbar-nav>li>a.btn.btn-tumblr{-webkit-box-shadow:0 2px 2px 0 rgba(53,70,92,.14),0 3px 1px -2px rgba(53,70,92,.2),0 1px 5px 0 rgba(53,70,92,.12);-moz-box-shadow:0 2px 2px 0 rgba(53,70,92,.14),0 3px 1px -2px rgba(53,70,92,.2),0 1px 5px 0 rgba(53,70,92,.12);box-shadow:0 2px 2px 0 rgba(53,70,92,.14),0 3px 1px -2px rgba(53,70,92,.2),0 1px 5px 0 rgba(53,70,92,.12)}.btn.btn-tumblr:active,.btn.btn-tumblr:focus,.btn.btn-tumblr:hover,.navbar .navbar-nav>li>a.btn.btn-tumblr:active,.navbar .navbar-nav>li>a.btn.btn-tumblr:focus,.navbar .navbar-nav>li>a.btn.btn-tumblr:hover{-webkit-box-shadow:0 14px 26px -12px rgba(53,70,92,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(53,70,92,.2);-moz-box-shadow:0 14px 26px -12px rgba(53,70,92,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(53,70,92,.2);box-shadow:0 14px 26px -12px rgba(53,70,92,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(53,70,92,.2)}.btn.btn-tumblr.btn-simple,.navbar .navbar-nav>li>a.btn.btn-tumblr.btn-simple{color:#35465c;background-color:transparent}.btn.btn-behance,.btn.btn-behance:active,.btn.btn-behance:focus,.btn.btn-behance:hover,.navbar .navbar-nav>li>a.btn.btn-behance,.navbar .navbar-nav>li>a.btn.btn-behance:active,.navbar .navbar-nav>li>a.btn.btn-behance:focus,.navbar .navbar-nav>li>a.btn.btn-behance:hover{color:#fff;background-color:#1769ff}.btn.btn-behance,.navbar .navbar-nav>li>a.btn.btn-behance{-webkit-box-shadow:0 2px 2px 0 rgba(23,105,255,.14),0 3px 1px -2px rgba(23,105,255,.2),0 1px 5px 0 rgba(23,105,255,.12);-moz-box-shadow:0 2px 2px 0 rgba(23,105,255,.14),0 3px 1px -2px rgba(23,105,255,.2),0 1px 5px 0 rgba(23,105,255,.12);box-shadow:0 2px 2px 0 rgba(23,105,255,.14),0 3px 1px -2px rgba(23,105,255,.2),0 1px 5px 0 rgba(23,105,255,.12)}.btn.btn-behance:active,.btn.btn-behance:focus,.btn.btn-behance:hover,.navbar .navbar-nav>li>a.btn.btn-behance:active,.navbar .navbar-nav>li>a.btn.btn-behance:focus,.navbar .navbar-nav>li>a.btn.btn-behance:hover{-webkit-box-shadow:0 14px 26px -12px rgba(23,105,255,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(23,105,255,.2);-moz-box-shadow:0 14px 26px -12px rgba(23,105,255,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(23,105,255,.2);box-shadow:0 14px 26px -12px rgba(23,105,255,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(23,105,255,.2)}.btn.btn-behance.btn-simple,.navbar .navbar-nav>li>a.btn.btn-behance.btn-simple{color:#1769ff;background-color:transparent}.btn.btn-snapchat,.btn.btn-snapchat:active,.btn.btn-snapchat:focus,.btn.btn-snapchat:hover,.navbar .navbar-nav>li>a.btn.btn-snapchat,.navbar .navbar-nav>li>a.btn.btn-snapchat:active,.navbar .navbar-nav>li>a.btn.btn-snapchat:focus,.navbar .navbar-nav>li>a.btn.btn-snapchat:hover{color:#fff;background-color:#fffc00}.btn.btn-snapchat,.navbar .navbar-nav>li>a.btn.btn-snapchat{-webkit-box-shadow:0 2px 2px 0 rgba(255,252,0,.14),0 3px 1px -2px rgba(255,252,0,.2),0 1px 5px 0 rgba(255,252,0,.12);-moz-box-shadow:0 2px 2px 0 rgba(255,252,0,.14),0 3px 1px -2px rgba(255,252,0,.2),0 1px 5px 0 rgba(255,252,0,.12);box-shadow:0 2px 2px 0 rgba(255,252,0,.14),0 3px 1px -2px rgba(255,252,0,.2),0 1px 5px 0 rgba(255,252,0,.12)}.btn.btn-snapchat:active,.btn.btn-snapchat:focus,.btn.btn-snapchat:hover,.navbar .navbar-nav>li>a.btn.btn-snapchat:active,.navbar .navbar-nav>li>a.btn.btn-snapchat:focus,.navbar .navbar-nav>li>a.btn.btn-snapchat:hover{-webkit-box-shadow:0 14px 26px -12px rgba(255,252,0,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(255,252,0,.2);-moz-box-shadow:0 14px 26px -12px rgba(255,252,0,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(255,252,0,.2);box-shadow:0 14px 26px -12px rgba(255,252,0,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(255,252,0,.2)}.btn.btn-snapchat.btn-simple,.navbar .navbar-nav>li>a.btn.btn-snapchat.btn-simple{color:#fffc00;background-color:transparent}.btn.btn-deviantart,.btn.btn-deviantart:active,.btn.btn-deviantart:focus,.btn.btn-deviantart:hover,.navbar .navbar-nav>li>a.btn.btn-deviantart,.navbar .navbar-nav>li>a.btn.btn-deviantart:active,.navbar .navbar-nav>li>a.btn.btn-deviantart:focus,.navbar .navbar-nav>li>a.btn.btn-deviantart:hover{color:#fff;background-color:#05cc47}.btn.btn-deviantart,.navbar .navbar-nav>li>a.btn.btn-deviantart{-webkit-box-shadow:0 2px 2px 0 rgba(5,204,71,.14),0 3px 1px -2px rgba(5,204,71,.2),0 1px 5px 0 rgba(5,204,71,.12);-moz-box-shadow:0 2px 2px 0 rgba(5,204,71,.14),0 3px 1px -2px rgba(5,204,71,.2),0 1px 5px 0 rgba(5,204,71,.12);box-shadow:0 2px 2px 0 rgba(5,204,71,.14),0 3px 1px -2px rgba(5,204,71,.2),0 1px 5px 0 rgba(5,204,71,.12)}.btn.btn-deviantart:active,.btn.btn-deviantart:focus,.btn.btn-deviantart:hover,.navbar .navbar-nav>li>a.btn.btn-deviantart:active,.navbar .navbar-nav>li>a.btn.btn-deviantart:focus,.navbar .navbar-nav>li>a.btn.btn-deviantart:hover{-webkit-box-shadow:0 14px 26px -12px rgba(5,204,71,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(5,204,71,.2);-moz-box-shadow:0 14px 26px -12px rgba(5,204,71,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(5,204,71,.2);box-shadow:0 14px 26px -12px rgba(5,204,71,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(5,204,71,.2)}.btn.btn-deviantart.btn-simple,.navbar .navbar-nav>li>a.btn.btn-deviantart.btn-simple{color:#05cc47;background-color:transparent}.btn.btn-vimeo,.btn.btn-vimeo:active,.btn.btn-vimeo:focus,.btn.btn-vimeo:hover,.navbar .navbar-nav>li>a.btn.btn-vimeo,.navbar .navbar-nav>li>a.btn.btn-vimeo:active,.navbar .navbar-nav>li>a.btn.btn-vimeo:focus,.navbar .navbar-nav>li>a.btn.btn-vimeo:hover{color:#fff;background-color:#1ab7ea}.btn.btn-vimeo,.navbar .navbar-nav>li>a.btn.btn-vimeo{-webkit-box-shadow:0 2px 2px 0 rgba(26,183,234,.14),0 3px 1px -2px rgba(26,183,234,.2),0 1px 5px 0 rgba(26,183,234,.12);-moz-box-shadow:0 2px 2px 0 rgba(26,183,234,.14),0 3px 1px -2px rgba(26,183,234,.2),0 1px 5px 0 rgba(26,183,234,.12);box-shadow:0 2px 2px 0 rgba(26,183,234,.14),0 3px 1px -2px rgba(26,183,234,.2),0 1px 5px 0 rgba(26,183,234,.12)}.btn.btn-vimeo:active,.btn.btn-vimeo:focus,.btn.btn-vimeo:hover,.navbar .navbar-nav>li>a.btn.btn-vimeo:active,.navbar .navbar-nav>li>a.btn.btn-vimeo:focus,.navbar .navbar-nav>li>a.btn.btn-vimeo:hover{-webkit-box-shadow:0 14px 26px -12px rgba(26,183,234,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(26,183,234,.2);-moz-box-shadow:0 14px 26px -12px rgba(26,183,234,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(26,183,234,.2);box-shadow:0 14px 26px -12px rgba(26,183,234,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(26,183,234,.2)}.btn.btn-vimeo.btn-simple,.navbar .navbar-nav>li>a.btn.btn-vimeo.btn-simple{color:#1ab7ea;background-color:transparent}body [class*=fl-builder] button,body [class*=fl-builder] button:hover,button.customize-partial-edit-shortcut-button,button.customize-partial-edit-shortcut-button:hover{box-shadow:none!important}legend{margin-bottom:20px}output{padding-top:8px}.checkbox label,.radio label{min-height:20px}select{-webkit-appearance:none;-moz-appearance:none;appearance:none}.label{background-color:#fff;border-radius:2px}.label.label-default{background-color:#fff}.label.label-primary{background-color:#9c27b0}.label.label-success{background-color:#4caf50}.label.label-danger{background-color:#f44336}.label.label-rose{background-color:#e91e63}.form-control{height:36px;padding:7px 0;vertical-align:middle}.form-control-static{min-height:34px;padding-top:8px;padding-bottom:8px}.form-control:-ms-input-placeholder,.form-control::-moz-placeholder,.form-control::-webkit-input-placeholder,.form-group .form-control:-ms-input-placeholder,.form-group .form-control::-moz-placeholder,.form-group .form-control::-webkit-input-placeholder{color:#aaa}.form-control[disabled],.form-control[readonly],.form-group .form-control[disabled],.form-group .form-control[readonly],fieldset[disabled] .form-control,fieldset[disabled] .form-group .form-control{background-color:transparent}.form-control[disabled],.form-group .form-control[disabled],fieldset[disabled] .form-control,fieldset[disabled] .form-group .form-control{border-bottom:1px dotted #d2d2d2;background-image:none}.form-control{margin-bottom:7px}.checkbox label,.form-control:-ms-input-placeholder,.form-control::-moz-placeholder,.form-control::-webkit-input-placeholder,.form-group .checkbox label,.form-group .form-control:-ms-input-placeholder,.form-group .form-control::-moz-placeholder,.form-group .form-control::-webkit-input-placeholder,.form-group .radio label,.form-group label,.radio label,label{color:#aaa}label.control-label{margin:16px 0 0;color:#aaa}.help-block{margin-top:0}.form-group{padding-bottom:7px;position:relative}.form-group .form-control{margin-bottom:7px}.form-group label.control-label{margin:16px 0 0;color:#aaa}.form-group input[type=file]{position:relative;z-index:100;top:0;right:0;bottom:0;left:0;width:100%;height:100%;opacity:1}.form-group textarea{resize:none}.form-group textarea~.form-control-highlight{margin-top:-11px}.form-group .help-block{margin-top:0;display:none;position:absolute}.form-group.label-floating label.control-label,.form-group.label-placeholder label.control-label,.form-group.label-static label.control-label{position:absolute;pointer-events:none}.form-group.label-floating label.control-label{will-change:left,top,contents}.form-group.label-placeholder:not(.is-empty) label.control-label{display:none}.form-group.label-floating label.control-label,.form-group.label-placeholder label.control-label{top:-7px;left:0}.form-group.label-floating.is-focused label.control-label,.form-group.label-floating:not(.is-empty) label.control-label,.form-group.label-static label.control-label{top:-28px;left:0}.form-group.is-focused .form-control .material-input:after{background-color:#9c27b0}.form-group.is-focused.label-placeholder label,.form-group.is-focused.label-placeholder label.control-label{color:#aaa}.form-group.is-focused select.form-control{border-color:#d2d2d2}.form-group.has-warning.is-focused .form-control{background-image:-webkit-gradient(linear,left top,left bottom,from(#ff9800),to(#ff9800)),-webkit-gradient(linear,left top,left bottom,from(#d2d2d2),to(#d2d2d2));background-image:-webkit-linear-gradient(#ff9800,#ff9800),-webkit-linear-gradient(#d2d2d2,#d2d2d2);background-image:linear-gradient(#ff9800,#ff9800),linear-gradient(#d2d2d2,#d2d2d2)}.form-group.has-warning label.control-label{color:#ff9800}.form-group.has-error.is-focused .form-control{background-image:-webkit-gradient(linear,left top,left bottom,from(#f44336),to(#f44336)),-webkit-gradient(linear,left top,left bottom,from(#d2d2d2),to(#d2d2d2));background-image:-webkit-linear-gradient(#f44336,#f44336),-webkit-linear-gradient(#d2d2d2,#d2d2d2);background-image:linear-gradient(#f44336,#f44336),linear-gradient(#d2d2d2,#d2d2d2)}.form-group.has-error label.control-label{color:#f44336}.form-group.has-success.is-focused .form-control{background-image:-webkit-gradient(linear,left top,left bottom,from(#4caf50),to(#4caf50)),-webkit-gradient(linear,left top,left bottom,from(#d2d2d2),to(#d2d2d2));background-image:-webkit-linear-gradient(#4caf50,#4caf50),-webkit-linear-gradient(#d2d2d2,#d2d2d2);background-image:linear-gradient(#4caf50,#4caf50),linear-gradient(#d2d2d2,#d2d2d2)}.form-group.has-success label.control-label{color:#4caf50}.form-group.has-info.is-focused .form-control{background-image:-webkit-gradient(linear,left top,left bottom,from(#00bcd4),to(#00bcd4)),-webkit-gradient(linear,left top,left bottom,from(#d2d2d2),to(#d2d2d2));background-image:-webkit-linear-gradient(#00bcd4,#00bcd4),-webkit-linear-gradient(#d2d2d2,#d2d2d2);background-image:linear-gradient(#00bcd4,#00bcd4),linear-gradient(#d2d2d2,#d2d2d2)}.form-group.has-info .help-block,.form-group.has-info label.control-label{color:#00bcd4}select.form-control{border:0;border-radius:0}select .form-group.is-focused select.form-control[multiple],select.form-control[multiple]{height:85px}.input-group-btn .btn{margin:0 0 7px}.input-group .input-group-btn{padding:0 12px}.input-group .input-group-addon{padding:6px 15px 0;border:0;background:0 0}.form-control-feedback{opacity:0}.has-success .form-control-feedback{opacity:1;color:#4caf50}.has-error .form-control-feedback{opacity:1;color:#f44336}.search-form label,.searchform label{display:table-cell;vertical-align:top;padding-right:25px;width:100%}.search-form:not(.media-toolbar-primary),.searchform:not(.media-toolbar-primary),.woocommerce-product-search{display:table;position:relative}.search-form:not(.media-toolbar-primary) button,.search-form:not(.media-toolbar-primary) input[type=submit],.searchform:not(.media-toolbar-primary) button,.searchform:not(.media-toolbar-primary) input[type=submit],.woocommerce-product-search button,.woocommerce-product-search input[type=submit]{display:table-cell;vertical-align:top;padding-left:0;padding-right:0;text-align:center;text-indent:-9999px;top:-19px;width:45px;background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMTY2NCIgaGVpZ2h0PSIxNjY0IiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJ4TWlkWU1pZCBtZWV0IiB2aWV3Qm94PSIwIDAgMTY2NCAxNjY0IiBzdHlsZT0iLW1zLXRyYW5zZm9ybTogcm90YXRlKDM2MGRlZyk7IC13ZWJraXQtdHJhbnNmb3JtOiByb3RhdGUoMzYwZGVnKTsgdHJhbnNmb3JtOiByb3RhdGUoMzYwZGVnKTsiPjxwYXRoIGQ9Ik0xMTUyIDcwNHEwLTE4NS0xMzEuNS0zMTYuNVQ3MDQgMjU2VDM4Ny41IDM4Ny41VDI1NiA3MDR0MTMxLjUgMzE2LjVUNzA0IDExNTJ0MzE2LjUtMTMxLjVUMTE1MiA3MDR6bTUxMiA4MzJxMCA1Mi0zOCA5MHQtOTAgMzhxLTU0IDAtOTAtMzhsLTM0My0zNDJxLTE3OSAxMjQtMzk5IDEyNHEtMTQzIDAtMjczLjUtNTUuNXQtMjI1LTE1MHQtMTUwLTIyNVQwIDcwNHQ1NS41LTI3My41dDE1MC0yMjV0MjI1LTE1MFQ3MDQgMHQyNzMuNSA1NS41dDIyNSAxNTB0MTUwIDIyNVQxNDA4IDcwNHEwIDIyMC0xMjQgMzk5bDM0MyAzNDNxMzcgMzcgMzcgOTB6IiBmaWxsPSJ3aGl0ZSIvPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxNjY0IiBoZWlnaHQ9IjE2NjQiIGZpbGw9InJnYmEoMCwgMCwgMCwgMCkiIC8+PC9zdmc+);background-repeat:no-repeat;background-position:center;background-size:18px 29px}.search-form:not(.media-toolbar-primary) input[type=search],.searchform:not(.media-toolbar-primary) input[type=search],.woocommerce-product-search input[type=search]{height:36px}.blog-sidebar-wrapper .widget:nth-of-type(1).widget_product_search,.blog-sidebar-wrapper .widget:nth-of-type(1).widget_search{padding-top:11px}.comment-form-cookies-consent #wp-comment-cookies-consent{margin:0 10px 0 0}.comment-form-cookies-consent label{display:inline}body:not(.home) .navbar-default .navbar-nav>.active>a,body:not(.home) .navbar-default .navbar-nav>.active>a:focus,body:not(.home) .navbar-default .navbar-nav>.active>a:hover{background:0 0}body.admin-bar .navbar{margin-top:32px}.navbar-color-on-scroll .dashicons{transition:initial}.navbar.navbar-transparent{color:#fff;background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.navbar.navbar-transparent>.container{padding-top:25px}.navbar.navbar-transparent .hestia-hide-if-transparent{display:none}.navbar.navbar-not-transparent .hestia-transparent-logo{display:none}.navbar{background-color:#fff;color:#555;border-radius:0;position:fixed;border:none;padding:0;transition:none;-webkit-box-shadow:0 1px 10px -6px rgba(0,0,0,.42),0 1px 10px 0 rgba(0,0,0,.12),0 4px 5px -2px rgba(0,0,0,.1);box-shadow:0 1px 10px -6px rgba(0,0,0,.42),0 1px 10px 0 rgba(0,0,0,.12),0 4px 5px -2px rgba(0,0,0,.1)}.navbar .navbar-collapse{border:none}.navbar .title-logo-wrapper{max-width:250px;display:flex;align-items:center}.navbar>.container{display:flex;transition:padding .1s ease;padding:10px 15px;vertical-align:middle;align-items:center}.navbar.hestia_left .navbar-collapse{margin-left:auto}.navbar.hestia_left>.container{flex-direction:row}.navbar.hestia_left .navbar-nav{display:flex;flex-wrap:wrap;justify-content:flex-end}.navbar.hestia_center>.container{flex-direction:column}.navbar.hestia_center .navbar-nav{display:flex;flex-wrap:wrap;justify-content:center}.navbar.hestia_right>.container{flex-wrap:wrap;flex-direction:row-reverse}.navbar.hestia_right .navbar-header{max-width:250px}.navbar.hestia_right .header-sidebar-wrapper,.navbar.hestia_right .navbar-header{flex:1}.navbar.hestia_right .navbar-nav{display:flex;flex-wrap:wrap;width:100%}.navbar .navbar-header .navbar-brand{padding:0 15px;position:relative;color:inherit;height:auto}.navbar .navbar-header .navbar-brand img{width:auto;max-height:50px}.navbar .navbar-header .navbar-brand p{margin-bottom:0;padding:10px 0}.navbar-toggle-wrapper{margin-left:auto;display:flex;align-items:center;flex-direction:row}.navbar .navbar-toggle{float:none;border:0;margin-right:0}.navbar .navbar-toggle:focus,.navbar .navbar-toggle:hover{background:0 0}.navbar .navbar-toggle .icon-bar{border:1px solid;transition:.3s ease;position:relative}.navbar .navbar-toggle[aria-expanded=true] .icon-bar:nth-child(1){-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg);top:6px}.navbar .navbar-toggle[aria-expanded=true] .icon-bar:nth-child(2){width:0;opacity:0}.navbar .navbar-toggle[aria-expanded=true] .icon-bar:nth-child(3){-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-o-transform:rotate(-45deg);transform:rotate(-45deg);top:-6px}.navbar .navbar-toggle[aria-expanded=false] .icon-bar:nth-child(1){top:0;-webkit-transform-origin:left center;-moz-transform-origin:left center;-o-transform-origin:left center;transform-origin:left center}.navbar .navbar-toggle[aria-expanded=false] .icon-bar:nth-child(2){top:0;-webkit-transform-origin:left center;-moz-transform-origin:left center;-o-transform-origin:left center;transform-origin:left center}.navbar .navbar-toggle[aria-expanded=false] .icon-bar:nth-child(3){top:0;-webkit-transform-origin:left center;-moz-transform-origin:left center;-o-transform-origin:left center;transform-origin:left center}.navbar .navbar-nav>li{margin:0}.navbar .navbar-nav>li>a{text-transform:uppercase}.navbar .navbar-nav>li a{padding-top:15px;padding-bottom:15px;border-radius:3px;color:inherit}.navbar .navbar-nav>li a:focus,.navbar .navbar-nav>li a:hover{color:inherit;opacity:1}.navbar .navbar-nav>li a i{min-width:20px;text-align:center;position:relative;top:2px;margin-top:-4px;margin-right:4px}.navbar .navbar-nav>li.btn{padding:0 10px}.navbar .navbar-nav>li.btn>a{color:#fff}.navbar .navbar-nav>li.btn li a{text-transform:none}.navbar .navbar-nav>li .dropdown-menu{margin-top:-5px;border:none}.navbar .navbar-nav>li .dropdown-menu>.active>a{background-color:transparent}.navbar .navbar-nav>li .dropdown-menu li{color:#333;position:relative}.navbar .navbar-nav>li .dropdown-menu li.active>a{color:#333}.navbar .navbar-nav>li .dropdown-menu li:hover>a{color:#e91e63}.navbar .navbar-nav>li .dropdown-menu li:hover>a>i{opacity:.7}.navbar .navbar-nav>li .dropdown-menu li>a{background-color:transparent;margin:0 5px;padding:10px;border-radius:2px;-webkit-transition:all 150ms linear;transition:all 150ms linear}.navbar .navbar-nav>li .dropdown-menu li>a>i{position:relative;top:1px;margin-right:12px;opacity:.5;text-align:center}.navbar .navbar-nav>li .dropdown-menu li>a i{position:relative;top:1px;margin-top:-4px;margin-right:12px;vertical-align:middle}.navbar .navbar-nav>li:hover .dropdown-menu{margin-top:0;z-index:10}.navbar .navbar-nav>li:not(.btn) .hestia-toggle-search:before,.navbar .navbar-nav>li:not(.btn)>a:before{position:absolute;z-index:-1;top:0;right:0;bottom:0;left:0;border-radius:3px;background-color:rgba(255,255,255,.1);content:"";transition:all .3s cubic-bezier(.34,.9,.7,1);-webkit-transform:scaleX(0);-ms-transform:scaleX(0);transform:scaleX(0);-webkit-transform-origin:50%;-ms-transform-origin:50%;transform-origin:50%}.navbar .navbar-nav>li:not(.btn):hover .hestia-toggle-search:before,.navbar .navbar-nav>li:not(.btn):hover a:before{color:inherit;-webkit-transform:scaleX(1);-ms-transform:scaleX(1);transform:scaleX(1)}.dropdown-submenu{position:relative}.dropdown-submenu .dropdown-menu{display:none;top:0;left:100%;margin-top:-6px;margin-left:-1px}.dropdown-submenu.open>.dropdown-menu{display:table;visibility:visible;opacity:1}.dropdown-submenu.open>.dropdown-toggle .caret,.dropdown-submenu:hover>.dropdown-toggle .caret{border-left:4px dashed;border-top:4px solid transparent;border-bottom:4px solid transparent}.dropdown-submenu.open .dropdown-menu,.dropdown-submenu:hover .dropdown-menu{display:table}.navbar.header-with-topbar{position:absolute;top:40px}.navbar.navbar-scroll-point{position:fixed;top:0}.navbar.full-screen-menu.navbar-scroll-point .header-sidebar-wrapper{display:none}.dropdown-helper-overlay{position:fixed;top:0;left:0;right:0;height:100vh;z-index:-1}#main-navigation ul.nav>li{opacity:1;transition:opacity .25s ease-in-out;-moz-transition:opacity .25s ease-in-out;-webkit-transition:opacity .25s ease-in-out;visibility:visible}.hestia-mm-description{display:none;opacity:.75}@media (max-width:768px){.hestia-nav-search{margin-top:25px}.hestia-nav-search .search-submit{display:block;pointer-events:all}.hestia-nav-search form{width:100%;margin-bottom:0}.hestia-nav-search form:after{font-size:16px;display:block}.hestia-nav-search label{padding-right:25px}.navbar .navbar-nav>li.hestia-search-in-menu a.hestia-toggle-search{display:none}}.hestia-toggle-search svg{fill:#555;vertical-align:middle}.navbar.navbar-transparent .hestia-toggle-search svg{fill:#fff}.full-screen-menu .hestia-toggle-search{display:none}.full-screen-menu .hestia-nav-search{margin-top:25px;text-align:left}@media (min-width:769px){.navbar:not(.full-screen-menu) .hestia-toggle-search{display:block;width:55px}.navbar:not(.full-screen-menu) .hestia-toggle-search i{font-size:16px}.navbar:not(.full-screen-menu) .hestia-search-in-menu{cursor:pointer;position:relative;vertical-align:middle;display:inline-block}.navbar:not(.full-screen-menu).nav-searching .hestia-nav-search form{max-width:200px;opacity:1;pointer-events:all}.navbar:not(.full-screen-menu).nav-searching #main-navigation ul.nav li:not(.hestia-search-in-menu){opacity:0;visibility:hidden}.navbar:not(.full-screen-menu) .hestia-nav-search{padding:0 15px;text-align:left}.navbar:not(.full-screen-menu) .hestia-nav-search .search-submit{display:none;pointer-events:none}.navbar:not(.full-screen-menu) .hestia-nav-search form{width:200px;max-width:0;padding:5px;transition:all .5s ease;position:absolute;right:40px;box-sizing:border-box;opacity:0;pointer-events:none}.navbar:not(.full-screen-menu) .hestia-nav-search form:after{display:none}.navbar:not(.full-screen-menu) .hestia-nav-search label{padding:0}.navbar:not(.full-screen-menu).navbar-transparent .hestia-nav-search form .search-field{color:#fff}.navbar:not(.full-screen-menu).navbar-transparent .hestia-nav-search form .search-field::-webkit-input-placeholder{color:#fff}.navbar:not(.full-screen-menu).navbar-transparent .hestia-nav-search form .search-field::-moz-placeholder{color:#fff}.navbar:not(.full-screen-menu).navbar-transparent .hestia-nav-search form .search-field:-ms-input-placeholder{color:#fff}.navbar:not(.full-screen-menu).navbar-transparent .hestia-nav-search form .search-field:-moz-placeholder{color:#fff}.navbar:not(.full-screen-menu).navbar-transparent .hestia-nav-search form .control-label{color:#fff}}.navbar.navbar-default .navbar-nav>.btn.active>a,.navbar.navbar-default .navbar-nav>.btn.open>a,.navbar.navbar-default .navbar-nav>.btn>a{color:#fff;background:0 0}.navbar.navbar-not-transparent .navbar-nav>.active:not(.btn)>a,.navbar.navbar-not-transparent .navbar-nav>.active:not(.btn)>a:focus,.navbar.navbar-not-transparent .navbar-nav>.active:not(.btn)>a:hover{background:0 0}.hestia_right .blog-sidebar-wrapper,.hestia_right .header-sidebar-wrapper{float:none;display:table-cell;width:100%;vertical-align:middle}.hestia_right .blog-sidebar-wrapper .header-widgets-wrapper,.hestia_right .header-sidebar-wrapper .header-widgets-wrapper{align-items:center;display:flex;flex-direction:row;justify-content:flex-end}.hestia_right .blog-sidebar-wrapper .header-widgets-wrapper .search-form label,.hestia_right .blog-sidebar-wrapper .header-widgets-wrapper .searchform label,.hestia_right .header-sidebar-wrapper .header-widgets-wrapper .search-form label,.hestia_right .header-sidebar-wrapper .header-widgets-wrapper .searchform label{width:inherit}.header-widgets-wrapper .widget{margin:0 10px 0 0}.header-widgets-wrapper .widget:last-of-type{margin-right:0}.header-widgets-wrapper .widget,.header-widgets-wrapper .widget .textwidget,.header-widgets-wrapper .widget h5{display:inline-block}.header-widgets-wrapper .widget h5{margin:0 5px 0 0}.header-widgets-wrapper .widget .btn{padding:3px 10px}.header-widgets-wrapper .widget .btn a{color:#fff}.header-widgets-wrapper .widget.widget_categories h5,.header-widgets-wrapper .widget.widget_meta h5,.header-widgets-wrapper .widget.widget_nav_menu h5,.header-widgets-wrapper .widget.widget_product_categories h5,.header-widgets-wrapper .widget.widget_product_search h5,.header-widgets-wrapper .widget.widget_search h5{display:none}.header-widgets-wrapper .widget.widget_categories [type=submit],.header-widgets-wrapper .widget.widget_meta [type=submit],.header-widgets-wrapper .widget.widget_nav_menu [type=submit],.header-widgets-wrapper .widget.widget_product_categories [type=submit],.header-widgets-wrapper .widget.widget_product_search [type=submit],.header-widgets-wrapper .widget.widget_search [type=submit]{opacity:0;left:-15px}.header-widgets-wrapper .widget .search-form:after,.header-widgets-wrapper .widget .searchform:after,.header-widgets-wrapper .widget .woocommerce-product-search:after{right:30px}.header-widgets-wrapper .widget.widget_product_search form,.header-widgets-wrapper .widget.widget_search form{top:15px}.header-widgets-wrapper .widget.widget_product_search form:after,.header-widgets-wrapper .widget.widget_search form:after{color:#333}.header-widgets-wrapper .widget.widget_product_search form .control-label,.header-widgets-wrapper .widget.widget_search form .control-label{color:#333}.header-widgets-wrapper ul li{cursor:auto;display:inline-block;margin:0 5px}.header-widgets-wrapper ul li.menu-item{padding-top:0}.header-widgets-wrapper ul li:first-child{margin-left:0}.header-widgets-wrapper ul li:last-child{margin-right:0}.header-widgets-wrapper ul li a{padding:0;text-transform:inherit}.header-widgets-wrapper ul li a:focus,.header-widgets-wrapper ul li a:hover{background-color:transparent;outline:0}.header-widgets-wrapper ul li a[href*="mailto:"]:before,.header-widgets-wrapper ul li a[href*="tel:"]:before{margin-right:7px;display:inline-block;width:16px;height:16px;background-repeat:no-repeat;content:'';background-color:#333;vertical-align:text-bottom}.header-widgets-wrapper ul li a[href*="tel:"]:before{mask-image:url('data:image/svg+xml;utf8,');-webkit-mask-image:url('data:image/svg+xml;utf8,')}.header-widgets-wrapper ul li a[href*="mailto:"]:before{mask-image:url('data:image/svg+xml;utf8,');-webkit-mask-image:url('data:image/svg+xml;utf8,')}.header-widgets-wrapper ul li.dropdown .caret{display:none}.navbar-transparent .widget .btn:hover a{color:#fff}.navbar-transparent .widget.widget_product_search form .control-label,.navbar-transparent .widget.widget_product_search form.form-group:before,.navbar-transparent .widget.widget_product_search form:after,.navbar-transparent .widget.widget_search form .control-label,.navbar-transparent .widget.widget_search form.form-group:before,.navbar-transparent .widget.widget_search form:after{color:#fff}.pagination{width:100%;text-align:center}.pagination>li>a{border:0}.pagination a,.pagination span{min-width:30px;height:30px;margin:0 3px;padding:0 11px;border-radius:30px!important;color:#999;background:0 0;text-transform:uppercase;display:inline-block}.pagination a:focus,.pagination a:hover{color:#999;background-color:#eee}.pagination span:not(.dots):focus,.pagination span:not(.dots):hover{color:#999;background-color:#eee}.pagination span.current,.pagination span.current:focus,.pagination span.current:hover{border-color:#9c27b0;color:#fff;background-color:#9c27b0;-webkit-box-shadow:0 4px 5px 0 rgba(156,39,176,.14),0 1px 10px 0 rgba(156,39,176,.12),0 2px 4px -1px rgba(156,39,176,.2);box-shadow:0 4px 5px 0 rgba(156,39,176,.14),0 1px 10px 0 rgba(156,39,176,.12),0 2px 4px -1px rgba(156,39,176,.2)}.pagination .next.page-numbers:after{content:" \00bb"}.pagination .prev.page-numbers:before{content:"\00ab "}.label{padding:5px 12px;border-radius:12px;text-transform:uppercase}.label.label-default{background-color:#999}.card,.card-no-width{display:inline-block;position:relative;margin-bottom:30px;border-radius:6px;color:rgba(0,0,0,.87);background:#fff;max-width:100%;-webkit-box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);-moz-box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12)}.card .card-image,.card-no-width .card-image{overflow:hidden;position:relative;height:60%;margin-top:-30px;margin-right:15px;margin-left:15px;border-radius:6px;-webkit-transition:all .3s cubic-bezier(.34,1.61,.7,1);-moz-transition:all .3s cubic-bezier(.34,1.61,.7,1);-o-transition:all .3s cubic-bezier(.34,1.61,.7,1);-ms-transition:all .3s cubic-bezier(.34,1.61,.7,1);transition:all .3s cubic-bezier(.34,1.61,.7,1);-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0)}.card .card-image img,.card-no-width .card-image img{width:100%;height:100%;margin:0!important;border-radius:6px}.card .category:not([class*=text-]),.card-no-width .category:not([class*=text-]){color:#999}.card .content,.card-no-width .content{padding:15px 30px}.card .header,.card-no-width .header{margin:15px;padding:15px 0;border-radius:3px;background-color:#fff}.card .content-primary,.card .header-primary,.card-no-width .content-primary,.card-no-width .header-primary{background:-webkit-linear-gradient(30deg,#ab47bc,#7b1fa2);background:linear-gradient(60deg,#ab47bc,#7b1fa2)}.card [class*=content-],.card [class*=content-] .author a:active,.card [class*=content-] .author a:focus,.card [class*=content-] .author a:hover,.card [class*=content-] .card-title,.card [class*=content-] .card-title a,.card [class*=content-] .icon i,.card [class*=header-],.card [class*=header-] .author a:active,.card [class*=header-] .author a:focus,.card [class*=header-] .author a:hover,.card [class*=header-] .card-title,.card [class*=header-] .card-title a,.card [class*=header-] .icon i,.card-no-width [class*=content-],.card-no-width [class*=content-] .author a:active,.card-no-width [class*=content-] .author a:focus,.card-no-width [class*=content-] .author a:hover,.card-no-width [class*=content-] .card-title,.card-no-width [class*=content-] .card-title a,.card-no-width [class*=content-] .icon i,.card-no-width [class*=header-],.card-no-width [class*=header-] .author a:active,.card-no-width [class*=header-] .author a:focus,.card-no-width [class*=header-] .author a:hover,.card-no-width [class*=header-] .card-title,.card-no-width [class*=header-] .card-title a,.card-no-width [class*=header-] .icon i{color:#fff}.card [class*=content-] .icon i,.card [class*=header-] .icon i,.card-no-width [class*=content-] .icon i,.card-no-width [class*=header-] .icon i{border-color:rgba(255,255,255,.25)}.card [class*=content-] .author a,.card [class*=content-] .card-description,.card [class*=content-] .category,.card [class*=content-] .footer .stats,.card [class*=content-] h1 small,.card [class*=content-] h2 small,.card [class*=content-] h3 small,.card [class*=header-] .author a,.card [class*=header-] .card-description,.card [class*=header-] .category,.card [class*=header-] .footer .stats,.card-no-width [class*=content-] .author a,.card-no-width [class*=content-] .card-description,.card-no-width [class*=content-] .category,.card-no-width [class*=content-] .footer .stats,.card-no-width [class*=content-] h1 small,.card-no-width [class*=content-] h2 small,.card-no-width [class*=content-] h3 small,.card-no-width [class*=header-] .author a,.card-no-width [class*=header-] .card-description,.card-no-width [class*=header-] .category,.card-no-width [class*=header-] .footer .stats{color:rgba(255,255,255,.8)}.card [class*=content-],.card-no-width [class*=content-]{border-radius:6px}.card img,.card-no-width img{width:100%;height:auto}.card .category i,.card-no-width .category i{position:relative;top:6px}.card .author .avatar,.card-no-width .author .avatar{overflow:hidden;width:30px;height:30px;margin-right:5px;border-radius:50%}.card .author a,.card-no-width .author a{color:#3c4858;text-decoration:none}.card .author .date,.card-no-width .author .date{display:none}.card .footer,.card-no-width .footer{margin-top:15px}.card .footer div,.card-no-width .footer div{display:inline-block!important}.card .footer .author,.card .footer .stats,.card-no-width .footer .author,.card-no-width .footer .stats{color:#999}.card .footer .stats,.card-no-width .footer .stats{float:right}.card .footer .stats i,.card-no-width .footer .stats i{position:relative;top:4px}.card .checkbox,.card-no-width .checkbox{margin-top:16px}.card{width:100%}@media (max-width:768px){.card-no-width{width:100%}}.card-contact .header{margin-top:-20px;padding:17px 10px}.card-plain{background:0 0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.card-plain .content{padding-right:5px;padding-left:5px}.card-plain .card-image{margin:0;border-radius:3px}.card-plain .card-image a{display:block}.card-plain .card-image img{border-radius:3px}.card-form-horizontal .content{padding-right:15px;padding-left:15px}.card-form-horizontal .form-group{margin:3px 0 0;padding-bottom:0}.card-form-horizontal .form-group .form-control{margin-bottom:0}.card-form-horizontal .btn{margin:0}.card-form-horizontal .input-group .input-group-addon{padding-left:0}.card-profile{margin-top:30px;text-align:center}.card-profile .card-avatar{overflow:hidden;max-width:130px;max-height:130px;margin:-50px auto 0;border-radius:50%}.card-profile.card-plain .card-avatar{margin-top:0}.card-testimonial{margin-top:30px;text-align:center}.card-testimonial .card-avatar{max-width:100px;max-height:100px;margin:30px auto 0}.card-testimonial .card-avatar img{overflow:hidden;max-width:130px;max-height:130px;margin:-50px auto 0;border-radius:50%}.card-testimonial .card-avatar+.content{margin-top:15px}.card-blog{margin-top:30px}.card-blog.sticky{padding:20px}.card-blog.sticky.layout-alternative2{padding:0 20px;margin-top:50px}.card-blog.sticky.layout-alternative2 .card-header-image{margin-top:-20px}.card-blog.sticky .card-image{margin-left:0;margin-right:0}.card-blog.sticky .featured-alt-2{padding-bottom:15px}.card-blog .row .category{margin-bottom:0}.card-blog .row .category a{color:#00bcd4}.card-blog .card-title{margin-top:5px}.card-blog a.more-link,.card-blog a.moretag{display:inline-block;margin-left:5px;color:#23527c}.card-blog a.more-link:hover,.card-blog a.moretag:hover{color:#89229b}.card-background{background-position:center center;background-size:cover;text-align:center}.card-background .content{position:relative;z-index:2;max-width:440px;min-height:280px;margin:0 auto;padding-top:40px;padding-bottom:40px}.card-background .card-title{margin-top:10px;color:#fff}.card-background:after{display:block;position:absolute;z-index:1;top:0;left:0;width:100%;height:100%;border-radius:6px;opacity:0;background-color:rgba(0,0,0,.56);content:""}.card-background:hover:after{opacity:1}.img-thumbnail{border-radius:16px}.iframe-container iframe{width:100%}.card .card-image,.card .header,.card-no-width .card-image,.card-no-width .header,.card-profile .card-avatar,.card-raised,.card-testimonial .card-avatar img,.iframe-container iframe,.img-raised{-webkit-box-shadow:0 16px 38px -12px rgba(0,0,0,.56),0 4px 25px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2);-moz-box-shadow:0 16px 38px -12px rgba(0,0,0,.56),0 4px 25px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2);box-shadow:0 16px 38px -12px rgba(0,0,0,.56),0 4px 25px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2)}.table,table{width:100%}.table>thead>tr>th,table>thead>tr>th{border-bottom-width:1px;padding:12px 8px;vertical-align:middle}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,table>tbody>tr>td,table>tbody>tr>th,table>tfoot>tr>td,table>tfoot>tr>th,table>thead>tr>td{padding:12px 8px;vertical-align:middle}.table>tbody>tr,table>tbody>tr{border-bottom:1px solid #eee}.table>tbody>tr:last-child,table>tbody>tr:last-child{border-bottom:0}.header-layout-classic-blog.page:not(.home):not(.archive) .main-raised{border-radius:0}.header-layout-classic-blog:not(.page-template-default):not(.home):not(.archive) .main-raised,.header-layout-classic-blog:not(.page-template-default):not(.home):not(.archive).single .main-raised,.header-layout-classic-blog:not(.page-template-default):not(.home):not(.archive).woocommerce.archive .main-raised{margin-top:0}.carousel #parallax_move{width:100%;height:100%;position:absolute}.carousel #parallax_move .layer{background-size:cover;width:100%;height:100%;background-position:top center}.carousel #parallax_move .layer2{position:absolute;top:0}.carousel .btn{margin:0}.carousel .page-header{display:flex;z-index:-2}.carousel .page-header .row{display:flex;align-items:center;padding:0 15px;margin:0;flex:1;max-width:100%}.carousel .carousel-control.left,.carousel .carousel-control.right{z-index:0;background-image:none}.carousel .item{text-align:center}.carousel .item .container{display:flex;position:relative;padding:100px 0}.carousel .carousel-control{text-shadow:none;display:flex;align-items:center;justify-content:center}.carousel .carousel-control.left{right:auto;left:0}.carousel .carousel-control.right{right:0}.carousel .carousel-control i{display:inline-block;position:absolute;z-index:5}.carousel .buttons .btn-left+.btn-right{margin-left:30px}.wp-custom-header iframe,.wp-custom-header img,.wp-custom-header video{width:100%;position:absolute;left:50%;top:50%;max-width:100%;-ms-transform:translateX(-50%) translateY(-50%);-moz-transform:translateX(-50%) translateY(-50%);-webkit-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%);z-index:-1}.wp-custom-header img{-o-object-fit:cover;object-fit:cover;height:100%}.wp-custom-header .wp-custom-header-video-button{display:none}#carousel-hestia-generic .carousel{overflow:hidden}.big-title-sidebar-wrapper .widget{padding:30px 0}.big-title-sidebar-wrapper .pirate-forms-contact-widget{background:#fff;color:#3c4858;padding:10px;border-radius:6px;-webkit-box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);-moz-box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12)}.hestia-slider-alignment-left .pirate-forms-contact-widget{margin-left:auto}.hestia-slider-alignment-left .widget_media_image img{display:block;margin-left:auto}.hestia-slider-alignment-right .pirate-forms-contact-widget{margin-right:auto}.hestia-slider-alignment-right .widget_media_image img{display:block;margin-right:auto}@media (max-width:1600px){.carousel-control.left{width:50px}.carousel-control.left i{left:10px}.carousel-control.right{width:50px}.carousel-control.right i{right:10px}}@media all and (-ms-high-contrast:none),(-ms-high-contrast:active){.carousel .page-header .container{display:table;min-height:inherit}.carousel .page-header .container .row{display:table-row}.carousel .page-header .container .row .big-title-slider-content{display:table-cell;vertical-align:middle;float:none;margin:auto}.carousel .page-header .container .row .big-title-slider-content.col-md-7{display:table-cell;vertical-align:middle;float:none;margin:auto}.carousel .page-header .container .row .big-title-sidebar-wrapper.col-md-5{display:table-cell;vertical-align:middle;float:none;margin:auto}.carousel .carousel-control i{left:50%}}.section-gray{background:#f0f0f0}.section{padding:70px 0}.section-dark,.section-image{background:#232323;background:-webkit-gradient(radial,center center,0,center center,100%,color-stop(0,#585858),color-stop(100%,#232323));background:-webkit-radial-gradient(center,ellipse cover,#585858 0,#232323 100%);background:-webkit-radial-gradient(center ellipse,#585858 0,#232323 100%);background:radial-gradient(ellipse at center,#585858 0,#232323 100%);background-color:#343434;background-size:200% 240%;background-size:550% 450%}.section-dark .card-plain .card-title,.section-dark .card-plain .icon i,.section-dark .card-plain [class*=text-],.section-dark .card-plain ul li b,.section-dark .hestia-title,.section-dark .title,.section-image .card-plain .card-title,.section-image .card-plain .icon i,.section-image .card-plain [class*=text-],.section-image .card-plain ul li b,.section-image .hestia-title,.section-image .title{color:#fff}.section-dark .card-plain .card-description,.section-dark .card-plain .icon,.section-dark .description,.section-image .card-plain .card-description,.section-image .card-plain .icon,.section-image .description{color:#eaeaea}.section-dark .card-plain .category,.section-image .card-plain .category{color:rgba(255,255,255,.5)}.section-image{position:relative;-webkit-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:unset}.section-image:after{display:block;position:absolute;z-index:1;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.7);content:""}.section-image .container{position:relative;z-index:2}.section,.section-image{background-position:center center;background-size:cover}.features,.hestia-blogs,.hestia-features,.hestia-testimonials,.hestia-work,.products,.subscribe-line{padding:65px 0 70px}.wrapper.classic-blog .title-in-content,.wrapper.no-content .title-in-content{margin-top:0;margin-bottom:15px}.wrapper.classic-blog .hestia-blogs,.wrapper.no-content .hestia-blogs{padding-top:40px}@media (max-width:768px){.wrapper.classic-blog .hestia-blogs,.wrapper.no-content .hestia-blogs{padding-top:30px}}.wrapper.classic-blog .section,.wrapper.no-content .section{padding-top:40px}@media (max-width:768px){.wrapper.classic-blog .section,.wrapper.no-content .section{padding-top:30px}}.image-in-page-wrapper{margin-bottom:20px}.image-in-page{margin-bottom:30px}.about,.hestia-about{padding:65px 0 30px}.hestia-team,.team{padding:65px 0 20px}.hestia-testimonials,.testimonials{padding:65px 0 40px}.contactus{padding:90px 0 70px}.pricing{padding:100px 0 70px}.hestia-clear-top-padding{margin-top:-65px}@media (min-width:992px){.home #blog.hestia-blogs .row,.home .hestia-clients-bar .row,.home .hestia-features .row,.home .hestia-team .row,.home .hestia-testimonials .row,.home .hestia-work .row{text-align:center}.home #blog.hestia-blogs .hestia-blog-item,.home .feature-box,.home .hestia-clients-bar .col-md-3,.home .hestia-team .col-sm-6,.home .hestia-testimonials .col-md-4,.home .hestia-work .col-md-4,.home .hestia-work .col-md-6{display:inline-block;float:none!important;margin-right:-4px;margin-left:-4px;vertical-align:top}.home .hestia-blog-item{text-align:left}}@media (min-width:480px){.home #blog.hestia-blogs .row,.home .hestia-clients-bar .row,.home .hestia-features .row,.home .hestia-team .row,.home .hestia-testimonials .row,.home .hestia-work .row{text-align:center}.home #blog.hestia-blogs .hestia-blog-item,.home .feature-box,.home .hestia-clients-bar .col-md-3,.home .hestia-team .col-sm-6,.home .hestia-testimonials .col-sm-6,.home .hestia-work .portfolio-item{display:inline-block;float:none!important;margin-right:-4px;margin-left:-4px;vertical-align:top}}.hestia-about{background-attachment:fixed;color:#999}.hestia-about h1,.hestia-about h2,.hestia-about h3,.hestia-about h4,.hestia-about h5{color:#3c4858;text-decoration:none;word-wrap:break-word;font-family:"Roboto Slab","Times New Roman",serif}.hestia-about.section-image{color:#fefefe}.hestia-about.section-image h1,.hestia-about.section-image h2,.hestia-about.section-image h3,.hestia-about.section-image h4,.hestia-about.section-image h5{color:#fff}.hestia-about.section-image h6{color:rgba(255,255,255,.76)}.hestia-about .customizer-hidden{display:none}.is-ios .hestia-about,.is-ios .hestia-ribbon{background-attachment:scroll}.hestia-work .portfolio-item{margin-top:30px;cursor:pointer}.hestia-work .card-background .content{padding-bottom:50px;opacity:0}.hestia-work .col-md-4 .card-background .content{padding-top:30%}.hestia-work .col-md-6 .card-background .content{padding-top:20%}.hestia-work .card-background:hover a:hover{opacity:1}.hestia-work .card-background:hover .content{opacity:1;-webkit-transition:all ease .5s;transition:all ease .5s}.hestia-work .portfolio-item:nth-child(6n) .label{background-color:#4caf50}.hestia-work .portfolio-item:nth-child(6n+1) .label{background-color:#89229b}.hestia-work .portfolio-item:nth-child(6n+2) .label{background-color:#00bcd4}.hestia-work .portfolio-item:nth-child(6n+3) .label{background-color:#f44336}.hestia-work .portfolio-item:nth-child(6n+4) .label{background-color:#ff9800}.hestia-work .portfolio-item:nth-child(6n+5) .label{background-color:#e91e63}.hestia-portfolio-modal .header-filter-gradient{border-radius:6px 6px 0 0;background-size:cover;background-repeat:no-repeat;background-position:center;z-index:1}.hestia-portfolio-modal{background:rgba(0,0,0,.7)}.hestia-portfolio-modal .modal-header{position:relative;border-radius:6px 6px 0 0}.hestia-portfolio-modal .modal-header h3{margin:0;padding:104px 0;color:#fff}.hestia-portfolio-modal .modal-header:before{border-radius:6px 6px 0 0}.hestia-portfolio-modal .modal-header a{color:#fff;z-index:2}.hestia-portfolio-modal .modal-header a:hover{color:#fff}.hestia-portfolio-modal .modal-header:after{background-color:rgba(0,0,0,.5);border-radius:6px 6px 0 0}.hestia-portfolio-modal .modal-header .close{z-index:3;font-size:30px;background:0 0;float:right;box-shadow:none;line-height:16px;margin:0;padding:10px}.hestia-portfolio-modal .modal-header .portfolio-title-container{position:relative;z-index:2}.hestia-portfolio-modal .modal-content{border-radius:6px}.hestia-portfolio-modal .modal-content .modal-body{padding:40px}.hestia-portfolio-modal .modal-content .portfolio-loading{padding:20px 0}.contactus .content .row{padding:0}.contactus .col-md-offset-2{padding:0 20px}.contactus .form-group{margin:0;padding-bottom:24px}.contactus .pirate-forms-footer .form-group{padding-bottom:0}.contactus .card .content{padding:30px 30px 0}.contactus .pirate_forms_wrap{float:none}.contactus .pirate_forms_wrap #pirate-forms-contact-message{height:130px}.contactus .pirate_forms_wrap .form_field_wrap{margin-bottom:17px}.contactus .pirate_forms_wrap .btn{margin:0}.contactus .pirate_forms_wrap .pirateform_wrap_classes_spam_wrap{color:#aaa;font-weight:400}.contactus .contact_message_wrap{margin-bottom:0}.contactus .contact_submit_wrap{text-align:right;margin-bottom:0}.contactus .hestia-info,.contactus .info{margin:0;padding:0}.contactus .hestia-info,.contactus .hestia-info a:not(.btn),.contactus .hestia-info p,.contactus .info,.contactus .info a:not(.btn),.contactus .info p{color:#ccc}.contactus .hestia-info a:not(.btn):hover,.contactus .info a:not(.btn):hover{text-decoration:underline}.contactus .hestia-info:first-child,.contactus .info:first-child{margin-top:30px}.contactus .hestia-info .info-title,.contactus .info .info-title{margin-top:20px;color:#fff}.contactus .hestia-info .icon,.contactus .info .icon{margin-top:14px;color:#fff}.contactus h5.description{color:#ccc}.contactus .card-contact{margin-top:30px}.contactus .pirate_forms_wrap .pirate-forms-footer{display:block}.contactus .pirate_forms_wrap .pirate-forms-footer .form_captcha_wrap{display:block}.contactus .pirate_forms_wrap .pirate-forms-footer .form_captcha_wrap>div>div{margin:0 auto 20px}.contactus .pirate_forms_wrap .pirate-forms-footer .form_captcha_wrap+.contact_submit_wrap{text-align:center;display:block}.pirate_forms_wrap .pirate-forms-footer .form_field_wrap.contact_submit_wrap{width:100%;text-align:right}.pirate-forms-maps-custom span:after,.pirate-forms-maps-custom span:before{content:'';position:absolute;top:0;bottom:0;margin:auto}.pirate-forms-maps-custom span:before{background:0 0;border:1px solid #aaa;border-radius:3px;left:0;height:18px;width:18px}.pirate-forms-maps-custom span:after{content:'\f00c';font-family:"Font Awesome 5 Free";font-weight:900;left:2px;top:1px;color:transparent}.pirate-forms-maps-custom input[type=checkbox]{display:none}.pirate-forms-maps-custom label{color:#aaa;cursor:pointer;font-weight:100;margin:8px 0;padding-left:20px;position:relative}.pirate-forms-maps-custom input[type=checkbox]:checked+label span:after{color:#787878}.pirate-forms-file-upload-input,.pirate_forms_three_inputs_wrap .form_field_wrap input.pirate-forms-file-upload-input{height:50px;padding:0 15px;margin:10px 0 0}.features,.hestia-features{padding:75px 0 55px;text-align:center}.features .hestia-title,.features .title,.hestia-features .hestia-title,.hestia-features .title{margin-top:10px}.features .hestia-info,.features .info,.hestia-features .hestia-info,.hestia-features .info{padding:70px 0 30px;margin:0 auto}.features .feature-box .card,.hestia-features .feature-box .card{width:auto;overflow:hidden;margin-bottom:0}.features .feature-box img,.hestia-features .feature-box img{max-width:150px}.hestia-info,.info{max-width:360px}.hestia-info a:hover .icon,.hestia-info a:hover .info-title,.info a:hover .icon,.info a:hover .info-title{opacity:.75}.hestia-info a:hover .icon,.info a:hover .icon{transform:scale(1.05) translateY(-5px)}.hestia-info .icon,.info .icon{transition:.3s ease;color:#999}.hestia-info .info-title,.info .info-title{transition:.3s ease;margin:30px 0 15px;color:#3c4858}.hestia-info p,.info p{color:#999}.info-horizontal .icon{float:left;margin-top:24px;margin-right:10px}.info-horizontal .description{overflow:hidden}.icon.icon-primary{color:#9c27b0}.icon.icon-success{color:#4caf50}.icon.icon-danger{color:#f44336}.icon.icon-rose{color:#e91e63}.hestia-team .col-xs-6,.team .col-xs-6{padding-left:0;padding-right:0}.hestia-team .btn-just-icon,.team .btn-just-icon{transition:.3s ease}.hestia-team .btn-just-icon:hover,.team .btn-just-icon:hover{opacity:.75}.hestia-team .card,.team .card{text-align:left}.hestia-team .card .content,.team .card .content{padding-top:0}.hestia-team .card .content a:hover>.card-title,.team .card .content a:hover>.card-title{opacity:.75}.hestia-team .card .footer,.team .card .footer{margin-left:-12px;margin-top:0}.hestia-team h5.description,.team h5.description{margin-bottom:70px}.hestia-team img,.team img{transition:1s ease-in}.hestia-team .card-image a:hover,.team .card-image a:hover{opacity:1}.hestia-team .card-image a:hover img,.team .card-image a:hover img{-webkit-transform:scale3d(1.1,1.1,1);transform:scale3d(1.1,1.1,1)}.authors-on-blog{background:#121417;background:-moz-linear-gradient(top,#121417 0,#323437 100%);background:-webkit-gradient(left top,left bottom,color-stop(0,#121417),color-stop(100%,#323437));background:-webkit-linear-gradient(top,#121417 0,#323437 100%);background:-o-linear-gradient(top,#121417 0,#323437 100%);background:-ms-linear-gradient(top,#121417 0,#323437 100%);background:linear-gradient(to bottom,#121417 0,#323437 100%);background-position:center center;background-size:cover}.authors-on-blog .card-title{color:#fff}.authors-on-blog .footer a:hover{color:#fff}.footer-menu a[href*="facebook.com"],.hestia-team .footer a[href*="facebook.com"],.team .footer a[href*="facebook.com"]{color:#3b5998}.footer-menu a[href*="twitter.com"],.hestia-team .footer a[href*="twitter.com"],.team .footer a[href*="twitter.com"]{color:#55acee}.footer-menu a[href*="pinterest.com"],.hestia-team .footer a[href*="pinterest.com"],.team .footer a[href*="pinterest.com"]{color:#cc2127}.footer-menu a[href*="google.com"],.hestia-team .footer a[href*="google.com"],.team .footer a[href*="google.com"]{color:#dd4b39}.footer-menu a[href*="linkedin.com"],.hestia-team .footer a[href*="linkedin.com"],.team .footer a[href*="linkedin.com"]{color:#0976b4}.footer-menu a[href*="dribbble.com"],.hestia-team .footer a[href*="dribbble.com"],.team .footer a[href*="dribbble.com"]{color:#ea4c89}.footer-menu a[href*="github.com"],.hestia-team .footer a[href*="github.com"],.team .footer a[href*="github.com"]{color:#000}.footer-menu a[href*="youtube.com"],.hestia-team .footer a[href*="youtube.com"],.team .footer a[href*="youtube.com"]{color:#e52d27}.footer-menu a[href*="instagram.com"],.hestia-team .footer a[href*="instagram.com"],.team .footer a[href*="instagram.com"]{color:#125688}.footer-menu a[href*="reddit.com"],.hestia-team .footer a[href*="reddit.com"],.team .footer a[href*="reddit.com"]{color:#ff4500}.footer-menu a[href*="tumblr.com"],.hestia-team .footer a[href*="tumblr.com"],.team .footer a[href*="tumblr.com"]{color:#35465c}.footer-menu a[href*="behance.com"],.hestia-team .footer a[href*="behance.com"],.team .footer a[href*="behance.com"]{color:#1769ff}.footer-menu a[href*="snapchat.com"],.hestia-team .footer a[href*="snapchat.com"],.team .footer a[href*="snapchat.com"]{color:#fffc00}.footer-menu a[href*="deviantart.com"],.hestia-team .footer a[href*="deviantart.com"],.team .footer a[href*="deviantart.com"]{color:#05cc47}.footer-menu a[href*="vimeo.com"],.hestia-team .footer a[href*="vimeo.com"],.team .footer a[href*="vimeo.com"]{color:#1ab7ea}.card-pricing{text-align:center}.card-pricing .card-title{margin-top:30px}.card-pricing .content{padding:15px!important}.card-pricing small:first-child{position:relative;top:-17px}.card-pricing ul{max-width:240px;margin:10px auto;padding:0;list-style:none}.card-pricing ul li{padding:12px 0;border-bottom:1px solid rgba(153,153,153,.3);color:#999;text-align:center}.card-pricing ul li:last-child{border:0}.card-pricing ul li b{color:#3c4858}.card-pricing .hestia-pricing-icon-wrapper{border-radius:50%;border:1px solid #e5e5e5;width:80px;height:80px;margin:10px auto 0}.card-pricing .hestia-pricing-icon-wrapper i{color:inherit;font-size:30px;line-height:80px}.card-pricing .hestia-pricing-icon-wrapper.pricing-has-icon+.card-title{font-size:25px;margin-top:20px}.card-pricing .hestia-pricing-icon-wrapper.pricing-has-icon+.card-title small{color:inherit;top:0;font-size:inherit;font-weight:inherit;line-height:inherit}.card-pricing .card-pricing.card-plain .hestia-pricing-icon-wrapper{border-color:#d6d1d1}.hestia-ribbon{background-attachment:fixed;padding:100px 0}@media (max-width:991px){.hestia-subscribe-button{margin-top:40px}}.subscribe-line{padding:65px 0}.subscribe-line .card{margin-top:30px}.subscribe-line .card .content .row{margin:0}.subscribe-line .card .input-group{display:table}.subscribe-line .card .input-group .input-group-addon{display:table-cell;padding:0 15px 0 0;width:1%}.subscribe-line .card .input-group .form-group{display:table-cell;padding-bottom:0}.subscribe-line .card .btn,.subscribe-line .card input[type=button],.subscribe-line .card input[type=submit]{white-space:nowrap}.subscribe-line.subscribe-line-image{position:relative;background-position:top center;background-size:cover}.subscribe-line.subscribe-line-image .hestia-title,.subscribe-line.subscribe-line-image .title{color:#fff}.subscribe-line.subscribe-line-image:after{display:block;position:absolute;z-index:1;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.66);content:""}.subscribe-line.subscribe-line-image .container{position:relative;z-index:2}.subscribe-line .card h5,.subscribe-line .sib_loader{display:none!important}#sib_signup_form_1{text-align:center}#sib_signup_form_1 .input-group-addon{width:20px;display:inline-block;vertical-align:bottom;text-align:center;margin-right:10px;font-size:16px;margin-bottom:15px}#sib_signup_form_1 p.form-group{display:inline-block;width:calc(100% - 30px);margin-bottom:15px;text-align:left;position:relative;z-index:0}#sib_signup_form_1 p.form-group label{z-index:-1;top:10px;position:absolute;font-weight:400;color:#909090}#sib_signup_form_1 p.form-group:not(.is-empty) label{display:none}.hestia-blogs article .card-image img{transition:1s ease-out}.hestia-blogs article .card-image a:hover{opacity:1}.hestia-blogs article .card-image a:hover img{-webkit-transform:scale3d(1.1,1.1,1);transform:scale3d(1.1,1.1,1)}.hestia-blogs article .category a:not(:last-child):after{content:", "}.footer .widget h5{margin-bottom:20px}.footer a{color:#3c4858}.footer-big{color:#999;padding:30px 0 18px;text-align:center}.footer-big ul{margin-bottom:0;padding:0;list-style:none}.footer-big ul li a{display:inline-block;position:relative;padding:5px 0;border-radius:3px;text-decoration:none;text-transform:uppercase}.footer-big ul li a:hover{text-decoration:none}.footer-big ul li .btn{margin:0}.footer-big p{color:#999}.footer-big .footer-menu li{display:inline-block}.footer-big .footer-menu li a{padding:15px}.footer-big .copyright{padding:15px 0}.footer-big .content{text-align:left}.footer-big hr{margin-top:10px}footer.footer{background:#fff}footer.footer.footer-black{background:#323437}footer.footer.footer-black a{opacity:.86;color:#fff}footer.footer.footer-black a:focus,footer.footer.footer-black a:hover{opacity:1}footer.footer.footer-black .copyright,footer.footer.footer-black h4,footer.footer.footer-black h5,footer.footer.footer-black i{color:#fff}footer.footer.footer-black hr{border-color:rgba(255,255,255,.2)}.hestia-bottom-footer-content{position:relative}.hestia-center{width:100%;text-align:center}.footer-big .footer-menu li a[href*="mailto:"],.footer-big .footer-menu li a[href*="tel:"]{color:transparent;padding:10px}.footer-big .footer-menu li a[href*="mailto:"]:before,.footer-big .footer-menu li a[href*="tel:"]:before{color:#fff;font-family:"Font Awesome 5 Brands";font-weight:900}.footer-big .footer-menu li a[href*="mailto:"]:hover:before,.footer-big .footer-menu li a[href*="tel:"]:hover:before{color:#999}.footer-big .footer-menu li a[href*="mailto:"]:before,.footer-big .footer-menu li a[href*="tel:"]:before{display:inline-block;width:16px;height:16px;background-repeat:no-repeat;content:'';background-color:#fff}.footer-big .footer-menu li a[href*="mailto:"]:before{mask-image:url('data:image/svg+xml;utf8,');-webkit-mask-image:url('data:image/svg+xml;utf8,')}.footer-big .footer-menu li a[href*="tel:"]:before{mask-image:url('data:image/svg+xml;utf8,');-webkit-mask-image:url('data:image/svg+xml;utf8,')}.hestia-scroll-to-top{position:fixed;bottom:15px;right:15px;z-index:999;opacity:0;transition:opacity .25s ease-in-out;-moz-transition:opacity .25s ease-in-out;-webkit-transition:opacity .25s ease-in-out;padding:0;margin:0;border-radius:50%;width:50px;height:50px;text-align:center;line-height:50px;font-size:20px;background-color:#999;-webkit-box-shadow:none;box-shadow:none}.hestia-scroll-to-top:hover{background-color:#999;-webkit-box-shadow:0 14px 26px -12px rgba(49,49,49,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(49,49,49,.42);box-shadow:0 14px 26px -12px rgba(49,49,49,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(49,49,49,.2)}.hestia-scroll-to-top:focus{background-color:#999;-webkit-box-shadow:0 14px 26px -12px rgba(49,49,49,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(49,49,49,.42);box-shadow:0 14px 26px -12px rgba(49,49,49,.42),0 4px 23px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(49,49,49,.2)}.hestia-scroll-to-top svg{fill:#fff}.hestia-fade{opacity:1}.hestia-top-bar{height:40px;max-height:40px}.hestia-top-bar .col-md-12,.hestia-top-bar .col-md-6{max-height:40px}.hestia-top-bar .col-md-12.pull-right,.hestia-top-bar .col-md-6.pull-right{text-align:right}.hestia-top-bar .col-md-12.pull-right .widget.widget_shopping_cart .cart_list,.hestia-top-bar .col-md-6.pull-right .widget.widget_shopping_cart .cart_list{left:auto;right:0}.hestia-top-bar .col-md-12 li a:before,.hestia-top-bar .col-md-6 li a:before{font-family:"Font Awesome 5 Brands"}.hestia-top-bar .widget{margin:0 10px 0 0}.hestia-top-bar .widget:last-of-type{margin-right:0}.hestia-top-bar .widget,.hestia-top-bar .widget .textwidget,.hestia-top-bar .widget h5{display:inline-block}.hestia-top-bar .widget h5{margin:0 5px 0 0}.hestia-top-bar .widget .btn{padding:3px 10px}.hestia-top-bar .widget.widget_categories h5,.hestia-top-bar .widget.widget_nav_menu h5,.hestia-top-bar .widget.widget_product_categories h5{display:none}.hestia-top-bar .widget.widget_product_search button[type=submit],.hestia-top-bar .widget.widget_product_search h5,.hestia-top-bar .widget.widget_search button[type=submit],.hestia-top-bar .widget.widget_search h5{display:none}.hestia-top-bar .widget.widget_product_search .label-floating,.hestia-top-bar .widget.widget_search .label-floating{display:inline-block;margin:0;padding:0;width:auto}.hestia-top-bar .widget.widget_product_search .label-floating .control-label,.hestia-top-bar .widget.widget_search .label-floating .control-label{padding:0}.hestia-top-bar .widget.widget_product_search .label-floating.is-empty .control-label,.hestia-top-bar .widget.widget_search .label-floating.is-empty .control-label{position:absolute;left:25px;top:12px;right:-25px;margin-top:0;text-align:left;opacity:1}.hestia-top-bar .widget.widget_product_search .label-floating.is-focused .control-label,.hestia-top-bar .widget.widget_search .label-floating.is-focused .control-label{opacity:0}.hestia-top-bar .widget.widget_product_search .label-floating:not(.is-empty) .control-label,.hestia-top-bar .widget.widget_search .label-floating:not(.is-empty) .control-label{opacity:0;left:25px;top:12px}.hestia-top-bar .widget.widget_product_search form:not(.form-group),.hestia-top-bar .widget.widget_search form:not(.form-group){opacity:0}.hestia-top-bar .widget.widget_product_search form.form-group,.hestia-top-bar .widget.widget_search form.form-group{opacity:1}.hestia-top-bar .widget.widget_product_search form.form-group input[type=search],.hestia-top-bar .widget.widget_search form.form-group input[type=search]{background:0 0;border:none;float:none;margin:2px 25px 0 25px;width:auto}.hestia-top-bar .widget.widget_product_search form.form-group input[type=submit],.hestia-top-bar .widget.widget_search form.form-group input[type=submit]{display:none}.hestia-top-bar .widget.widget_product_search form.form-group:after,.hestia-top-bar .widget.widget_search form.form-group:after{display:none}.hestia-top-bar .widget.widget_product_search form.form-group:before,.hestia-top-bar .widget.widget_search form.form-group:before{content:"";position:absolute;left:0;top:50%;width:18px;height:18px;mask-image:url('data:image/svg+xml;utf8,');-webkit-mask-image:url('data:image/svg+xml;utf8,');background-color:#fff;transform:translateY(-50%)}.hestia-top-bar .widget.widget_search .search-form{display:inline-block}.hestia-top-bar ul li{cursor:auto;display:inline-block;margin:0 5px}.hestia-top-bar ul li:first-child{margin-left:0}.hestia-top-bar ul li:last-child{margin-right:0}.hestia-top-bar ul li a{padding:0;text-transform:inherit}.hestia-top-bar ul li a:focus,.hestia-top-bar ul li a:hover{background-color:transparent;outline:0}.hestia-top-bar ul li a[href*="mailto:"]:before,.hestia-top-bar ul li a[href*="tel:"]:before{margin-right:7px;display:inline-block;width:16px;height:16px;background-repeat:no-repeat;content:'';background-color:#fff;vertical-align:text-bottom}.hestia-top-bar ul li a[href*="tel:"]:before{mask-image:url('data:image/svg+xml;utf8,');-webkit-mask-image:url('data:image/svg+xml;utf8,')}.hestia-top-bar ul li a[href*="mailto:"]:before{mask-image:url('data:image/svg+xml;utf8,');-webkit-mask-image:url('data:image/svg+xml;utf8,')}.hestia-top-bar ul li.dropdown .caret{display:none}.hestia-top-bar.placeholder{box-sizing:content-box;border:2px dashed}.hestia-top-bar.placeholder .top-widgets-placeholder{display:inline-block;cursor:pointer;position:relative;vertical-align:top}.hestia-clients-bar{padding:70px 0}.hestia-clients-bar .clients-bar-wrapper{list-style-type:none;margin:0;padding:0}.hestia-clients-bar .clients-bar-wrapper li{display:inline-block;margin:25px;vertical-align:middle}.hestia-clients-bar .clients-bar-wrapper li a{display:block;padding:5px}.hestia-clients-bar .clients-bar-wrapper li img{max-width:100%;height:auto}.hestia-clients-bar .row>div{padding:30px}.error404 .search-form,.search-no-results .search-form{margin-top:40px}#authors-on-blog{padding:80px 0}#authors-on-blog .card-profile{text-align:left}#authors-on-blog .col-ms-6:nth-child(2n+1){clear:both}.blog-post{word-wrap:break-word}.blog-post .section-text{padding-bottom:0}.blog-post .section-text p{margin-bottom:30px}.blog-post .section-blog-info{padding-top:15px}.blog-post .section-blog-info .entry-categories span{font-size:10px}.blog-post .section-blog-info .entry-categories,.blog-post .section-blog-info .entry-tags{word-break:break-all}.blog-post .section-blog-info .entry-categories span,.blog-post .section-blog-info .entry-tags span{display:inline-block;margin:5px}.blog-post .section-blog-info .entry-categories a{display:inline-block;padding:2px 2px;color:#fff}.blog-post .section-blog-info .card-profile{margin-top:0;text-align:left}dl dd,pre{margin-bottom:30px}.alignleft .avatar{margin-right:24px}.alignright .avatar{margin-left:24px}.aligncenter,img.centered{display:block;margin:0 auto 24px}img.alignnone{margin-bottom:12px}.alignleft{float:left;text-align:left}.alignright{float:right;text-align:right}.wp-caption.alignleft,img.alignleft{margin:0 24px 24px 0;margin:0 2.4rem 2.4rem 0}.wp-caption.alignright,img.alignright{margin:0 0 24px 24px}.wp-caption-text{padding-top:10px;text-align:center}.gallery-caption{padding-top:10px}.gallery .gallery-item{padding:5px}.gallery img{border:none!important;border-radius:6px;-webkit-box-shadow:0 16px 38px -12px rgba(0,0,0,.56),0 4px 25px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2);box-shadow:0 16px 38px -12px rgba(0,0,0,.56),0 4px 25px 0 rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2)}.bypostauthor{display:block}.related-posts .hestia-title{margin-bottom:50px}.related-posts .category a:not(:last-child):after{content:", "}.single-post .blog-post .section-text .title-in-content{margin-bottom:0}.blog-post .section-text .author.meta-in-content{opacity:.9;margin-bottom:20px;font-size:15px}.flex-row{display:flex;flex-wrap:wrap;flex-direction:row}.layout-alternative2 .category{padding-top:10px}.alignfull,.alignwide{width:unset;max-width:unset}.hestia-hidden{display:none}.wp-block-embed.is-type-video>.wp-block-embed__wrapper{position:relative;width:100%;height:0;padding-top:56.25%}.wp-block-embed.is-type-video>.wp-block-embed__wrapper iframe,.wp-block-embed.is-type-video>.wp-block-embed__wrapper>object{position:absolute;width:100%;height:100%;top:0;left:0;bottom:0;right:0}.media .avatar,.media-area .avatar,.media-body .avatar{overflow:hidden;width:64px;height:64px;margin:0 auto;margin-right:15px;border-radius:50%;-webkit-box-shadow:0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12),0 3px 5px -1px rgba(0,0,0,.2);box-shadow:0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12),0 3px 5px -1px rgba(0,0,0,.2)}.comment-respond .hestia-title,.media-area .hestia-title{margin-bottom:30px}.single-post .blog-post .section-comments .hestia-title{margin-bottom:30px;margin-top:20px}.comment .pull-left{padding-right:10px}.media-body div.avatar{margin:0 10px}.media{overflow:visible}.media .avatar img{width:100%}.media .media-heading{margin-top:0;margin-bottom:10px}.media .media-heading small{font-family:Roboto,Helvetica,Arial,sans-serif}.media .media-body{padding-right:10px}.media .media-body .media .media-body{padding-right:0}.media .media-footer .btn{margin-bottom:20px}.media .media-footer:after{display:table;clear:both;content:" "}.media p{color:#999}#comments .comment-notes{display:none}.section-comments ul.children .avatar img,.section-comments ul.children .comment-author.avatar{width:40px;height:40px}.blog-post .media p{color:#555}.blog-post .section-comments .title{margin-bottom:30px}.blog-post .section-comments .comment-respond .author{margin:15px 20px 0 0}.blog-post .section-comments .comment-respond .author img{border-radius:100%}.blog-post .comment-reply-link{text-transform:uppercase;float:right}.media-body{width:10000px;display:table-cell;overflow:visible}.widget{margin-bottom:30px;word-break:break-word}.widget ul{padding:0 0 0 10px;margin:0;list-style:none}.widget ul li{line-height:2.4;padding-top:5px}.widget ul li:first-child{padding-top:0}aside .widget .btn a{color:#fff}aside .widget a{color:#23527c}.widget a:hover{color:#89229b}.widget #searchform{margin-bottom:0;padding-bottom:0}.widget h5{font-family:"Roboto Slab","Times New Roman",serif;margin-bottom:10px}.widget select{width:100%}.hestia-widget-placeholder{border:1px dashed #b4b9be;padding:25px;text-align:center}.hestia-widget-placeholder .widget{margin:0}.single .hestia_right aside.blog-sidebar{padding:0}.hestia_right .hestia-widget-placeholder{padding:5px}.widget_calendar td,.widget_calendar th,.widget_calendar tr{padding:7px 0;text-align:center}.hestia-sidebar-toggle-container{clear:both}.hestia-sidebar-close,.hestia-sidebar-open{display:none;padding:10px}body.off-canvas .hestia-sidebar-close,body.off-canvas .hestia-sidebar-open{display:inline-block}body.off-canvas .shop-sidebar-wrapper{position:fixed;top:0;z-index:1030;height:100%;background:#fff;border-right:1px solid #f0f0f0;left:-100%;transition:.5s ease;padding:60px 20px 20px;overflow-y:scroll}body.off-canvas .shop-sidebar-wrapper.sidebar-open{left:0}body.off-canvas .shop-sidebar-wrapper .card{box-shadow:none}.row-sidebar-toggle{text-align:right}.row-sidebar-toggle .hestia-sidebar-close{padding:10px 13px}.row-sidebar-toggle.desktop{clear:both;text-align:left}.attachment .main-raised .blog-post{padding-bottom:130px}.attachment .sizes{margin-top:20px}.hestia-blog-featured-posts{padding:0}.hestia-blog-featured-posts article:nth-of-type(1) .card{margin-top:0}.hestia-blog-featured-posts article:nth-child(6n) .btn{background-color:#4caf50}.hestia-blog-featured-posts article:nth-child(6n+1) .btn{background-color:#89229b}.hestia-blog-featured-posts article:nth-child(6n+2) .btn{background-color:#00bcd4}.hestia-blog-featured-posts article:nth-child(6n+3) .btn{background-color:#f44336}.hestia-blog-featured-posts article:nth-child(6n+4) .btn{background-color:#ff9800}.hestia-blog-featured-posts article:nth-child(6n+5) .btn{background-color:#e91e63}.hestia-blog-featured-card .card-background{text-align:center}.hestia-blog-featured-card .card-background:after{position:absolute;z-index:1;width:100%;height:100%;display:block;left:0;top:0;content:"";background-color:rgba(0,0,0,.56);border-radius:6px;opacity:1}.hestia-blog-featured-card .card-background .card-body{position:relative;z-index:2;min-height:280px;padding-top:40px;padding-bottom:40px;max-width:440px;margin:0 auto}.hestia-blog-featured-card .card-background .card-body .card-description{color:rgba(255,255,255,.7)}.hestia-blog-featured-card .card-background .card-body .category a{color:rgba(255,255,255,.7)}.hestia-blog-featured-card .card-body{padding:15px 30px}.hestia-blog-featured-card.col-md-12 .card-body{max-width:750px}figure.wp-block-pullquote{border-left:none;border-top:4px solid;border-bottom:4px solid;margin:20px 0;padding:3em 0}figure.wp-block-pullquote p{font-size:28px;font-style:normal;margin-bottom:20px}figure.wp-block-pullquote blockquote{margin:1em;border:none}figure.wp-block-pullquote cite{text-transform:uppercase;font-size:13px;font-weight:300}.page-content-wrap .has-small-font-size,.single-post-wrap .has-small-font-size{font-size:13px}.page-content-wrap .has-medium-font-size,.single-post-wrap .has-medium-font-size{font-size:20px}.page-content-wrap .has-large-font-size,.single-post-wrap .has-large-font-size{font-size:36px}.page-content-wrap .has-huge-font-size,.single-post-wrap .has-huge-font-size{font-size:48px}.wp-block-separator{color:#eee;background-color:#eee;border:none}.wp-block-separator:not(.is-style-wide):not(.is-style-dots){height:2px;max-width:150px}.wp-block-separator .is-style-default{height:1px}.wp-block-separator.is-style-wide{max-width:100%;height:1px}.page-header .author,.page-header .author a,.page-header .container,.page-header .description,.page-header .hestia-title,.page-header .title{color:#fff}.page-content-wrap:after,.single-post-wrap:after{content:"";display:table;clear:both}#parallax_move~.item .page-header,#wp-custom-header~.item .page-header{overflow:inherit}.page-header{will-change:transform;overflow:hidden;margin:0;padding:0;border:0;background-position:center center;background-size:cover}.page-header .container{padding-top:30vh;color:#fff}.page-header .container .hestia-title,.page-header .container .title{margin:0 0 20px}.page-header.header-small .container .hestia-title,.page-header.header-small .container .title{margin:20px 0 10px}.page-header.header-small{min-height:300px;position:relative;height:auto}.page-header.header-small .container{padding-top:180px;padding-bottom:110px}.page-header.header-small .hestia-title,.page-header.header-small .title{font-family:Roboto,Helvetica,Arial,sans-serif}.boxed-layout-header{padding-bottom:60px}.header-filter-gradient{background:linear-gradient(45deg,#a81d84 0,#ea396f 100%)}.header-filter.header-filter-gradient:before{background-color:transparent}.header-filter{position:absolute;top:0;bottom:0;left:0;right:0;z-index:-1;background-position:center center;background-size:cover}.header-filter:after,.header-filter:before{display:block;position:absolute;top:0;left:0;width:100%;height:100%;content:""}.header-filter::before{background-color:rgba(0,0,0,.5)}.header-filter .container{position:relative}.carousel .header-filter:after,.carousel .header-filter:before{z-index:-1}.clear-filter:before{display:none}.header .wrapper{background:#ccc}.header .btn{margin:0}.header h6{margin-bottom:0}.phone-container img{width:100%}.main{position:relative;background:#fff}.main-raised{margin:-60px 30px 0;border-radius:6px 6px 0 0;-webkit-box-shadow:0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2);box-shadow:0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12),0 8px 10px -5px rgba(0,0,0,.2)}.home .main-raised section:first-of-type{border-radius:6px 6px 0 0;overflow:hidden}.page-template-template-pagebuilder-blank .section{padding:0}.single .main-raised,.woocommerce.archive .main-raised{margin-top:-60px;margin-bottom:30px}.single .main-raised.classic-blog{margin-top:0}.content-sidebar-left{padding-left:30px;padding-right:0}.content-sidebar-right{padding-right:30px;padding-left:0}.shop-sidebar-wrapper{padding:0}.content-full.col-md-12{padding:0}.page:not(.home) .wrapper{display:flex;flex-direction:column;min-height:100vh}.page:not(.home) .wrapper .main{display:flex;flex-direction:column;flex:1 0 auto}.page:not(.home) .wrapper .main .blog-post{flex:1 0 auto}body:not(.home) .wrapper{display:flex;flex-direction:column;min-height:100vh}body:not(.home) .wrapper .main{display:flex;flex-direction:column;flex:1 0 auto}body:not(.home) .wrapper .main .hestia-blogs{flex:1 0 auto}body:not(.home) .wrapper .content-area{display:flex;flex-direction:column;flex:1 0 auto}@media (max-width:1199px){.contactus .row,.hestia-about .row,.hestia-features .row,.hestia-team .row,.hestia-testimonials .row,.hestia-work .row,.pricing .row,.products .row,section.hestia-blogs .row{padding:0 15px}.products .container{width:100%}.main-raised{margin:-60px 15px 0}}@media (max-width:991px){.navbar .navbar-nav>li{margin-right:10px;margin-left:10px}.page-header{height:auto;min-height:0}.card.card-raised .card-image{margin-top:-30px;display:block;margin-left:0;margin-right:0}.card.card-raised{padding:20px}.woocommerce-checkout .page-header{height:auto}.hestia-about .text-area{margin:0 0 10px}.blog .page-header.header-small h2{margin:0}.blog .page-header.header-small{height:auto;min-height:0}.page-header .iframe-container{padding:30px 0}.card-form-horizontal .form-group{padding-bottom:20px}.carousel .page-header{padding:0 30px}.btn.btn-simple{padding-right:0;padding-left:0;text-align:left}.hestia-work .col-md-4 .card-background .content,.hestia-work .col-md-6 .card-background .content{padding-top:15%}.about .row,.contactus .row,.features .row,.hestia-about .row,.hestia-features .row,.hestia-team .row,.hestia-testimonials .row,.hestia-work .row,.pricing .row,.products .row,.team .row,.testimonials .row,.work .row,section.hestia-blogs .row{padding:0 10px}.single aside.blog-sidebar{padding:40px 30px}.shop-sidebar.card{width:100%;text-align:initial}.shop-sidebar-wrapper{text-align:center}.products .shop-item:nth-of-type(2n+1){clear:both}.subscribe-line .card .content{padding:0}.subscribe-line .card .form-group{padding-bottom:0}.archive .hestia-blogs,.blog .hestia-blogs{padding-top:0}.archive .hestia-blogs .card-blog .card-image,.blog .hestia-blogs .card-blog .card-image{margin-bottom:30px}.archive #authors-on-blog,.blog #authors-on-blog{padding-bottom:40px}.home section.hestia-blogs{padding:30px 0 65px}.single.single-post .section-blog-info .card-profile .card-title,.single.single-post .section-blog-info .card-profile .description{text-align:center}.single.single-post .section-blog-info .card-profile .card-avatar{margin-bottom:20px}.hestia-sidebar-close,.hestia-sidebar-open{cursor:pointer;display:inline-block;margin:0;padding:12px 15px}.row-sidebar-toggle{margin:30px 15px 0;text-align:right}.row-sidebar-toggle.desktop{display:none}.page .row-sidebar-toggle{margin-top:0;margin-bottom:30px}.shop-sidebar-wrapper{position:fixed;top:0;z-index:1030;height:100%;background:#fff;border-right:1px solid #f0f0f0;left:-100%;transition:.5s ease;padding:60px 20px 20px;overflow-y:scroll}.shop-sidebar-wrapper.sidebar-open{left:0}.shop-sidebar-wrapper .card{box-shadow:none}.archive.woocommerce .hestia-sidebar-open{margin-top:15px}.archive.woocommerce .shop-sidebar-active{margin-top:10px}.archive.woocommerce .row-sidebar-toggle.col-sm-3{margin:0;text-align:left}.archive.woocommerce .row-sidebar-toggle.col-sm-3 .hestia-sidebar-open{margin:15px 0 0}.shop-sidebar.card.card-raised{box-shadow:none;margin:0;padding:0 15px}.hestia-top-bar .container{width:100%}.hestia-top-bar .col-md-6{width:50%}.hestia-team .card .content,.team .card .content{padding-top:15px}.hestia-team .card .content .footer .btn.btn-just-icon,.team .card .content .footer .btn.btn-just-icon{padding:12px;text-align:center}.pricing p.text-gray{margin-bottom:40px}.related-posts .hestia-title{margin-bottom:60px}.hestia-blog-featured-posts{padding-top:30px}.hestia-blog-featured-posts .card-raised{margin:30px 0}.hestia-blog-featured-posts .card-background .card-body{padding-top:20px;padding-bottom:20px;max-width:100%}.hestia-blog-featured-posts .card-body{padding:20px 15px}}@media (min-width:992px){.navbar .navbar-collapse{text-align:center}.card.card-raised .card-image{margin-left:0;margin-right:0}.navbar .navbar-center{display:inline-block;float:none}.navbar .navbar-nav>li{margin:0}.navbar .navbar-nav>li.btn{margin:0 10px}.navbar .navbar-nav>li.btn:last-child{margin-right:0}.entry-social{text-align:right}.footer .content{margin-left:-15px;margin-right:-15px}.footer .row{margin-left:-15px;margin-right:-15px}.footer .col-md-4{padding:0 30px}.blog-sidebar-wrapper,.shop-sidebar-wrapper{float:left;position:static;background:0 0}.big-title-sidebar-wrapper .pirate-forms-contact-widget{max-width:370px}.row-sidebar-toggle.desktop{display:block}.row-sidebar-toggle.mobile{display:none}}@media (min-width:783px) and (min-width:601px){body.admin-bar .navbar-default:not(.navbar-transparent){margin-top:32px}}@media (min-width:769px){.form-horizontal .control-label{padding-top:8px}.nav-cart.responsive-nav-cart{display:none}.navbar.hestia_left .title-logo-wrapper{min-width:250px}.navbar.hestia_right.navbar-scroll-point .header-sidebar-wrapper,.navbar.hestia_right.navbar-scroll-point .title-logo-wrapper{display:none}.navbar.hestia_right .title-logo-wrapper{min-width:250px}.navbar.hestia_right .navbar-collapse{min-width:100%}.navbar.hestia_center .navbar-brand{margin:0 auto}.navbar.hestia_center.navbar-scroll-point .title-logo-wrapper{display:none}.navbar.full-screen-menu .navbar-brand{float:none;margin:0;padding:0}.navbar.full-screen-menu .navbar-header{width:100%;display:flex}.navbar.full-screen-menu .navbar-toggle{z-index:999999}.navbar.full-screen-menu.navbar-scroll-point .title-logo-wrapper{display:block}.navbar.full-screen-menu .nav-cart:not(.responsive-nav-cart),.navbar.full-screen-menu .navbar-toggle{display:inline-block}.navbar.full-screen-menu .nav-cart .nav-cart-icon span{top:10px;left:15px}.navbar.full-screen-menu .navbar-nav{background-color:rgba(255,255,255,.9)}.navbar.full-screen-menu.hestia_center .navbar-header .title-logo-wrapper{left:50%;transform:translateX(-50%);position:relative}.navbar.full-screen-menu.hestia_right .navbar-header{max-width:100%}.navbar.full-screen-menu .navbar-nav.nav{opacity:0;display:flex;flex-direction:column;flex-wrap:inherit;justify-content:flex-start;transition:all .3s ease;visibility:hidden;pointer-events:none;z-index:9999;overflow-x:scroll;position:fixed;width:100%;background-color:rgba(255,255,255,.9);left:0;top:0;bottom:0;padding-top:100px}.navbar.full-screen-menu .navbar-nav.nav>li,.navbar.full-screen-menu .navbar-nav.nav>li.btn:last-child{display:table;margin:20px auto}.navbar.full-screen-menu .in .navbar-nav.nav{opacity:1;visibility:visible;pointer-events:inherit}.dropdown .dropdown-menu{display:block;visibility:hidden;margin-top:-20px;opacity:0;-webkit-transition:all 150ms linear;transition:all 150ms linear}.dropdown.open,.dropdown:hover{z-index:1}.dropdown.open>.dropdown-menu,.dropdown:hover>.dropdown-menu{visibility:visible;margin-top:1px;opacity:1;z-index:100}}@media (max-width:768px){li.nav-cart{display:none}li.nav-cart.responsive-nav-cart{display:block;margin-left:5px}.container .navbar-header{width:100%;display:flex;margin:0 auto}.navbar>.container{transition:padding .1s ease;padding:10px 15px;align-items:center;display:block}.navbar.navbar-transparent{background:#fff;color:#555}.navbar.navbar-transparent>.container{padding-top:10px}.navbar .nav.navbar-nav{display:block}.hestia-sidebar-header{display:none}.navbar.hestia_right .navbar-header{max-width:inherit}.navbar.navbar-default .dropdown.btn a .caret{border-color:#fff!important;color:#fff!important}.navbar.navbar-default .navbar-nav .menu-item.btn.active a,.navbar.navbar-default .navbar-nav .menu-item.btn.active a i,.navbar.navbar-default li.btn a,.navbar.navbar-default li.btn a i{color:#fff}.navbar.navbar-default li.btn:hover a,.navbar.navbar-default li.btn:hover i{color:#fff}.navbar.navbar-default li.btn:hover ul li i{color:#fff}.navbar.navbar-default li.btn ul li a,.navbar.navbar-default li.btn ul li i{opacity:1;color:#fff!important}.navbar.navbar-default li.btn ul li i,.navbar.navbar-default li.btn ul li:hover a{color:#fff!important}.navbar.navbar-fixed-top .navbar-collapse{max-height:calc(100% - 70px);margin-top:70px;overflow-y:auto;position:fixed;z-index:9999;background:#fff;width:100%;left:0;top:0;margin-left:0;margin-right:0;-webkit-overflow-scrolling:auto}.navbar.navbar-fixed-top.header-with-topbar:not(.navbar-scroll-point) .navbar-collapse{margin-top:110px}.navbar .navbar-nav{margin:7.5px 0}.navbar .navbar-nav li{box-sizing:border-box;float:left;margin:0;padding:0;width:100%;text-align:left}.navbar .navbar-nav li.btn{margin-top:10px}.navbar .navbar-nav .dropdown a .caret{border:1px solid #555;border-radius:2px;box-sizing:content-box;color:#555;cursor:pointer;display:inline-block;font-family:"Font Awesome 5 Free";font-weight:900;height:30px;margin-left:0;position:absolute;right:15px;text-align:center;top:10px;width:30px;z-index:100}.navbar .navbar-nav .dropdown a .caret svg{width:12.5px;margin:9px;transition:all .3s ease}.navbar .navbar-nav .dropdown a .caret-open .caret svg{transform:rotate(-180deg)}.navbar .navbar-nav .dropdown a>i{margin-right:12px}.navbar .navbar-nav .dropdown.open a>.caret:before{-webkit-transform:rotate(-180deg);-moz-transform:rotate(-180deg);-ms-transform:rotate(-180deg);-o-transform:rotate(-180deg);transform:rotate(-180deg)}.navbar .navbar-nav .dropdown.open .dropdown-menu{display:block!important}.navbar .navbar-nav .dropdown .dropdown-menu{background:0 0;box-shadow:none;position:static;margin-top:0;padding:0;width:100%}.navbar .navbar-nav .dropdown .dropdown-menu.open{display:block!important}.navbar .navbar-nav .dropdown .dropdown-menu li a{margin:0;padding:15px 0 15px 30px}.navbar .navbar-nav .dropdown .dropdown-menu li a:focus,.navbar .navbar-nav .dropdown .dropdown-menu li a:hover{background-color:transparent;color:#e91e63}.navbar .navbar-nav .dropdown .dropdown-menu li li a{padding:15px 0 15px 45px}.navbar .navbar-header .navbar-brand{padding-left:0}.navbar .navbar-brand h1,.navbar .navbar-brand p{padding:10px 0}.navbar .dropdown-submenu:hover .dropdown-menu{display:none!important}.navbar .dropdown-submenu.open>a{background:0 0!important;color:inherit;-webkit-box-shadow:none;box-shadow:none}.navbar.navbar-transparent .open .dropdown-menu>.active>a,.navbar.navbar-transparent .open .dropdown-menu>.active>a:focus,.navbar.navbar-transparent .open .dropdown-menu>.active>a:hover,.navbar.navbar-transparent .open .dropdown-menu>li>a:focus,.navbar.navbar-transparent .open .dropdown-menu>li>a:hover{color:inherit;background-color:transparent}.navbar.navbar-transparent .navbar-nav>.active>a{color:#555}.navbar .open .dropdown-menu>.active>a,.navbar .open .dropdown-menu>.active>a:focus,.navbar .open .dropdown-menu>.active>a:hover,.navbar .open .dropdown-menu>li>a:focus,.navbar .open .dropdown-menu>li>a:hover{color:#e91e63;background-color:transparent}.navbar .dropdown-menu li>a>i{opacity:1}.hestia_right .header-sidebar-wrapper{display:none}body.admin-bar .navbar{margin-top:45px}body.admin-bar .navbar.navbar-default .navbar-collapse{max-height:calc(100% - 115px);margin-top:115px}body.admin-bar .navbar.header-with-topbar{margin-top:0;top:85px}body.admin-bar .navbar.header-with-topbar.navbar-fixed-top .navbar-collapse{max-height:calc(100% - 155px);margin-top:155px}body.admin-bar .navbar.header-with-topbar.navbar-fixed-top.navbar-scroll-point .navbar-collapse{margin-top:115px}body.admin-bar .navbar.navbar-scroll-point.header-with-topbar{top:45px}body.admin-bar .navbar.navbar-scroll-point.navbar-fixed-top .navbar-collapse{max-height:calc(100% - 115px)}.big-title-sidebar-wrapper{width:100%;padding:0}.big-title-sidebar-wrapper .pirate-forms-contact-widget{max-width:370px;margin:0 auto}.single .section{padding:30px 0 0}.single .section.section-blog-info{padding:15px 0 30px}.media .avatar,.media-area .avatar,.media-body .avatar{margin:0;width:35px;height:35px}.subscribe-line .btn{margin-top:15px}ul.children{padding-left:5px;border-left:1px #cfcfcf solid}.blog-post .section-comments .comment-respond .author{display:none}.hestia-about .text-area{margin-bottom:20px}.home .main-raised section:first-of-type{border-radius:0}.footer.footer-big{padding:30px 0 26px}.footer .footer-menu{width:100%}.footer .copyright{display:inline-block;float:none!important;width:100%;padding:10px 0;text-align:center}.main-raised{margin-right:0;margin-left:0;border-radius:0}hr{margin-top:0}.hestia-about{padding-top:30px}.hestia-about h2{margin-top:0}.hestia-about .widget_sow-image .panel-widget-style{margin-top:-60px;padding:0 0 60px 0!important}.authors-on-blog .card-image,.hestia-team .card-image,.team .card-image{height:100px;margin:0 auto;width:100px}.authors-on-blog .card-image img,.hestia-team .card-image img,.team .card-image img{object-fit:cover}.authors-on-blog .col-xs-6:nth-of-type(2n+1),.hestia-team .col-xs-6:nth-of-type(2n+1),.team .col-xs-6:nth-of-type(2n+1){clear:both}.authors-on-blog .card .content,.hestia-team .card .content,.team .card .content{text-align:center}.authors-on-blog .card .content .card-description,.hestia-team .card .content .card-description,.team .card .content .card-description{display:none}.authors-on-blog .card .content .footer,.hestia-team .card .content .footer,.team .card .content .footer{margin-left:0;margin-top:0}.authors-on-blog .card .content .footer .btn.btn-just-icon,.hestia-team .card .content .footer .btn.btn-just-icon,.team .card .content .footer .btn.btn-just-icon{margin:0 5px;padding:0}.authors-on-blog .card .content .footer .btn.btn-just-icon i,.hestia-team .card .content .footer .btn.btn-just-icon i,.team .card .content .footer .btn.btn-just-icon i{width:auto}.hestia-work .card{cursor:pointer}.pricing{padding:60px 0 40px}.contactus .card-contact{margin-top:90px}.contactus .form_captcha_wrap .pirate-forms-google-recaptcha>div{margin:0 auto}.contactus .contact_submit_wrap{text-align:center}.hestia-clear-top-padding{margin-top:-30px}.single.single-post .section-blog-info .entry-social{margin:15px 0 30px}.single.single-post .section-blog-info .card-profile{margin-top:20px}.page .section.section-text{padding:30px 0}.archive .page-header.header-small,.blog .page-header.header-small,.category .page-header.header-small,.page .page-header.header-small,.single-post .page-header.header-small{min-height:0}.archive .page-header.header-small .container,.blog .page-header.header-small .container,.category .page-header.header-small .container,.page .page-header.header-small .container,.single-post .page-header.header-small .container{padding:120px 15px 50px}.archive .page-header.header-small .container .hestia-title,.blog .page-header.header-small .container .hestia-title,.category .page-header.header-small .container .hestia-title,.page .page-header.header-small .container .hestia-title,.single-post .page-header.header-small .container .hestia-title{margin-top:0}.hestia-top-bar{overflow:hidden}.hestia-top-bar .col-md-6{text-align:center;width:100%}.hestia-top-bar .col-md-6.pull-right{display:none}.hestia-top-bar .col-md-12,.hestia-top-bar .col-md-12.pull-right{float:none!important;text-align:center}.hestia-top-bar .widget.widget_shopping_cart{display:none}.home:not(.blog) .main-raised{margin-top:0}.home:not(.blog) .page-header{min-height:0}.header .carousel .item .container{padding-top:170px;padding-bottom:100px}.header .buttons>.btn-right~.btn-left{margin-top:40px}.header.header-with-topbar .carousel .item .container{padding-top:210px}.header .carousel .carousel-control{margin-top:35px}.header.header-with-topbar .carousel .carousel-control{margin-top:55px}.obfx-sharing-bottom{left:0}.carousel .buttons .btn-left,.carousel .buttons .btn-left+.btn-right,.carousel .buttons .btn-right{margin:0 15px 15px}.navbar.navbar-transparent .hestia-hide-if-transparent{display:block}.navbar.navbar-transparent .hestia-transparent-logo{display:none}}@media (max-width:767px){.carousel .page-header .row{flex-direction:column;justify-content:center;padding:0;text-align:center}.carousel .page-header .row .margin-left-auto,.carousel .page-header .row .margin-right-auto{margin:inherit}.carousel .page-header .row .big-title-slider-content{text-align:center}.carousel .item .container.container-height-auto{top:0;transform:none}.carousel .carousel-control.left i{left:10px}.carousel .carousel-control.right i{right:10px}}@media (max-width:600px){body.admin-bar .navbar{margin-top:0}}@media (max-width:600px){body.admin-bar .navbar.navbar-scroll-point{top:0}body.admin-bar .navbar.navbar-scroll-point.header-with-topbar{top:0}body.admin-bar .navbar.navbar-scroll-point.navbar-transparent{margin-top:0;top:46px}body.admin-bar .navbar.navbar-not-transparent{margin-top:0}body.admin-bar .navbar.navbar-scroll-point.header-with-topbar.navbar-fixed-top .navbar-collapse,body.admin-bar .navbar.navbar-scroll-point.navbar-fixed-top .navbar-collapse{max-height:calc(100% - 70px);margin-top:70px}body.admin-bar .navbar.navbar-scroll-point.header-with-topbar.navbar-fixed-top.navbar-transparent .navbar-collapse,body.admin-bar .navbar.navbar-scroll-point.navbar-fixed-top.navbar-transparent .navbar-collapse{max-height:calc(100% - 70px);margin-top:115px}}@media (max-width:480px){.single .main-raised{margin:-60px 0 30px}.comment-respond .form-submit input{display:block;float:none!important;margin:0 auto}.hestia-features{padding:40px 0 55px}.alternative-blog-row{display:table;width:100%;margin:0 auto;table-layout:fixed}.alternative-blog-row div:first-child{display:table-footer-group}.alternative-blog-row div:last-child{padding:0;display:block}.contactus .hestia-contact-form-col{padding:0 5px}.contactus .card-contact{margin-top:30px}.contactus .card-contact .content{padding:30px 15px 0}.contactus .pirate_forms_wrap .pirate-forms-footer .form_captcha_wrap{margin-bottom:0;padding:0}.contactus .pirate_forms_wrap .form_captcha_wrap>div>div{transform:scale(.8);overflow:visible}}.col-ms-1,.col-ms-10,.col-ms-11,.col-ms-12,.col-ms-2,.col-ms-3,.col-ms-4,.col-ms-5,.col-ms-6,.col-ms-7,.col-ms-8,.col-ms-9{position:relative;min-height:1px;padding-left:15px;padding-right:15px}@media (min-width:481px) and (max-width:767px){.col-ms-1,.col-ms-10,.col-ms-11,.col-ms-2,.col-ms-3,.col-ms-4,.col-ms-5,.col-ms-6,.col-ms-7,.col-ms-8,.col-ms-9{float:left}.col-ms-1{width:8.33333%}.col-ms-2{width:16.66667%}.col-ms-3{width:25%}.col-ms-4{width:33.33333%}.col-ms-5{width:41.66667%}.col-ms-6{width:50%}.col-ms-7{width:58.33333%}.col-ms-8{width:66.66667%}.col-ms-9{width:75%}.col-ms-10{width:83.33333%}.col-ms-11{width:91.66667%}.col-ms-12{width:100%}.col-ms-push-1{left:8.33333%}.col-ms-push-2{left:16.66667%}.col-ms-push-3{left:25%}.col-ms-push-4{left:33.33333%}.col-ms-push-5{left:41.66667%}.col-ms-push-6{left:50%}.col-ms-push-7{left:58.33333%}.col-ms-push-8{left:66.66667%}.col-ms-push-9{left:75%}.col-ms-push-10{left:83.33333%}.col-ms-push-11{left:91.66667%}.col-ms-pull-1{right:8.33333%}.col-ms-pull-2{right:16.66667%}.col-ms-pull-3{right:25%}.col-ms-pull-4{right:33.33333%}.col-ms-pull-5{right:41.66667%}.col-ms-pull-6{right:50%}.col-ms-pull-7{right:58.33333%}.col-ms-pull-8{right:66.66667%}.col-ms-pull-9{right:75%}.col-ms-pull-10{right:83.33333%}.col-ms-pull-11{right:91.66667%}.col-ms-offset-1{margin-left:8.33333%}.col-ms-offset-2{margin-left:16.66667%}.col-ms-offset-3{margin-left:25%}.col-ms-offset-4{margin-left:33.33333%}.col-ms-offset-5{margin-left:41.66667%}.col-ms-offset-6{margin-left:50%}.col-ms-offset-7{margin-left:58.33333%}.col-ms-offset-8{margin-left:66.66667%}.col-ms-offset-9{margin-left:75%}.col-ms-offset-10{margin-left:83.33333%}.col-ms-offset-11{margin-left:91.66667%}}@media (min-width:480px) and (max-width:767px){.form-horizontal .form-group .control-label{text-align:right}} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/bea28c59a837e2fb707805367a338267451d9064.00000649.css b/www/.content.EZtzwPjb/html/bea28c59a837e2fb707805367a338267451d9064.00000649.css new file mode 100644 index 0000000..8043bbf --- /dev/null +++ b/www/.content.EZtzwPjb/html/bea28c59a837e2fb707805367a338267451d9064.00000649.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;background:#fff;border:1px +solid #f00;font-size:10pt;width:280px;padding:2px}span.wpcf7-not-valid-tip-no-ajax{color:#f00;font-size:10pt;display:block}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/c05a9a55b9448a28513b30b38deb9c7df791a444.00001300.json b/www/.content.EZtzwPjb/html/c05a9a55b9448a28513b30b38deb9c7df791a444.00001300.json new file mode 100644 index 0000000..d216bbb --- /dev/null +++ b/www/.content.EZtzwPjb/html/c05a9a55b9448a28513b30b38deb9c7df791a444.00001300.json @@ -0,0 +1 @@ +{"version":"1.0","provider_name":"HugoPoi","provider_url":"http:\/\/blog.hugopoi.net","author_name":"HugoPoi","author_url":"http:\/\/blog.hugopoi.net\/author\/hugopoi\/","title":"Redimensionner une partition NTFS","type":"rich","width":600,"height":338,"html":"
                            Redimensionner une partition NTFS<\/a><\/blockquote>\n + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +

                            Home Cinéma

                            Bientôt fini mais peut-être jamais terminé tellement il y a de boulot autour d’un système home-cinema complet et parfait. Cela fait bientôt deux semaines que je suis dans mes travaux et ma configuration HTPC. Première semaine, je suis parti de rien, aucun câble posé, pas de pc installé et pas de meuble. Du coup, le lundi, je suis allé à Ikea et j’ai trouvé à peu près ce que je voulais pour pas trop cher (120 € pour de l’aggloméré de merde). Le mardi, je venais de recevoir tout le matos, à savoir :

                            +
                              +
                            • Un Amplificateur Yamaha RX-671
                            • +
                            • Un kit d’enceinte Jamo 5.1
                            • +
                            • Un boitier Antec Remote black et les 2-3 composants qui vont bien
                            • +
                            +

                            Salon Wii

                            +

                             

                            + +
                            Par HugoPoi, il y a
                            +
                            + +
                            +
                            +
                            +
                            + +
                            +
                            + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/c084bcdd0de694def45d25f3bce497a086bcc924.00000182.html b/www/.content.EZtzwPjb/html/c084bcdd0de694def45d25f3bce497a086bcc924.00000182.html new file mode 100644 index 0000000..76b88ba --- /dev/null +++ b/www/.content.EZtzwPjb/html/c084bcdd0de694def45d25f3bce497a086bcc924.00000182.html @@ -0,0 +1,318 @@ + + + + + + + + SAMSUNG – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            +
                            +
                            +
                            +
                            + + + +

                            +
                            +
                            +
                            +
                            +

                            + 0 commentaire

                            +
                            +
                            +
                            +

                            Laisser un commentaire

                            Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                            +
                            +
                            +

                            + +

                            +
                            +
                            +
                            +
                            +
                            +
                            +
                            +
                            +
                            +
                            +
                            +
                            +
                            + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/c0bb5d12470630dd37baf857257419bedbdbe703.00000138.html b/www/.content.EZtzwPjb/html/c0bb5d12470630dd37baf857257419bedbdbe703.00000138.html new file mode 100644 index 0000000..de95073 --- /dev/null +++ b/www/.content.EZtzwPjb/html/c0bb5d12470630dd37baf857257419bedbdbe703.00000138.html @@ -0,0 +1,1370 @@ + + + + + + + + Réparations Samsung SyncMaster 2232BW – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            +

                            Allô docteur on a un problème,

                            +

                            En ce dimanche calme avant la fin de mes partiels, mon écran Samsung SyncMaster 2232BW commençait à faire des siennes. Celui-ci depuis un mois ou deux clignotait de façon systématique au démarrage, au début pendant seulement quelques secondes, puis au fur et à mesure, de plus en plus jusqu’à devoir attendre 10 minutes pour que je puisse l’utiliser. Après 3 ans et 4 mois de bons et loyaux services, il voulait me quitter. J’ai tenté le support Samsung par email avec peu d’espoir car l’écran a dépassé sa garantie de 4 mois (oui oui les bâtards -> obsolescence programmée). Et donc j’ai eu le droit à un joli mail automatique me disant de contacter un numéro non surtaxé (mais avec combien de temps d’attente ?), ce que je n’ai pas fait car je n’avais pas envie de passer 30min au téléphone pour au final avoir un « On est désolé mais on ne peut rien faire pour vous car la garantie est dépassée, mais on peut envoyer votre écran en SAV pour faire un devis pour seulement 50 boules ». Concernant le support email de Samsung France, je leur donne une note de 0/20 puisque ce n’est pas un support mais une redirection vers le téléphone.

                            +

                            +

                            Symptômes

                            +

                            Clignotements de l’écran et de la LED power systématiques à chaque démarrage de l’écran. Je me suis tout de suite douté d’un problème d’alimentation et après quelques recherches sur google, confirmation du problème sur beaucoup d’écrans et téléviseurs. Dans 99% des cas ce clignotement est dû à des condensateurs défectueux qu’il faut simplement changer :-D

                            +

                            Démontage

                            +

                            Donc après avoir cerné le problème, j’ai ouvert l’écran pour chercher les condos défectueux. J’ai trouvé une petite vidéo pour mon écran :

                            +

                            +

                            Voici quelques photos en plus pour vous aider :

                            +

                            Les outils que j’ai utilisé pour le démontage

                            +

                            Position des clips

                            +

                            Carte d’alimentation dans son emplacement

                            +

                            Et voici les condensateurs qui posent problèmes. Comme vous pouvez le voir sur la photo, ils sont très facilement identifiable car ils sont bombés sur le dessus.

                            +

                            Condensateurs défectueux

                            +

                            Vous devez donc acheter des condensateurs de remplacement, par exemple sur Conrad.

                            +

                            Mes condensateurs suivant étaient endommagés:

                            +
                              +
                            • 1 de 330uF 25V remplacé par un 470uF 25V
                            • +
                            • 3 de 820uF 25V remplacé par des 1000uF 50V
                            • +
                            +

                            Pour la réparation, il vous faut un fer à souder avec une panne pas trop grosse mais d’une grosse puissance car les soudures sont très solides (j’ai galéré avec un fer pro qui monte jusqu’à 400°).

                            +

                            Tout remarche nickel après remontage, plus de clignotement pour seulement quelques euros.

                            +

                            edit du 19 aout 2014 : j’ai trouvé le service manuel de l’écran si besoin samsung_2232bw_chassis_lpe22bs_sm

                            + + +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +

                            + 41 commentaires

                            +
                            + +
                            +
                            +
                            +
                            +

                            + c'est_moi + · 30 janvier 2012 à 18 h 57 min +

                            +

                            Mille mercis et mille félicitations pour cette fiche technique si pédagogue.

                            +

                            J’espère que le partiels se passent plus que parfait !!

                            +

                            J’ai gardé l’url de la page pour réparer mon écran dans un petit mois : j’espère que la page soit toujours là ;-)

                            +

                            Merci encore.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Maxime + · 5 mai 2012 à 12 h 31 min +

                            +

                            Bonjour HugoPoi!

                            +

                            Merci pour toutes vos infos et votre topic, je voulais avoir quelques précisions sur les condos à changer pour samsung 2232bw, je veux passer commande mais j’ai un problème avec les dimensions des condos, si vous pouvez m’informer de ce que je pourrais acheter car il y a trop de références. En vous remerciant A+ Maxime

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 14 juin 2012 à 22 h 56 min +

                              +

                              N’importe quel condensateur polarisé avec des caractéristiques proches devrait marché.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + gaubjezj + · 14 juin 2012 à 22 h 32 min +

                            +

                            Merci pour le tuto qui m’a bien aidé.
                            +J’ai utilisé un fer de 40 W avec une panne fine et
                            +une pompe à dessouder et j’ai retiré les condensateurs sans problème.
                            +Merci encore (3€40 pour le dépannage).

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + DragonTribal + · 2 juillet 2012 à 12 h 02 min +

                            +

                            super merci pour manifique tuto.
                            +Est-il possible de changer les 5 condensateurs 820uF 25V par des 1000uF 50V? car moi mes 5 condensateurs sont presque HS ;-)

                            +

                            Cordialement

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 2 juillet 2012 à 12 h 25 min +

                              +

                              Oui je penses que ça marchera étant donné que c’est des valeurs plus grandes.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + FRED + · 11 juillet 2012 à 19 h 11 min +

                            +

                            Bravo, MERCI.
                            +Je n’ai encore rien fait…mais j’ai le même problème, et tu me donnes la solution.
                            +Super.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + daninpet + · 31 août 2012 à 10 h 10 min +

                            +

                            Merci mille fois!

                            +

                            J’avais ce problème, et j’ai emmener la photo des trucs a remplacer chez le réparateur du coin et voila!! Ça m’a coûté 7 Euros (mais j’habite en Thaïlande)

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + moi + · 15 novembre 2012 à 15 h 25 min +

                            +

                            super mon 2232bw vient de lâcher, les 3 + 1 condos sont gonflés j ai trouvé un 330 en 35v qui traîné sur un écran mort et j’ai commander 5 1000uf 35v sur ebay pour moins de 3 dollars, ca devrait le faire j’espere j’attend d’être livré merci! par contre j’ai qu’un gros pistolet a soudure et un gros fil d’étain, c’est pas évident mais bon ca le fait quand même =)

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + moi + · 7 décembre 2012 à 9 h 33 min +

                              +

                              parfait je vient de recevoir les condos; j ai meuler la panne du fer a souder pour la tailler en mine de crayon et j ai reussi a les souder facilement ils étaient un peu plus gros mais ca passe tout juste, mais attention ne pas prendre des plus gros! l écran fonctionne nickel maintenant.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Croco + · 19 janvier 2013 à 18 h 39 min +

                            +

                            Je souhaiterai savoir si tu as utilisé un fer à souder bien précis étant donné que la carte est une multi couche.
                            +Merci

                            + +
                            +
                            + + +
                            + +
                            +
                            +
                            +
                            +

                            + momo + · 10 juin 2013 à 13 h 15 min +

                            +

                            slut je voudrai savoir ou trouvé les condansateur a changer sur mon ecran qui clignote

                            + +
                            +
                            + + +
                            + +
                            +
                            +
                            +
                            +

                            + lokmane + · 5 juillet 2013 à 16 h 08 min +

                            +

                            merci j’avais un ecran rouge ! et c’etais la tresse qui relie mon ecran votre page m’a aider a l’ouvrir et a le reparer merci bien

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + ML + · 21 août 2013 à 19 h 11 min +

                            +

                            Merci ! Ecran réparé. Halte à l’obsolescence programmée.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + raymond + · 31 octobre 2013 à 13 h 20 min +

                            +

                            ai vu votre vidéo et les explications pour la reparation de mon écran , apparemment le méme probléme l écran passe au noir apres quelque seconde , j ai vu un le condensateur en bas a gauche gonflé , je l ai fait changé (10€) les autre condensateur étant toujour bon d après la personne qui me l a changé , mais j ai toujour le méme probléme cela peut il venir de la carte video a gauche ?

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 20 décembre 2013 à 12 h 27 min +

                              +

                              Si la led bleu du bouton power s’éteint aussi c’est un problème d’alimentation sinon c’est plus compliqué et ça peut provenir de condensateurs sur la partie vidéo. Changé tous les plus gros condensateurs sur la partie alimentation pourrait être un bon début même si ils ne paraissent pas endommagé.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + damien + · 4 novembre 2013 à 0 h 29 min +

                            +

                            bonjour,

                            +

                            j’ai des crasses coincées entres l’écran et le truc juste derrière, est ce qu’on sais les enlever en démontant la dalle ?

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 20 décembre 2013 à 12 h 28 min +

                              +

                              Je ne sais si cette partie de la dalle est démontable, je penses que c’est collé mais vous pouvez essayer.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + mac + · 1 décembre 2013 à 17 h 30 min +

                            +

                            Merci HugoPoi, avec ces excellents conseils et tuto vidéo, mon écran est reparti pour une nouvelle vie.
                            +Pour les composants, si vous êtes sur Paris ou proche. La boutique RAM électroniques est une bonne adresse, 138 bd Diderot 75012 Paris (Place de la Nation).

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Bouddhid + · 16 janvier 2014 à 19 h 21 min +

                            +

                            Merci beaucoup pour ces conseils ! J’étais à 2 doigts de jeter mon écran, le voilà comme neuf pour moins de 5€ ! Vive la bricole !

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Vincent + · 17 mai 2014 à 16 h 45 min +

                            +

                            Alors là merci.

                            +

                            Pour ce post, les photos, la vidéo, tout y est.

                            +

                            J’ai démonté l’écran assez vite, enlevé la carte, regarder quel condensateurs étaient gonflés,(il y en avaient 4), un magasin d’électronique sur lyon et une heure de démontage, soudure, remontage plus tard, voilà, c’est tout beau.
                            +Ca ne clignote plus, ça s’allume comme avant, comme neuf.

                            +

                            Et dire que j’allais jeter cet écran et claquer 350 euros pour un neuf…

                            +

                            Coût de l’opération pour 4 condensateurs, du fil d’étain 7 euros.

                            +

                            Je précise que je n’avais jamais fais de soudure sur composant électronique auparavant.
                            +Comme quoi cette opération de réparation est à la portée de tous.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Julot + · 6 juillet 2014 à 13 h 49 min +

                            +

                            Site vraiment détaillé et très claire. J’ai pu dépanner mon écran avec succès. Merci beaucoup pour ces précieuses explications.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + PaniK31 + · 29 juillet 2014 à 9 h 21 min +

                            +

                            Pas besoin d’une grosse puissance pour le fer, il faut au préalable gratter le vernis sur l’étain afin de pouvoir le faire fondre plus facilement

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + R211_IP-45130B + · 20 août 2014 à 14 h 04 min +

                            +

                            Bonjour à tous,

                            +

                            Une âme charitable peut-elle me communiquer ce qui est gravé sur la résistance CMS R211 de la carte d’alimentation/inverter IP-45130B qui équipe le SAMSUNG 2232BW ? Cette résistance a pris un coup de tournevis et je n’arrive pas à déterminer sa valeur de résistance car son marquage est effacé et comme le composant est abimé la mesure à l’ohmmètre indique l’infinie.

                            +

                            Merci par avance.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + roger + · 24 octobre 2014 à 17 h 21 min +

                            +

                            Ca refonctionne après échange de 4 condensateurs :
                            +-un 330uf25v remplacé à l’identique.
                            +-trois 820uf25v remplacés par 1000uf25v.
                            +Le tout pour quelques €. Le plus dur était le dessoudage, la tresse n’était pas très efficace contrairement à la pompe.
                            +Grand merci à HugoPoi.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Max + · 26 février 2015 à 16 h 28 min +

                            +

                            ENORME MERCI!! J’ai réparé mon écran en 20mn pour 3,50€, il était à 2 doigts de partir à la déchetterie. Ca faisait des mois qu’il clignotait, et l’allumage mettait parfois plus d’une demi heure. J’ai changé 5 condos 820uf25v et 1 330uf25v, par exactement les mêmes en neuf, et là il démarre au quart de tour! Ca fait plaisir! :)

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + rocco michelle + · 7 octobre 2015 à 10 h 16 min +

                              +

                              Bonjour je ne sais si vous verrez mon message mais je tente…je cherche quelqu’un qui accepterait de changer mes condensateurs sur mon samsung, les réparateurs me demandent 70 à 80 euros et encore ils n’ont pss envie de le faire et me disent d’acheter un nouvel écran. j’aurais bien tenter mais je n’ai pas de matériel et j’ai lu que les condo pouvaient être très dangereux s’ils avaient de la charge alors j’ai la trouille de bidouiller pq je n’y connais rien. si vous êtes de lyon acccepteriez vous de changer mes condensateurs pour 45 euros? merci de votre réponse.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + lecakeseb + · 27 juillet 2015 à 15 h 26 min +

                            +

                            Bonjour,

                            +

                            J’ai utilisé la vidéo pour démonter mon écran afin de le nettoyer de 4 bêtes d’orage infiltrés entre le premier écran (noir) et la dalle (blanche) de mon samsung SyncMaster 2232W

                            +

                            Petits conseils afin de modérer ce que j’ai pu voir dans cette vidéo :

                            +

                            0 : aspirez, nettoyez l’extérieur de l’écran avant de l’ouvrir et nettoyez la table qui vous servira d’atelier, pour éviter les poussières qui s’infiltreront forcément plus tard si vous ne le faites pas…
                            +1 : pour ouvrir, utilisez plutôt un couteau à enduire pour la première partie (le cadre). Vous n’abîmerez ainsi pas du tout l’écran. Soyez patients, ne forcez pas ! ça viendra doucement, mais ça viendra. Il m’a fallu à peine 10 minutes, sans détériorer l’écran, sans le griffer… Il est encore nickel !
                            +2 : attention à ne pas déconnecter les fils reliant le cadre à la carte. Inutile pour simplement nettoyer l’écran.
                            +3 : pour séparer les deux éléments de la dalle entre lesquels les bêtes se sont infiltrées, les doigts suffisent, pas besoin d’outils qui viendraient les endommager. La dalle blanche reste à l’horizontale, l’écran noir sera tenu à la verticale.
                            +4 : utiliser un chiffon doux ne peluchant pas pour enlever les bêtes (faites-vous aider de quelqu’un qui les enlèvera pendant que vous tenez l’écran extérieur en position verticale).
                            +5 : repositionnez la colle d’étanchéité qui aurait pu se déplacer, avant de repositionner les deux écrans.
                            +6 : commencer par refermer par le bas de l’écran (sinon les éléments de réglage situés au bas de l’écran – luminosité, contraste,…- ne se replaceront pas correctement).
                            +7 : Une fois l’écran refermé, j’ai appliqué un peu de « barrage aux insectes », avec un chiffon à l’arrière de mon écran en insistant surtout sur les bouches d’aération par lesquelles les maudites bestioles ont du s’infiltrer. En espérant ne pas avoir à ouvrir !

                            +

                            Bon courage à vous !

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Michel Jousserandot + · 20 janvier 2017 à 20 h 41 min +

                            +

                            Merci pour les conseils au démontage.
                            +J’avais un problème un peu différent :l’écran ne s’allumait plus du tout. Avec un copain beaucoup plus malin que moi, on a détecté 2 fusibles dont l’un était fichu. On l’a remplacé par un petit fil de cuivre. Et tout a remarché comme avant.
                            +Il faut surtout faire attention quand on teste la partie haute tension
                            +Michel.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Crec + · 14 juillet 2017 à 10 h 20 min +

                            +

                            Bonjour. Très bons conseils avertis. Merci beaucoup.
                            +Peut-on avoir les mêmes conseils pour un écran BX2250.
                            +Merci par avance.
                            +Crec

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 6 août 2017 à 14 h 03 min +

                              +

                              J’ai pas de BX2250 donc dans le détails non mais si c’est les même symptômes ça doit la même procédure.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Ferronnier + · 10 août 2017 à 17 h 42 min +

                            +

                            Un grand merci !
                            +J’ai changé tous les condensateurs de la partie alimentation de la carte, en déportant certains qui n’avaient pas le même format qu’à l’origine, et ça tourne nickel !

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Nours + · 1 décembre 2017 à 15 h 17 min +

                            +

                            Ca fait des années que j’ai cet article enregistré dans un coin, en nourrissant l’espoir d’avoir un jour le courage de réparer ce foutu écran… Après plus de cinq ans c’est chose faite \o/
                            +Un giga, hypra, immense merci pour ce tutoriel tellement bien expliqué et facile d’accès (je n’avais pas touché à un fer à souder depuis… Oh boy 15 ans déjà).
                            +Après une longue pause, l’écran reprend du service… Jusqu’à la prochaine panne /o/

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Alex + · 11 août 2018 à 13 h 28 min +

                            +

                            Quelqu’un sait qui pourrait me le faire svp j ai le même problème mais aucun matériel

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + David + · 5 février 2019 à 21 h 06 min +

                            +

                            Merci Hugo pour ce tuto qui m’a déjà servi en 2013 et qui va me resservir aujourd’hui car mon 2ème 2232bw commence à avoir les mêmes symptômes.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + yvan + · 23 novembre 2019 à 17 h 14 min +

                            +

                            Bonjour
                            +j’ai tenté de changer le condensateur qui avait l’air naze mais ça n’a pas marché … toujours le bouton bleu allumé, l’écran est reconnu par Windows 10 même si l’écran est éteint
                            +grâce au service manuel de l’écran fourni plus haut, j’ai vérifié les tensions jusque sur la carte de la dalle et elles sont correctes, ainsi que sur la carte elle-même, tout est ok, donc je pense que ce n’est plus un problème de condensateur
                            +pour les fusibles, ils ressemblent plutôt à des composants qu’à de simple fusibles, mais comme j’ai les bonnes tension, je ne pense pas que ça vienne de là
                            +j’ai bien peur que ce soit la dalle qui soit naze ? quelqu’un a t il des idées supplémentaires avant que je le jette avec grand regret (c’est un 2032bw, mais c’est la même chose, même si ma carte électronique est un peu différente car plus récente
                            +merci d’avance pour vos conseils

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + yvan + · 24 novembre 2019 à 17 h 26 min +

                            +

                            finalement j’ai trouvé, c’est un petit fusible vert qui ressemble à une résistance mais tout vert avec écrit 4A LF qui assure l’alimentation de la dalle.
                            +En le shuntant, mon écran a retrouvé l’image.
                            +après enquête il s’agit d’un fusible pico de 4ampères de chez little fuse, pas du tout évident à trouver
                            +Résolu !

                            + +
                            +
                            + +
                            +
                            +

                            + Reflow Dell 1546 | HugoPoi + · 22 août 2016 à 16 h 09 min +

                            +

                            […] « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable de marque Dell un 1546 pour être précis. Encore […]

                            + +
                            +
                            + +
                            +
                            +

                            + Reflow Dell Inspiron 1546 – HugoPoi + · 23 juin 2017 à 23 h 18 min +

                            +

                            […] d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un […]

                            + +
                            +
                            + +
                            +
                            +
                            +

                            Répondre à PaniK31 Annuler la réponse

                            Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                            +
                            +
                            +

                            + +

                            +
                            +
                            +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            + + +
                            + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/c157c0cdf9c22077e02f264070a0b1f7c914d50e.00000063.html b/www/.content.EZtzwPjb/html/c157c0cdf9c22077e02f264070a0b1f7c914d50e.00000063.html new file mode 100644 index 0000000..55802cb --- /dev/null +++ b/www/.content.EZtzwPjb/html/c157c0cdf9c22077e02f264070a0b1f7c914d50e.00000063.html @@ -0,0 +1,491 @@ + + + + + + + + World Community Grid, quoi ? – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            +

                            Oui je sais, ça fait longtemps que je n’ai pas pondu d’article mais je fais plein de trucs en ce moment, donc occupé à faire autre chose que construire des phrases. Aujourd’hui, votre pc est allumé pour lire cet article mais à part ça, lorsqu’il est allumé  le reste du temps, il fait quoi ? si vous êtes un grand #geek votre ou vos bécane(s) tourne(nt) toute la journée et aussi la nuit ?

                            +

                            Mais franchement, à part télécharger ou partager le dernier torrent à la mode, vos CPU et vos GPU ne servent à rien. J’ai donc une proposition : transformer vos machines en calculateur et aidez le monde à aller mieux. ( vous pouvez voir mon score à droite de ce billet)

                            +
                              +
                            1. C’est simple et multiOS allez ici : http://www.worldcommunitygrid.org ou cliquez à droite de ce billet
                            2. +
                            3. Inscrivez-vous puis téléchargez le logiciel.
                            4. +
                            5. Ensuite, installez-le et c’est terminé !
                            6. +
                            +

                            Vos Pc aident maintenant à calculer des projets divers :

                            +
                              +
                            • Pour le nettoyage des eaux usées
                            • +
                            • La lutte contre le cancer
                            • +
                            • La lutte contre le SIDA
                            • +
                            • Des énergies propres
                            • +
                            +

                            Pour ceux qui veulent plus d’info sur comment configurer le soft go @hugopoi on twitter.com :D

                            +
                            +
                            +
                            +
                            +
                            Catégories : News
                            +
                            +
                            +
                            + + + + + + + + + +
                            +
                            +
                            +
                            +
                            +
                            +
                            +

                            + 0 commentaire

                            +
                            +
                            +
                            +

                            Laisser un commentaire

                            Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                            +
                            +
                            +

                            + +

                            +
                            +
                            +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            + + +
                            + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/c159a1fbb4fd4da9c84b50e3f2511999435252a3.00001195.css b/www/.content.EZtzwPjb/html/c159a1fbb4fd4da9c84b50e3f2511999435252a3.00001195.css new file mode 100644 index 0000000..e852a69 --- /dev/null +++ b/www/.content.EZtzwPjb/html/c159a1fbb4fd4da9c84b50e3f2511999435252a3.00001195.css @@ -0,0 +1,11 @@ +@charset "UTF-8";#start-resizable-editor-section{display:none}.wp-block-audio figcaption{margin-top:.5em;margin-bottom:1em}.wp-block-audio audio{width:100%;min-width:300px}.wp-block-button__link{color:#fff;background-color:#32373c;border:none;border-radius:1.55em;box-shadow:none;cursor:pointer;display:inline-block;font-size:1.125em;padding:.667em 1.333em;text-align:center;text-decoration:none;overflow-wrap:break-word}.wp-block-button__link:active,.wp-block-button__link:focus,.wp-block-button__link:hover,.wp-block-button__link:visited{color:#fff}.wp-block-button__link.aligncenter{text-align:center}.wp-block-button__link.alignright{text-align:right}.wp-block-buttons>.wp-block-button.has-custom-width{max-width:none}.wp-block-buttons>.wp-block-button.has-custom-width .wp-block-button__link{width:100%}.wp-block-buttons>.wp-block-button.wp-block-button__width-25{width:calc(25% - .5em)}.wp-block-buttons>.wp-block-button.wp-block-button__width-50{width:calc(50% - .5em)}.wp-block-buttons>.wp-block-button.wp-block-button__width-75{width:calc(75% - .5em)}.wp-block-buttons>.wp-block-button.wp-block-button__width-100{margin-right:0;width:100%}.wp-block-button.is-style-squared,.wp-block-button__link.wp-block-button.is-style-squared{border-radius:0}.wp-block-button.no-border-radius,.wp-block-button__link.no-border-radius{border-radius:0!important}.is-style-outline>.wp-block-button__link,.wp-block-button__link.is-style-outline{border:2px solid}.is-style-outline>.wp-block-button__link:not(.has-text-color),.wp-block-button__link.is-style-outline:not(.has-text-color){color:#32373c}.is-style-outline>.wp-block-button__link:not(.has-background),.wp-block-button__link.is-style-outline:not(.has-background){background-color:transparent}.wp-block-buttons{display:flex;flex-direction:row;flex-wrap:wrap}.wp-block-buttons.is-vertical{flex-direction:column}.wp-block-buttons.is-vertical>.wp-block-button{margin-right:0}.wp-block-buttons.is-vertical>.wp-block-button:last-child{margin-bottom:0}.wp-block-buttons>.wp-block-button{display:inline-block;margin-left:0;margin-right:.5em;margin-bottom:.5em}.wp-block-buttons>.wp-block-button:last-child{margin-right:0}.wp-block-buttons.is-content-justification-left{justify-content:flex-start}.wp-block-buttons.is-content-justification-left.is-vertical{align-items:flex-start}.wp-block-buttons.is-content-justification-center{justify-content:center}.wp-block-buttons.is-content-justification-center.is-vertical{align-items:center}.wp-block-buttons.is-content-justification-right{justify-content:flex-end}.wp-block-buttons.is-content-justification-right>.wp-block-button{margin-left:.5em;margin-right:0}.wp-block-buttons.is-content-justification-right>.wp-block-button:first-child{margin-left:0}.wp-block-buttons.is-content-justification-right.is-vertical{align-items:flex-end}.wp-block-buttons.is-content-justification-space-between{justify-content:space-between}.wp-block-buttons.aligncenter{text-align:center}.wp-block-buttons.alignleft .wp-block-button{margin-left:0;margin-right:.5em}.wp-block-buttons.alignleft .wp-block-button:last-child{margin-right:0}.wp-block-buttons.alignright .wp-block-button{margin-right:0;margin-left:.5em}.wp-block-buttons.alignright .wp-block-button:first-child{margin-left:0}.wp-block-buttons:not(.is-content-justification-space-between,.is-content-justification-right,.is-content-justification-left,.is-content-justification-center) .wp-block-button.aligncenter{margin-left:auto;margin-right:auto;margin-bottom:.5em;width:100%}.wp-block-calendar{text-align:center}.wp-block-calendar tbody td,.wp-block-calendar th{padding:.25em;border:1px solid #ddd}.wp-block-calendar tfoot td{border:none}.wp-block-calendar table{width:100%;border-collapse:collapse}.wp-block-calendar table th{font-weight:400;background:#ddd}.wp-block-calendar a{text-decoration:underline}.wp-block-calendar table caption,.wp-block-calendar table tbody{color:#40464d}.wp-block-categories.alignleft{margin-right:2em}.wp-block-categories.alignright{margin-left:2em}.wp-block-code code{display:block;white-space:pre-wrap;overflow-wrap:break-word}.wp-block-columns{display:flex;margin-bottom:1.75em;flex-wrap:wrap}@media (min-width:782px){.wp-block-columns{flex-wrap:nowrap}}.wp-block-columns.has-background{padding:1.25em 2.375em}.wp-block-columns.are-vertically-aligned-top{align-items:flex-start}.wp-block-columns.are-vertically-aligned-center{align-items:center}.wp-block-columns.are-vertically-aligned-bottom{align-items:flex-end}.wp-block-column{flex-grow:1;min-width:0;word-break:break-word;overflow-wrap:break-word}@media (max-width:599px){.wp-block-column{flex-basis:100%!important}}@media (min-width:600px) and (max-width:781px){.wp-block-column:not(:only-child){flex-basis:calc(50% - 1em)!important;flex-grow:0}.wp-block-column:nth-child(2n){margin-left:2em}}@media (min-width:782px){.wp-block-column{flex-basis:0;flex-grow:1}.wp-block-column[style*=flex-basis]{flex-grow:0}.wp-block-column:not(:first-child){margin-left:2em}}.wp-block-column.is-vertically-aligned-top{align-self:flex-start}.wp-block-column.is-vertically-aligned-center{-ms-grid-row-align:center;align-self:center}.wp-block-column.is-vertically-aligned-bottom{align-self:flex-end}.wp-block-column.is-vertically-aligned-bottom,.wp-block-column.is-vertically-aligned-center,.wp-block-column.is-vertically-aligned-top{width:100%}.wp-block-cover,.wp-block-cover-image{position:relative;background-size:cover;background-position:50%;min-height:430px;width:100%;display:flex;justify-content:center;align-items:center;padding:1em;box-sizing:border-box}.wp-block-cover-image.has-parallax,.wp-block-cover.has-parallax{background-attachment:fixed}@supports (-webkit-overflow-scrolling:touch){.wp-block-cover-image.has-parallax,.wp-block-cover.has-parallax{background-attachment:scroll}}@media (prefers-reduced-motion:reduce){.wp-block-cover-image.has-parallax,.wp-block-cover.has-parallax{background-attachment:scroll}}.wp-block-cover-image.is-repeated,.wp-block-cover.is-repeated{background-repeat:repeat;background-size:auto}.wp-block-cover-image.has-background-dim:not([class*=-background-color]),.wp-block-cover.has-background-dim:not([class*=-background-color]){background-color:#000}.wp-block-cover-image.has-background-dim:before,.wp-block-cover.has-background-dim:before{content:"";background-color:inherit}.wp-block-cover-image.has-background-dim:not(.has-background-gradient):before,.wp-block-cover-image .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim:not(.has-background-gradient):before,.wp-block-cover .wp-block-cover__gradient-background{position:absolute;top:0;left:0;bottom:0;right:0;z-index:1;opacity:.5}.wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-10:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-10:not(.has-background-gradient):before{opacity:.1}.wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-20:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-20:not(.has-background-gradient):before{opacity:.2}.wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-30:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-30:not(.has-background-gradient):before{opacity:.3}.wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-40:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-40:not(.has-background-gradient):before{opacity:.4}.wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-50:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-50:not(.has-background-gradient):before{opacity:.5}.wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-60:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-60:not(.has-background-gradient):before{opacity:.6}.wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-70:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-70:not(.has-background-gradient):before{opacity:.7}.wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-80:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-80:not(.has-background-gradient):before{opacity:.8}.wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-90:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-90:not(.has-background-gradient):before{opacity:.9}.wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background,.wp-block-cover-image.has-background-dim.has-background-dim-100:not(.has-background-gradient):before,.wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background,.wp-block-cover.has-background-dim.has-background-dim-100:not(.has-background-gradient):before{opacity:1}.wp-block-cover-image.alignleft,.wp-block-cover-image.alignright,.wp-block-cover.alignleft,.wp-block-cover.alignright{max-width:420px;width:100%}.wp-block-cover-image:after,.wp-block-cover:after{display:block;content:"";font-size:0;min-height:inherit}@supports ((position:-webkit-sticky) or (position:sticky)){.wp-block-cover-image:after,.wp-block-cover:after{content:none}}.wp-block-cover-image.aligncenter,.wp-block-cover-image.alignleft,.wp-block-cover-image.alignright,.wp-block-cover.aligncenter,.wp-block-cover.alignleft,.wp-block-cover.alignright{display:flex}.wp-block-cover-image .wp-block-cover__inner-container,.wp-block-cover .wp-block-cover__inner-container{width:100%;z-index:1;color:#fff}.wp-block-cover-image .wp-block-subhead:not(.has-text-color),.wp-block-cover-image h1:not(.has-text-color),.wp-block-cover-image h2:not(.has-text-color),.wp-block-cover-image h3:not(.has-text-color),.wp-block-cover-image h4:not(.has-text-color),.wp-block-cover-image h5:not(.has-text-color),.wp-block-cover-image h6:not(.has-text-color),.wp-block-cover-image p:not(.has-text-color),.wp-block-cover .wp-block-subhead:not(.has-text-color),.wp-block-cover h1:not(.has-text-color),.wp-block-cover h2:not(.has-text-color),.wp-block-cover h3:not(.has-text-color),.wp-block-cover h4:not(.has-text-color),.wp-block-cover h5:not(.has-text-color),.wp-block-cover h6:not(.has-text-color),.wp-block-cover p:not(.has-text-color){color:inherit}.wp-block-cover-image.is-position-top-left,.wp-block-cover.is-position-top-left{align-items:flex-start;justify-content:flex-start}.wp-block-cover-image.is-position-top-center,.wp-block-cover.is-position-top-center{align-items:flex-start;justify-content:center}.wp-block-cover-image.is-position-top-right,.wp-block-cover.is-position-top-right{align-items:flex-start;justify-content:flex-end}.wp-block-cover-image.is-position-center-left,.wp-block-cover.is-position-center-left{align-items:center;justify-content:flex-start}.wp-block-cover-image.is-position-center-center,.wp-block-cover.is-position-center-center{align-items:center;justify-content:center}.wp-block-cover-image.is-position-center-right,.wp-block-cover.is-position-center-right{align-items:center;justify-content:flex-end}.wp-block-cover-image.is-position-bottom-left,.wp-block-cover.is-position-bottom-left{align-items:flex-end;justify-content:flex-start}.wp-block-cover-image.is-position-bottom-center,.wp-block-cover.is-position-bottom-center{align-items:flex-end;justify-content:center}.wp-block-cover-image.is-position-bottom-right,.wp-block-cover.is-position-bottom-right{align-items:flex-end;justify-content:flex-end}.wp-block-cover-image.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container,.wp-block-cover.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container{margin:0;width:auto}.wp-block-cover-image img.wp-block-cover__image-background,.wp-block-cover-image video.wp-block-cover__video-background,.wp-block-cover img.wp-block-cover__image-background,.wp-block-cover video.wp-block-cover__video-background{position:absolute;top:0;left:0;right:0;bottom:0;margin:0;padding:0;width:100%;height:100%;max-width:none;max-height:none;-o-object-fit:cover;object-fit:cover;outline:none;border:none;box-shadow:none}.wp-block-cover__image-background,.wp-block-cover__video-background{z-index:0}.wp-block-cover-image-text,.wp-block-cover-image-text a,.wp-block-cover-image-text a:active,.wp-block-cover-image-text a:focus,.wp-block-cover-image-text a:hover,.wp-block-cover-text,.wp-block-cover-text a,.wp-block-cover-text a:active,.wp-block-cover-text a:focus,.wp-block-cover-text a:hover,section.wp-block-cover-image h2,section.wp-block-cover-image h2 a,section.wp-block-cover-image h2 a:active,section.wp-block-cover-image h2 a:focus,section.wp-block-cover-image h2 a:hover{color:#fff}.wp-block-cover-image .wp-block-cover.has-left-content{justify-content:flex-start}.wp-block-cover-image .wp-block-cover.has-right-content{justify-content:flex-end}.wp-block-cover-image.has-left-content .wp-block-cover-image-text,.wp-block-cover.has-left-content .wp-block-cover-text,section.wp-block-cover-image.has-left-content>h2{margin-left:0;text-align:left}.wp-block-cover-image.has-right-content .wp-block-cover-image-text,.wp-block-cover.has-right-content .wp-block-cover-text,section.wp-block-cover-image.has-right-content>h2{margin-right:0;text-align:right}.wp-block-cover-image .wp-block-cover-image-text,.wp-block-cover .wp-block-cover-text,section.wp-block-cover-image>h2{font-size:2em;line-height:1.25;z-index:1;margin-bottom:0;max-width:840px;padding:.44em;text-align:center}.wp-block-embed.alignleft,.wp-block-embed.alignright,.wp-block[data-align=left]>[data-type="core/embed"],.wp-block[data-align=right]>[data-type="core/embed"]{max-width:360px;width:100%}.wp-block-embed.alignleft .wp-block-embed__wrapper,.wp-block-embed.alignright .wp-block-embed__wrapper,.wp-block[data-align=left]>[data-type="core/embed"] .wp-block-embed__wrapper,.wp-block[data-align=right]>[data-type="core/embed"] .wp-block-embed__wrapper{min-width:280px}.wp-block-cover .wp-block-embed{min-width:320px;min-height:240px}.wp-block-embed{margin-bottom:1em}.wp-block-embed figcaption{margin-top:.5em;margin-bottom:1em}.wp-block-embed iframe{max-width:100%}.wp-block-embed__wrapper{position:relative}.wp-embed-responsive .wp-has-aspect-ratio .wp-block-embed__wrapper:before{content:"";display:block;padding-top:50%}.wp-embed-responsive .wp-has-aspect-ratio iframe{position:absolute;top:0;right:0;bottom:0;left:0;height:100%;width:100%}.wp-embed-responsive .wp-embed-aspect-21-9 .wp-block-embed__wrapper:before{padding-top:42.85%}.wp-embed-responsive .wp-embed-aspect-18-9 .wp-block-embed__wrapper:before{padding-top:50%}.wp-embed-responsive .wp-embed-aspect-16-9 .wp-block-embed__wrapper:before{padding-top:56.25%}.wp-embed-responsive .wp-embed-aspect-4-3 .wp-block-embed__wrapper:before{padding-top:75%}.wp-embed-responsive .wp-embed-aspect-1-1 .wp-block-embed__wrapper:before{padding-top:100%}.wp-embed-responsive .wp-embed-aspect-9-16 .wp-block-embed__wrapper:before{padding-top:177.77%}.wp-embed-responsive .wp-embed-aspect-1-2 .wp-block-embed__wrapper:before{padding-top:200%}.wp-block-file{margin-bottom:1.5em}.wp-block-file.aligncenter{text-align:center}.wp-block-file.alignright{text-align:right}.wp-block-file .wp-block-file__button{background:#32373c;border-radius:2em;color:#fff;font-size:.8em;padding:.5em 1em}.wp-block-file a.wp-block-file__button{text-decoration:none}.wp-block-file a.wp-block-file__button:active,.wp-block-file a.wp-block-file__button:focus,.wp-block-file a.wp-block-file__button:hover,.wp-block-file a.wp-block-file__button:visited{box-shadow:none;color:#fff;opacity:.85;text-decoration:none}.wp-block-file *+.wp-block-file__button{margin-left:.75em}.blocks-gallery-grid,.wp-block-gallery{display:flex;flex-wrap:wrap;list-style-type:none;padding:0;margin:0}.blocks-gallery-grid .blocks-gallery-image,.blocks-gallery-grid .blocks-gallery-item,.wp-block-gallery .blocks-gallery-image,.wp-block-gallery .blocks-gallery-item{margin:0 1em 1em 0;display:flex;flex-grow:1;flex-direction:column;justify-content:center;position:relative;width:calc(50% - 1em)}.blocks-gallery-grid .blocks-gallery-image:nth-of-type(2n),.blocks-gallery-grid .blocks-gallery-item:nth-of-type(2n),.wp-block-gallery .blocks-gallery-image:nth-of-type(2n),.wp-block-gallery .blocks-gallery-item:nth-of-type(2n){margin-right:0}.blocks-gallery-grid .blocks-gallery-image figure,.blocks-gallery-grid .blocks-gallery-item figure,.wp-block-gallery .blocks-gallery-image figure,.wp-block-gallery .blocks-gallery-item figure{margin:0;height:100%}@supports ((position:-webkit-sticky) or (position:sticky)){.blocks-gallery-grid .blocks-gallery-image figure,.blocks-gallery-grid .blocks-gallery-item figure,.wp-block-gallery .blocks-gallery-image figure,.wp-block-gallery .blocks-gallery-item figure{display:flex;align-items:flex-end;justify-content:flex-start}}.blocks-gallery-grid .blocks-gallery-image img,.blocks-gallery-grid .blocks-gallery-item img,.wp-block-gallery .blocks-gallery-image img,.wp-block-gallery .blocks-gallery-item img{display:block;max-width:100%;height:auto;width:100%}@supports ((position:-webkit-sticky) or (position:sticky)){.blocks-gallery-grid .blocks-gallery-image img,.blocks-gallery-grid .blocks-gallery-item img,.wp-block-gallery .blocks-gallery-image img,.wp-block-gallery .blocks-gallery-item img{width:auto}}.blocks-gallery-grid .blocks-gallery-image figcaption,.blocks-gallery-grid .blocks-gallery-item figcaption,.wp-block-gallery .blocks-gallery-image figcaption,.wp-block-gallery .blocks-gallery-item figcaption{position:absolute;bottom:0;width:100%;max-height:100%;overflow:auto;padding:3em .77em .7em;color:#fff;text-align:center;font-size:.8em;background:linear-gradient(0deg,rgba(0,0,0,.7),rgba(0,0,0,.3) 70%,transparent);box-sizing:border-box;margin:0}.blocks-gallery-grid .blocks-gallery-image figcaption img,.blocks-gallery-grid .blocks-gallery-item figcaption img,.wp-block-gallery .blocks-gallery-image figcaption img,.wp-block-gallery .blocks-gallery-item figcaption img{display:inline}.blocks-gallery-grid figcaption,.wp-block-gallery figcaption{flex-grow:1}.blocks-gallery-grid.is-cropped .blocks-gallery-image a,.blocks-gallery-grid.is-cropped .blocks-gallery-image img,.blocks-gallery-grid.is-cropped .blocks-gallery-item a,.blocks-gallery-grid.is-cropped .blocks-gallery-item img,.wp-block-gallery.is-cropped .blocks-gallery-image a,.wp-block-gallery.is-cropped .blocks-gallery-image img,.wp-block-gallery.is-cropped .blocks-gallery-item a,.wp-block-gallery.is-cropped .blocks-gallery-item img{width:100%}@supports ((position:-webkit-sticky) or (position:sticky)){.blocks-gallery-grid.is-cropped .blocks-gallery-image a,.blocks-gallery-grid.is-cropped .blocks-gallery-image img,.blocks-gallery-grid.is-cropped .blocks-gallery-item a,.blocks-gallery-grid.is-cropped .blocks-gallery-item img,.wp-block-gallery.is-cropped .blocks-gallery-image a,.wp-block-gallery.is-cropped .blocks-gallery-image img,.wp-block-gallery.is-cropped .blocks-gallery-item a,.wp-block-gallery.is-cropped .blocks-gallery-item img{height:100%;flex:1;-o-object-fit:cover;object-fit:cover}}.blocks-gallery-grid.columns-1 .blocks-gallery-image,.blocks-gallery-grid.columns-1 .blocks-gallery-item,.wp-block-gallery.columns-1 .blocks-gallery-image,.wp-block-gallery.columns-1 .blocks-gallery-item{width:100%;margin-right:0}@media (min-width:600px){.blocks-gallery-grid.columns-3 .blocks-gallery-image,.blocks-gallery-grid.columns-3 .blocks-gallery-item,.wp-block-gallery.columns-3 .blocks-gallery-image,.wp-block-gallery.columns-3 .blocks-gallery-item{width:calc(33.33333% - .66667em);margin-right:1em}.blocks-gallery-grid.columns-4 .blocks-gallery-image,.blocks-gallery-grid.columns-4 .blocks-gallery-item,.wp-block-gallery.columns-4 .blocks-gallery-image,.wp-block-gallery.columns-4 .blocks-gallery-item{width:calc(25% - .75em);margin-right:1em}.blocks-gallery-grid.columns-5 .blocks-gallery-image,.blocks-gallery-grid.columns-5 .blocks-gallery-item,.wp-block-gallery.columns-5 .blocks-gallery-image,.wp-block-gallery.columns-5 .blocks-gallery-item{width:calc(20% - .8em);margin-right:1em}.blocks-gallery-grid.columns-6 .blocks-gallery-image,.blocks-gallery-grid.columns-6 .blocks-gallery-item,.wp-block-gallery.columns-6 .blocks-gallery-image,.wp-block-gallery.columns-6 .blocks-gallery-item{width:calc(16.66667% - .83333em);margin-right:1em}.blocks-gallery-grid.columns-7 .blocks-gallery-image,.blocks-gallery-grid.columns-7 .blocks-gallery-item,.wp-block-gallery.columns-7 .blocks-gallery-image,.wp-block-gallery.columns-7 .blocks-gallery-item{width:calc(14.28571% - .85714em);margin-right:1em}.blocks-gallery-grid.columns-8 .blocks-gallery-image,.blocks-gallery-grid.columns-8 .blocks-gallery-item,.wp-block-gallery.columns-8 .blocks-gallery-image,.wp-block-gallery.columns-8 .blocks-gallery-item{width:calc(12.5% - .875em);margin-right:1em}.blocks-gallery-grid.columns-1 .blocks-gallery-image:nth-of-type(1n),.blocks-gallery-grid.columns-1 .blocks-gallery-item:nth-of-type(1n),.blocks-gallery-grid.columns-2 .blocks-gallery-image:nth-of-type(2n),.blocks-gallery-grid.columns-2 .blocks-gallery-item:nth-of-type(2n),.blocks-gallery-grid.columns-3 .blocks-gallery-image:nth-of-type(3n),.blocks-gallery-grid.columns-3 .blocks-gallery-item:nth-of-type(3n),.blocks-gallery-grid.columns-4 .blocks-gallery-image:nth-of-type(4n),.blocks-gallery-grid.columns-4 .blocks-gallery-item:nth-of-type(4n),.blocks-gallery-grid.columns-5 .blocks-gallery-image:nth-of-type(5n),.blocks-gallery-grid.columns-5 .blocks-gallery-item:nth-of-type(5n),.blocks-gallery-grid.columns-6 .blocks-gallery-image:nth-of-type(6n),.blocks-gallery-grid.columns-6 .blocks-gallery-item:nth-of-type(6n),.blocks-gallery-grid.columns-7 .blocks-gallery-image:nth-of-type(7n),.blocks-gallery-grid.columns-7 .blocks-gallery-item:nth-of-type(7n),.blocks-gallery-grid.columns-8 .blocks-gallery-image:nth-of-type(8n),.blocks-gallery-grid.columns-8 .blocks-gallery-item:nth-of-type(8n),.wp-block-gallery.columns-1 .blocks-gallery-image:nth-of-type(1n),.wp-block-gallery.columns-1 .blocks-gallery-item:nth-of-type(1n),.wp-block-gallery.columns-2 .blocks-gallery-image:nth-of-type(2n),.wp-block-gallery.columns-2 .blocks-gallery-item:nth-of-type(2n),.wp-block-gallery.columns-3 .blocks-gallery-image:nth-of-type(3n),.wp-block-gallery.columns-3 .blocks-gallery-item:nth-of-type(3n),.wp-block-gallery.columns-4 .blocks-gallery-image:nth-of-type(4n),.wp-block-gallery.columns-4 .blocks-gallery-item:nth-of-type(4n),.wp-block-gallery.columns-5 .blocks-gallery-image:nth-of-type(5n),.wp-block-gallery.columns-5 .blocks-gallery-item:nth-of-type(5n),.wp-block-gallery.columns-6 .blocks-gallery-image:nth-of-type(6n),.wp-block-gallery.columns-6 .blocks-gallery-item:nth-of-type(6n),.wp-block-gallery.columns-7 .blocks-gallery-image:nth-of-type(7n),.wp-block-gallery.columns-7 .blocks-gallery-item:nth-of-type(7n),.wp-block-gallery.columns-8 .blocks-gallery-image:nth-of-type(8n),.wp-block-gallery.columns-8 .blocks-gallery-item:nth-of-type(8n){margin-right:0}}.blocks-gallery-grid .blocks-gallery-image:last-child,.blocks-gallery-grid .blocks-gallery-item:last-child,.wp-block-gallery .blocks-gallery-image:last-child,.wp-block-gallery .blocks-gallery-item:last-child{margin-right:0}.blocks-gallery-grid.alignleft,.blocks-gallery-grid.alignright,.wp-block-gallery.alignleft,.wp-block-gallery.alignright{max-width:420px;width:100%}.blocks-gallery-grid.aligncenter .blocks-gallery-item figure,.wp-block-gallery.aligncenter .blocks-gallery-item figure{justify-content:center}.wp-block-group{box-sizing:border-box}h1.has-background,h2.has-background,h3.has-background,h4.has-background,h5.has-background,h6.has-background{padding:1.25em 2.375em}.wp-block-image{margin-bottom:1em}.wp-block-image img{max-width:100%}.wp-block-image:not(.is-style-rounded) img{border-radius:inherit}.wp-block-image.aligncenter{text-align:center}.wp-block-image.alignfull img,.wp-block-image.alignwide img{width:100%}.wp-block-image .aligncenter,.wp-block-image .alignleft,.wp-block-image .alignright{display:table}.wp-block-image .aligncenter>figcaption,.wp-block-image .alignleft>figcaption,.wp-block-image .alignright>figcaption{display:table-caption;caption-side:bottom}.wp-block-image .alignleft{float:left;margin:.5em 1em .5em 0}.wp-block-image .alignright{float:right;margin:.5em 0 .5em 1em}.wp-block-image .aligncenter{margin-left:auto;margin-right:auto}.wp-block-image figcaption{margin-top:.5em;margin-bottom:1em}.wp-block-image.is-style-circle-mask img,.wp-block-image.is-style-rounded img{border-radius:9999px}@supports ((-webkit-mask-image:none) or (mask-image:none)) or (-webkit-mask-image:none){.wp-block-image.is-style-circle-mask img{-webkit-mask-image:url('data:image/svg+xml;utf8,');mask-image:url('data:image/svg+xml;utf8,');mask-mode:alpha;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-position:center;mask-position:center;border-radius:0}}.wp-block-latest-comments__comment{line-height:1.1;list-style:none;margin-bottom:1em}.has-avatars .wp-block-latest-comments__comment{min-height:2.25em;list-style:none}.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt,.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta{margin-left:3.25em}.has-dates .wp-block-latest-comments__comment,.has-excerpts .wp-block-latest-comments__comment{line-height:1.5}.wp-block-latest-comments__comment-excerpt p{font-size:.875em;line-height:1.8;margin:.36em 0 1.4em}.wp-block-latest-comments__comment-date{display:block;font-size:.75em}.wp-block-latest-comments .avatar,.wp-block-latest-comments__comment-avatar{border-radius:1.5em;display:block;float:left;height:2.5em;margin-right:.75em;width:2.5em}.wp-block-latest-posts.alignleft{margin-right:2em}.wp-block-latest-posts.alignright{margin-left:2em}.wp-block-latest-posts.wp-block-latest-posts__list{list-style:none}.wp-block-latest-posts.wp-block-latest-posts__list li{clear:both}.wp-block-latest-posts.is-grid{display:flex;flex-wrap:wrap;padding:0}.wp-block-latest-posts.is-grid li{margin:0 1.25em 1.25em 0;width:100%}@media (min-width:600px){.wp-block-latest-posts.columns-2 li{width:calc(50% - .625em)}.wp-block-latest-posts.columns-2 li:nth-child(2n){margin-right:0}.wp-block-latest-posts.columns-3 li{width:calc(33.33333% - .83333em)}.wp-block-latest-posts.columns-3 li:nth-child(3n){margin-right:0}.wp-block-latest-posts.columns-4 li{width:calc(25% - .9375em)}.wp-block-latest-posts.columns-4 li:nth-child(4n){margin-right:0}.wp-block-latest-posts.columns-5 li{width:calc(20% - 1em)}.wp-block-latest-posts.columns-5 li:nth-child(5n){margin-right:0}.wp-block-latest-posts.columns-6 li{width:calc(16.66667% - 1.04167em)}.wp-block-latest-posts.columns-6 li:nth-child(6n){margin-right:0}}.wp-block-latest-posts__post-author,.wp-block-latest-posts__post-date{display:block;color:#555;font-size:.8125em}.wp-block-latest-posts__post-excerpt{margin-top:.5em;margin-bottom:1em}.wp-block-latest-posts__featured-image a{display:inline-block}.wp-block-latest-posts__featured-image img{height:auto;width:auto}.wp-block-latest-posts__featured-image.alignleft{margin-right:1em}.wp-block-latest-posts__featured-image.alignright{margin-left:1em}.wp-block-latest-posts__featured-image.aligncenter{margin-bottom:1em;text-align:center}.block-editor-image-alignment-control__row .components-base-control__field{display:flex;justify-content:space-between;align-items:center}.block-editor-image-alignment-control__row .components-base-control__field .components-base-control__label{margin-bottom:0}ol.has-background,ul.has-background{padding:1.25em 2.375em}.wp-block-media-text{ + /*!rtl:begin:ignore*/direction:ltr; + /*!rtl:end:ignore*/display:-ms-grid;display:grid;-ms-grid-columns:50% 1fr;grid-template-columns:50% 1fr;-ms-grid-rows:auto;grid-template-rows:auto}.wp-block-media-text.has-media-on-the-right{-ms-grid-columns:1fr 50%;grid-template-columns:1fr 50%}.wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__content,.wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__media{-ms-grid-row-align:start;align-self:start}.wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__content,.wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__media,.wp-block-media-text .wp-block-media-text__content,.wp-block-media-text .wp-block-media-text__media{-ms-grid-row-align:center;align-self:center}.wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__content,.wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__media{-ms-grid-row-align:end;align-self:end}.wp-block-media-text .wp-block-media-text__media{ + /*!rtl:begin:ignore*/-ms-grid-column:1;grid-column:1;-ms-grid-row:1;grid-row:1; + /*!rtl:end:ignore*/margin:0}.wp-block-media-text .wp-block-media-text__content{direction:ltr; + /*!rtl:begin:ignore*/-ms-grid-column:2;grid-column:2;-ms-grid-row:1;grid-row:1; + /*!rtl:end:ignore*/padding:0 8%;word-break:break-word}.wp-block-media-text.has-media-on-the-right .wp-block-media-text__media{ + /*!rtl:begin:ignore*/-ms-grid-column:2;grid-column:2;-ms-grid-row:1;grid-row:1 + /*!rtl:end:ignore*/}.wp-block-media-text.has-media-on-the-right .wp-block-media-text__content{ + /*!rtl:begin:ignore*/-ms-grid-column:1;grid-column:1;-ms-grid-row:1;grid-row:1 + /*!rtl:end:ignore*/}.wp-block-media-text__media img,.wp-block-media-text__media video{max-width:unset;width:100%;vertical-align:middle}.wp-block-media-text.is-image-fill .wp-block-media-text__media{height:100%;min-height:250px;background-size:cover}.wp-block-media-text.is-image-fill .wp-block-media-text__media>a{display:block;height:100%}.wp-block-media-text.is-image-fill .wp-block-media-text__media img{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}@media (max-width:600px){.wp-block-media-text.is-stacked-on-mobile{-ms-grid-columns:100%!important;grid-template-columns:100%!important}.wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__media{-ms-grid-column:1;grid-column:1;-ms-grid-row:1;grid-row:1}.wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content{-ms-grid-column:1;grid-column:1;-ms-grid-row:2;grid-row:2}}.wp-block-navigation:not(.has-background) .wp-block-navigation__container .wp-block-navigation__container{color:#1e1e1e;background-color:#fff;min-width:200px}.items-justified-left>ul{justify-content:flex-start}.items-justified-center>ul{justify-content:center}.items-justified-right>ul{justify-content:flex-end}.items-justified-space-between>ul{justify-content:space-between}.wp-block-navigation-link{display:flex;align-items:center;position:relative;margin:0}.wp-block-navigation-link .wp-block-navigation__container:empty{display:none}.wp-block-navigation__container{list-style:none;margin:0;padding-left:0;display:flex;flex-wrap:wrap}.is-vertical .wp-block-navigation__container{display:block}.has-child>.wp-block-navigation-link__content{padding-right:.5em}.has-child .wp-block-navigation__container{border:1px solid rgba(0,0,0,.15);background-color:inherit;color:inherit;position:absolute;left:0;top:100%;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;z-index:2;opacity:0;transition:opacity .1s linear;visibility:hidden}.has-child .wp-block-navigation__container>.wp-block-navigation-link>.wp-block-navigation-link__content{flex-grow:1}.has-child .wp-block-navigation__container>.wp-block-navigation-link>.wp-block-navigation-link__submenu-icon{padding-right:.5em}@media (min-width:782px){.has-child .wp-block-navigation__container{left:1.5em}.has-child .wp-block-navigation__container .wp-block-navigation__container{left:100%;top:-1px}.has-child .wp-block-navigation__container .wp-block-navigation__container:before{content:"";position:absolute;right:100%;height:100%;display:block;width:.5em;background:transparent}.has-child .wp-block-navigation__container .wp-block-navigation-link__submenu-icon svg{transform:rotate(0)}}.has-child:hover{cursor:pointer}.has-child:hover>.wp-block-navigation__container{visibility:visible;opacity:1;display:flex;flex-direction:column}.has-child:focus-within{cursor:pointer}.has-child:focus-within>.wp-block-navigation__container{visibility:visible;opacity:1;display:flex;flex-direction:column}.wp-block-navigation[style*=text-decoration] .wp-block-navigation-link,.wp-block-navigation[style*=text-decoration] .wp-block-navigation-link__content,.wp-block-navigation[style*=text-decoration] .wp-block-navigation-link__content:active,.wp-block-navigation[style*=text-decoration] .wp-block-navigation-link__content:focus,.wp-block-navigation[style*=text-decoration] .wp-block-navigation__container{text-decoration:inherit}.wp-block-navigation:not([style*=text-decoration]) .wp-block-navigation-link__content,.wp-block-navigation:not([style*=text-decoration]) .wp-block-navigation-link__content:active,.wp-block-navigation:not([style*=text-decoration]) .wp-block-navigation-link__content:focus{text-decoration:none}.wp-block-navigation-link__content{color:inherit;padding:.5em 1em}.wp-block-navigation-link__content+.wp-block-navigation-link__content{padding-top:0}.has-text-color .wp-block-navigation-link__content{color:inherit}.wp-block-navigation-link__label{word-break:normal;overflow-wrap:break-word}.wp-block-navigation-link__submenu-icon{height:inherit;padding:.375em 1em .375em 0}.wp-block-navigation-link__submenu-icon svg{fill:currentColor}@media (min-width:782px){.wp-block-navigation-link__submenu-icon svg{transform:rotate(90deg)}}.is-small-text{font-size:.875em}.is-regular-text{font-size:1em}.is-large-text{font-size:2.25em}.is-larger-text{font-size:3em}.has-drop-cap:not(:focus):first-letter{float:left;font-size:8.4em;line-height:.68;font-weight:100;margin:.05em .1em 0 0;text-transform:uppercase;font-style:normal}p.has-background{padding:1.25em 2.375em}p.has-text-color a{color:inherit}.wp-block-post-author{display:flex;flex-wrap:wrap}.wp-block-post-author__byline{width:100%;margin-top:0;margin-bottom:0;font-size:.5em}.wp-block-post-author__avatar{margin-right:1em}.wp-block-post-author__bio{margin-bottom:.7em;font-size:.7em}.wp-block-post-author__content{flex-grow:1;flex-basis:0}.wp-block-post-author__name{font-weight:700;margin:0}.wp-block-post-comments-form input[type=submit]{color:#fff;background-color:#32373c;border:none;border-radius:1.55em;box-shadow:none;cursor:pointer;display:inline-block;font-size:1.125em;padding:.667em 1.333em;text-align:center;text-decoration:none;overflow-wrap:break-word}.wp-block-post-comments-form input[type=submit]:active,.wp-block-post-comments-form input[type=submit]:focus,.wp-block-post-comments-form input[type=submit]:hover,.wp-block-post-comments-form input[type=submit]:visited{color:#fff}.wp-block-preformatted{white-space:pre-wrap}.wp-block-pullquote{padding:3em 0;margin-left:0;margin-right:0;text-align:center}.wp-block-pullquote.alignleft,.wp-block-pullquote.alignright{max-width:420px}.wp-block-pullquote.alignleft p,.wp-block-pullquote.alignright p{font-size:1.25em}.wp-block-pullquote p{font-size:1.75em;line-height:1.6}.wp-block-pullquote cite,.wp-block-pullquote footer{position:relative}.wp-block-pullquote .has-text-color a{color:inherit}.wp-block-pullquote:not(.is-style-solid-color){background:none}.wp-block-pullquote.is-style-solid-color{border:none}.wp-block-pullquote.is-style-solid-color blockquote{margin-left:auto;margin-right:auto;text-align:left;max-width:60%}.wp-block-pullquote.is-style-solid-color blockquote p{margin-top:0;margin-bottom:0;font-size:2em}.wp-block-pullquote.is-style-solid-color blockquote cite{text-transform:none;font-style:normal}.wp-block-pullquote cite{color:inherit}.wp-block-query-loop{max-width:100%;list-style:none;padding:0}.wp-block-query-loop li{clear:both}.wp-block-query-loop.is-flex-container{flex-direction:row;display:flex;flex-wrap:wrap}.wp-block-query-loop.is-flex-container li{margin:0 0 1.25em;width:100%}@media (min-width:600px){.wp-block-query-loop.is-flex-container li{margin-right:1.25em}.wp-block-query-loop.is-flex-container.is-flex-container.columns-2>li{width:calc(50% - .625em)}.wp-block-query-loop.is-flex-container.is-flex-container.columns-2>li:nth-child(2n){margin-right:0}.wp-block-query-loop.is-flex-container.is-flex-container.columns-3>li{width:calc(33.33333% - .83333em)}.wp-block-query-loop.is-flex-container.is-flex-container.columns-3>li:nth-child(3n){margin-right:0}.wp-block-query-loop.is-flex-container.is-flex-container.columns-4>li{width:calc(25% - .9375em)}.wp-block-query-loop.is-flex-container.is-flex-container.columns-4>li:nth-child(4n){margin-right:0}.wp-block-query-loop.is-flex-container.is-flex-container.columns-5>li{width:calc(20% - 1em)}.wp-block-query-loop.is-flex-container.is-flex-container.columns-5>li:nth-child(5n){margin-right:0}.wp-block-query-loop.is-flex-container.is-flex-container.columns-6>li{width:calc(16.66667% - 1.04167em)}.wp-block-query-loop.is-flex-container.is-flex-container.columns-6>li:nth-child(6n){margin-right:0}}.wp-block-query-pagination{display:flex;flex-direction:row;flex-wrap:wrap}.wp-block-query-pagination>.wp-block-query-pagination-next,.wp-block-query-pagination>.wp-block-query-pagination-numbers,.wp-block-query-pagination>.wp-block-query-pagination-previous{display:inline-block;margin-right:.5em;margin-bottom:.5em}.wp-block-query-pagination>.wp-block-query-pagination-next:last-child,.wp-block-query-pagination>.wp-block-query-pagination-numbers:last-child,.wp-block-query-pagination>.wp-block-query-pagination-previous:last-child{margin-right:0}.wp-block-quote.is-large,.wp-block-quote.is-style-large{margin-bottom:1em;padding:0 1em}.wp-block-quote.is-large p,.wp-block-quote.is-style-large p{font-size:1.5em;font-style:italic;line-height:1.6}.wp-block-quote.is-large cite,.wp-block-quote.is-large footer,.wp-block-quote.is-style-large cite,.wp-block-quote.is-style-large footer{font-size:1.125em;text-align:right}.wp-block-rss.wp-block-rss{box-sizing:border-box}.wp-block-rss.alignleft{margin-right:2em}.wp-block-rss.alignright{margin-left:2em}.wp-block-rss.is-grid{display:flex;flex-wrap:wrap;padding:0;list-style:none}.wp-block-rss.is-grid li{margin:0 1em 1em 0;width:100%}@media (min-width:600px){.wp-block-rss.columns-2 li{width:calc(50% - 1em)}.wp-block-rss.columns-3 li{width:calc(33.33333% - 1em)}.wp-block-rss.columns-4 li{width:calc(25% - 1em)}.wp-block-rss.columns-5 li{width:calc(20% - 1em)}.wp-block-rss.columns-6 li{width:calc(16.66667% - 1em)}}.wp-block-rss__item-author,.wp-block-rss__item-publish-date{display:block;color:#555;font-size:.8125em}.wp-block-search .wp-block-search__button{background:#f7f7f7;border:1px solid #ccc;padding:.375em .625em;color:#32373c;margin-left:.625em;word-break:normal}.wp-block-search .wp-block-search__button.has-icon{line-height:0}.wp-block-search .wp-block-search__button svg{min-width:1.5em;min-height:1.5em}.wp-block-search .wp-block-search__inside-wrapper{display:flex;flex:auto;flex-wrap:nowrap;max-width:100%}.wp-block-search .wp-block-search__label{width:100%}.wp-block-search .wp-block-search__input{flex-grow:1;min-width:3em;border:1px solid #949494}.wp-block-search.wp-block-search__button-only .wp-block-search__button{margin-left:0}.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper{padding:4px;border:1px solid #949494}.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input{border-radius:0;border:none;padding:0 0 0 .25em}.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:focus{outline:none}.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button{padding:.125em .5em}.wp-block-separator.is-style-wide{border-bottom-width:1px}.wp-block-separator.is-style-dots{background:none!important;border:none;text-align:center;max-width:none;line-height:1;height:auto}.wp-block-separator.is-style-dots:before{content:"···";color:currentColor;font-size:1.5em;letter-spacing:2em;padding-left:2em;font-family:serif}.wp-block-custom-logo{line-height:0}.wp-block-custom-logo .aligncenter{display:table}.wp-block-custom-logo.is-style-rounded img{border-radius:9999px}.wp-block-social-links{display:flex;flex-wrap:wrap;justify-content:flex-start;padding-left:0;padding-right:0;text-indent:0;margin-left:0}.wp-block-social-links .wp-social-link a,.wp-block-social-links .wp-social-link a:hover{text-decoration:none;border-bottom:0;box-shadow:none}.wp-block-social-links .wp-social-link.wp-social-link.wp-social-link{margin:4px 8px 4px 0}.wp-block-social-links .wp-social-link a{padding:.25em}.wp-block-social-links .wp-social-link svg{width:1em;height:1em}.wp-block-social-links.has-small-icon-size{font-size:16px}.wp-block-social-links,.wp-block-social-links.has-normal-icon-size{font-size:24px}.wp-block-social-links.has-large-icon-size{font-size:36px}.wp-block-social-links.has-huge-icon-size{font-size:48px}.wp-block-social-links.aligncenter{justify-content:center;display:flex}.wp-block-social-links.alignright{justify-content:flex-end}.wp-social-link{display:block;border-radius:9999px;transition:transform .1s ease;height:auto}@media (prefers-reduced-motion:reduce){.wp-social-link{transition-duration:0s}}.wp-social-link a{display:block;line-height:0;transition:transform .1s ease}.wp-social-link a,.wp-social-link a:active,.wp-social-link a:hover,.wp-social-link a:visited,.wp-social-link svg{color:currentColor;fill:currentColor}.wp-social-link:hover{transform:scale(1.1)}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link{background-color:#f0f0f0;color:#444}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-amazon{background-color:#f90;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-bandcamp{background-color:#1ea0c3;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-behance{background-color:#0757fe;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-codepen{background-color:#1e1f26;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-deviantart{background-color:#02e49b;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dribbble{background-color:#e94c89;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dropbox{background-color:#4280ff;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-etsy{background-color:#f45800;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-facebook{background-color:#1778f2;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-fivehundredpx{background-color:#000;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-flickr{background-color:#0461dd;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-foursquare{background-color:#e65678;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-github{background-color:#24292d;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-goodreads{background-color:#eceadd;color:#382110}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-google{background-color:#ea4434;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-instagram{background-color:#f00075;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-lastfm{background-color:#e21b24;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-linkedin{background-color:#0d66c2;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-mastodon{background-color:#3288d4;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-medium{background-color:#02ab6c;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-meetup{background-color:#f6405f;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-patreon{background-color:#ff424d;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pinterest{background-color:#e60122;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pocket{background-color:#ef4155;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-reddit{background-color:#fe4500;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-skype{background-color:#0478d7;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-snapchat{background-color:#fefc00;color:#fff;stroke:#000}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-soundcloud{background-color:#ff5600;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-spotify{background-color:#1bd760;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-telegram{background-color:#2aabee;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tiktok{background-color:#000;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tumblr{background-color:#011835;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitch{background-color:#6440a4;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitter{background-color:#1da1f2;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vimeo{background-color:#1eb7ea;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vk{background-color:#4680c2;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-wordpress{background-color:#3499cd;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-yelp{background-color:#d32422;color:#fff}.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-youtube{background-color:red;color:#fff}.wp-block-social-links.is-style-logos-only .wp-social-link{background:none;padding:4px}.wp-block-social-links.is-style-logos-only .wp-social-link-amazon{color:#f90}.wp-block-social-links.is-style-logos-only .wp-social-link-bandcamp{color:#1ea0c3}.wp-block-social-links.is-style-logos-only .wp-social-link-behance{color:#0757fe}.wp-block-social-links.is-style-logos-only .wp-social-link-codepen{color:#1e1f26}.wp-block-social-links.is-style-logos-only .wp-social-link-deviantart{color:#02e49b}.wp-block-social-links.is-style-logos-only .wp-social-link-dribbble{color:#e94c89}.wp-block-social-links.is-style-logos-only .wp-social-link-dropbox{color:#4280ff}.wp-block-social-links.is-style-logos-only .wp-social-link-etsy{color:#f45800}.wp-block-social-links.is-style-logos-only .wp-social-link-facebook{color:#1778f2}.wp-block-social-links.is-style-logos-only .wp-social-link-fivehundredpx{color:#000}.wp-block-social-links.is-style-logos-only .wp-social-link-flickr{color:#0461dd}.wp-block-social-links.is-style-logos-only .wp-social-link-foursquare{color:#e65678}.wp-block-social-links.is-style-logos-only .wp-social-link-github{color:#24292d}.wp-block-social-links.is-style-logos-only .wp-social-link-goodreads{color:#382110}.wp-block-social-links.is-style-logos-only .wp-social-link-google{color:#ea4434}.wp-block-social-links.is-style-logos-only .wp-social-link-instagram{color:#f00075}.wp-block-social-links.is-style-logos-only .wp-social-link-lastfm{color:#e21b24}.wp-block-social-links.is-style-logos-only .wp-social-link-linkedin{color:#0d66c2}.wp-block-social-links.is-style-logos-only .wp-social-link-mastodon{color:#3288d4}.wp-block-social-links.is-style-logos-only .wp-social-link-medium{color:#02ab6c}.wp-block-social-links.is-style-logos-only .wp-social-link-meetup{color:#f6405f}.wp-block-social-links.is-style-logos-only .wp-social-link-patreon{color:#ff424d}.wp-block-social-links.is-style-logos-only .wp-social-link-pinterest{color:#e60122}.wp-block-social-links.is-style-logos-only .wp-social-link-pocket{color:#ef4155}.wp-block-social-links.is-style-logos-only .wp-social-link-reddit{color:#fe4500}.wp-block-social-links.is-style-logos-only .wp-social-link-skype{color:#0478d7}.wp-block-social-links.is-style-logos-only .wp-social-link-snapchat{color:#fff;stroke:#000}.wp-block-social-links.is-style-logos-only .wp-social-link-soundcloud{color:#ff5600}.wp-block-social-links.is-style-logos-only .wp-social-link-spotify{color:#1bd760}.wp-block-social-links.is-style-logos-only .wp-social-link-telegram{color:#2aabee}.wp-block-social-links.is-style-logos-only .wp-social-link-tiktok{color:#000}.wp-block-social-links.is-style-logos-only .wp-social-link-tumblr{color:#011835}.wp-block-social-links.is-style-logos-only .wp-social-link-twitch{color:#6440a4}.wp-block-social-links.is-style-logos-only .wp-social-link-twitter{color:#1da1f2}.wp-block-social-links.is-style-logos-only .wp-social-link-vimeo{color:#1eb7ea}.wp-block-social-links.is-style-logos-only .wp-social-link-vk{color:#4680c2}.wp-block-social-links.is-style-logos-only .wp-social-link-wordpress{color:#3499cd}.wp-block-social-links.is-style-logos-only .wp-social-link-yelp{background-color:#d32422;color:#fff}.wp-block-social-links.is-style-logos-only .wp-social-link-youtube{color:red}.wp-block-social-links.is-style-pill-shape .wp-social-link{width:auto}.wp-block-social-links.is-style-pill-shape .wp-social-link a{padding-left:.66667em;padding-right:.66667em}.wp-block-spacer{clear:both}p.wp-block-subhead{font-size:1.1em;font-style:italic;opacity:.75}.wp-block-tag-cloud.aligncenter{text-align:center}.wp-block-tag-cloud.alignfull{padding-left:1em;padding-right:1em}.wp-block-table{overflow-x:auto}.wp-block-table table{width:100%}.wp-block-table .has-fixed-layout{table-layout:fixed;width:100%}.wp-block-table .has-fixed-layout td,.wp-block-table .has-fixed-layout th{word-break:break-word}.wp-block-table.aligncenter,.wp-block-table.alignleft,.wp-block-table.alignright{display:table;width:auto}.wp-block-table.aligncenter td,.wp-block-table.aligncenter th,.wp-block-table.alignleft td,.wp-block-table.alignleft th,.wp-block-table.alignright td,.wp-block-table.alignright th{word-break:break-word}.wp-block-table .has-subtle-light-gray-background-color{background-color:#f3f4f5}.wp-block-table .has-subtle-pale-green-background-color{background-color:#e9fbe5}.wp-block-table .has-subtle-pale-blue-background-color{background-color:#e7f5fe}.wp-block-table .has-subtle-pale-pink-background-color{background-color:#fcf0ef}.wp-block-table.is-style-stripes{border-spacing:0;border-collapse:inherit;background-color:transparent;border-bottom:1px solid #f0f0f0}.wp-block-table.is-style-stripes tbody tr:nth-child(odd){background-color:#f0f0f0}.wp-block-table.is-style-stripes.has-subtle-light-gray-background-color tbody tr:nth-child(odd){background-color:#f3f4f5}.wp-block-table.is-style-stripes.has-subtle-pale-green-background-color tbody tr:nth-child(odd){background-color:#e9fbe5}.wp-block-table.is-style-stripes.has-subtle-pale-blue-background-color tbody tr:nth-child(odd){background-color:#e7f5fe}.wp-block-table.is-style-stripes.has-subtle-pale-pink-background-color tbody tr:nth-child(odd){background-color:#fcf0ef}.wp-block-table.is-style-stripes td,.wp-block-table.is-style-stripes th{border-color:transparent}.wp-block-text-columns,.wp-block-text-columns.aligncenter{display:flex}.wp-block-text-columns .wp-block-column{margin:0 1em;padding:0}.wp-block-text-columns .wp-block-column:first-child{margin-left:0}.wp-block-text-columns .wp-block-column:last-child{margin-right:0}.wp-block-text-columns.columns-2 .wp-block-column{width:50%}.wp-block-text-columns.columns-3 .wp-block-column{width:33.33333%}.wp-block-text-columns.columns-4 .wp-block-column{width:25%}pre.wp-block-verse{font-family:inherit;overflow:auto;white-space:pre-wrap}.wp-block-video{margin-left:0;margin-right:0}.wp-block-video video{width:100%}@supports ((position:-webkit-sticky) or (position:sticky)){.wp-block-video [poster]{-o-object-fit:cover;object-fit:cover}}.wp-block-video.aligncenter{text-align:center}.wp-block-video figcaption{margin-top:.5em;margin-bottom:1em}.wp-block-post-featured-image a{display:inline-block}.wp-block-post-featured-image img{max-width:100%;height:auto}:root .has-pale-pink-background-color{background-color:#f78da7}:root .has-vivid-red-background-color{background-color:#cf2e2e}:root .has-luminous-vivid-orange-background-color{background-color:#ff6900}:root .has-luminous-vivid-amber-background-color{background-color:#fcb900}:root .has-light-green-cyan-background-color{background-color:#7bdcb5}:root .has-vivid-green-cyan-background-color{background-color:#00d084}:root .has-pale-cyan-blue-background-color{background-color:#8ed1fc}:root .has-vivid-cyan-blue-background-color{background-color:#0693e3}:root .has-vivid-purple-background-color{background-color:#9b51e0}:root .has-white-background-color{background-color:#fff}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-cyan-bluish-gray-background-color{background-color:#abb8c3}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-black-background-color{background-color:#000}:root .has-pale-pink-color{color:#f78da7}:root .has-vivid-red-color{color:#cf2e2e}:root .has-luminous-vivid-orange-color{color:#ff6900}:root .has-luminous-vivid-amber-color{color:#fcb900}:root .has-light-green-cyan-color{color:#7bdcb5}:root .has-vivid-green-cyan-color{color:#00d084}:root .has-pale-cyan-blue-color{color:#8ed1fc}:root .has-vivid-cyan-blue-color{color:#0693e3}:root .has-vivid-purple-color{color:#9b51e0}:root .has-white-color{color:#fff}:root .has-very-light-gray-color{color:#eee}:root .has-cyan-bluish-gray-color{color:#abb8c3}:root .has-very-dark-gray-color{color:#313131}:root .has-black-color{color:#000}:root .has-vivid-cyan-blue-to-vivid-purple-gradient-background{background:linear-gradient(135deg,#0693e3,#9b51e0)}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-light-green-cyan-to-vivid-green-cyan-gradient-background{background:linear-gradient(135deg,#7adcb4,#00d082)}:root .has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background:linear-gradient(135deg,#fcb900,#ff6900)}:root .has-luminous-vivid-orange-to-vivid-red-gradient-background{background:linear-gradient(135deg,#ff6900,#cf2e2e)}:root .has-very-light-gray-to-cyan-bluish-gray-gradient-background{background:linear-gradient(135deg,#eee,#a9b8c3)}:root .has-cool-to-warm-spectrum-gradient-background{background:linear-gradient(135deg,#4aeadc,#9778d1 20%,#cf2aba 40%,#ee2c82 60%,#fb6962 80%,#fef84c)}:root .has-blush-light-purple-gradient-background{background:linear-gradient(135deg,#ffceec,#9896f0)}:root .has-blush-bordeaux-gradient-background{background:linear-gradient(135deg,#fecda5,#fe2d2d 50%,#6b003e)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-luminous-dusk-gradient-background{background:linear-gradient(135deg,#ffcb70,#c751c0 50%,#4158d0)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-pale-ocean-gradient-background{background:linear-gradient(135deg,#fff5cb,#b6e3d4 50%,#33a7b5)}:root .has-electric-grass-gradient-background{background:linear-gradient(135deg,#caf880,#71ce7e)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root .has-link-color a{color:#00e;color:var(--wp--style--color--link,#00e)}.has-small-font-size{font-size:.8125em}.has-normal-font-size,.has-regular-font-size{font-size:1em}.has-medium-font-size{font-size:1.25em}.has-large-font-size{font-size:2.25em}.has-huge-font-size,.has-larger-font-size{font-size:2.625em}.has-text-align-center{text-align:center}.has-text-align-left{text-align:left}.has-text-align-right{text-align:right}#end-resizable-editor-section{display:none}.aligncenter{clear:both} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/c1bc93a584eb39bd9bffb166a5ecbdcc8e4757bb.00001306.json b/www/.content.EZtzwPjb/html/c1bc93a584eb39bd9bffb166a5ecbdcc8e4757bb.00001306.json new file mode 100644 index 0000000..68864d6 --- /dev/null +++ b/www/.content.EZtzwPjb/html/c1bc93a584eb39bd9bffb166a5ecbdcc8e4757bb.00001306.json @@ -0,0 +1 @@ +{"version":"1.0","provider_name":"HugoPoi","provider_url":"http:\/\/blog.hugopoi.net","author_name":"HugoPoi","author_url":"http:\/\/blog.hugopoi.net\/author\/hugopoi\/","title":"Installer Mac OS X Mavericks avec VirtualBox","type":"rich","width":600,"height":338,"html":"
                            Installer Mac OS X Mavericks avec VirtualBox<\/a><\/blockquote>\n + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +

                            Reflow Dell Inspiron 1546

                            +
                            Les choses n’ont pas beaucoup changé en terme d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un cadeau empoisonné de la belle-famille « Essaye de faire ce que tu peux pour récupérer mes photos, j’en rachèterais un ». Le pc portable en question était dans un état de mort certain.
                            + (suite…)
                            +
                            +
                            Par HugoPoi, il y a
                            +
                            + +
                            +
                            +
                            +
                            + +
                            +
                            + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/c441f22dd3d851f22a9b8297162223f70cdcc074.00000202.html b/www/.content.EZtzwPjb/html/c441f22dd3d851f22a9b8297162223f70cdcc074.00000202.html new file mode 100644 index 0000000..581ac2d --- /dev/null +++ b/www/.content.EZtzwPjb/html/c441f22dd3d851f22a9b8297162223f70cdcc074.00000202.html @@ -0,0 +1,679 @@ + + + + + + + + Installer Mac OS X Mavericks avec VirtualBox – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            +

                            Capture Installation Mac OS X MavericksComme Apple c’est des blaireaux et que j’avais besoin d’un environnement de développement pour iDaube. J’ai du me résoudre à installer un Mac OS X dans une machine virtuel.

                            +

                            Ce dont vous avez besoin :

                            + +

                            Moi je travail sous Linux Mint mais vous devriez réussir à faire les manipulations sous Windaube.

                            +

                            1) Préparer la clé pour pouvoir booter dans la VM

                            +

                            Au début j’ai essayer de convertir le .dmg en ISO avec un outil de conversion mais cela ne marche pas car l’opération doit endommager le système de boot mis en place par Niresh. Donc la seul solution que j’ai trouvé c’est de faire une clé USB comme indiqué par Niresh avec dd.

                            +

                            Sous Mint/ubuntu/debian :

                            +

                            Une façon simple sous Linux d’identifier votre clé usb c’est avec la commande « mount », cela va lister toutes les partitions monter avec les périphériques correspondants.

                            +
                            hugo@hugo-NB ~ $ mount
                            +/dev/sda2 on /boot type ext3 (rw)
                            +/dev/mapper/lmvg-home on /home type ext4 (rw)
                            +/dev/mapper/lmvg-var on /var type ext4 (rw,errors=remount-ro)
                            +/dev/sda1 on /boot/efi type vfat (rw)
                            +binfmt_misc on /proc/sys/fs/binfmt_misc type binfmt_misc (rw,noexec,nosuid,nodev)
                            +gvfsd-fuse on /run/user/hugo/gvfs type fuse.gvfsd-fuse (rw,nosuid,nodev,user=hugo)
                            +/dev/mapper/lmvg-games on /media/hugo/90d3426d-d8b2-4ba4-a7df-98363b9b40d9 type ext4 (rw,nosuid,nodev,uhelper=udisks2)
                            +/dev/sdb1 on /media/hugo/HugoKey type ext4
                            +

                            Moi ma clé usb c’est /dev/sdb. Donc après la commande pour balancer le dmg sur la clé :

                            +

                            ATTENTION LA COMMANDE DD ci-dessous peut casser votre système si vous le faites sur le mauvais périphérique.

                            +
                            hugo@hugo-NB ~ $ sudo umount /media/hugo/HugoKey
                            +hugo@hugo-NB ~ $ sudo dd if=mavericks.dmg of=/dev/sdb bs=1M
                            +

                            Sous Windaube

                            +

                            Je ne vais pas détailler la procédure mais vous avez 2 solutions, soit vous utilisez la commande dd disponible avec MinGW dans les outils Msys. Ou vous utilisez Win32DiskImager (je vous recommande cette solution qui est la plus simple).

                            +

                            2) Configurer votre VM dans VirtualBox

                            +

                            Voilà les paramètres que j’ai utilisé pour installer:

                            +
                              +
                            • OSType : Mac OSX 10.9 64bits
                            • +
                            • RAM : 2048Mo
                            • +
                            • Activer l’accélération Graphique 3D
                            • +
                            • Mémoire Vidéo : 128Mo
                            • +
                            • Désactiver l’EFI
                            • +
                            • VT activé
                            • +
                            • Pagination Imbriqué activé
                            • +
                            • IO-APIC activé
                            • +
                            • Horloge UTC désactivé
                            • +
                            • Son désactivé (uniquement pendant l’installation)
                            • +
                            • Réseau désactivé (uniquement pendant l’installation)
                            • +
                            • Un disque virtuel de 20 Go
                            • +
                            +

                            3) Booter sur la clé USB dans VirtualBox

                            +

                            Je n’ai pas réussi à booter sur la clé avec l’ajout d’un filtre USB dans la VM, donc la solution que j’ai trouvé sur le net est de créer un fichier lien de disque physique. Pour le créer c’est relativement simple :

                            +
                            hugo@hugo-NB ~ $ vboxmanage internalcommands createrawvmdk -filename usb.vmdk -rawdisk /dev/sdb
                            +

                            Une fois votre fichier vmdk créé vous pouvez l’ajouter dans votre VM comme un disque virtuel existant, prenez soins de mettre ce disque sur le port SATA 0 car VirtualBox ce base sur l’ordre des disques pour le boot. Moi j’ai eu des problèmes de droits avec mes périphériques USB donc j’ai exécuté la commande vboxmanage avec sudo puis j’ai aussi lancé virtualbox avec sudo.

                            +

                            Pour Windows la procédure plus en détaille est disponible sur ce blog.

                            +

                            4) Lancer l’installation dans VirtualBox

                            +

                            Vous lancez la vm et ça boot. Si vous avez une erreur du type Fatal impossible de trouver de quoi booter, vérifiez que vous avez bien mis la clé USB en disque SATA sur le port 0 et le disque virtuel sur le 1 ou plus. Moi ça été un peu long avant d’afficher le choix de la langue environ 60 secondes, cela doit être dû à la vérification de l’image d’installation. Au moment de choisir la partition d’installation, vous devez lancer l’outil de disque pour créer une partition sur le disque virtuel (dans le menu en haut), ensuite vous le fermez et l’installateur continu.

                            +

                            Pour information ma vm ne s’arrête pas correctement au niveau de l’affichage, je penses qu’il y a un problème de driver mais j’y connais que dalle en iDaube OSX. Une fois l’installation finit vous pouvez passer la connexion iCloud et laisser le script finir l’installation. Ensuite vous devez créer un utilisateur administrateur pour ne pas utiliser le compte root. Et je n’ai pas encore réussi à avoir du son peut-être en laissant activé pendant l’installation mais je sais que ça peut poser problème.

                            +

                            Les identifiants de connexion sont :

                            +
                              +
                            • login : root
                            • +
                            • mot de passe : niresh
                            • +
                            +

                            5) Configurer pour avoir une résolution correcte

                            +

                            Pour cela il faut éditer le fichier /Extra/com.chameleon.Boot.plist dans votre OS X fraichement installé et rajouter/éditer les balises suivantes :

                            +
                            <key>GraphicsEnabler</key>
                            +<string>y</string>
                            +<key>Graphics Mode</key>
                            +<string>1366x768x32</string>
                            +<key>Kernel Flags</key>
                            +<string>"Graphics Mode"="1366x768x32"</string>
                            +

                            Dans la balise string Kernel Flags, des flags sont surement déjà présent donc moi je les ai laissé, j’ai rajouter « Graphics Mode »= »1366x768x32 » à la fin.

                            +

                            Ensuite vous devez éditer votre fichier de configuration vbox avec les commandes suivantes :

                            +
                            hugo@hugo-NB ~ $ vboxmanage setextradata "MAC OS X" "CustomVideoMode1" "1366x768x32"
                            +hugo@hugo-NB ~ $ vboxmanage setextradata "MAC OS X" "GUI/CustomVideoMode1" "1366x768x32"
                            +

                            Voilà après c’est sans garantie de fonctionnement …

                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +

                            + 6 commentaires

                            +
                            + +
                            +
                            +
                            +
                            +

                            + sc + · 2 mars 2014 à 23 h 44 min +

                            +

                            Merci, excellent tuto ! En suivant les étapes ça passe tout seul.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Djow + · 5 mars 2014 à 16 h 50 min +

                            +

                            Salut et merci pour le tuto , je suis bloqué a l instal « missing bluetooth controller transport » tester différente manip mais rien y fais . Une idée?

                            + +
                            +
                            + + +
                            + +
                            +
                            +
                            +
                            +

                            + LeKingduWar + · 7 mars 2014 à 10 h 22 min +

                            +

                            Hugo stp il me demande un controlleur bluetooth.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + mac + · 7 mars 2014 à 14 h 03 min +

                            +

                            Thanks, I’m installing it right now. The usb key step wasnt necessary however, you can convert it directly from dmg to vdi with: « VBoxManage convertdd yourdmgfile.dmg yournewvdiimage.vdi ». Then boot from the converted .vdi file. Worked for me on Ubuntu 12.04 with Virtualbox 4.3.6.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Niamor + · 16 avril 2014 à 10 h 30 min +

                            +

                            Bonjour à tous,
                            +Effectivement, l’étape avec la clé USB n’est pas nécessaire.
                            +Il est tout à fait possible d’installer l’OS directement en bootant sur l’iso qui sera préalablement monté via le lecteur virtuel.
                            +En tout cas, merci pour le tuto et les sources.
                            +Bonne continuation

                            + +
                            +
                            + +
                            +
                            +
                            +

                            Laisser un commentaire

                            Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                            +
                            +
                            +

                            + +

                            +
                            +
                            +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            + + +
                            + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/c4b7bca21624e73ccb350385799adade885b92b9.00000540.html b/www/.content.EZtzwPjb/html/c4b7bca21624e73ccb350385799adade885b92b9.00000540.html new file mode 100644 index 0000000..b08aedc --- /dev/null +++ b/www/.content.EZtzwPjb/html/c4b7bca21624e73ccb350385799adade885b92b9.00000540.html @@ -0,0 +1,371 @@ + + + + + + + U36 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +

                            Asus U36 et OCZ Vertex 3 la suite

                            Après un mois d’attente auprès de Cdiscount, pour au final m’annoncer le remboursement de mon SSD Vertex 2 qui est mort subitement, j’ai donc décidé de commander un Vertex 3 qui va remplacer le mort au sein de mon Asus U36JC. Et pour ne pas l’ouvrir juste pour un banal remplacement de SSD j’ai décidé de remplacer par la même occasion la carte wifi, une Intel N-1000 par une Intel N-6320. Celle-ci disposant en plus du bluetooth. J’en ai donc profité pour prendre des photos supplémentaires du démontage pour compléter mon précédent article : Démontage d’un Asus U36. Vous pouvez d’abord lire mon ancien article avant d’attaquer celui-ci, je ne ferai qu’apporter des informations complémentaires pour le démontage. (suite…)

                            +
                            Par HugoPoi, il y a
                            +
                            + +
                            +
                            +
                            +
                            + +
                            +
                            + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/c4f3a25d0cbd8fc6e726f30b1eb706684f8ffd87.00000149.xml b/www/.content.EZtzwPjb/html/c4f3a25d0cbd8fc6e726f30b1eb706684f8ffd87.00000149.xml new file mode 100644 index 0000000..36db3bb --- /dev/null +++ b/www/.content.EZtzwPjb/html/c4f3a25d0cbd8fc6e726f30b1eb706684f8ffd87.00000149.xml @@ -0,0 +1,17 @@ + + + Commentaires sur : Liste de Noël + + http://blog.hugopoi.net/2012/11/18/liste-de-noel-2/ + Internet, Hardware et Bidouille + Mon, 22 Aug 2016 14:09:10 +0000 + hourly + 1 + https://wordpress.org/?v=4.6.1 + + diff --git a/www/.content.EZtzwPjb/html/c5371d334e2f595b54dd88affdfb840a9da794ed.00000037.html b/www/.content.EZtzwPjb/html/c5371d334e2f595b54dd88affdfb840a9da794ed.00000037.html new file mode 100644 index 0000000..380d1bc --- /dev/null +++ b/www/.content.EZtzwPjb/html/c5371d334e2f595b54dd88affdfb840a9da794ed.00000037.html @@ -0,0 +1,661 @@ + + + + + + + + GET to POST – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            +

                            Il est 00h16, comme d’habitude je suis en train de développer un truc useless pour passer le temps donc je vais le mettre histoire de dire que ça va peut-être servir à plus d’une personne.

                            +

                            Language : JavaScript

                            +

                            Dépendance : Aucune

                            +

                            Type d’exécution : Local

                            +

                            Description : Ce script sert à transformer une requête HTTP de type GET via URL en méthode POST.

                            +

                            Fonctionnement : Il prend les arguments passés en get dans l’url et les envois via un formulaire de type hidden créé à la volée.

                            +

                            Exemple : https://blog.hugopoi.net/wp-content/uploads/2010/12/script.html?urlserverpage=http://fr.php.net/search.php&pattern=test&lang=en&show=quickref

                            +

                            Download : Script Get to Post

                            +

                            Note: pour télécharge le fichier en lien ci-dessus faites un clic droit « enregistrer la cible sous ».

                            +
                            +
                            +
                            +
                            +
                            Catégories : DéveloppementNews
                            +
                            +
                            +
                            + + + + + + + + + +
                            +
                            +
                            +
                            +
                            +
                            +
                            +

                            + 9 commentaires

                            +
                            + +
                            +
                            +
                            +
                            +

                            + watchix + · 12 juillet 2011 à 17 h 50 min +

                            +

                            Merci mon bon Hugo :-)
                            +J’étais en train de chercher ce genre de script lorsque je suis tombé sur le blog de Camille Descombes, puis ensuite sur ton commentaire :-)
                            +Internet est petit dans le monde des développeurs ^^

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + mou7a + · 25 mai 2012 à 13 h 01 min +

                            +

                            bonjour, Je sais que l’article date un peu mais je n’arrive pas à récupérer la source elle n’est plus disponible merci!!!

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 14 juin 2012 à 23 h 00 min +

                              +

                              la source est dans le fichier HTML.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + houhou + · 10 juillet 2012 à 9 h 29 min +

                            +

                            Bonjour HugoPoi;
                            +j’ai besoin du script pour récupérer le contenu d’une div généré en js,l’envoyer à une autre page de traitement pour le convertir en pdf.c’est urgent,merci!!!

                            + +
                            +
                            + + +
                            + +
                            +
                            +
                            +
                            +

                            + Geolocalise Ip + · 25 avril 2014 à 10 h 42 min +

                            +

                            Bonjour,
                            +Merci beaucoup pour l’idée, mais ta page : http://blog.hugopoi.net/wp-content/uploads/2010/12/script.html est morte …

                            +

                            Quant à « houhou », il est formidable, je prendrai bien son adresse IP à celui là pour voir de quel pays il vient !!!! Grrr ….
                            +Bon c’était en 2012, il a dû changer de métiers depuis !

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 9 mai 2014 à 18 h 12 min +

                              +

                              Le lien n’est pas mort mais le script se lance même sans paramètres valide donc tu es redirigé quand tu clic.
                              +Fait un clic droit enregistrer sous.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Gab Wink + · 13 février 2015 à 0 h 06 min +

                            +

                            Merci, ceci m’a été utile (et c’est toujours cool de le dire).

                            + +
                            +
                            + +
                            +
                            +
                            +

                            Répondre à mou7a Annuler la réponse

                            Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                            +
                            +
                            +

                            + +

                            +
                            +
                            +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            + + +
                            + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/c574841d3252240b9908d7177aaec470eb9a9267.00000163.html b/www/.content.EZtzwPjb/html/c574841d3252240b9908d7177aaec470eb9a9267.00000163.html new file mode 100644 index 0000000..69fe602 --- /dev/null +++ b/www/.content.EZtzwPjb/html/c574841d3252240b9908d7177aaec470eb9a9267.00000163.html @@ -0,0 +1,869 @@ + + + + + + + + Réparer un Vidéoprojecteur Sony VPL-CX5 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            +

                            Bon les cocos, j’ai récupéré un vidéo projecteur Sony VPL-CX5 en état décédé. Comme je sais que c’est encore et toujours ce problème d’obsolescence programmée j’ai donc décidé de le réparer.

                            +

                            Sony VPL-CX5

                            +

                            Première étape, identifier la panne

                            +

                            Le vidéoprojecteur ne donnait aucun signe de vie, aucune led ne s’allume quand je l’ai branché rien du tout même pas un petit crépitement d’alimentation. Je pense a un problème d’alimentation mais rien est sur tant que je ne l’ai pas démonté. Mais avant le dévissage je vais quand même faire une recherche Google car le Internet il est grand et il est beau. J’ai trouvé un truc qui m’a mis la puce à l’oreille sans même avoir enlever la première visse, sur un forum quelconque que je n’arrive plus à retrouver, un mec dit qu’il a changé un composant (un certain MCZ3001) sur une des cartes d’alimentation, et le vidéoprojecteur remarchait.

                            +

                            Démontage

                            +

                            Sony VPL-CX5

                            +

                            J’ai donc commencé par enlever les quelques visses, puis démonter toutes les cartes une par une, une vrai galère. Pour m’aider j’ai trouvé le « manuel de service » (or Service Manual) que je mets a disposition ici même : sony_vpl-cx5_cs5_servicemanual. J’ai mis dans la suite les références des connecteurs pour les mesures.

                            +

                            1) Premier test vérifier le fusible sur la première carte d’alimentation GA, faire le test avec la carte débranché, j’ai utilisé un voltmètre sur la position test de résistance : test OK.

                            +

                            2) Deuxième test, vérifier la tension continu fournie par cette carte GA sur le connecteur de sortie CN2001 environ 380V DC, DONC FAIRE CECI AVEC PRÉCAUTION (je l’ai fait avec un voltmètre de merde à 5€) : test OK j’ai 380 Volt en sortie. Sur cette carte il y un gros condensateur de 400V donc faire TRÈS ATTENTION MÊME QUAND LA CARTE EST DÉBRANCHÉ DU SECTEUR.(j’ai vérifier le condensateur se décharge assez vite j’ai mesuré 4V 10 secondes après avoir débranché)

                            +

                            3) Maintenant test de la carte GB qui transforme le 400V continu en basse tension continu ici du 24V d’après le SM. Donc j’ai le point de mesure parfait, c’est le connecteur CN3201.

                            +
                            N'oubliez d'ouvrir le manuel de service ça donne des infos précieuses pour le dépannage

                            N’oubliez d’ouvrir le manuel de service ça donne des infos précieuses pour le dépannage

                            +

                            Plusieurs points pour tester le plus pratique étant le petit connecteur blanc de 3 broches qui fournit la masse et VCC 24V. Après mesure sur ce connecteur j’ai une tension stable mais pas du 24VDC, les composants n’ont pas l’air endommagés donc je vérifie à l’entrée du fameux MCZ3001 il est bien alimenté correctement mais ne sort pas 24VDC. Pas de condensateurs chimiques endommagés.

                            +

                            Donc la panne est certainement dû à ce composant, achetons-le !

                            +

                            Trouver le composant de rechange

                            +

                            Au début j’ai cherché chez des e-commerçant d’électronique comme Farnell,Conrad, etc pas trouvé en france, puis j’ai fait les marchants Anglais et je l’ai trouvé mais à 30€ frais de port inclus. Et comme un con j’avais oublié de faire Ebay : encore un coup des chinois 4.27€ avec le support DIP et les frais de port inclus OMFG j’adore la mondialisation. J’en ai pris 2 pour mois de 10€ et comme les chinois ils sont trop fort j’ai tout reçu en moins de 2 semaines.

                            +

                            Capture-ebay-mcz3001

                            +

                            Dés-soudage

                            +

                            Bon j’avais des fer à souder de merde et du coup c’est le #FAIL, j’ai pas réussi à dés-souder proprement, j’ai donc été obligé d’investir dans une merde à 10€ :

                            +

                            Fer à souderEnsuite j’ai finalement réussi à dés-souder :

                            +

                            Carte GB MCZ3001 dés-soudéEt il me semble que sur cette photo j’avais nettoyer avec du dissolvant.

                            +

                            Remontage

                            +

                            Alors je suis désolé mais je n’ai pas de photos pour le MCZ soudé car j’avais déjà remonté le projecteur. Les étapes :

                            +
                              +
                            1. Souder un support fourni (au cas ou ce fameux MCZ rendrais encore l’âme)
                            2. +
                            3. Placer un MCZ neuf dans le support
                            4. +
                            5. Relier la carte GA et GB ensemble
                            6. +
                            7. Brancher sur le 220V
                            8. +
                            9. Tester le 24VDC sur le connecteur CN3201
                            10. +
                            11. #WIN
                            12. +
                            13. Remonter le projecteur
                            14. +
                            15. Tester en vrai
                            16. +
                            17. #WIN2
                            18. +
                            +

                            Conclusion

                            +

                            Oui c’est un WIN d’une valeur 4€ mais je tiens à préciser que ça représente environ 10 heures de travail continu. Entre les recherches Google et la lecture de la documentation, les heures passés au démontage, les quelques fois ou je me suis arraché les cheveux et risquer ma vie avec un voltmètre à 5€.

                            +

                            Mon banc de test

                            +

                            Banc de test chez HugoLa table du salon 2Les Tofs

                            + + +
                            +
                            +
                            + +
                            +
                            + + + + + + + + + +
                            +
                            +
                            +
                            +
                            +
                            +
                            +

                            + 16 commentaires

                            +
                            + +
                            +
                            +
                            +
                            +

                            + Georg + · 30 janvier 2014 à 12 h 22 min +

                            +

                            Hello,
                            +dear Hugo, at first: HAVE MANY THANKS FOR YOUR VERY INTERESTING BLOG!!!

                            +

                            I also have a cx5 and try to repair it.

                            +

                            It has the same problems like your projector…

                            +

                            I’ve measured the CN2001 but in my power supply there are only 320 V (stable).
                            +Are you sure, that there have to be 380V?
                            +In the service manual, I didn’t find a value (either 320V nor 380V)

                            +

                            Best Regards
                            +Your Georg

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 21 février 2014 à 17 h 36 min +

                              +

                              Sorry to be so long to answer,
                              +320V seems to be OK, I have extrapolated the value from the schema ~ 220Vxrootsquare(2) but this depends of the quality of your current source. I think 320 will not impact the power for the next card.

                              +

                              Good repair !
                              +Thanks for the comment :-D

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + henri moine + · 2 février 2014 à 20 h 43 min +

                            +

                            Bonsoir,
                            +Merci beaucoup pour l’explication détaillée et les photos.
                            +Je vais pas tarder de m’attaquer à mon SONY VPL CS7 bizarrement inerte depuis quelques semaines…
                            +Bonne continuation !

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + florian + · 21 avril 2014 à 9 h 09 min +

                              +

                              Bonjour,
                              +Je possède également un sony VPL CS7, et depuis plusieurs mois il a quelques signes de faiblesses.

                              +

                              1) lorsque je le débranche du secteur et que je le rebranche, il faut que j’attende 24 à 48 h pour que le voyant on/off se mette à éclairer, donc je ne peux pas l’allumer pendant ce temps.

                              +

                              2) aujourd’hui j’ai beau le laisser brancher, aucun signe de vie plus rien ne s’allume.

                              +

                              As tu attaqué ton VPL, As tu trouvé quelque chose ?

                              +

                              Merci

                              + +
                              +
                              +
                                +
                                + +
                                +
                                +
                                +
                                +

                                + HugoPoi + · 9 mai 2014 à 17 h 50 min +

                                +

                                Le VPL que j’avais était en panne je l’ai réparé jusqu’à il y a 2 mois ou il retombé en panne. Ton problème d’allumage ressemble à un problème de condensateur cramé. tu peux regarder si tu en vois des gonflés en démontant.

                                + +
                                +
                                + +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Ghent + · 21 septembre 2014 à 12 h 48 min +

                            +

                            Bonjour,

                            +

                            Déjà, super tuto.
                            +Je rencontre un problème à priori similaire avec mon CX5: le bouton de mise sous tension n’est plus éclairé et il ne se passe rien quand j’appuie dessus.

                            +

                            Je me suis donc lancé, et j’ai démonté jusqu’à atteindre les cartes d’alimentation.
                            +J’ai mesuré donc au niveau du CN3201, et là j’ai 22V continu stable.
                            +D’où ma première question, ai-je le même problème que toi avec le MCZ3001, ou dois-je chercher autre part ?
                            +Faut-il 24V exactement ?

                            +

                            Ensuite, j’ai essayé de me rapprocher du composant lui-même, mais je ne sais pas où mesurer. Le diagramme indique le VC1 sur la patte 8, mais je ne sais pas où prendre la masse.
                            +Saurais-tu m’aider ?

                            +

                            J’ai enfin voulu tester la tension en sortie de la carte GB, le point 17V, mais même question, si je teste la patte 1 du connecteur, où prendre la masse pour vérifier qu’il y a bien 17V ?
                            +Cette partie est-elle alimentée malgré que l’appareil soit éteint ?

                            +

                            Dans tous les cas, j’ai commandé le MCZ3001D, mais je voudrais m’assurer qu’il est bien le responsable avant de le changer.

                            +

                            Merci d’avance pour tes réponses, et encore une fois, merci de partager ton travail !

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 26 septembre 2014 à 15 h 01 min +

                              +

                              Je penses que si tu as 22V sur CN3201 le problème est sûrement ailleurs. Même si cela ne coûte rien de changer le MCZ3001D si tu as de quoi dessouder proprement. Regarde sur le service manuel pour tester les autres tensions qui sortent de la carte après les partie d’isolement, de mémoire il y a 3,3 V et du 5V.

                              + +
                              +
                              +
                                +
                                + +
                                +
                                +
                                +
                                +

                                + Neckron + · 12 décembre 2014 à 21 h 32 min +

                                +

                                Bonsoir, je déterre un peu ce vpl-cx5 que je possède et que je vends !!!
                                +Je voie qu’il y a encore des personnes qui s’y intéresse.
                                +Je précise juste que le mien est en excellent état de marche, il y a la télécommande et qu’il n’a servi QUE 220 Heures. Lampe d’origine. Je cherchais pendant un temps un moyen de l’upgrader pour l’image, mais finalement…. je change…

                                + +
                                +
                                + +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Jean-Marie + · 31 décembre 2014 à 14 h 43 min +

                            +

                            Bonjour Hugo.
                            +Merci pour ton partage d’expérience.
                            +Moi aussi, j’ai un VPL-CS7 inerte comme tu dis. Pas la moindre led s’allume ou clignote quand je le branche.
                            +Je l’ai complètement démonté. Je soupçonne un composant sur le bloc d’alim.
                            +As-tu réparé le tien ?
                            +Merci.
                            +JM.

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 31 janvier 2015 à 15 h 13 min +

                              +

                              Moi j’ai bien réparé mon CX5 mais celui-ci est retombé en panne 6 mois plus tard. Cette fois-ci avec plus de composants endommagés :-(
                              +Bon courage pour les réparations.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Sorce + · 14 mars 2015 à 16 h 05 min +

                            +

                            Bonjour ,j’ai un vpl cs6 ,qui ne s’allume pas rien du tous j’ai suivi tes étape et sur le connecteur con 2001 et la 325v bizarre bon je relie la carte gb pour tester au borne du con 3201 et la 15v et sa retombe et sa remonte a 15v peut tu m aider cdt richard (pense tu que je doi changer le mcz)

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 29 avril 2015 à 16 h 18 min +

                              +

                              Vérifiez les autres tensions en sortie de la carte GB, de mémoire il doit y avoir 3,3 V du 5 V et du 15V. Si tout est OK, la carte-mère principale est peut-être endommagé et pas moyen de réparer sans changement.

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + Gilles + · 16 juin 2018 à 13 h 44 min +

                              +

                              Même chose que vous ?
                              +Avez-vous trouvé une solution ?
                              +Est-ce que c’est normal cette tension non stable ?

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Daoud Yacoub + · 20 octobre 2015 à 9 h 54 min +

                            +

                            Je remercie beaucoup l’equipe

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Daoud Yacoub + · 20 octobre 2015 à 10 h 02 min +

                            +

                            Aidez moi à depanner mon vidéo projecteur le tout ne s’allume pas ;jai démonté et nettoyer toutes les plaques alimentation et logique me rien ne se passe mais en toute sincérité si je peux avoir le document technique de réparation m’est indispensable

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 24 octobre 2015 à 13 h 39 min +

                              +

                              Les commentaires n’ont pas pour vocation d’être un forum :-)

                              + +
                              +
                              + +
                            + +
                            +
                            +
                            +

                            Répondre à henri moine Annuler la réponse

                            Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                            +
                            +
                            +

                            + +

                            +
                            +
                            +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            + + +
                            + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/c5813b2fedb1f5019b6c7256e4ba8d4670b35663.00000475.xml b/www/.content.EZtzwPjb/html/c5813b2fedb1f5019b6c7256e4ba8d4670b35663.00000475.xml new file mode 100644 index 0000000..92f31e4 --- /dev/null +++ b/www/.content.EZtzwPjb/html/c5813b2fedb1f5019b6c7256e4ba8d4670b35663.00000475.xml @@ -0,0 +1,43 @@ + + + obs – HugoPoi + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Mon, 22 Aug 2016 14:10:26 +0000 + fr-FR + hourly + 1 + https://wordpress.org/?v=4.6.1 + + Et si on faisait sans Twitch et sans Youtube + http://blog.hugopoi.net/2015/10/24/et-si-on-faisait-sans-twitch-et-sans-youtube/ + http://blog.hugopoi.net/2015/10/24/et-si-on-faisait-sans-twitch-et-sans-youtube/#respond + Sat, 24 Oct 2015 13:07:55 +0000 + + + + + + + + + + + + + + http://blog.hugopoi.net/?p=909 + Lire la suite »

                            ]]>
                            + http://blog.hugopoi.net/2015/10/24/et-si-on-faisait-sans-twitch-et-sans-youtube/feed/ + 0 +
                            +
                            +
                            diff --git a/www/.content.EZtzwPjb/html/c59fbec40b1992dd33c26ecb9e6d08ee36ec80ff.00000422.html b/www/.content.EZtzwPjb/html/c59fbec40b1992dd33c26ecb9e6d08ee36ec80ff.00000422.html new file mode 100644 index 0000000..17e5128 --- /dev/null +++ b/www/.content.EZtzwPjb/html/c59fbec40b1992dd33c26ecb9e6d08ee36ec80ff.00000422.html @@ -0,0 +1,379 @@ + + + + + + + HTPC – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +

                            Home Cinéma

                            Bientôt fini mais peut-être jamais terminé tellement il y a de boulot autour d’un système home-cinema complet et parfait. Cela fait bientôt deux semaines que je suis dans mes travaux et ma configuration HTPC. Première semaine, je suis parti de rien, aucun câble posé, pas de pc installé et pas de meuble. Du coup, le lundi, je suis allé à Ikea et j’ai trouvé à peu près ce que je voulais pour pas trop cher (120 € pour de l’aggloméré de merde). Le mardi, je venais de recevoir tout le matos, à savoir :

                            +
                              +
                            • Un Amplificateur Yamaha RX-671
                            • +
                            • Un kit d’enceinte Jamo 5.1
                            • +
                            • Un boitier Antec Remote black et les 2-3 composants qui vont bien
                            • +
                            +

                            Salon Wii

                            +

                             

                            + +
                            Par HugoPoi, il y a
                            +
                            + +
                            +
                            +
                            +
                            + +
                            +
                            + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/c640ba0796f3c7550f349ef7b4bb3471255aa781.00000367.html b/www/.content.EZtzwPjb/html/c640ba0796f3c7550f349ef7b4bb3471255aa781.00000367.html new file mode 100644 index 0000000..470701e --- /dev/null +++ b/www/.content.EZtzwPjb/html/c640ba0796f3c7550f349ef7b4bb3471255aa781.00000367.html @@ -0,0 +1,372 @@ + + + + + + + clignotements – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +

                            Réparations Samsung SyncMaster 2232BW

                            Allô docteur on a un problème,

                            +

                            En ce dimanche calme avant la fin de mes partiels, mon écran Samsung SyncMaster 2232BW commençait à faire des siennes. Celui-ci depuis un mois ou deux clignotait de façon systématique au démarrage, au début pendant seulement quelques secondes, puis au fur et à mesure, de plus en plus jusqu’à devoir attendre 10 minutes pour que je puisse l’utiliser. Après 3 ans et 4 mois de bons et loyaux services, il voulait me quitter. J’ai tenté le support Samsung par email avec peu d’espoir car l’écran a dépassé sa garantie de 4 mois (oui oui les bâtards -> obsolescence programmée). Et donc j’ai eu le droit à un joli mail automatique me disant de contacter un numéro non surtaxé (mais avec combien de temps d’attente ?), ce que je n’ai pas fait car je n’avais pas envie de passer 30min au téléphone pour au final avoir un « On est désolé mais on ne peut rien faire pour vous car la garantie est dépassée, mais on peut envoyer votre écran en SAV pour faire un devis pour seulement 50 boules ». Concernant le support email de Samsung France, je leur donne une note de 0/20 puisque ce n’est pas un support mais une redirection vers le téléphone.

                            +

                            (suite…)

                            +
                            Par HugoPoi, il y a
                            +
                            + +
                            +
                            +
                            +
                            + +
                            +
                            + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/c692d15bd6e7f0d99ea8a00c37582a752c7c13cc.00001211.js b/www/.content.EZtzwPjb/html/c692d15bd6e7f0d99ea8a00c37582a752c7c13cc.00001211.js new file mode 100644 index 0000000..8c54758 --- /dev/null +++ b/www/.content.EZtzwPjb/html/c692d15bd6e7f0d99ea8a00c37582a752c7c13cc.00001211.js @@ -0,0 +1,2 @@ +/*! This file is auto-generated */ +window.addComment=function(p){var f,v,I,C=p.document,h={commentReplyClass:"comment-reply-link",commentReplyTitleId:"reply-title",cancelReplyId:"cancel-comment-reply-link",commentFormId:"commentform",temporaryFormId:"wp-temp-form-div",parentIdFieldId:"comment_parent",postIdFieldId:"comment_post_ID"},e=p.MutationObserver||p.WebKitMutationObserver||p.MozMutationObserver,i="querySelector"in C&&"addEventListener"in p,n=!!C.documentElement.dataset;function t(){r(),function(){if(!e)return;new e(o).observe(C.body,{childList:!0,subtree:!0})}()}function r(e){if(i&&(f=E(h.cancelReplyId),v=E(h.commentFormId),f)){f.addEventListener("touchstart",l),f.addEventListener("click",l);var t=function(e){if((e.metaKey||e.ctrlKey)&&13===e.keyCode)return v.removeEventListener("keydown",t),e.preventDefault(),v.submit.click(),!1};v&&v.addEventListener("keydown",t);for(var n,r=function(e){var t,n=h.commentReplyClass;e&&e.childNodes||(e=C);t=C.getElementsByClassName?e.getElementsByClassName(n):e.querySelectorAll("."+n);return t}(e),o=0,d=r.length;o + + + + + + Enroll MOK – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            +
                            +
                            +
                            +
                            + + + +

                            +
                            +
                            +
                            +
                            +

                            + 0 commentaire

                            +
                            +
                            +
                            +

                            Laisser un commentaire

                            Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                            +
                            +
                            +

                            + +

                            +
                            +
                            +
                            +
                            +
                            +
                            +
                            +
                            + +
                            + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/c870df6c304cffe51e0ecd6c0f7c5c470a8cd0f3.00000195.html b/www/.content.EZtzwPjb/html/c870df6c304cffe51e0ecd6c0f7c5c470a8cd0f3.00000195.html new file mode 100644 index 0000000..e115399 --- /dev/null +++ b/www/.content.EZtzwPjb/html/c870df6c304cffe51e0ecd6c0f7c5c470a8cd0f3.00000195.html @@ -0,0 +1,645 @@ + + + + + + + + Réparer et transformer une clé USB de 4Go en 8Go – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            +

                            J’étais en train de bosser sur un projet Java quand ma belle mère me demande si je peux regarder une clé USB Maxell 4GB qui ne marche plus.Clé USB Maxell

                            +

                            Je branche et la clé se connecte correctement mais pas de table des partitions et la clé indiquait 0 octet de disponible. Je tente un « diskpart.exe » celui-ci me dit « pas de media ». Autre symptôme la LED sur la clé restait continuellement allumé. Je commence à me dire que c’est mort puis comme d’habitude je fais une recherche Google et je tombe sur ça http://www.easytutoriel.com/flasher-reparer-cle-usb-memoire/(ce lien est à moitié mort la DB est cassée) . Donc je télécharge ChipGenius_v4_00_0022_RC3 et il reconnait ma clé il me dit que c’est un controleur Phison PS2251-67(PS2267) et une puce mémoire Toshiba de type TLC.ChipGenius4

                            +

                            Rien de bien exceptionnel je vais sur http://flashboot.ru/iflash/ je farfouille je trouve des noms de logiciels mais pas de lien téléchargement qui marche puis pour finir je vais sur http://dl.mydigit.net/special/up/phison.html, sans traduire je comprends vite que c’est une mine d’or ce site web, tout un tas de nom de logiciel récupérer chez les fabricants de puces en tout genre de quoi flasher n’importe quoi. J’arrive à ça http://rghost.net/39050058, je télécharge j’exécute GetInfo.exe  (sans les droits administrateur) qui me donne les même infos que ChipGenius.GetInfo V3.8.3.2

                            +

                            Après il y a deux soft MPALL_F1_8400_v360_0B.exe et MPALL_F2_v360_0B.exe . Au hasard je lance le premier (sans les droits administrateur) et je clic sur Update sans vraiment savoir ce que ça allait vraiment faire. Et la ça reconnait la clé dans la liste et surprise il me dit que la puce de mémoire est une 8Go au début je crois à une erreur.MPAll 8400 3.60.0B

                            +

                            N’ayant plus rien à perdre je clic sur Start et cela lance la procédure de flash du firmware du contrôleur, pas de documentation donc je peux pas vraiment savoir ce que ça fait réellement. DRAME ça affiche une erreur et un beau fail, je ne désespère pas je débranche rebranche la clé. Et c’est un ………………….WIN Windaube m’affiche le beau panneau voulez-vous formater cette merde. Deuxième WIN de taille, la clé est reconnu comme une clé de 8 Go LOL. Je mets plus de 4 Go de données dedans je fais un checksum des fichiers et ça marche !!!

                            +

                            L’erreur survenu à la fin du flash peu provenir du fait que je n’avais pas lancé l’exécutable avec des privilèges élevés donc le programme n’a pas pu effectuer le formatage.

                            +

                            Maintenant la grande question comment ce fait t’il que Maxell qui est l’assembleur de cet clé USB nous vend t’il des clé USB 4GB comme sont en réalité des clé de 8Go. J’ai trois début de réponse :

                            +

                            1) Soit Maxell se fout de notre gueule sur les prix et du coup au lieu d’acheter 4000 puces Toshiba de 4 Go et 4000 de puces de 8Go , Maxell achète 8000 puces de 8Go et bidouille les firmware des contrôleurs pour faire des clés USB de 4 et 8 Go.

                            +

                            2) Maxell utilise des puces 8Go qui ont des défauts d’usines et utilise uniquement une parti de la puce. Ce qui expliquerait les problèmes que j’ai rencontré avec cette clé au début.

                            +

                            3) Maxell utilise les 4 Go restant pour faire du over-provisioning pour les cellules de mémoire défectueuse en écriture étant donné que je penses que ce genre de mémoire n’a pas beaucoup de cycle d’écriture mais c’est très peu probable que ce type technologie propre aux SSD soit dans de vulgaire clé USB bas de gamme.

                            +
                            +
                            +
                            +
                            +
                            Catégories : BidouilleHardwareNews
                            +
                            +
                            +
                            + + + + + + + + + +
                            +
                            +
                            +
                            +
                            +
                            +
                            +

                            + 8 commentaires

                            +
                            + +
                            +
                            +
                            +
                            +

                            + 2Pi informatique + · 16 mai 2013 à 9 h 01 min +

                            +

                            Je n’avais jamais entendu parler de ce genre de manip, et du gain potentiel de capacité.

                            +

                            C’est assez étonnant, et je me demande si tous les constructeurs « brident » la capacité des clés usb …

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Amedoumba + · 22 juillet 2013 à 14 h 15 min +

                            +

                            Hello !
                            +Intéressant comme manip. J’ai une de mes clés USB avec le même genre de probleme. Je vais donc tester et voir si cela fonctionne. Je n’ai rien à perdre de toute façon.
                            +Merci en tout cas.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + diop + · 14 novembre 2013 à 15 h 11 min +

                            +

                            pour répéré cle usb

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + diop + · 14 novembre 2013 à 15 h 12 min +

                            +

                            salut pour ma cle usb

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + watchix + · 28 décembre 2013 à 10 h 40 min +

                            +

                            « File is deleted » :-(

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 4 janvier 2014 à 12 h 38 min +

                              +

                              à moitié réparer ;-)

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Jean + · 22 avril 2015 à 20 h 18 min +

                            +

                            Je penche pour ma part pour les raisons 1 et 2.

                            +

                            La première raison car le coût de la flash est diminuée plus on en commande, et aussi ça évite d’avoir deux chaines d’assemblage pour le PCB de la clé.

                            +

                            La seconde raison car c’est ce qui est pratiqué par pas mal de fabricants du domaine du semi-conducteur pour « créer » une gamme : AMD n’hésitait pas à vendre en entrée de gamme des processeurs amputés de certains coeurs défectueux. Et si il manque des processeurs défectueux … et bien on désactive quand même des coeurs !

                            +

                            Il y a aussi un paramètre à prendre en compte : la redevance sur la copie privée. Elle est proportionnelle à la capacité du support de stockage (cf. http://www.culturecommunication.gouv.fr/Politiques-ministerielles/Propriete-litteraire-et-artistique/Commission-pour-la-remuneration-de-la-copie-privee/Questions-pratiques/Les-montants-de-la-Remuneration-pour-Copie-Privee). Elle est de 0,64€ pour une clé de 4 Go, et 1,04€ pour une clé de 8 Go.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Pila + · 10 décembre 2015 à 21 h 45 min +

                            +

                            Salut,
                            +Je pense qu’il s’agit de puce MLC ( je crois que c’est le terme ? ), qui ont de très bonne performances sur la première moitié de leur capacité, et des très mauvaises sur la seconde moitié, car celle-ci est obtenu par réécriture sur la première partie.

                            +

                            En tout cas merci pour les différentes infos que tu as glanées !

                            + +
                            +
                            + +
                            +
                            +
                            +

                            Répondre à diop Annuler la réponse

                            Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                            +
                            +
                            +

                            + +

                            +
                            +
                            +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            + + +
                            + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/c985bd6dad151a89f0755ede071c07b7e0040f70.00000042.html b/www/.content.EZtzwPjb/html/c985bd6dad151a89f0755ede071c07b7e0040f70.00000042.html new file mode 100644 index 0000000..3813360 --- /dev/null +++ b/www/.content.EZtzwPjb/html/c985bd6dad151a89f0755ede071c07b7e0040f70.00000042.html @@ -0,0 +1,600 @@ + + + + + + + + Sapin de noël – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            +

                            Encore un script useless pour passer le temps mais celui-ci vous pouvez l’intégrer sur votre site/blog.

                            +

                            Language : JavaScript

                            +

                            Dépendance : jQuery

                            +

                            Type d’exécution : Local

                            +

                            Description : Ce script génère et affiche un sapin de noël avec boules animées de couleurs !

                            +

                            Fonctionnement : Remplit un tableau HTML puis exécute toutes les 500ms le changement de couleur.

                            +

                            Exemple :

                            +

                            Download : Script-Exemple

                            +

                            Source Code :

                            +
                            //fonction de génération de sapin
                            +function gen_sapin_noel(h_def,prob_ball){
                            + 
                            +//constantes vous pouvez les modifier et admirer !!! enjoy
                            +//var h_def = 10;
                            +//var prob_ball = 40;
                            + 
                            +//code génération du sapin
                            +var sapin_de_noel = "";
                            +var nbr_balls = 0;
                            +for(var i=0 ; i &lt; h_def ; i++){
                            +var nbr_stars = (i*2)-1 ;
                            +var stars = "";
                            +	for(var j=0 ; j &lt; nbr_stars ; j++) 	{ 		 		//ecriture du code pour ajouter les boules LOL 		if(Math.round(Math.random()*51) &gt; prob_ball){
                            +			nbr_balls++;
                            +			stars += "<span class="\&quot;balln&quot;+">●</span>";
                            +		}
                            +		else{
                            +			stars += "*";
                            +		}
                            +	}
                            + 
                            +sapin_de_noel += "
                            + 
                            +"+stars+"
                            + 
                            +";
                            + 
                            +}
                            +//pied de sapin
                            +var pied= "";
                            +for(var j=0 ; j &lt; Math.round(((h_def*2)-1)*0.25) ; j++){
                            +pied += "*";
                            +}
                            +for(var i=0 ; i &lt; Math.round(h_def*0.30) ; i++){
                            +	sapin_de_noel += "
                            + 
                            +"+pied+"
                            + 
                            +";
                            +}
                            + 
                            +ar_sapin_de_noel = [sapin_de_noel, nbr_balls] ;
                            + 
                            +return ar_sapin_de_noel;
                            +}
                            + 
                            +//main
                            +//Créer les sapins
                            +//Selectionne tous les
                            + 
                            +var i = 0;
                            +var max_balls = 0;
                            +while($(".sapin_noel")[i] != null){
                            +var sapin_gen = gen_sapin_noel(10,40);
                            +$(".sapin_noel")[i].innerHTML = sapin_gen[0];//je pense que c'est dégueulasse de l'écrire comme ça ...(innerHTML pour un table) je suis un Newbe en javascript
                            +if(sapin_gen[1] &gt; max_balls) max_balls = sapin_gen[1] ;
                            +i++;
                            +}
                            + 
                            +//fonction pour animer !
                            +function sapin_anim(){
                            +for(var i=1 ; i != max_balls+1 ; i++){
                            +//def une couleur aléatoire
                            +	$(".balln"+i).css("color" , '#'+Math.floor(Math.random()*16777215).toString(16));
                            +}
                            + }
                            + 
                            +//animation du sapin
                            +sapin_anim();
                            + var timer=setInterval("sapin_anim()", 500);
                            +
                            +
                            +
                            +
                            +
                            Catégories : Développement
                            +
                            +
                            +
                            + + + + + + + + + +
                            +
                            +
                            +
                            +
                            +
                            +
                            +

                            + 0 commentaire

                            +
                            +
                            +
                            +

                            Laisser un commentaire

                            Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                            +
                            +
                            +

                            + +

                            +
                            +
                            +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            + + +
                            + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/c996431fd98f3684674ed99dc1b69c64714d30e7.00000402.html b/www/.content.EZtzwPjb/html/c996431fd98f3684674ed99dc1b69c64714d30e7.00000402.html new file mode 100644 index 0000000..118b1af --- /dev/null +++ b/www/.content.EZtzwPjb/html/c996431fd98f3684674ed99dc1b69c64714d30e7.00000402.html @@ -0,0 +1,371 @@ + + + + + + + EPUB – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            + +
                            +
                            + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/ca3a50be7669ac051bb113d680300b37c2160454.00000353.xml b/www/.content.EZtzwPjb/html/ca3a50be7669ac051bb113d680300b37c2160454.00000353.xml new file mode 100644 index 0000000..a34dc3b --- /dev/null +++ b/www/.content.EZtzwPjb/html/ca3a50be7669ac051bb113d680300b37c2160454.00000353.xml @@ -0,0 +1,41 @@ + + + + HugoPoi » Boitier FT02 + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Sat, 14 Sep 2013 23:01:40 +0000 + fr-FR + hourly + 1 + http://wordpress.org/?v=3.6 + + Liste de Noël + http://blog.hugopoi.net/2012/11/18/liste-de-noel-2/ + http://blog.hugopoi.net/2012/11/18/liste-de-noel-2/#comments + Sun, 18 Nov 2012 21:00:38 +0000 + HugoPoi + + + + + + + + + + http://blog.hugopoi.net/?p=556 + Lire la suite »

                            ]]>
                            + http://blog.hugopoi.net/2012/11/18/liste-de-noel-2/feed/ + 0 +
                            +
                            +
                            diff --git a/www/.content.EZtzwPjb/html/ca59d96392be966fb4e45b6dd9ef8fc41b1a103f.00000094.html b/www/.content.EZtzwPjb/html/ca59d96392be966fb4e45b6dd9ef8fc41b1a103f.00000094.html new file mode 100644 index 0000000..7a9aa63 --- /dev/null +++ b/www/.content.EZtzwPjb/html/ca59d96392be966fb4e45b6dd9ef8fc41b1a103f.00000094.html @@ -0,0 +1,579 @@ + + + + + + + + Pascal Negre tu m’emmerdes – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            +


                            +
                            Bon sérieux, Pascal Negre il commence à me les briser sec. Après Deezer qui est devenu une belle merde car il n’y a plus que les Black Eyed Peas, Justin et Britney, la plateforme est devenue complètement payante et cela reste cher au vu du catalogue proposé. Puis l’année dernière j’ai pris un abonnement téléphonique chez Orange avec la vente forcée d’un compte premium Deezer dont malheureusement je ne me sers pas.

                            +

                            +

                            Peu de temps après, j’ai découvert Grooveshark, une plateforme un peu différente sur laquelle on peut ajouter sa musique perso. Vous cherchez un titre? Vous ne le trouvez pas ? Si vous l’avez dans votre ordinateur, vous pouvez l’envoyer sur la plateforme pour le rendre disponible à tous. Grooveshark se base sur un business model pub pour leur site web donc l’accès est gratuit et sans inscription. Pour l’accès depuis votre mobile, cela est payant via un abonnement mensuel de quelques euros. Mais après avoir fais mes premiers pas sur la plateforme, je me suis demandé comment Grooveshark pouvait obtenir les droits de diffusion pour tous les titres ajoutés par les utilisateurs. Cela est en faite impossible car il n’y a pas de catalogue unifié et donc chaque major et artiste fait valoir ses droits séparément. Donc au final, je me retrouve avec un Grooveshark qui se fait grignoter au fur et à mesure du temps, et qui va finir comme Deezer avec un catalogue incomplet et amputé. Et cela commence vraiment à m’emmerder car je n’ai pas envie de payer trois abonnements différents sur trois plateformes. En plus, ce sera vraiment pratique pour écouter de la musique en changeant d’application entre deux titres. Donc à moins que les majors se bougent la rondelle pour faire des vraies offres unifiées avec des tarifs raisonnables, je vais devoir monter ma plateforme musicale communautaire en ligne. Je pensais à un truc avec une interface simple style grooveshark, voici mes 2,3 idées :

                            +
                              +
                            • Interface Web en HTML5
                            • +
                            • Application mobile Android Iphone et cie
                            • +
                            • Accès avec inscription, le tout gratuit (genre tracker privé)
                            • +
                            • Alors j’en ai rêvé la nuit dernière, pour stocker la musique, je pensais à un système décentralisé basé sur BitTorrent. Comme ça, impossible de fermer les serveurs qui hébergent la base de données contenant les infos sur chaque titre.
                            • +
                            • En gros, il faudrait un client lourd avec un protocole spécifiquement développé pour l’occasion
                            • +
                            • Au niveau de la qualité, il nous faut du Flac et du MP3 (minimum 320kbits/s)
                            • +
                            • Donc un système d’ajout à la BDD avec vérification de l’intégrité par les utilisateurs (proposition d’écoute pour savoir si le titre que l’on ajoute est déjà présent)
                            • +
                            • Chaque utilisateur stocke sa bibliothèque musicale, et en plus éventuellement un cache de redondance d’une partie de la bibliothèque totale
                            • +
                            • Complétition progressive de la BDD par les utilisateurs
                            • +
                            +
                            Bref, je pense que je rêves à 15000km mais ce concept pourrait amener à construire la plus grosse base de  données musicales de l’Internet et faire chier les majors. Montrer que la culture et le partage sont plus important que la BMW de Pascal Negre et ses potes.
                            +

                             

                            +
                            +
                            +
                            +
                            +
                            Catégories : InternetNews
                            +
                            +
                            +
                            + + + + + + + + + +
                            +
                            +
                            +
                            +
                            +
                            +
                            +

                            + 4 commentaires

                            +
                            + +
                            +
                            +
                            +
                            +

                            + Thibault + · 7 janvier 2012 à 19 h 50 min +

                            +

                            Très bonne idée mais …
                            +Le seul hic dans tes 2,3 idées c’est le stockage via BitTorrent je crois :)

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 7 janvier 2012 à 19 h 57 min +

                              +

                              Pourquoi ? si on stock la musique sur les serveurs, ça va représenter une bande passante énorme et en plus vu qu’il n’y aura que de la « contrefaçon ». Je serais obligé de fermer mon service si je veux pas vendre mes 2 bras.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Thibault + · 8 janvier 2012 à 18 h 02 min +

                            +

                            A moins de tout passer en full-encrypt et d’autres méthodes pour cacher l’ip du client vis à vis du tracker (je ne suis pas un pro-torrent donc je dis p’tet des conneries)
                            +Dans ce cas bonjour l’appli bien lourde :)

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 8 janvier 2012 à 21 h 49 min +

                              +

                              Non tu ne dis pas de connerie bittorrent à besoin de l’ip public pour fonctionner, stocké au niveau du tracker. Le protocol bittorrent dispose déjà de chiffrement sur la partie pair à pair et aussi connexion au tracker qui peux se faire en SSL. Au niveau confidentialité, faire une plateforme uniquement avec client web ou bittorrent revient au même car le serveur peux stocké indéfiniment les ip qui s’y connectent dans les deux cas. Moi je suis pour les systèmes décentralisés qui sont la base d’Internet qui ont l’avantage de répartir la charge sur tous le réseau et pas provoqué d’engorgement. Appli bien lourde je ne sais pas, ça sera toujours moins lourd que iTunes lol

                              + +
                              +
                              + +
                            + +
                            +
                            +
                            +

                            Laisser un commentaire

                            Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                            +
                            +
                            +

                            + +

                            +
                            +
                            +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            + + +
                            + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/ca9bd612b2d5d41f8c805731bf2a21f812e90a64.00001255.js b/www/.content.EZtzwPjb/html/ca9bd612b2d5d41f8c805731bf2a21f812e90a64.00001255.js new file mode 100644 index 0000000..fa458d3 --- /dev/null +++ b/www/.content.EZtzwPjb/html/ca9bd612b2d5d41f8c805731bf2a21f812e90a64.00001255.js @@ -0,0 +1,5 @@ +/*! This file is auto-generated */ +// Source: wp-includes/js/twemoji.min.js +var twemoji=function(){"use strict";var f={base:"https://twemoji.maxcdn.com/v/13.0.0/",ext:".png",size:"72x72",className:"emoji",convert:{fromCodePoint:function(d){var u="string"==typeof d?parseInt(d,16):d;if(u<65536)return a(u);return a(55296+((u-=65536)>>10),56320+(1023&u))},toCodePoint:i},onerror:function(){this.parentNode&&this.parentNode.replaceChild(C(this.alt,!1),this)},parse:function(d,u){u&&"function"!=typeof u||(u={callback:u});return("string"==typeof d?function(d,b){return o(d,function(d){var u,f,c=d,e=N(d),a=b.callback(e,b);if(e&&a){for(f in c="")}return c})}:function(d,u){var f,c,e,a,b,t,r,n,o,i,s,l,p,m=function d(u,f){var c,e,a=u.childNodes,b=a.length;for(;b--;)c=a[b],3===(e=c.nodeType)?f.push(c):1!==e||"ownerSVGElement"in c||x.test(c.nodeName.toLowerCase())||d(c,f);return f}(d,[]),h=m.length;for(;h--;){for(e=!1,a=document.createDocumentFragment(),b=m[h],t=b.nodeValue,n=0;r=g.exec(t);){if((o=r.index)!==n&&a.appendChild(C(t.slice(n,o),!0)),s=r[0],l=N(s),n=o+s.length,p=u.callback(l,u),l&&p){for(c in(i=new Image).onerror=u.onerror,i.setAttribute("draggable","false"),f=u.attributes(s,l))f.hasOwnProperty(c)&&0!==c.indexOf("on")&&!i.hasAttribute(c)&&i.setAttribute(c,f[c]);i.className=u.className,i.alt=s,i.src=p,e=!0,a.appendChild(i)}i||a.appendChild(C(s,!1)),i=null}e&&(n":">","'":"'",'"':"""},g=/(?:\ud83d\udc68\ud83c\udffb\u200d\ud83e\udd1d\u200d\ud83d\udc68\ud83c[\udffc-\udfff]|\ud83d\udc68\ud83c\udffc\u200d\ud83e\udd1d\u200d\ud83d\udc68\ud83c[\udffb\udffd-\udfff]|\ud83d\udc68\ud83c\udffd\u200d\ud83e\udd1d\u200d\ud83d\udc68\ud83c[\udffb\udffc\udffe\udfff]|\ud83d\udc68\ud83c\udffe\u200d\ud83e\udd1d\u200d\ud83d\udc68\ud83c[\udffb-\udffd\udfff]|\ud83d\udc68\ud83c\udfff\u200d\ud83e\udd1d\u200d\ud83d\udc68\ud83c[\udffb-\udffe]|\ud83d\udc69\ud83c\udffb\u200d\ud83e\udd1d\u200d\ud83d\udc68\ud83c[\udffc-\udfff]|\ud83d\udc69\ud83c\udffb\u200d\ud83e\udd1d\u200d\ud83d\udc69\ud83c[\udffc-\udfff]|\ud83d\udc69\ud83c\udffc\u200d\ud83e\udd1d\u200d\ud83d\udc68\ud83c[\udffb\udffd-\udfff]|\ud83d\udc69\ud83c\udffc\u200d\ud83e\udd1d\u200d\ud83d\udc69\ud83c[\udffb\udffd-\udfff]|\ud83d\udc69\ud83c\udffd\u200d\ud83e\udd1d\u200d\ud83d\udc68\ud83c[\udffb\udffc\udffe\udfff]|\ud83d\udc69\ud83c\udffd\u200d\ud83e\udd1d\u200d\ud83d\udc69\ud83c[\udffb\udffc\udffe\udfff]|\ud83d\udc69\ud83c\udffe\u200d\ud83e\udd1d\u200d\ud83d\udc68\ud83c[\udffb-\udffd\udfff]|\ud83d\udc69\ud83c\udffe\u200d\ud83e\udd1d\u200d\ud83d\udc69\ud83c[\udffb-\udffd\udfff]|\ud83d\udc69\ud83c\udfff\u200d\ud83e\udd1d\u200d\ud83d\udc68\ud83c[\udffb-\udffe]|\ud83d\udc69\ud83c\udfff\u200d\ud83e\udd1d\u200d\ud83d\udc69\ud83c[\udffb-\udffe]|\ud83e\uddd1\ud83c\udffb\u200d\ud83e\udd1d\u200d\ud83e\uddd1\ud83c[\udffb-\udfff]|\ud83e\uddd1\ud83c\udffc\u200d\ud83e\udd1d\u200d\ud83e\uddd1\ud83c[\udffb-\udfff]|\ud83e\uddd1\ud83c\udffd\u200d\ud83e\udd1d\u200d\ud83e\uddd1\ud83c[\udffb-\udfff]|\ud83e\uddd1\ud83c\udffe\u200d\ud83e\udd1d\u200d\ud83e\uddd1\ud83c[\udffb-\udfff]|\ud83e\uddd1\ud83c\udfff\u200d\ud83e\udd1d\u200d\ud83e\uddd1\ud83c[\udffb-\udfff]|\ud83e\uddd1\u200d\ud83e\udd1d\u200d\ud83e\uddd1|\ud83d\udc6b\ud83c[\udffb-\udfff]|\ud83d\udc6c\ud83c[\udffb-\udfff]|\ud83d\udc6d\ud83c[\udffb-\udfff]|\ud83d[\udc6b-\udc6d])|(?:\ud83d[\udc68\udc69]|\ud83e\uddd1)(?:\ud83c[\udffb-\udfff])?\u200d(?:\u2695\ufe0f|\u2696\ufe0f|\u2708\ufe0f|\ud83c[\udf3e\udf73\udf7c\udf84\udf93\udfa4\udfa8\udfeb\udfed]|\ud83d[\udcbb\udcbc\udd27\udd2c\ude80\ude92]|\ud83e[\uddaf-\uddb3\uddbc\uddbd])|(?:\ud83c[\udfcb\udfcc]|\ud83d[\udd74\udd75]|\u26f9)((?:\ud83c[\udffb-\udfff]|\ufe0f)\u200d[\u2640\u2642]\ufe0f)|(?:\ud83c[\udfc3\udfc4\udfca]|\ud83d[\udc6e\udc70\udc71\udc73\udc77\udc81\udc82\udc86\udc87\ude45-\ude47\ude4b\ude4d\ude4e\udea3\udeb4-\udeb6]|\ud83e[\udd26\udd35\udd37-\udd39\udd3d\udd3e\uddb8\uddb9\uddcd-\uddcf\uddd6-\udddd])(?:\ud83c[\udffb-\udfff])?\u200d[\u2640\u2642]\ufe0f|(?:\ud83d\udc68\u200d\u2764\ufe0f\u200d\ud83d\udc8b\u200d\ud83d\udc68|\ud83d\udc68\u200d\ud83d\udc68\u200d\ud83d\udc66\u200d\ud83d\udc66|\ud83d\udc68\u200d\ud83d\udc68\u200d\ud83d\udc67\u200d\ud83d[\udc66\udc67]|\ud83d\udc68\u200d\ud83d\udc69\u200d\ud83d\udc66\u200d\ud83d\udc66|\ud83d\udc68\u200d\ud83d\udc69\u200d\ud83d\udc67\u200d\ud83d[\udc66\udc67]|\ud83d\udc69\u200d\u2764\ufe0f\u200d\ud83d\udc8b\u200d\ud83d[\udc68\udc69]|\ud83d\udc69\u200d\ud83d\udc69\u200d\ud83d\udc66\u200d\ud83d\udc66|\ud83d\udc69\u200d\ud83d\udc69\u200d\ud83d\udc67\u200d\ud83d[\udc66\udc67]|\ud83d\udc68\u200d\u2764\ufe0f\u200d\ud83d\udc68|\ud83d\udc68\u200d\ud83d\udc66\u200d\ud83d\udc66|\ud83d\udc68\u200d\ud83d\udc67\u200d\ud83d[\udc66\udc67]|\ud83d\udc68\u200d\ud83d\udc68\u200d\ud83d[\udc66\udc67]|\ud83d\udc68\u200d\ud83d\udc69\u200d\ud83d[\udc66\udc67]|\ud83d\udc69\u200d\u2764\ufe0f\u200d\ud83d[\udc68\udc69]|\ud83d\udc69\u200d\ud83d\udc66\u200d\ud83d\udc66|\ud83d\udc69\u200d\ud83d\udc67\u200d\ud83d[\udc66\udc67]|\ud83d\udc69\u200d\ud83d\udc69\u200d\ud83d[\udc66\udc67]|\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f|\ud83c\udff3\ufe0f\u200d\ud83c\udf08|\ud83c\udff4\u200d\u2620\ufe0f|\ud83d\udc15\u200d\ud83e\uddba|\ud83d\udc3b\u200d\u2744\ufe0f|\ud83d\udc41\u200d\ud83d\udde8|\ud83d\udc68\u200d\ud83d[\udc66\udc67]|\ud83d\udc69\u200d\ud83d[\udc66\udc67]|\ud83d\udc6f\u200d\u2640\ufe0f|\ud83d\udc6f\u200d\u2642\ufe0f|\ud83e\udd3c\u200d\u2640\ufe0f|\ud83e\udd3c\u200d\u2642\ufe0f|\ud83e\uddde\u200d\u2640\ufe0f|\ud83e\uddde\u200d\u2642\ufe0f|\ud83e\udddf\u200d\u2640\ufe0f|\ud83e\udddf\u200d\u2642\ufe0f|\ud83d\udc08\u200d\u2b1b)|[#*0-9]\ufe0f?\u20e3|(?:[\xa9\xae\u2122\u265f]\ufe0f)|(?:\ud83c[\udc04\udd70\udd71\udd7e\udd7f\ude02\ude1a\ude2f\ude37\udf21\udf24-\udf2c\udf36\udf7d\udf96\udf97\udf99-\udf9b\udf9e\udf9f\udfcd\udfce\udfd4-\udfdf\udff3\udff5\udff7]|\ud83d[\udc3f\udc41\udcfd\udd49\udd4a\udd6f\udd70\udd73\udd76-\udd79\udd87\udd8a-\udd8d\udda5\udda8\uddb1\uddb2\uddbc\uddc2-\uddc4\uddd1-\uddd3\udddc-\uddde\udde1\udde3\udde8\uddef\uddf3\uddfa\udecb\udecd-\udecf\udee0-\udee5\udee9\udef0\udef3]|[\u203c\u2049\u2139\u2194-\u2199\u21a9\u21aa\u231a\u231b\u2328\u23cf\u23ed-\u23ef\u23f1\u23f2\u23f8-\u23fa\u24c2\u25aa\u25ab\u25b6\u25c0\u25fb-\u25fe\u2600-\u2604\u260e\u2611\u2614\u2615\u2618\u2620\u2622\u2623\u2626\u262a\u262e\u262f\u2638-\u263a\u2640\u2642\u2648-\u2653\u2660\u2663\u2665\u2666\u2668\u267b\u267f\u2692-\u2697\u2699\u269b\u269c\u26a0\u26a1\u26a7\u26aa\u26ab\u26b0\u26b1\u26bd\u26be\u26c4\u26c5\u26c8\u26cf\u26d1\u26d3\u26d4\u26e9\u26ea\u26f0-\u26f5\u26f8\u26fa\u26fd\u2702\u2708\u2709\u270f\u2712\u2714\u2716\u271d\u2721\u2733\u2734\u2744\u2747\u2757\u2763\u2764\u27a1\u2934\u2935\u2b05-\u2b07\u2b1b\u2b1c\u2b50\u2b55\u3030\u303d\u3297\u3299])(?:\ufe0f|(?!\ufe0e))|(?:(?:\ud83c[\udfcb\udfcc]|\ud83d[\udd74\udd75\udd90]|[\u261d\u26f7\u26f9\u270c\u270d])(?:\ufe0f|(?!\ufe0e))|(?:\ud83c[\udf85\udfc2-\udfc4\udfc7\udfca]|\ud83d[\udc42\udc43\udc46-\udc50\udc66-\udc69\udc6e\udc70-\udc78\udc7c\udc81-\udc83\udc85-\udc87\udcaa\udd7a\udd95\udd96\ude45-\ude47\ude4b-\ude4f\udea3\udeb4-\udeb6\udec0\udecc]|\ud83e[\udd0c\udd0f\udd18-\udd1c\udd1e\udd1f\udd26\udd30-\udd39\udd3d\udd3e\udd77\uddb5\uddb6\uddb8\uddb9\uddbb\uddcd-\uddcf\uddd1-\udddd]|[\u270a\u270b]))(?:\ud83c[\udffb-\udfff])?|(?:\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f|\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc73\udb40\udc63\udb40\udc74\udb40\udc7f|\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc77\udb40\udc6c\udb40\udc73\udb40\udc7f|\ud83c\udde6\ud83c[\udde8-\uddec\uddee\uddf1\uddf2\uddf4\uddf6-\uddfa\uddfc\uddfd\uddff]|\ud83c\udde7\ud83c[\udde6\udde7\udde9-\uddef\uddf1-\uddf4\uddf6-\uddf9\uddfb\uddfc\uddfe\uddff]|\ud83c\udde8\ud83c[\udde6\udde8\udde9\uddeb-\uddee\uddf0-\uddf5\uddf7\uddfa-\uddff]|\ud83c\udde9\ud83c[\uddea\uddec\uddef\uddf0\uddf2\uddf4\uddff]|\ud83c\uddea\ud83c[\udde6\udde8\uddea\uddec\udded\uddf7-\uddfa]|\ud83c\uddeb\ud83c[\uddee-\uddf0\uddf2\uddf4\uddf7]|\ud83c\uddec\ud83c[\udde6\udde7\udde9-\uddee\uddf1-\uddf3\uddf5-\uddfa\uddfc\uddfe]|\ud83c\udded\ud83c[\uddf0\uddf2\uddf3\uddf7\uddf9\uddfa]|\ud83c\uddee\ud83c[\udde8-\uddea\uddf1-\uddf4\uddf6-\uddf9]|\ud83c\uddef\ud83c[\uddea\uddf2\uddf4\uddf5]|\ud83c\uddf0\ud83c[\uddea\uddec-\uddee\uddf2\uddf3\uddf5\uddf7\uddfc\uddfe\uddff]|\ud83c\uddf1\ud83c[\udde6-\udde8\uddee\uddf0\uddf7-\uddfb\uddfe]|\ud83c\uddf2\ud83c[\udde6\udde8-\udded\uddf0-\uddff]|\ud83c\uddf3\ud83c[\udde6\udde8\uddea-\uddec\uddee\uddf1\uddf4\uddf5\uddf7\uddfa\uddff]|\ud83c\uddf4\ud83c\uddf2|\ud83c\uddf5\ud83c[\udde6\uddea-\udded\uddf0-\uddf3\uddf7-\uddf9\uddfc\uddfe]|\ud83c\uddf6\ud83c\udde6|\ud83c\uddf7\ud83c[\uddea\uddf4\uddf8\uddfa\uddfc]|\ud83c\uddf8\ud83c[\udde6-\uddea\uddec-\uddf4\uddf7-\uddf9\uddfb\uddfd-\uddff]|\ud83c\uddf9\ud83c[\udde6\udde8\udde9\uddeb-\udded\uddef-\uddf4\uddf7\uddf9\uddfb\uddfc\uddff]|\ud83c\uddfa\ud83c[\udde6\uddec\uddf2\uddf3\uddf8\uddfe\uddff]|\ud83c\uddfb\ud83c[\udde6\udde8\uddea\uddec\uddee\uddf3\uddfa]|\ud83c\uddfc\ud83c[\uddeb\uddf8]|\ud83c\uddfd\ud83c\uddf0|\ud83c\uddfe\ud83c[\uddea\uddf9]|\ud83c\uddff\ud83c[\udde6\uddf2\uddfc]|\ud83c[\udccf\udd8e\udd91-\udd9a\udde6-\uddff\ude01\ude32-\ude36\ude38-\ude3a\ude50\ude51\udf00-\udf20\udf2d-\udf35\udf37-\udf7c\udf7e-\udf84\udf86-\udf93\udfa0-\udfc1\udfc5\udfc6\udfc8\udfc9\udfcf-\udfd3\udfe0-\udff0\udff4\udff8-\udfff]|\ud83d[\udc00-\udc3e\udc40\udc44\udc45\udc51-\udc65\udc6a\udc6f\udc79-\udc7b\udc7d-\udc80\udc84\udc88-\udca9\udcab-\udcfc\udcff-\udd3d\udd4b-\udd4e\udd50-\udd67\udda4\uddfb-\ude44\ude48-\ude4a\ude80-\udea2\udea4-\udeb3\udeb7-\udebf\udec1-\udec5\uded0-\uded2\uded5-\uded7\udeeb\udeec\udef4-\udefc\udfe0-\udfeb]|\ud83e[\udd0d\udd0e\udd10-\udd17\udd1d\udd20-\udd25\udd27-\udd2f\udd3a\udd3c\udd3f-\udd45\udd47-\udd76\udd78\udd7a-\uddb4\uddb7\uddba\uddbc-\uddcb\uddd0\uddde-\uddff\ude70-\ude74\ude78-\ude7a\ude80-\ude86\ude90-\udea8\udeb0-\udeb6\udec0-\udec2\uded0-\uded6]|[\u23e9-\u23ec\u23f0\u23f3\u267e\u26ce\u2705\u2728\u274c\u274e\u2753-\u2755\u2795-\u2797\u27b0\u27bf\ue50a])|\ufe0f/g,c=/\uFE0F/g,e=String.fromCharCode(8205),t=/[&<>'"]/g,x=/^(?:iframe|noframes|noscript|script|select|style|textarea)$/,a=String.fromCharCode;return f;function C(d,u){return document.createTextNode(u?d.replace(c,""):d)}function b(d,u){return"".concat(u.base,u.size,"/",d,u.ext)}function N(d){return i(d.indexOf(e)<0?d.replace(c,""):d)}function r(d){return u[d]}function n(){return null}function o(d,u){return String(d).replace(g,u)}function i(d,u){for(var f=[],c=0,e=0,a=0;a + + + + + + montage – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            + +
                            +
                            + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/cb4532fafc5872436bdbe6746018bb50edbb6a92.00000668.css b/www/.content.EZtzwPjb/html/cb4532fafc5872436bdbe6746018bb50edbb6a92.00000668.css new file mode 100644 index 0000000..8043bbf --- /dev/null +++ b/www/.content.EZtzwPjb/html/cb4532fafc5872436bdbe6746018bb50edbb6a92.00000668.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;background:#fff;border:1px +solid #f00;font-size:10pt;width:280px;padding:2px}span.wpcf7-not-valid-tip-no-ajax{color:#f00;font-size:10pt;display:block}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/cb50450099721c3ed4af6e2bf47c5f492b398a00.00000212.html b/www/.content.EZtzwPjb/html/cb50450099721c3ed4af6e2bf47c5f492b398a00.00000212.html new file mode 100644 index 0000000..d8b8ac2 --- /dev/null +++ b/www/.content.EZtzwPjb/html/cb50450099721c3ed4af6e2bf47c5f492b398a00.00000212.html @@ -0,0 +1,579 @@ + + + + + + + + Écran miraculé d’un Asus N53SN – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            +

                            Comme d’habitude tantine vient me voir pour me dire que son écran d’ordinateur ne marche plus. Le pc portable, un Asus N53SN d’un plus de 2 ans de services, présente un écran noir complètement éteint mais le portable fonctionne parfaitement sur un écran externe. Ni une ni deux je commence par démonter la bête pour récupérer la référence exacte du moniteur.

                            +

                            asusn53sn_open_lcd_front

                            +

                            Vidéos d’aide pour le démontage

                            +

                            +

                            +

                            Après avoir enlever les 2 vis en façade, vous pouvez dé-clipser le cache autour de l’écran par l’intérieur en faisant levier avec une lamelle en plastique. Commencé par les cotés, puis le bas de l’écran et finir par les deux angles du bas puis ce du haut. Cela vous évitera de casser le cache comme moi. asusn53sn_plastic_front_broken Une fois la façade enlevée il reste les différentes visses qui maintienne la dalle. Il faut ensuite retirer le plastique arrière (celui avec le logo Asus) pour pouvoir enlever les visses sur les cotés de l’écran. L’écran est connecté avec un seul connecteur vers la carte mère une liaison LVDS je suppose.asusn53sn_lcd_back2Je commence à regarder l’écran je vois quelques références, je commence à soulever les plastiques pour trouver des points de mesures. J’allume l’ordinateur et je vérifie quelques tensions pour voir si le fil ou le connecteur ne serait pas endommagé par la charnière, les mesures se révèlent payantes, j’ai des tensions stables de quelques volts. Mais comme vous pouvez le voir ci-dessus, il y a un petit connecteur sur la gauche qui m’a intrigué et en soulevant/décollant légèrement le plastique celui-ci c’est déconnecté.asusn53sn_connupbacklcdVoilà le fautif ! Une fois celui-ci remis en place l’écran était de nouveau en vie ! Donc une réparation pour 0€.

                            + + +
                            +
                            +
                            + +
                            +
                            + + + + + + + + + +
                            +
                            +
                            +
                            +
                            +
                            +
                            +

                            + 1 commentaire

                            +
                            + +
                            +
                            +
                            +
                            +

                            + Sylvain L. + · 30 août 2014 à 18 h 38 min +

                            +

                            excellent, merci !
                            +Exactement le même problème, suivi du tuto …
                            +ça fonctionne à merveille

                            + +
                            +
                            + +
                            +
                            +
                            +

                            Répondre à Sylvain L. Annuler la réponse

                            Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                            +
                            +
                            +

                            + +

                            +
                            +
                            +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            + + +
                            + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/cbc816166bd1d33a4fb006d103c5d54e8400bef2.00001272.xml b/www/.content.EZtzwPjb/html/cbc816166bd1d33a4fb006d103c5d54e8400bef2.00001272.xml new file mode 100644 index 0000000..78cd896 --- /dev/null +++ b/www/.content.EZtzwPjb/html/cbc816166bd1d33a4fb006d103c5d54e8400bef2.00001272.xml @@ -0,0 +1,7 @@ + +1.0HugoPoihttp://blog.hugopoi.netHugoPoihttp://blog.hugopoi.net/author/hugopoi/Sapin de noëlrich600338<blockquote class="wp-embedded-content"><a href="/2010/12/24/sapin-de-noel/">Sapin de noël</a></blockquote> +<script type='text/javascript'> +<!--//--><![CDATA[//><!-- + !function(a,b){"use strict";function c(){if(!e){e=!0;var a,c,d,f,g=-1!==navigator.appVersion.indexOf("MSIE 10"),h=!!navigator.userAgent.match(/Trident.*rv:11\./),i=b.querySelectorAll("iframe.wp-embedded-content");for(c=0;c<i.length;c++)if(d=i[c],!d.getAttribute("data-secret")){if(f=Math.random().toString(36).substr(2,10),d.src+="#?secret="+f,d.setAttribute("data-secret",f),g||h)a=d.cloneNode(!0),a.removeAttribute("security"),d.parentNode.replaceChild(a,d)}else;}}var d=!1,e=!1;if(b.querySelector)if(a.addEventListener)d=!0;if(a.wp=a.wp||{},!a.wp.receiveEmbedMessage)if(a.wp.receiveEmbedMessage=function(c){var d=c.data;if(d.secret||d.message||d.value)if(!/[^a-zA-Z0-9]/.test(d.secret)){var e,f,g,h,i,j=b.querySelectorAll('iframe[data-secret="'+d.secret+'"]'),k=b.querySelectorAll('blockquote[data-secret="'+d.secret+'"]');for(e=0;e<k.length;e++)k[e].style.display="none";for(e=0;e<j.length;e++)if(f=j[e],c.source===f.contentWindow){if(f.removeAttribute("style"),"height"===d.message){if(g=parseInt(d.value,10),g>1e3)g=1e3;else if(~~g<200)g=200;f.height=g}if("link"===d.message)if(h=b.createElement("a"),i=b.createElement("a"),h.href=f.getAttribute("src"),i.href=d.value,i.host===h.host)if(b.activeElement===f)a.top.location.href=d.value}else;}},d)a.addEventListener("message",a.wp.receiveEmbedMessage,!1),b.addEventListener("DOMContentLoaded",c,!1),a.addEventListener("load",c,!1)}(window,document); +//--><!]]> +</script><iframe sandbox="allow-scripts" security="restricted" src="/2010/12/24/sapin-de-noel/embed/" width="600" height="338" title="« Sapin de noël » — HugoPoi" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" class="wp-embedded-content"></iframe> diff --git a/www/.content.EZtzwPjb/html/cbd2c937199cfc48febafd32461e3e4b9c81f20d.00000009.html b/www/.content.EZtzwPjb/html/cbd2c937199cfc48febafd32461e3e4b9c81f20d.00000009.html new file mode 100644 index 0000000..b625361 --- /dev/null +++ b/www/.content.EZtzwPjb/html/cbd2c937199cfc48febafd32461e3e4b9c81f20d.00000009.html @@ -0,0 +1,290 @@ + + + + + + Anonymat I2P, TOR et les VPN | HugoPoi + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +

                            Anonymat I2P, TOR et les VPN

                            + +
                            +
                            + +

                            Intro

                            +

                            Mon Minitel à coté de (soon) mon Minitel 2.0

                            +

                            Suite aux articles de mon « confrère » Bluetouff, je voudrais apporter ma pierre à l’édifice anonymat sur internet. Cet article va donc parler de 2 concepts logiciels réseaux qui permettent de surfer de façon blindée sur Internet. Enfin pas tant que ça …

                            +

                            En premier lieu, je devais écrire cet article dans le but de vous donnez des conseils pour utiliser les réseaux anonymes, mais je suis rendu compte qu’il était urgent d’informer les gens sur les dangers que sont les VPN.

                            +

                            Suite à une conversation avec un ami (et même plusieurs), je leur disais que je téléchargeais sur le réseau Bitorrent. La grande question était : est-ce que tu utilises un VPN ? Je leur ai répondu que non. La première des raisons pour laquelle je n’utilise pas de VPN c’est que je n’ai pas d’argent. Aussi le fait que pour utiliser un VPN, il faut rediriger ses paquets ip, ils transitent donc par un tiers qui peut comme il le veut logger toutes vos connexions et trafics. Enfin si je suis une autorité qui veux écouter le trafic des gens (genre hadopi), bah j’ouvre un VPN « pas-hadopi.fr« , venez tous ici pour contourner hadopi, tout le monde il est beau, tout le monde il est gentil, voilà tous les pigeons dans mon filet. Pour dire aussi que le VPN c’est de l’anti-internet, cela revient à supprimer le plus grand intérêt d’internet, à savoir l’échange direct possible entre tous et publier, discuter de façon décentralisée. Ce qui m’inquiète le plus en ce moment, c’est cette nouvelle vague « cloud computing  » « web 3.0  » qui vient avec des périphériques qui ne servent à rien sans internet et des services hyper centralisés tel Facebook ou Youtube et Google. Je ne sais pas si les gens se rendent compte qu’ils mettent leurs vies entre les mains de sociétés privées dont ils n’ont que peu de contrôle.

                            +

                            Tor

                            +

                            The Onion Router, je vais pas écrire un roman sur le fonctionnement de ce système de routage anonymisant mais le principe est pas super compliqué. Au lieu de choisir d’acheminer votre trafic de façon la plus rapide et/ou la moins cher, ce réseau va acheminer votre trafic de façon aléatoire et cryptée. Attention le cryptage est présent qu’entre votre ordinateur et le dernier nœud, qui lui se connecte en clair sur le serveur que vous voulez atteindre. Donc il serait facile, comme tout le monde peut devenir nœud sur Tor, d’intercepter le trafic qui passe en clair quand on est le dernier maillon de la chaîne. Quand vous utilisez ce genre de service (TOR,I2P,VPN,Proxy,…) évitez d’aller vous connecter sur le site de votre banque. Et puis quel serait l’intérêt d’être anonyme si c’est pour vous identifier sur facebook, on marche sur la tête là non ?!

                            +

                            En surfant sur les pages du projet Tor, je suis tombé sur ça. Une page qui donne des retours d’expériences sur l’hébergement de nœuds relais pour Tor. Il est marrant de constater que les hébergeurs ne sont pas du tout fan de ce genre d’installation sur leur réseau. Cela montre que ce genre de système est suffisamment puissant pour faire peur, et permet d’effectuer sûrement des attaques ciblées de façon totalement anonyme.

                            +

                            I2P

                            +

                            Alors je vais être moins long sur l’explication du fonctionnement de I2P, ça rassemble beaucoup à Tor sauf que c’est plus orienté service et échange peer to peer. Vous pouvez lire cette page qui explique les différences entre les réseaux Tor et I2P.

                            +
                            + + +
                            + + +
                              +
                            1. +
                              + +
                              +

                              Yop Hugo, il est cool ton blog mais pour être tranquille avec HADOPI faut faire du wawa :)
                              +Ca peut être une idée d’article :p

                              +
                              + +
                              +
                            2. +
                            3. +
                              + +
                              +

                              quote : « le VPN c’est de l’anti-internet, cela revient à supprimer le plus grand intérêt d’internet, à savoir l’échange direct possible entre tous »…
                              +Un FTP sous SSL chez moi via mon VPN nordique va bien pour mes amis… Je ne comprends pas votre argument…
                              +Une plus fine explication?
                              +Merci.

                              +
                              + +
                              + +
                            4. +
                            5. +
                              + +
                              +

                              pour 4.90 euros par mois j utilise http://www.vpn-discount.com qui me procure une grande satisfaction au niveau fiabilite,securite,rapidite et surete….un super vpn

                              +
                              + +
                              +
                                +
                              • +
                                + +
                                +

                                tu ne peux pas vérifier si il log tes connexions … Mais bon si il est à l’étranger ça limite le traçage :)

                                +
                                + +
                                +
                              • +
                              +
                            6. +
                            + +
                            +

                            Répondre à Lamoroso ¬
                            Annuler la réponse

                            +
                            +

                            + +

                            +

                            NOTE - Vous pouvez utiliser les éléments et attributs HTML tags and attributes:
                            <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>

                            +

                            + +

                            +
                            +
                            +
                            +
                            + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/cc72d77253cd593496011e59172ae83c0e67de47.00000614.css b/www/.content.EZtzwPjb/html/cc72d77253cd593496011e59172ae83c0e67de47.00000614.css new file mode 100644 index 0000000..fe440fe --- /dev/null +++ b/www/.content.EZtzwPjb/html/cc72d77253cd593496011e59172ae83c0e67de47.00000614.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;background:#fff;border:1px +solid #f00;font-size:10pt;width:280px;padding:2px}span.wpcf7-not-valid-tip-no-ajax{color:#f00;font-size:10pt;display:block}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/cc7ab496a927c1a0299a5e963f4d157e13484bbc.00000219.html b/www/.content.EZtzwPjb/html/cc7ab496a927c1a0299a5e963f4d157e13484bbc.00000219.html new file mode 100644 index 0000000..beb935e --- /dev/null +++ b/www/.content.EZtzwPjb/html/cc7ab496a927c1a0299a5e963f4d157e13484bbc.00000219.html @@ -0,0 +1,542 @@ + + + + + + + + Pourquoi je suis sous Linux bordel ! – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            +

                            Début d’année 2017, 6 mois que j’ai pas écrit sur le blog ! Cette année j’ai pris une résolution un choix de merde je n’installerais plus Windaube que se soit pour moi ou pour la dépanne, les amis, la famille, mon chat … Bref pendant les fêtes j’avais de la maintenance à faire comme d’habitude fallait faire une réinstallation pour la famille « met moi Windows 7 ça me suffit et au moins il y tout qui marche dessus » ça faisait environ plus 1 an que j’avais pas installé de windaube. Je me dit que ça va me prendre une petite demi journée. J’ai mis plus d’une journée si on compte le temps de faire les mises à jour.

                            +

                            Une installation de Windows 7 dans le détails en vrai :

                            +
                              +
                            1. 30 minutes pour faire une clé USB bootable avec MBR qui marche pour installer
                            2. +
                            3. La partie facile installer Windows, tu clic clic environ 30 minutes et tu as bureau qui marche
                            4. +
                            5. Après faut installer les pilotes donc là soit tu fais le tour du web à la recherche de pilotes soit tu utilise Snappy driver : 2 Go de drivers à télécharger tu en a pour 2 heure avec une connexion ADSL des compagnes de 5Mbits/s.
                            6. +
                            7. Après tout les pilotes sont OK, il te faut faire les mises à jour Windows la première passe bien dure environ 2 heures.
                            8. +
                            9. Après la recherche des mises à jour plante tu ne sais pas pourquoi donc tu ouvre le gestionnaire des tache pour t’apercevoir que le service WSU plante et bouffe 25%CPU et 1Go de mémoire (svchost.exe). Donc tu fais le tour du web des forums pour enfin trouver l’update qui résout le problème. Donc là tu as perdu 2 heures.
                            10. +
                            11. Une fois le problème de Windows Update réglé tu relance les mises à jour et encore 1Go de mise à jour à télécharger, soit encore environ 2 heures d’installation au total.
                            12. +
                            13. Donc la tu es bien, tu es à jour, donc t’installe un antivirus celui de Microsoft est pas trop mal ça te prends 10 minutes.
                            14. +
                            15. Après il te faut quelques applications genre LibreOffice et Thunderbird donc encore environ une petite demi-heure de téléchargement et installation.
                            16. +
                            17. Ensuite reste l’activation de Windows là tu te dit c’est simple tu prends la clé d’activation OEM qui est sur le PC et tu valide par internet. Et bah non ça marche pas car tu as changé le disque-dur donc tu change l’empreinte matériel de la machine donc faut faire une activation par téléphone en tapant 50 numéros. Ce que je n’ai pas fait pour finir par tout simplement utiliser un crack pour gagner 30 minutes à essayer de convaincre les gens du support Microsoft de te réactiver ta licence.
                            18. +
                            19. Voilà tu as une machine qui marche jusqu’à la prochaine mise à jour foireuse de Crosoft ou un malware de merde.
                            20. +
                            +

                            Putain mais installer une distribution Linux type LinuxMint c’est tellement plus simple.

                            +

                            [Parce que moi aussi je peux écrire comme sur Topitapette et Facepalm]

                            +

                            Voilà mon top 10 des pourquoi je suis sous LINUX BORDEL

                            +
                              +
                            1. Tu as le choix, la diversité
                            2. +
                            3. Je peux tout contrôler et aller voir sous le capot ce qui se passe
                            4. +
                            5. Je peux tout modifier comme je veux moi ! NAH !
                            6. +
                            7. Je peux refiler les modifications que j’ai faites à mes amis, mon chat et Poutine, si je veux
                            8. +
                            9. Du coup là, je suis en confiance
                            10. +
                            11. Moi aussi j’ai le droit d’avoir une vie privé
                            12. +
                            13. Car Linux c’est plus rapide que Windaube
                            14. +
                            15. Je peux même jouer au jeux vidéos avec.
                            16. +
                            17. La ligne de commande c’est la vie genre $ cat list1 list2 | sort | uniq -u > lestrucsquisontpasendouble
                            18. +
                            19. Contrôler son informatique en 2017, c’est contrôler ça vie
                            20. +
                            +

                            [/Parce que moi aussi je peux écrire comme sur Topitapette et Facepalm]

                            +

                            IL EST GRAND TEMPS DE REPRENDRE LE CONTRÔLE SUR L’OUTIL INFORMATIQUE BORDEL.

                            +
                            +
                            +
                            +
                            +
                            Catégories : Aventure PCNews
                            +
                            +
                            +
                            + + + + + + + + + +
                            +
                            +
                            +
                            +
                            +
                            +
                            +

                            + 1 commentaire

                            +
                            + +
                            +
                            +
                            +
                            +

                            + Victor + · 28 décembre 2019 à 0 h 22 min +

                            +

                            Salut

                            +

                            Pour moi, c’est exactement le contraire. Une install de Windows 7 (avec mises à jour intégrées) = 30 minuites chrono ! Et côté périphériques, presque tout est plug and play.

                            +

                            Avec Linux, c’est la galère assurée ! Y’a pas une distribution qui a les mêmes fonctionnalités et pas une qui ne fonctionne complètement du premier coup ! C’est pire qu’un jeu de Lego.
                            +Y’a trop peu de périphériques qui sont pris en charge en natif.
                            +Il faut perdre son temps à compiler les drivers pour faire fonctionner de simples périphériques de base.
                            +Et tout ça, en ligne de commande bien sûr ! C’est gavant !
                            +On est bientôt en 2020 quand même…

                            + +
                            +
                            + +
                            +
                            +
                            +

                            Laisser un commentaire

                            Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                            +
                            +
                            +

                            + +

                            +
                            +
                            +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            + + +
                            + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/cd1bd3b5c9a2a085a03fa88065bd7e6e08e26fac.00000727.css b/www/.content.EZtzwPjb/html/cd1bd3b5c9a2a085a03fa88065bd7e6e08e26fac.00000727.css new file mode 100644 index 0000000..20df2bb --- /dev/null +++ b/www/.content.EZtzwPjb/html/cd1bd3b5c9a2a085a03fa88065bd7e6e08e26fac.00000727.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7 .screen-reader-response{position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);height:1px;width:1px;margin:0;padding:0;border:0}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{color:#f00;font-size:1em;display:block}.use-floating-validation-tip span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;border:1px +solid #f00;background:#fff;padding: .2em .8em}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/cd65fca4a7200fa6c6e7af6e2cba31f58d9c7bf7.00000488.html b/www/.content.EZtzwPjb/html/cd65fca4a7200fa6c6e7af6e2cba31f58d9c7bf7.00000488.html new file mode 100644 index 0000000..b9b9405 --- /dev/null +++ b/www/.content.EZtzwPjb/html/cd65fca4a7200fa6c6e7af6e2cba31f58d9c7bf7.00000488.html @@ -0,0 +1,364 @@ + + + + + + + Pirate – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            + +
                            +
                            + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/cd6df66439314e54d5c8311f3dddcdc67fca3507.00000644.css b/www/.content.EZtzwPjb/html/cd6df66439314e54d5c8311f3dddcdc67fca3507.00000644.css new file mode 100644 index 0000000..8043bbf --- /dev/null +++ b/www/.content.EZtzwPjb/html/cd6df66439314e54d5c8311f3dddcdc67fca3507.00000644.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;background:#fff;border:1px +solid #f00;font-size:10pt;width:280px;padding:2px}span.wpcf7-not-valid-tip-no-ajax{color:#f00;font-size:10pt;display:block}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/cdabf7c27fd8f82ea93b8f3177ed760187df1c31.00000479.html b/www/.content.EZtzwPjb/html/cdabf7c27fd8f82ea93b8f3177ed760187df1c31.00000479.html new file mode 100644 index 0000000..d5c841a --- /dev/null +++ b/www/.content.EZtzwPjb/html/cdabf7c27fd8f82ea93b8f3177ed760187df1c31.00000479.html @@ -0,0 +1,368 @@ + + + + + + + orange – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +

                            Coup de gueule

                            http://www.flickr.com/photos/wgyuri/

                            +

                            En ce jour, je passe mon coup de gueule  à tous les opérateurs de téléphonie mobile qui osent mettre la mention « internet illimité » dans leurs contrats alors qu’il n’en n’est rien. Premièrement, toutes les offres pour particuliers avec un tarif décent utilisent un système de quota de donnée avec le plus souvent deux issues possible une fois la limite atteinte : réduction de débit ou coupure complète. Après la deuxième limitation est la discrimination de contenu et de protocole effectué par les opérateurs. Pour résumer, le terme « Internet » pour les opérateur signifie accès HTTP et rien d’autre. Ensuite je ne parlerais pas du filtrage en temps réel effectué sur votre trafic avec usage certain du DPI… (suite…)

                            +
                            +
                            + +
                            +
                            +
                            +
                            + +
                            +
                            + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/cdb082e7295fd415893b3f67c16c37adf940718a.00000438.html b/www/.content.EZtzwPjb/html/cdb082e7295fd415893b3f67c16c37adf940718a.00000438.html new file mode 100644 index 0000000..9b28caf --- /dev/null +++ b/www/.content.EZtzwPjb/html/cdb082e7295fd415893b3f67c16c37adf940718a.00000438.html @@ -0,0 +1,372 @@ + + + + + + + Mac – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +

                            Trolling

                            Apple New MacBook Air

                            +

                            J’avais envie de me défouler un peu donc je vais troller sur la sortie du nouveau MacBook Air. Alors oui il est beau, il est léger, la finition est nikel Chrome. Mais c’est du Apple donc c’est cher le prix d’entrée est de 999€ ouch ! pour la version 11 pouces … (suite…)

                            +
                            Par HugoPoi, il y a
                            +
                            + +
                            +
                            +
                            +
                            + +
                            +
                            + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/cdca5695d2c0de87e49e2e45c8eaeb3b0d90dddb.00000680.css b/www/.content.EZtzwPjb/html/cdca5695d2c0de87e49e2e45c8eaeb3b0d90dddb.00000680.css new file mode 100644 index 0000000..20df2bb --- /dev/null +++ b/www/.content.EZtzwPjb/html/cdca5695d2c0de87e49e2e45c8eaeb3b0d90dddb.00000680.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7 .screen-reader-response{position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);height:1px;width:1px;margin:0;padding:0;border:0}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{color:#f00;font-size:1em;display:block}.use-floating-validation-tip span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;border:1px +solid #f00;background:#fff;padding: .2em .8em}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/ce1a792f12ac7fad56e335be414a4a9493df760c.00000610.css b/www/.content.EZtzwPjb/html/ce1a792f12ac7fad56e335be414a4a9493df760c.00000610.css new file mode 100644 index 0000000..20df2bb --- /dev/null +++ b/www/.content.EZtzwPjb/html/ce1a792f12ac7fad56e335be414a4a9493df760c.00000610.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7 .screen-reader-response{position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);height:1px;width:1px;margin:0;padding:0;border:0}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{color:#f00;font-size:1em;display:block}.use-floating-validation-tip span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;border:1px +solid #f00;background:#fff;padding: .2em .8em}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/ce40adf84139b3a0d26a4825abea949999b98cda.00000061.html b/www/.content.EZtzwPjb/html/ce40adf84139b3a0d26a4825abea949999b98cda.00000061.html new file mode 100644 index 0000000..697f282 --- /dev/null +++ b/www/.content.EZtzwPjb/html/ce40adf84139b3a0d26a4825abea949999b98cda.00000061.html @@ -0,0 +1,490 @@ + + + + + + + + Honte Télévisuelle – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            +

                            Je viens de déménager à Belfort et dans mon 19m² je n’ai pas de télévision mais je suis l’actualité via internet grâce à twitter. Je me suis aperçu que ces dernier mois, le nombre d’émissions abordant le sujet d’internet et compagnie était assez conséquent. Entre Envoyé Spécial, Capital et sans parler de 66 Minutes, on peut constater que la majorité raconte des choses fausses et/ou inexactes et même pire, c’est la stigmatisation d’internet avec pour résultat Internet == Voleurs-PédoNazis. Je ne sais pas si vous prenez conscience de la situation, mais dans le genre « je manipule les gens qui ne sont pas expert dans un domaine », je crois que certains « journalistes » pourraient commencer par faire de vraies enquêtes et aussi arrêter de faire dans le sensationnel.

                            +

                            Je voudrais aussi faire remarquer que l’état français n’est pas pour rien dans cette histoire, car dans le programme scolaire de collège, les notions d’utilisation de l’outil informatique sont associées avec le mot risque, je cite : « le collège les informe sur les droits de propriété et d’usage des ressources et sur les risques auxquels ils s’exposent ». Donc une des priorités de l’éducation nationale est d’enseigner les risques liés à l’outil informatique et à l’internet. En parlant de tête blonde voici des chiffres assez impressionnants du temps passé devant la télévision. Aussi, l’éducation nationale devrait revoir son programme technologique et son BII qui sont un peu en retard au niveau sensibilisation à Internet.

                            +

                            Je vous laisse admirer les différents sujets suivants :

                            +

                            Parents inconscients http://toute-une-histoire.france2.fr/?page=emission&emission=455

                            +

                            Internet, WikiLeaks, les dangers de la transparence http://info.france2.fr/complement-denquete/?page=accueil&id_rubrique=101

                            +

                            et http://reflets.info/france2-ceci-est-une-frappe-tactique-preventive/

                            +

                            Les nouveaux escrocs du web ou plutôt les pigeons du web http://envoye-special.france2.fr/envoye-special-3008-les-nouveaux-escrocs-du-web.html

                            +

                            http://www.m6bonus.fr/videos-emissions-4/videos-66_minutes-116/emission_du_06_03_2011/video-harcelement_sur_facebook_-63598.html

                            +

                            Bonus : Tous manipulés http://www.tsr.ch/video/emissions/specimen/2587688-tous-manipules.html#id=2584602

                            +

                            et une petite dernière pour la route http://www.dailymotion.com/video/xapr5m_christine-kelly-tf1-internet-un-rep_news (2009)

                            +

                             

                            +

                            Heureusement France 4 est la pour relever le niveau.

                            +

                             

                            +

                            PS : si vous en trouvez d’autres je suis preneur.

                            +
                            +
                            +
                            +
                            +
                            Catégories : News
                            +
                            +
                            +
                            + + + + + + + + + +
                            +
                            +
                            +
                            +
                            +
                            +
                            +

                            + 0 commentaire

                            +
                            +
                            +
                            +

                            Laisser un commentaire

                            Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                            +
                            +
                            +

                            + +

                            +
                            +
                            +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            + + +
                            + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/ce4e6f5dbed4301113bfaba244bda2ebf2b1dc6c.00000787.js b/www/.content.EZtzwPjb/html/ce4e6f5dbed4301113bfaba244bda2ebf2b1dc6c.00000787.js new file mode 100644 index 0000000..5247061 --- /dev/null +++ b/www/.content.EZtzwPjb/html/ce4e6f5dbed4301113bfaba244bda2ebf2b1dc6c.00000787.js @@ -0,0 +1 @@ +jQuery(document).ready(function(r){function n(t){var e=r(t);e.prop("disabled")||e.closest(".form-group").addClass("is-focused")}function e(t){var o=!1;(t.is(r.material.options.checkboxElements)||t.is(r.material.options.radioElements))&&(o=!0),t.closest("label").hover(function(){var t,e,a=r(this).find("input"),i=a.prop("disabled");o&&(t=r(this),e=i,(t.hasClass("checkbox-inline")||t.hasClass("radio-inline")?t:t.closest(".checkbox").length?t.closest(".checkbox"):t.closest(".radio")).toggleClass("disabled",e)),i||n(a)},function(){a(r(this).find("input"))})}function a(t){r(t).closest(".form-group").removeClass("is-focused")}r.expr[":"].notmdproc=function(t){return!r(t).data("mdproc")},r.material={options:{validate:!0,input:!0,ripples:!0,checkbox:!0,togglebutton:!0,radio:!0,arrive:!0,autofill:!1,withRipples:[".btn:not(.btn-link)",".card-image",".navbar a:not(.withoutripple)",".dropdown-menu a",".nav-tabs a:not(.withoutripple)",".withripple",".pagination li:not(.active):not(.disabled) a:not(.withoutripple)"].join(","),inputElements:"input.form-control, textarea.form-control, select.form-control",checkboxElements:".checkbox > label > input[type=checkbox], label.checkbox-inline > input[type=checkbox]",togglebuttonElements:".togglebutton > label > input[type=checkbox]",radioElements:".radio > label > input[type=radio], label.radio-inline > input[type=radio]"},checkbox:function(t){e(r(t||this.options.checkboxElements).filter(":notmdproc").data("mdproc",!0).after(''))},togglebutton:function(t){e(r(t||this.options.togglebuttonElements).filter(":notmdproc").data("mdproc",!0).after(''))},radio:function(t){e(r(t||this.options.radioElements).filter(":notmdproc").data("mdproc",!0).after(''))},input:function(t){r(t||this.options.inputElements).filter(":notmdproc").data("mdproc",!0).each(function(){var a=r(this),i=a.closest(".form-group");if(0!==i.length||"hidden"===a.attr("type")||a.attr("hidden")||a.parents(".pirate_forms").length||(a.wrap('
                            '),i=a.closest(".form-group")),0===i.length&&"hidden"!==a.attr("type")&&!a.attr("hidden")&&a.parents(".pirate_forms").length){var t=a.prev();"checkbox"===a.attr("type")&&(t=a.next()),a.add(t).wrapAll('
                            '),i=a.closest(".form-group")}a.attr("data-hint")&&(a.after('

                            '+a.attr("data-hint")+"

                            "),a.removeAttr("data-hint"));if(r.each({"input-lg":"form-group-lg","input-sm":"form-group-sm"},function(t,e){a.hasClass(t)&&(a.removeClass(t),i.addClass(e))}),a.hasClass("floating-label")){var e=a.attr("placeholder");a.attr("placeholder",null).removeClass("floating-label");var o=a.attr("id"),n="";o&&(n='for="'+o+'"'),i.addClass("label-floating"),a.after("")}null!==a.val()&&"undefined"!==a.val()&&""!==a.val()||i.addClass("is-empty"),0 '+e+" ").insertBefore(t)}},l.hestia={init:function(){this.navSearch(),this.getPortfolioModalData(),this.fixHeaderPadding(),this.headerSpacingFrontpage(),this.initCarousel(),this.initCarouselSwipe(),this.scrollToTop(),this.detectIos(),this.parallaxHeader(),this.addViewCart(),this.setSearchSizeInput(),this.setControlLabel(),this.styleDefaultSubscribeWidget(),this.fixElementorTemplates(),this.handleGutenbergAlignment()},fixElementorTemplates:function(){if(l(".elementor").length<=0)return!1;var t=l(".navbar").outerHeight();return l(".elementor-template-full-width header").css("margin-bottom",t),l(".page-template-template-fullwidth .main.classic-blog").css("margin-top",t),!1},navSearch:function(){l(".hestia-toggle-search").on("click",function(){l(".navbar").toggleClass("nav-searching");var t=l(".nav-searching");t.find(".hestia-nav-search").addClass("is-focused"),t.find(".hestia-nav-search").find(".search-field").focus(),l(this).find("i").fadeOut(200,function(){l(this).toggleClass("fa-search"),l(this).toggleClass("fa-times")}).fadeIn(200)})},getPortfolioModalData:function(){l("#portfolio").find('a[data-toggle="modal"]').on("click",function(t){t.preventDefault();var e=l(this).data("pid");l.ajax({url:requestpost.ajaxurl,type:"post",data:{action:"hestia_get_portfolio_item_data",pid:e},success:function(t){var e=l(".hestia-portfolio-modal");e.find(".modal-content").html(t),e.on("hidden.bs.modal",function(){l(this).find(".modal-content").html('
                            ')})}})})},fixHeaderPadding:function(){var t=l(".navbar-fixed-top").outerHeight(),e=window.matchMedia("(max-width: 600px)");if(l("#wpadminbar").length&&e.matches?(l(".wrapper.classic-blog").find(".main").css("margin-top",t-46),l(".carousel .item .container").css("padding-top",t+50-46),l(".home.page.page-template-default .navbar").hasClass("no-slider")&&l(".home.page.page-template-default .main").css("margin-top",t-46)):(l(".header-layout-classic-blog").find(".main").css("margin-top",t),l(".carousel .item .container").css("padding-top",t+50),l(".home.page.page-template-default .navbar").hasClass("no-slider")&&l(".home.page.page-template-default .main").css("margin-top",t)),768 div[id^=product].product").css("margin-top",-o)}else l(".page-header.header-small .container , .woocommerce.single-product .blog-post .col-md-12 > div[id^=product].product").removeAttr("style");l(".no-content").length&&l(".page-header.header-small").css("min-height",t+230)},headerSpacingFrontpage:function(){if((!this.inIframe()||!this.isMobileUA())&&0')})},setSearchSizeInput:function(){0'),t.find("p.sib-NAME-area").before(''),t.find(".form-group").each(function(){l(this).addClass("is-empty")})},handleGutenbergAlignment:function(){var t=l("body");if(t.hasClass("page-template-template-pagebuilder-full-width")||t.hasClass("page-template-template-pagebuilder-blank")||t.hasClass("page-template-template-page-sidebar"))return!1;if(0a?e&&(e=!1,t.removeClass("navbar-transparent"),t.addClass("navbar-not-transparent")):e||(e=!0,t.addClass("navbar-transparent"),t.removeClass("navbar-not-transparent")))},17))}},handleResponsiveDropdowns:function(){if(768 a .caret-wrap").on("click touchend",function(t){var e=l(this);t.preventDefault(),t.stopPropagation(),l(e).toggleClass("caret-open"),l(e).parent().siblings().toggleClass("open")})},smoothScroll:function(){l('.navbar a[href*="#"], a.btn[href*="#"]').click(function(){if("#"===l(this).attr("href"))return!1;if(location.pathname.replace(/^\//,"")===this.pathname.replace(/^\//,"")&&location.hostname===this.hostname){var t=l(this.hash);if((t=t.length?t:l("[name="+this.hash.slice(1)+"]")).length)return l("html,body").animate({scrollTop:t.offset().top-l.utilitiesFunctions.verifyNavHeight()},1200),l(".navbar .navbar-collapse").hasClass("in")&&l(".navbar .navbar-collapse.in").removeClass("in"),l("body").hasClass("menu-open")&&(l("body").removeClass("menu-open"),l(".navbar-collapse").css("height","0"),l(".navbar-toggle").attr("aria-expanded","false")),!1}})},activeParentLink:function(){l(".navbar .dropdown > a").click(function(){return"#"===l(this).attr("href")||(location.href=this.href),!1})},highlightMenu:function(){l(window).on("scroll",function(){if(l("body").hasClass("home")&&751<=l(window).width()){var n=l(window).scrollTop(),r=l(".navbar").outerHeight(),s="no";l("#carousel-hestia-generic, section").each(function(){var t="#"+l(this).attr("id"),e=l(this).offset().top,a=l(this).outerHeight(),i=e-r,o=e+a-r;if(n+l.utilitiesFunctions.verifyNavHeight()>=i&&n+l.utilitiesFunctions.verifyNavHeight()<=o)return s="yes",l("nav .on-section").removeClass("on-section"),l('nav a[href$="'+t+'"]').parent("li").addClass("on-section"),!1;"no"===s&&l("nav .on-section").removeClass("on-section")})}})},setBodyOverflow:function(){var t=l("#main-navigation");t.on("show.bs.collapse",function(){l("body").addClass("menu-open")}),t.on("hidden.bs.collapse",function(){l("body").removeClass("menu-open")})},repositionDropdowns:function(){var n=window.innerWidth;if(n<=768)return!1;var t=l(".dropdown-menu");return 0===t.length||l.each(t,function(t,e){var a=l(e),i=a.offset().left;/webkit.*mobile/i.test(navigator.userAgent)&&(i-=window.scrollX);var o=a.outerWidth();n<=i+o&&l(e).css({right:"100%",left:"auto"})}),!1}};var e=0;l.hestiaNavBarScroll={checkNavbarScrollPoint:function(){if(0===l(".navbar-header").length)return!1;if(768<=l.utilitiesFunctions.getWidth()){if(void 0!==l(".navbar-header").offset()){var t=l(".navbar-header").offset().top;/webkit.*mobile/i.test(navigator.userAgent)&&(t-=window.scrollY),e=t+l(".navbar-header").height()}0===l(".hestia_left.header-with-topbar").length&&0===l(".full-screen-menu.header-with-topbar").length||(e=40)}else e=0!==l(".header-with-topbar").length?40:0},addScrollClass:function(){l(window).on("scroll",function(){l(document).scrollTop()>=e?l(".navbar").addClass("navbar-scroll-point"):l(".navbar").removeClass("navbar-scroll-point")})}}}(jQuery),jQuery(document).ready(function(){jQuery.material.init(),jQuery.hestia.init(),jQuery.navigation.init(),jQuery.hestiaFeatures.initAnimations(),jQuery.hestiaFeatures.initTooltips(),jQuery.hestiaNavBarScroll.checkNavbarScrollPoint(),jQuery.hestiaNavBarScroll.addScrollClass()}),jQuery(window).load(function(){jQuery.hestiaFeatures.initMasonry(),jQuery.hestia.sidebarToggle()}),jQuery(window).resize(function(){jQuery.hestiaFeatures.initMasonry(),jQuery.hestia.fixHeaderPadding(),jQuery.hestia.headerSpacingFrontpage(),jQuery.hestia.handleGutenbergAlignment(),jQuery.hestiaNavBarScroll.checkNavbarScrollPoint(),jQuery.navigation.repositionDropdowns()}); \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/ce76fa3b57e5218c6288a5b2c33b10deac7adec3.00001289.xml b/www/.content.EZtzwPjb/html/ce76fa3b57e5218c6288a5b2c33b10deac7adec3.00001289.xml new file mode 100644 index 0000000..141721d --- /dev/null +++ b/www/.content.EZtzwPjb/html/ce76fa3b57e5218c6288a5b2c33b10deac7adec3.00001289.xml @@ -0,0 +1,7 @@ + +1.0HugoPoihttp://blog.hugopoi.netHugoPoihttp://blog.hugopoi.net/author/hugopoi/Vos données sauvegardéesrich600338<blockquote class="wp-embedded-content"><a href="/2011/12/09/vos-donnees-sauvegardees/">Vos données sauvegardées</a></blockquote> +<script type='text/javascript'> +<!--//--><![CDATA[//><!-- + !function(a,b){"use strict";function c(){if(!e){e=!0;var a,c,d,f,g=-1!==navigator.appVersion.indexOf("MSIE 10"),h=!!navigator.userAgent.match(/Trident.*rv:11\./),i=b.querySelectorAll("iframe.wp-embedded-content");for(c=0;c<i.length;c++)if(d=i[c],!d.getAttribute("data-secret")){if(f=Math.random().toString(36).substr(2,10),d.src+="#?secret="+f,d.setAttribute("data-secret",f),g||h)a=d.cloneNode(!0),a.removeAttribute("security"),d.parentNode.replaceChild(a,d)}else;}}var d=!1,e=!1;if(b.querySelector)if(a.addEventListener)d=!0;if(a.wp=a.wp||{},!a.wp.receiveEmbedMessage)if(a.wp.receiveEmbedMessage=function(c){var d=c.data;if(d.secret||d.message||d.value)if(!/[^a-zA-Z0-9]/.test(d.secret)){var e,f,g,h,i,j=b.querySelectorAll('iframe[data-secret="'+d.secret+'"]'),k=b.querySelectorAll('blockquote[data-secret="'+d.secret+'"]');for(e=0;e<k.length;e++)k[e].style.display="none";for(e=0;e<j.length;e++)if(f=j[e],c.source===f.contentWindow){if(f.removeAttribute("style"),"height"===d.message){if(g=parseInt(d.value,10),g>1e3)g=1e3;else if(~~g<200)g=200;f.height=g}if("link"===d.message)if(h=b.createElement("a"),i=b.createElement("a"),h.href=f.getAttribute("src"),i.href=d.value,i.host===h.host)if(b.activeElement===f)a.top.location.href=d.value}else;}},d)a.addEventListener("message",a.wp.receiveEmbedMessage,!1),b.addEventListener("DOMContentLoaded",c,!1),a.addEventListener("load",c,!1)}(window,document); +//--><!]]> +</script><iframe sandbox="allow-scripts" security="restricted" src="/2011/12/09/vos-donnees-sauvegardees/embed/" width="600" height="338" title="« Vos données sauvegardées » — HugoPoi" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" class="wp-embedded-content"></iframe> diff --git a/www/.content.EZtzwPjb/html/ceacf839fb1371dec47d3baf98e0e52640e189f6.00000159.html b/www/.content.EZtzwPjb/html/ceacf839fb1371dec47d3baf98e0e52640e189f6.00000159.html new file mode 100644 index 0000000..00de2c4 --- /dev/null +++ b/www/.content.EZtzwPjb/html/ceacf839fb1371dec47d3baf98e0e52640e189f6.00000159.html @@ -0,0 +1,869 @@ + + + + + + + + Réparer un Vidéoprojecteur Sony VPL-CX5 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            +

                            Bon les cocos, j’ai récupéré un vidéo projecteur Sony VPL-CX5 en état décédé. Comme je sais que c’est encore et toujours ce problème d’obsolescence programmée j’ai donc décidé de le réparer.

                            +

                            Sony VPL-CX5

                            +

                            Première étape, identifier la panne

                            +

                            Le vidéoprojecteur ne donnait aucun signe de vie, aucune led ne s’allume quand je l’ai branché rien du tout même pas un petit crépitement d’alimentation. Je pense a un problème d’alimentation mais rien est sur tant que je ne l’ai pas démonté. Mais avant le dévissage je vais quand même faire une recherche Google car le Internet il est grand et il est beau. J’ai trouvé un truc qui m’a mis la puce à l’oreille sans même avoir enlever la première visse, sur un forum quelconque que je n’arrive plus à retrouver, un mec dit qu’il a changé un composant (un certain MCZ3001) sur une des cartes d’alimentation, et le vidéoprojecteur remarchait.

                            +

                            Démontage

                            +

                            Sony VPL-CX5

                            +

                            J’ai donc commencé par enlever les quelques visses, puis démonter toutes les cartes une par une, une vrai galère. Pour m’aider j’ai trouvé le « manuel de service » (or Service Manual) que je mets a disposition ici même : sony_vpl-cx5_cs5_servicemanual. J’ai mis dans la suite les références des connecteurs pour les mesures.

                            +

                            1) Premier test vérifier le fusible sur la première carte d’alimentation GA, faire le test avec la carte débranché, j’ai utilisé un voltmètre sur la position test de résistance : test OK.

                            +

                            2) Deuxième test, vérifier la tension continu fournie par cette carte GA sur le connecteur de sortie CN2001 environ 380V DC, DONC FAIRE CECI AVEC PRÉCAUTION (je l’ai fait avec un voltmètre de merde à 5€) : test OK j’ai 380 Volt en sortie. Sur cette carte il y un gros condensateur de 400V donc faire TRÈS ATTENTION MÊME QUAND LA CARTE EST DÉBRANCHÉ DU SECTEUR.(j’ai vérifier le condensateur se décharge assez vite j’ai mesuré 4V 10 secondes après avoir débranché)

                            +

                            3) Maintenant test de la carte GB qui transforme le 400V continu en basse tension continu ici du 24V d’après le SM. Donc j’ai le point de mesure parfait, c’est le connecteur CN3201.

                            +
                            N'oubliez d'ouvrir le manuel de service ça donne des infos précieuses pour le dépannage

                            N’oubliez d’ouvrir le manuel de service ça donne des infos précieuses pour le dépannage

                            +

                            Plusieurs points pour tester le plus pratique étant le petit connecteur blanc de 3 broches qui fournit la masse et VCC 24V. Après mesure sur ce connecteur j’ai une tension stable mais pas du 24VDC, les composants n’ont pas l’air endommagés donc je vérifie à l’entrée du fameux MCZ3001 il est bien alimenté correctement mais ne sort pas 24VDC. Pas de condensateurs chimiques endommagés.

                            +

                            Donc la panne est certainement dû à ce composant, achetons-le !

                            +

                            Trouver le composant de rechange

                            +

                            Au début j’ai cherché chez des e-commerçant d’électronique comme Farnell,Conrad, etc pas trouvé en france, puis j’ai fait les marchants Anglais et je l’ai trouvé mais à 30€ frais de port inclus. Et comme un con j’avais oublié de faire Ebay : encore un coup des chinois 4.27€ avec le support DIP et les frais de port inclus OMFG j’adore la mondialisation. J’en ai pris 2 pour mois de 10€ et comme les chinois ils sont trop fort j’ai tout reçu en moins de 2 semaines.

                            +

                            Capture-ebay-mcz3001

                            +

                            Dés-soudage

                            +

                            Bon j’avais des fer à souder de merde et du coup c’est le #FAIL, j’ai pas réussi à dés-souder proprement, j’ai donc été obligé d’investir dans une merde à 10€ :

                            +

                            Fer à souderEnsuite j’ai finalement réussi à dés-souder :

                            +

                            Carte GB MCZ3001 dés-soudéEt il me semble que sur cette photo j’avais nettoyer avec du dissolvant.

                            +

                            Remontage

                            +

                            Alors je suis désolé mais je n’ai pas de photos pour le MCZ soudé car j’avais déjà remonté le projecteur. Les étapes :

                            +
                              +
                            1. Souder un support fourni (au cas ou ce fameux MCZ rendrais encore l’âme)
                            2. +
                            3. Placer un MCZ neuf dans le support
                            4. +
                            5. Relier la carte GA et GB ensemble
                            6. +
                            7. Brancher sur le 220V
                            8. +
                            9. Tester le 24VDC sur le connecteur CN3201
                            10. +
                            11. #WIN
                            12. +
                            13. Remonter le projecteur
                            14. +
                            15. Tester en vrai
                            16. +
                            17. #WIN2
                            18. +
                            +

                            Conclusion

                            +

                            Oui c’est un WIN d’une valeur 4€ mais je tiens à préciser que ça représente environ 10 heures de travail continu. Entre les recherches Google et la lecture de la documentation, les heures passés au démontage, les quelques fois ou je me suis arraché les cheveux et risquer ma vie avec un voltmètre à 5€.

                            +

                            Mon banc de test

                            +

                            Banc de test chez HugoLa table du salon 2Les Tofs

                            + + +
                            +
                            +
                            + +
                            +
                            + + + + + + + + + +
                            +
                            +
                            +
                            +
                            +
                            +
                            +

                            + 16 commentaires

                            +
                            + +
                            +
                            +
                            +
                            +

                            + Georg + · 30 janvier 2014 à 12 h 22 min +

                            +

                            Hello,
                            +dear Hugo, at first: HAVE MANY THANKS FOR YOUR VERY INTERESTING BLOG!!!

                            +

                            I also have a cx5 and try to repair it.

                            +

                            It has the same problems like your projector…

                            +

                            I’ve measured the CN2001 but in my power supply there are only 320 V (stable).
                            +Are you sure, that there have to be 380V?
                            +In the service manual, I didn’t find a value (either 320V nor 380V)

                            +

                            Best Regards
                            +Your Georg

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 21 février 2014 à 17 h 36 min +

                              +

                              Sorry to be so long to answer,
                              +320V seems to be OK, I have extrapolated the value from the schema ~ 220Vxrootsquare(2) but this depends of the quality of your current source. I think 320 will not impact the power for the next card.

                              +

                              Good repair !
                              +Thanks for the comment :-D

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + henri moine + · 2 février 2014 à 20 h 43 min +

                            +

                            Bonsoir,
                            +Merci beaucoup pour l’explication détaillée et les photos.
                            +Je vais pas tarder de m’attaquer à mon SONY VPL CS7 bizarrement inerte depuis quelques semaines…
                            +Bonne continuation !

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + florian + · 21 avril 2014 à 9 h 09 min +

                              +

                              Bonjour,
                              +Je possède également un sony VPL CS7, et depuis plusieurs mois il a quelques signes de faiblesses.

                              +

                              1) lorsque je le débranche du secteur et que je le rebranche, il faut que j’attende 24 à 48 h pour que le voyant on/off se mette à éclairer, donc je ne peux pas l’allumer pendant ce temps.

                              +

                              2) aujourd’hui j’ai beau le laisser brancher, aucun signe de vie plus rien ne s’allume.

                              +

                              As tu attaqué ton VPL, As tu trouvé quelque chose ?

                              +

                              Merci

                              + +
                              +
                              +
                                +
                                + +
                                +
                                +
                                +
                                +

                                + HugoPoi + · 9 mai 2014 à 17 h 50 min +

                                +

                                Le VPL que j’avais était en panne je l’ai réparé jusqu’à il y a 2 mois ou il retombé en panne. Ton problème d’allumage ressemble à un problème de condensateur cramé. tu peux regarder si tu en vois des gonflés en démontant.

                                + +
                                +
                                + +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Ghent + · 21 septembre 2014 à 12 h 48 min +

                            +

                            Bonjour,

                            +

                            Déjà, super tuto.
                            +Je rencontre un problème à priori similaire avec mon CX5: le bouton de mise sous tension n’est plus éclairé et il ne se passe rien quand j’appuie dessus.

                            +

                            Je me suis donc lancé, et j’ai démonté jusqu’à atteindre les cartes d’alimentation.
                            +J’ai mesuré donc au niveau du CN3201, et là j’ai 22V continu stable.
                            +D’où ma première question, ai-je le même problème que toi avec le MCZ3001, ou dois-je chercher autre part ?
                            +Faut-il 24V exactement ?

                            +

                            Ensuite, j’ai essayé de me rapprocher du composant lui-même, mais je ne sais pas où mesurer. Le diagramme indique le VC1 sur la patte 8, mais je ne sais pas où prendre la masse.
                            +Saurais-tu m’aider ?

                            +

                            J’ai enfin voulu tester la tension en sortie de la carte GB, le point 17V, mais même question, si je teste la patte 1 du connecteur, où prendre la masse pour vérifier qu’il y a bien 17V ?
                            +Cette partie est-elle alimentée malgré que l’appareil soit éteint ?

                            +

                            Dans tous les cas, j’ai commandé le MCZ3001D, mais je voudrais m’assurer qu’il est bien le responsable avant de le changer.

                            +

                            Merci d’avance pour tes réponses, et encore une fois, merci de partager ton travail !

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 26 septembre 2014 à 15 h 01 min +

                              +

                              Je penses que si tu as 22V sur CN3201 le problème est sûrement ailleurs. Même si cela ne coûte rien de changer le MCZ3001D si tu as de quoi dessouder proprement. Regarde sur le service manuel pour tester les autres tensions qui sortent de la carte après les partie d’isolement, de mémoire il y a 3,3 V et du 5V.

                              + +
                              +
                              +
                                +
                                + +
                                +
                                +
                                +
                                +

                                + Neckron + · 12 décembre 2014 à 21 h 32 min +

                                +

                                Bonsoir, je déterre un peu ce vpl-cx5 que je possède et que je vends !!!
                                +Je voie qu’il y a encore des personnes qui s’y intéresse.
                                +Je précise juste que le mien est en excellent état de marche, il y a la télécommande et qu’il n’a servi QUE 220 Heures. Lampe d’origine. Je cherchais pendant un temps un moyen de l’upgrader pour l’image, mais finalement…. je change…

                                + +
                                +
                                + +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Jean-Marie + · 31 décembre 2014 à 14 h 43 min +

                            +

                            Bonjour Hugo.
                            +Merci pour ton partage d’expérience.
                            +Moi aussi, j’ai un VPL-CS7 inerte comme tu dis. Pas la moindre led s’allume ou clignote quand je le branche.
                            +Je l’ai complètement démonté. Je soupçonne un composant sur le bloc d’alim.
                            +As-tu réparé le tien ?
                            +Merci.
                            +JM.

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 31 janvier 2015 à 15 h 13 min +

                              +

                              Moi j’ai bien réparé mon CX5 mais celui-ci est retombé en panne 6 mois plus tard. Cette fois-ci avec plus de composants endommagés :-(
                              +Bon courage pour les réparations.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Sorce + · 14 mars 2015 à 16 h 05 min +

                            +

                            Bonjour ,j’ai un vpl cs6 ,qui ne s’allume pas rien du tous j’ai suivi tes étape et sur le connecteur con 2001 et la 325v bizarre bon je relie la carte gb pour tester au borne du con 3201 et la 15v et sa retombe et sa remonte a 15v peut tu m aider cdt richard (pense tu que je doi changer le mcz)

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 29 avril 2015 à 16 h 18 min +

                              +

                              Vérifiez les autres tensions en sortie de la carte GB, de mémoire il doit y avoir 3,3 V du 5 V et du 15V. Si tout est OK, la carte-mère principale est peut-être endommagé et pas moyen de réparer sans changement.

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + Gilles + · 16 juin 2018 à 13 h 44 min +

                              +

                              Même chose que vous ?
                              +Avez-vous trouvé une solution ?
                              +Est-ce que c’est normal cette tension non stable ?

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Daoud Yacoub + · 20 octobre 2015 à 9 h 54 min +

                            +

                            Je remercie beaucoup l’equipe

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Daoud Yacoub + · 20 octobre 2015 à 10 h 02 min +

                            +

                            Aidez moi à depanner mon vidéo projecteur le tout ne s’allume pas ;jai démonté et nettoyer toutes les plaques alimentation et logique me rien ne se passe mais en toute sincérité si je peux avoir le document technique de réparation m’est indispensable

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 24 octobre 2015 à 13 h 39 min +

                              +

                              Les commentaires n’ont pas pour vocation d’être un forum :-)

                              + +
                              +
                              + +
                            + +
                            +
                            +
                            +

                            Répondre à Daoud Yacoub Annuler la réponse

                            Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                            +
                            +
                            +

                            + +

                            +
                            +
                            +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            + + +
                            + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/cf1aa260287f0a2f54587b95db325750eaf92156.00000301.html b/www/.content.EZtzwPjb/html/cf1aa260287f0a2f54587b95db325750eaf92156.00000301.html new file mode 100644 index 0000000..6573846 --- /dev/null +++ b/www/.content.EZtzwPjb/html/cf1aa260287f0a2f54587b95db325750eaf92156.00000301.html @@ -0,0 +1,399 @@ + + + + + + + Hardware – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            Prototype téléinformation compteur linky

                            Linky opendata my ass

                            Pour résumer la seule API utilisable en production est l’API Enedis qui est accèssible uniquement aux société (personne morale) ayant montré pate blanche auprès d’Enedis. Si vous voulez la version longue c’est ici. De ce que j’en ai vu vous n’aurez que des données journalière de consommation via leur API, Lire la suite…

                            +

                            Le cloud maison

                            Voilà un petit moment que je me devais de faire cet article pour vous en dire un peu plus sur comment je gère mes données numériques au quotidien. Et après plusieurs essais et échecs, je peux enfin dire que j’ai trouvé des outils simples et maintenus pour cette quête. Même Lire la suite…

                            +
                            Par HugoPoi, il y a

                            L’homme du milieu avec DD-WRT

                            J’avais besoin de faire un MITM entre un ONT et la box SFR NB6 pour pouvoir capturer les identifiants PPP pour le tunnel ipv6. Je n’avais pas de hub ou de machine avec 2 interfaces Ethernet pour pouvoir le faire de façon passive sans faire du spoofing ARP. Et je n’avais pas envie d’envoyer des trames ARP sur l’infrastructure réseau SFR. J’avais un Netgear WNR3500Lv1 dans un coin, je me suis dit qu’il y avais moyen d’utiliser ce genre de routeur pour faire du tapping passif.

                            +

                            (suite…)

                            +
                            Par HugoPoi, il y a

                            Reflow Dell Inspiron 1546

                            +
                            Les choses n’ont pas beaucoup changé en terme d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un cadeau empoisonné de la belle-famille « Essaye de faire ce que tu peux pour récupérer mes photos, j’en rachèterais un ». Le pc portable en question était dans un état de mort certain.
                            + (suite…)
                            +
                            +
                            Par HugoPoi, il y a

                            Test et démontage d’un Sony Multi Flip 15 SVF15N1C5E

                            Longtemps que je n’avais pas posté ici, mais la je suis en vacances donc j’ai le temps. Voici donc mes retours sur ce pc portable Sony un peu atypique. J’ai choisit cette machine sur plusieurs critères qui m’avait convaincu pour les usages de ma chérie (c’est sa machine), elle fait du dessin vectoriel et de la retouche d’images principalement.
                            + (suite…)

                            +
                            Par HugoPoi, il y a
                            +
                            +
                            + +
                            +
                            +
                            +
                            + +
                            +
                            + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/cfdc40725335a8c04ce21c89902454c3122e18c7.00000181.xml b/www/.content.EZtzwPjb/html/cfdc40725335a8c04ce21c89902454c3122e18c7.00000181.xml new file mode 100644 index 0000000..e83fcaf --- /dev/null +++ b/www/.content.EZtzwPjb/html/cfdc40725335a8c04ce21c89902454c3122e18c7.00000181.xml @@ -0,0 +1,17 @@ + + + Commentaires sur : Banc de test chez Hugo + + http://blog.hugopoi.net/2013/05/04/reparer-un-videoprojecteur-sony-vpl-cx5/samsung-89/ + Internet, Hardware et Bidouille + Wed, 21 Aug 2013 17:11:00 +0000 + hourly + 1 + http://wordpress.org/?v=3.6 + + diff --git a/www/.content.EZtzwPjb/html/d07119e2522356bd6b6ec27d4ecd89d54820d9c3.00000384.html b/www/.content.EZtzwPjb/html/d07119e2522356bd6b6ec27d4ecd89d54820d9c3.00000384.html new file mode 100644 index 0000000..40b014e --- /dev/null +++ b/www/.content.EZtzwPjb/html/d07119e2522356bd6b6ec27d4ecd89d54820d9c3.00000384.html @@ -0,0 +1,373 @@ + + + + + + + démarrage – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +

                            Réparations Samsung SyncMaster 2232BW

                            Allô docteur on a un problème,

                            +

                            En ce dimanche calme avant la fin de mes partiels, mon écran Samsung SyncMaster 2232BW commençait à faire des siennes. Celui-ci depuis un mois ou deux clignotait de façon systématique au démarrage, au début pendant seulement quelques secondes, puis au fur et à mesure, de plus en plus jusqu’à devoir attendre 10 minutes pour que je puisse l’utiliser. Après 3 ans et 4 mois de bons et loyaux services, il voulait me quitter. J’ai tenté le support Samsung par email avec peu d’espoir car l’écran a dépassé sa garantie de 4 mois (oui oui les bâtards -> obsolescence programmée). Et donc j’ai eu le droit à un joli mail automatique me disant de contacter un numéro non surtaxé (mais avec combien de temps d’attente ?), ce que je n’ai pas fait car je n’avais pas envie de passer 30min au téléphone pour au final avoir un « On est désolé mais on ne peut rien faire pour vous car la garantie est dépassée, mais on peut envoyer votre écran en SAV pour faire un devis pour seulement 50 boules ». Concernant le support email de Samsung France, je leur donne une note de 0/20 puisque ce n’est pas un support mais une redirection vers le téléphone.

                            +

                            (suite…)

                            +
                            Par HugoPoi, il y a
                            +
                            + +
                            +
                            +
                            +
                            + +
                            +
                            + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/d0af6f2cb2f951c83228b01fe8f004ddee22b6c4.00000099.html b/www/.content.EZtzwPjb/html/d0af6f2cb2f951c83228b01fe8f004ddee22b6c4.00000099.html new file mode 100644 index 0000000..b71c53e --- /dev/null +++ b/www/.content.EZtzwPjb/html/d0af6f2cb2f951c83228b01fe8f004ddee22b6c4.00000099.html @@ -0,0 +1,580 @@ + + + + + + + + Pascal Negre tu m’emmerdes – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            +


                            +
                            Bon sérieux, Pascal Negre il commence à me les briser sec. Après Deezer qui est devenu une belle merde car il n’y a plus que les Black Eyed Peas, Justin et Britney, la plateforme est devenue complètement payante et cela reste cher au vu du catalogue proposé. Puis l’année dernière j’ai pris un abonnement téléphonique chez Orange avec la vente forcée d’un compte premium Deezer dont malheureusement je ne me sers pas.

                            +

                            +

                            Peu de temps après, j’ai découvert Grooveshark, une plateforme un peu différente sur laquelle on peut ajouter sa musique perso. Vous cherchez un titre? Vous ne le trouvez pas ? Si vous l’avez dans votre ordinateur, vous pouvez l’envoyer sur la plateforme pour le rendre disponible à tous. Grooveshark se base sur un business model pub pour leur site web donc l’accès est gratuit et sans inscription. Pour l’accès depuis votre mobile, cela est payant via un abonnement mensuel de quelques euros. Mais après avoir fais mes premiers pas sur la plateforme, je me suis demandé comment Grooveshark pouvait obtenir les droits de diffusion pour tous les titres ajoutés par les utilisateurs. Cela est en faite impossible car il n’y a pas de catalogue unifié et donc chaque major et artiste fait valoir ses droits séparément. Donc au final, je me retrouve avec un Grooveshark qui se fait grignoter au fur et à mesure du temps, et qui va finir comme Deezer avec un catalogue incomplet et amputé. Et cela commence vraiment à m’emmerder car je n’ai pas envie de payer trois abonnements différents sur trois plateformes. En plus, ce sera vraiment pratique pour écouter de la musique en changeant d’application entre deux titres. Donc à moins que les majors se bougent la rondelle pour faire des vraies offres unifiées avec des tarifs raisonnables, je vais devoir monter ma plateforme musicale communautaire en ligne. Je pensais à un truc avec une interface simple style grooveshark, voici mes 2,3 idées :

                            +
                              +
                            • Interface Web en HTML5
                            • +
                            • Application mobile Android Iphone et cie
                            • +
                            • Accès avec inscription, le tout gratuit (genre tracker privé)
                            • +
                            • Alors j’en ai rêvé la nuit dernière, pour stocker la musique, je pensais à un système décentralisé basé sur BitTorrent. Comme ça, impossible de fermer les serveurs qui hébergent la base de données contenant les infos sur chaque titre.
                            • +
                            • En gros, il faudrait un client lourd avec un protocole spécifiquement développé pour l’occasion
                            • +
                            • Au niveau de la qualité, il nous faut du Flac et du MP3 (minimum 320kbits/s)
                            • +
                            • Donc un système d’ajout à la BDD avec vérification de l’intégrité par les utilisateurs (proposition d’écoute pour savoir si le titre que l’on ajoute est déjà présent)
                            • +
                            • Chaque utilisateur stocke sa bibliothèque musicale, et en plus éventuellement un cache de redondance d’une partie de la bibliothèque totale
                            • +
                            • Complétition progressive de la BDD par les utilisateurs
                            • +
                            +
                            Bref, je pense que je rêves à 15000km mais ce concept pourrait amener à construire la plus grosse base de  données musicales de l’Internet et faire chier les majors. Montrer que la culture et le partage sont plus important que la BMW de Pascal Negre et ses potes.
                            +

                             

                            +
                            +
                            +
                            +
                            +
                            Catégories : InternetNews
                            +
                            +
                            +
                            + + + + + + + + + +
                            +
                            +
                            +
                            +
                            +
                            +
                            +

                            + 4 commentaires

                            +
                            + +
                            +
                            +
                            +
                            +

                            + Thibault + · 7 janvier 2012 à 19 h 50 min +

                            +

                            Très bonne idée mais …
                            +Le seul hic dans tes 2,3 idées c’est le stockage via BitTorrent je crois :)

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 7 janvier 2012 à 19 h 57 min +

                              +

                              Pourquoi ? si on stock la musique sur les serveurs, ça va représenter une bande passante énorme et en plus vu qu’il n’y aura que de la « contrefaçon ». Je serais obligé de fermer mon service si je veux pas vendre mes 2 bras.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Thibault + · 8 janvier 2012 à 18 h 02 min +

                            +

                            A moins de tout passer en full-encrypt et d’autres méthodes pour cacher l’ip du client vis à vis du tracker (je ne suis pas un pro-torrent donc je dis p’tet des conneries)
                            +Dans ce cas bonjour l’appli bien lourde :)

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 8 janvier 2012 à 21 h 49 min +

                              +

                              Non tu ne dis pas de connerie bittorrent à besoin de l’ip public pour fonctionner, stocké au niveau du tracker. Le protocol bittorrent dispose déjà de chiffrement sur la partie pair à pair et aussi connexion au tracker qui peux se faire en SSL. Au niveau confidentialité, faire une plateforme uniquement avec client web ou bittorrent revient au même car le serveur peux stocké indéfiniment les ip qui s’y connectent dans les deux cas. Moi je suis pour les systèmes décentralisés qui sont la base d’Internet qui ont l’avantage de répartir la charge sur tous le réseau et pas provoqué d’engorgement. Appli bien lourde je ne sais pas, ça sera toujours moins lourd que iTunes lol

                              + +
                              +
                              + +
                            + +
                            +
                            +
                            +

                            Répondre à HugoPoi Annuler la réponse

                            Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                            +
                            +
                            +

                            + +

                            +
                            +
                            +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            + + +
                            + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/d28a1a7de311025c4ba7f108278c5bf0f1112064.00000447.xml b/www/.content.EZtzwPjb/html/d28a1a7de311025c4ba7f108278c5bf0f1112064.00000447.xml new file mode 100644 index 0000000..9f58a32 --- /dev/null +++ b/www/.content.EZtzwPjb/html/d28a1a7de311025c4ba7f108278c5bf0f1112064.00000447.xml @@ -0,0 +1,37 @@ + + + Maxell – HugoPoi + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Mon, 22 Aug 2016 14:10:26 +0000 + fr-FR + hourly + 1 + https://wordpress.org/?v=4.6.1 + + Réparer et transformer une clé USB de 4Go en 8Go + http://blog.hugopoi.net/2013/05/11/reparer-et-transformer-une-cle-usb-de-4go-en-8go/ + http://blog.hugopoi.net/2013/05/11/reparer-et-transformer-une-cle-usb-de-4go-en-8go/#comments + Sat, 11 May 2013 13:51:53 +0000 + + + + + + + + http://blog.hugopoi.net/?p=768 + Lire la suite »

                            ]]>
                            + http://blog.hugopoi.net/2013/05/11/reparer-et-transformer-une-cle-usb-de-4go-en-8go/feed/ + 8 +
                            +
                            +
                            diff --git a/www/.content.EZtzwPjb/html/d2972a5d06d262d64a1b45f967f20b902f29433c.00000431.html b/www/.content.EZtzwPjb/html/d2972a5d06d262d64a1b45f967f20b902f29433c.00000431.html new file mode 100644 index 0000000..0e46fcf --- /dev/null +++ b/www/.content.EZtzwPjb/html/d2972a5d06d262d64a1b45f967f20b902f29433c.00000431.html @@ -0,0 +1,364 @@ + + + + + + + Kindle – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            + +
                            +
                            + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/d2ac97cd20749de5c48073bca9bd53fc07923b44.00000226.html b/www/.content.EZtzwPjb/html/d2ac97cd20749de5c48073bca9bd53fc07923b44.00000226.html new file mode 100644 index 0000000..70184ce --- /dev/null +++ b/www/.content.EZtzwPjb/html/d2ac97cd20749de5c48073bca9bd53fc07923b44.00000226.html @@ -0,0 +1,612 @@ + + + + + + + + Niquer les DRMs d’Amazon AKA convertir vos ebook vers EPUB sans DRM – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            +

                            Comment j’en suis arrivé là

                            +

                            Un jour dans une contrée de la blogosphère version 0.666 d’Internet, je voulais acheter un livre  numérique car moins cher et puis ça pollue moins ça équivaut à un aller-retour Paris-Nice en BM de CO2 quand tu le télécharge. Aussi gros avantages du livre numérique vous pouvez l’avoir à plusieurs endroits en même temps, sur mon téléphone et sur mes ordinateurs et bien sûr il est possible de Ctrl+F. Maintenant j’aime bien garder ma vie privée et choisir quand et avec quoi je peux ouvrir mes livres numériques. Donc l’application Kindle Amazon qui envoie toute les minutes les pages que vous avez lues, ce que vous avez cherché & cie. Ça craint un max NO WAY. Deuxième truc chiant j’ai pas les services Google sur mon inteliphone et j’ai que des OS Unix libre sous la main et je n’ai pas non plus de Kindle. Donc les DRMs ça devient une galère.

                            +

                            Comment qu’on va faire ?

                            +
                              +
                            • Utiliser l’application Windows Amazon Kindle dans un préfixe Wine avec PlayOnLinux pour pouvoir récupérer ses livres et vos clés de déchiffrement.
                            • +
                            • Utiliser Calibre avec le plugin DeDRM pour pouvoir lire vos livres et les convertir au format EPUB sans DRM.
                            • +
                            • La solution présenté ici devrait marcher sans problème sous Windows. (Sans PlayOnLinux/Wine)
                            • +
                            • Pour Mac OSX je ne sais si c’est aussi simple mais il y a moyen. (Avec Homebrew)
                            • +
                            +

                            Niquer les DRM avec classe et Calibre

                            +

                            1. Pré-requis

                            +

                            Pour cette recette vous aurez besoin de :

                            + +

                            2. Installer Amazon Kindle avec wine

                            +
                              +
                            • Ouvrir PlayOnLinux
                            • +
                            • Aller dans Outils / Gérer les versions de Wine
                            • +
                            • Installer la version 3.5 de Wine en x86 (32bits)
                            • +
                            • Installer un programme non-listé
                            • +
                            • Installer un programme dans un nouveau disque virtuel
                            • +
                            • Choisir un nom du genre `amazonkindle`
                            • +
                            • Cocher Utiliser une autre version de Wine
                            • +
                            • Sélectionner la version 3.5
                            • +
                            • Sélectionner Windows version 32bits
                            • +
                            • Cancel l’installation de mono et gecko il ne vous servirons pas
                            • +
                            • Sélectionner l’installateur de Amazon Kindle
                            • +
                            • Normalement à cette étape Amazon Kindle ce lance et vous demande de vous authentifiez avec votre compte Amazon, pensez à choisir le bon domaine Amazon en bas.
                            • +
                            • Une fois connecté dans Amazon Kindle, quitter l’application et finir l’installation dans PlayOnLinux
                            • +
                            • Re-lancer Amazon Kindle depuis PlayOnLinux puis téléchargé vos livres ( commencez par un pour tester)
                            • +
                            +

                            3. Ajouter python 2.7 dans le préfixe Wine de Amazon Kindle

                            +

                            Cette étape va nous permettre d’exécuter correctement le script d’extraction de DeDRM des clés de déchiffrement dans le préfixe Wine contenant nos clés.

                            +
                              +
                            • Allez dans Configurer/Divers de votre préfixe Amazon Kindle
                            • +
                            • Cliquer sur Exécuter un .exe dans ce disque virtuel
                            • +
                            • Choisir l’installateur de python 2.7 (le .msi préalablement téléchargé)
                            • +
                            • Installer python 2.7 en laissant tout par défaut
                            • +
                            +

                            4. Configurer Calibre

                            +
                              +
                            • Décompresser DeDRM_tools
                            • +
                            • Lancer Calibre
                            • +
                            • Aller dans Préférences / Extensions
                            • +
                            • Charger une extension à partir d’un fichier et choisir dans le dossier plugin calibre de DeDRM_tools DeDRM_plugin.zip
                            • +
                            • Maintenant FERMER Calibre
                            • +
                            +

                            5. Importer vos clés de déchiffrement

                            +

                            Cette étape est l’astuce en carton du jour permettant que tout fonctionne.

                            +
                              +
                            • Aller dans PlayOnLinux
                            • +
                            • Aller dans Configurer/Divers de votre préfixe Amazon Kindle
                            • +
                            • Cliquer sur Ouvrir un Shell
                            • +
                            • Lancer echo $WINEPREFIX
                            • +
                            • Vous devriez avoir un truc du genre : /home/vagrant/.PlayOnLinux//wineprefix/amazonkindle
                            • +
                            • Lancer echo $PATH
                            • +
                            • Vous devriez avoir un truc du genre : /home/vagrant/.PlayOnLinux//wine/linux-x86/3.5/bin/:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/usr/lib/wine
                            • +
                            • Garder ces 2 variables nous allons en avoir besoin
                            • +
                            • Maintenant ouvrez un terminal normal
                            • +
                            • Lancer PATH='/home/vagrant/.PlayOnLinux//wine/linux-x86/3.5/bin/:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/usr/lib/wine' wine --version
                            • +
                            • Vous devriez avoir wine-3.5 afficher ce qui veut dire que tout est bon et que c’est bien la version de wine installer pour le prefixe Amazon Kindle qui se lance
                            • +
                            • Lancer PATH='/home/vagrant/.PlayOnLinux//wine/linux-x86/3.5/bin/:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/usr/lib/wine' calibre
                            • +
                            • Cliquer sur Afficher uniquement les extensions installées par l’utilisateur, puis Sélectionner DeDRM, puis Personnaliser une extension
                            • +
                            • Cliquer sur Kindle for Mac/PC ebooks
                            • +
                            • Dans le champs WINEPREFIX mettez la valeur correspondante relevé plus haut chez moi /home/vagrant/.PlayOnLinux//wineprefix/amazonkindle
                            • +
                            • Puis cliquer sur le plus + en vert
                            • +
                            • Normalement si tout va bien vous avez le panneau Unique Key Name qui s’affiche vous pouvez le valider
                            • +
                            • Voilà vous avez importé une clé de déchiffrement
                            • +
                            +

                            6. Importer vos livres puis les convertir

                            +
                              +
                            • Cliquer sur Ajouter des livres
                            • +
                            • Aller chercher vos livres Kindle dans Documents/My Kindle Content
                            • +
                            • Si tout est bon vous pouvez ouvrir vos livres et les visualiser
                            • +
                            • Faites un clique droit Convertir sur un livre au format AZW3 puis vous pouvez lancer la conversion au format EPUB
                            • +
                            +

                            Fin

                            +

                            Clairement j’en ai chier pour en arriver jusque là.

                            +

                            Beaucoup de choses sont automatisables dans Calibre une fois la récupérations des clés réussi.

                            +

                            Vous devez toujours repasser par l’application Amazon Kindle pour la partie téléchargement des livres je ne crois pas qu’il y est d’autre solutions pour le moment. (à part disposer d’un Kindle enregistré sur votre compte Amazon)

                            +

                            Calibre est parfait pour synchroniser vos E-readeuses.

                            +

                            PS : Faut pas le dire mais la technique montré ici marche aussi avec les livres empruntés dans le cadre de l’abonnement Kindle à 9€ par mois. Cependant je ne sais pas comment Amazon va calculer les redevances pour vos auteurs préférés car normalement il se base sur le pourcentage de lecture d’un livre. Dans notre cas ce sera 0% systématiquement …

                            +

                            Inspirations

                            +
                              +
                            1. WineHQ Amazon Kindle https://appdb.winehq.org/objectManager.php?sClass=version&iId=35955&iTestingId=102115
                            2. +
                            3. Korben https://korben.info/comment-deproteger-un-livre-kindle-pour-le-preter-le-lire-sur-lordi-ou-lexporter-sous-un-autre-format-pdf-epub.html
                            4. +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +

                            + 2 commentaires

                            +
                            + +
                            +
                            +
                            +
                            +

                            + Romaric + · 3 mai 2019 à 18 h 19 min +

                            +

                            Juste dire un ENORME MERCI pour ce tutoriel, grâce auquel j’ai réussi à récupérer un livre acheté sur Amazon pour le lire sur une liseuse KOBO.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Romaric + · 4 mai 2019 à 20 h 11 min +

                            +

                            Seule chose à penser à faire, sous peine sinon de ne pas réussir à relancer Kindle.
                            +Une fois installée et lancée, dans l’appli Kindle, dans les réglages, désactiver l’installation automatique des mises à jour. Sinon au prochain lancement de Kindle par Playonlinux, il tombera sur l’installeur de nouvelle version et plantera.

                            + +
                            +
                            + +
                            +
                            +
                            +

                            Répondre à Romaric Annuler la réponse

                            Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                            +
                            +
                            +

                            + +

                            +
                            +
                            +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            + + +
                            + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/d2adda8cf33ccd091d78655f778e9e465907cd7b.00000251.html b/www/.content.EZtzwPjb/html/d2adda8cf33ccd091d78655f778e9e465907cd7b.00000251.html new file mode 100644 index 0000000..43c95ed --- /dev/null +++ b/www/.content.EZtzwPjb/html/d2adda8cf33ccd091d78655f778e9e465907cd7b.00000251.html @@ -0,0 +1,817 @@ + + + + + + + + Install RancherOs on FreeNas 11.3 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            +

                            Install RancherOs on FreeNas 11.3

                            +
                              +
                            • The automated RancherOs installation aka Docker VM has been removed in
                              +11.3
                            • +
                            • RancherOs doesn’t support EFI boot out of the box
                            • +
                            • Thanks to MKinney howto
                            • +
                            • This howto is provided without warranty
                            • +
                            • TODO the proper way of doing it is somewhere here
                            • +
                            • Some stuff about losetup
                            • +
                            +

                            1. Make a EFI bootable RancherOs image

                            + +
                              +
                            1. wget https://releases.rancher.com/os/v1.5.5/rancheros.iso
                            2. +
                            3. wget http://releases.ubuntu.com/18.04/ubuntu-18.04.4-live-server-amd64.iso
                            4. +
                            5. mkdir tmpubuntu tmprancheros tmprancheros_dest
                            6. +
                            7. sudo mount ubuntuserverlive.iso tmpubuntu
                            8. +
                            9. sudo mount rancheros.iso tmprancheros
                            10. +
                            11. fallocate -l 150M rancheros.img
                            12. +
                            13. gdisk rancheros.img o,y,n,enter,enter,ef00,w,Y
                            14. +
                            15. sudo losetup --partscan --show --find rancheros.img
                            16. +
                            17. sudo mkfs.fat /dev/loop2p1
                            18. +
                            19. sudo mount /dev/loop2p1 rancheros_dest
                            20. +
                            21. sudo cp -r tmprancheros/* tmprancheros_dest/
                            22. +
                            23. sudo cp -r tmpubuntu/EFI tmprancheros_dest/
                            24. +
                            25. Replace the content of tmprancheros_dest/boot/grub/grub.cfg with:
                            26. +
                            +
                            set timeout=5
                            +menuentry "Install Rancher" {
                            +    linux   /boot/vmlinuz-4.14.138-rancher rancher.autologin=tty1 rancher.autologin=ttyS0 rancher.autologin=ttyS1 console=tty1 console=ttyS0 console=ttyS1 printk.devkmsg=on panic=10 ---
                            +    initrd  /boot/initrd-v1.5.5
                            +}
                            +
                            +
                              +
                            1. sudo umount tmprancheros_dest
                            2. +
                            3. sudo losetup -d /dev/loop2
                            4. +
                            5. sudo umount tmpubuntu tmprancheros
                            6. +
                            +

                            2. Installation in FreeNas as Vm

                            +
                              +
                            1. Create a VM with EFI boot 2GB RAM choose virtio for all the driver
                              +better performance with linux
                            2. +
                            3. Add a RAW device and select your rancheros.img
                            4. +
                            5. Start the VM
                            6. +
                            7. Go to serial and in the shell cu -l /dev/nmdmXX at this point you should
                              +have a rancher shell
                            8. +
                            9. sudo fdisk /dev/vda then g,n,1,+200M,t,1,n,enter,enter,w you
                              +should something like at the end
                            10. +
                            +
                            Disk /dev/vda: 10 GiB, 10737418240 bytes, 20971520 sectors
                            +Units: sectors of 1 * 512 = 512 bytes
                            +Sector size (logical/physical): 512 bytes / 16384 bytes
                            +I/O size (minimum/optimal): 16384 bytes / 16384 bytes
                            +Disklabel type: gpt
                            +Disk identifier: 2B56EE14-44BF-6443-A197-EF73723B715F
                            +Device      Start      End  Sectors  Size Type
                            +/dev/vda1    2048   411647   409600  200M EFI System
                            +/dev/vda2  411648 20971486 20559839  9.8G Linux filesystem
                            +
                            +
                              +
                            1. Format the boot partition sudo mkdosfs -n RANCHER -F 32 /dev/vda1
                            2. +
                            3. Format the main filesystem sudo mkfs.ext4 -L RANCHER_STATE /dev/vda2
                            4. +
                            5. Create a cloud-config.yml see https://rancher.com/docs/os/v1.x/en/installation/running-rancheros/server/install-to-disk/ for minimum content
                            6. +
                            7. sudo mkdir /dev/sr0 for installer checking about iso mounted before
                              +install
                            8. +
                            9. Install ros with sudo ros install -t gptsyslinux -c cloud-config.yml -d /dev/vda -p /dev/vda2
                            10. +
                            11. mkdir /mnt/efipart && sudo mount /dev/vda1 /mnt/efipart
                            12. +
                            13. mkdir /mnt/installer && sudo mount /dev/vdb1 /mnt/installer
                            14. +
                            15. sudo cp -r /mnt/installer/EFI /mnt/efipart
                            16. +
                            17. Add a grub.cfg in /mnt/efipart/EFI/BOOT/grub.cfg with in it:
                              +You might want to add/remove autologin as you wish below

                              +
                                +
                              • tty0 I think is VNC but I havent tested it
                              • +
                              • ttyS0 is serial (I have autologin enable in serial see below)
                              • +
                              +
                            18. +
                            +
                            set timeout=1
                            +menuentry "Rancher from GPT" {
                            +    search --no-floppy --set=root --label RANCHER_STATE
                            +    linux    /boot/vmlinuz-4.14.138-rancher printk.devkmsg=on rancher.state.dev=LABEL=RANCHER_STATE rancher.state.wait panic=10 console=tty0 console=ttyS0 rancher.autologin=ttyS0
                            +    initrd    /boot/initrd-v1.5.5
                            +}
                            +
                            +
                              +
                            1. sudo umount /mnt/*
                            2. +
                            3. sudo reboot
                            4. +
                            5. You are good to go
                            6. +
                            7. You can remove the RAW device in the VM config in FreeNas
                            8. +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +

                            + 12 commentaires

                            +
                            + +
                            +
                            +
                            +
                            +

                            + Rudi Pittman + · 18 mars 2020 à 17 h 46 min +

                            +

                            Can I or can I not use my existing rancher img that was previously being used by freenas? ie

                            +

                            -rw-r–r– 1 root wheel 21474836480 Mar 18 02:13 rancher.img_docker1

                            +

                            I have around 10 different docker containers defined inside and I really don’t want to have to redo all of them.

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 11 avril 2020 à 16 h 32 min +

                              +

                              If the image is a VM image like a zvol, I think it will work, but I’m not sure, it will only work if the 11.2 behavior is EFI compatible.
                              +You may patch your existing image/snapshot by justing installing the efi bootloader aka grub in it.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Rob RD + · 4 avril 2020 à 19 h 36 min +

                            +

                            Parfait – Merci Beaucoup! :)

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + dario + · 12 avril 2020 à 14 h 07 min +

                            +

                            Thanks for this guide. I am stuck at Step 12:
                            +> sudo mount /dev/vdb1 /mnt/installer
                            +ther is no /dev/vdb1, regardingless if I choose to boot at step 10 or not

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 22 avril 2020 à 23 h 34 min +

                              +

                              Your installer may be on a different disk if you choose SCSI in place of virtio when you add the raw image device in Freenas, you can identified with

                              +

                              cat /proc/partitions

                              +

                              and

                              +

                              mount

                              +

                              it should be /dev/sda1 maybe

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + somebody + · 19 avril 2020 à 13 h 07 min +

                            +

                            Thank you so much for the step by step guide, it was very helpful. With this I can finally transition from my old Docker VM inherited from FreeNAS 11.1.

                            +

                            Going to state the obvious (for some) and mention that when new version gets released and you run

                            +

                            sudo ros os upgrade

                            +

                            to upgrade you’ll also need to update initrd command in your grub.cfg file on EFI partition, otherwise you’re just going to boot into the same version.

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + Rudi Pittman + · 1 juin 2020 à 1 h 58 min +

                              +

                              The problem I have is even though grub is specifying 4.14.138 and initird-v1.5.5 on reboot it tells me those don’t exist. Doing a grub edit and using autocomplete the files it ACTUALLY find are /boot/vmlinuz-4.14.73-rancher and /boot/initrd-v1.4.2. Where the heck are those coming from? When I look on /dev/vda2/boot I see the 4.14.138 and initrd-v1.5.5 as the grub reflects. /mnt/efipart/EFI/BOOT has:

                              +

                              -rwxr-xr-x 1 root root 1334816 May 30 15:13 BOOTx64.EFI
                              +-rwxr-xr-x 1 root root 316 May 30 15:15 grub.cfg
                              +-rwxr-xr-x 1 root root 1146744 May 30 15:13 grubx64.efi

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Max + · 3 mai 2020 à 16 h 40 min +

                            +

                            The image i downloaded does not start. Stuck at step4 in the bhyve shell. Any idea how to proceed from there?

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 10 mai 2020 à 14 h 53 min +

                              +

                              Try to change the device order to a lower or higher number to be sure it try to load the good bootloader.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Rudi Pittman + · 1 juin 2020 à 18 h 28 min +

                            +

                            If you do a « ros os version » on your efi image it’s NOT v1.5.5. It’s v1.4.2 and running the command although it MAY download the files does nothing to actually make the grub.cfg FIND those new files. It’s still looking for vmlinuz-4.14.73 and initrd-v1.4.2.

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + Johnny Z + · 25 juin 2020 à 8 h 49 min +

                              +

                              I found them. The guide doesn’t necessarily state where or when to get the files. You should be able to do this to find and copy the files

                              +

                              cd /mnt/installer/boot/
                              +ls -asl
                              +(here you will find the two files)
                              +cp vmlinuz-4.14.138-rancher ../../efipart/efi/boot/
                              +cp initrd-v1.5.5.5 ../../efipart/efi/boot

                              +

                              Double check my paths here but that should basically get you the files so the kernel can load proper

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Toohai + · 16 septembre 2020 à 8 h 18 min +

                            +

                            Missing step after 12 in part 1?

                            +

                            sudo cp -r tmpubuntu/boot/grub tmprancheros_dest/boot/

                            + +
                            +
                            + +
                            +
                            +
                            +

                            Répondre à HugoPoi Annuler la réponse

                            Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                            +
                            +
                            +

                            + +

                            +
                            +
                            +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            + + +
                            + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/d2ae33903a2838931f5cbafc27bec9e58cd9bff8.00000304.html b/www/.content.EZtzwPjb/html/d2ae33903a2838931f5cbafc27bec9e58cd9bff8.00000304.html new file mode 100644 index 0000000..e90ae97 --- /dev/null +++ b/www/.content.EZtzwPjb/html/d2ae33903a2838931f5cbafc27bec9e58cd9bff8.00000304.html @@ -0,0 +1,400 @@ + + + + + + + Hardware – Page 3 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +

                            Montage PC de A à Z

                            Bonjour tout le monde,

                            +

                            Ready pour un montage de PC dans les Règles de l’art. Ce Week-end avec Calcifer on a monté du PC :D [Week end du 14 et 15 Mai … Merci à Hugopoi de sa réactivité pour finir ses articles :p] (suite…)

                            +
                            Par HugoPoi, il y a

                            Optimus vs Mégatron

                            Je suis l’heureux acquéreur #oupas d’un pc portable avec technologie Optimus de Nvidia (voir Asus U36JC). Après quelques jours de recherches et de tests je vais essayer de vous faire un résumé complet sur le pourquoi de comment ça fonctionne. (suite…)

                            +
                            Par HugoPoi, il y a

                            Asus U36JC-RX260V

                            Depuis le temps que je voulais investir dans un pc portable, je l’ai enfin fait. Je cherchais une machine en complément de mon fixe avec comme premiers critères l’autonomie et un minimum de puissance. J’ai donc acheté un ultra-portable Asus, un chassie U36JC avec les caractéristiques suivantes : (suite…)

                            +
                            Par HugoPoi, il y a

                            Stockage numérique pour tous

                            Ce blog parle très technique comme en témoigne mon dernier article mais aujourd’hui je vais faire un petit topo sur les disques-dur ou plutôt le stockage de vos données numériques en général. Dans cet article je vais m’adresser à tout le monde de papi-geek à tante-photo et pas uniquement à tous les geeks.

                            +

                            Je me suis aperçu, dans mon entourage proche mais aussi sur des forums ou je traîne parfois, que beaucoup n’ont aucune notion sur comment est stockée l’information sur nos ordinateurs et ce qu’il y a dans un disque USB que l’on achète à la Fnac pour ne citer que ces abrutis.

                            +

                            Retour en arrière, le fameux disque-dur que tout le monde utilise (peut-être sans le savoir) a été inventé en 1953 par IBM. Les premiers modèles avaient une capacité de quelques mégaoctets pour un prix de 10 000$. Aujourd’hui, il existe des modèles allant jusqu’à plus de 2 Téraoctets de capacité soit un million de fois plus.

                            +

                            Le disque-dur stocke les informations de façon magnétique sur des plateaux qui ressemblent à des CDs qui sont en rotation. Des petits bras viennent se positionner au dessus des disques pour écrire/lire les informations. ça ressemble à cela :

                            +

                            +

                            (suite…)

                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            + +
                            +
                            + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/d38a813b79ab36b03aa6470b5fa74dcc62b71f60.00000423.html b/www/.content.EZtzwPjb/html/d38a813b79ab36b03aa6470b5fa74dcc62b71f60.00000423.html new file mode 100644 index 0000000..06d67c6 --- /dev/null +++ b/www/.content.EZtzwPjb/html/d38a813b79ab36b03aa6470b5fa74dcc62b71f60.00000423.html @@ -0,0 +1,373 @@ + + + + + + + I2P – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            + +
                            +
                            + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/d391bf63b36d9a368a70d98f5c4d10ea9e3896db.00000426.html b/www/.content.EZtzwPjb/html/d391bf63b36d9a368a70d98f5c4d10ea9e3896db.00000426.html new file mode 100644 index 0000000..8443729 --- /dev/null +++ b/www/.content.EZtzwPjb/html/d391bf63b36d9a368a70d98f5c4d10ea9e3896db.00000426.html @@ -0,0 +1,371 @@ + + + + + + + Intel N-6230 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +

                            Asus U36 et OCZ Vertex 3 la suite

                            Après un mois d’attente auprès de Cdiscount, pour au final m’annoncer le remboursement de mon SSD Vertex 2 qui est mort subitement, j’ai donc décidé de commander un Vertex 3 qui va remplacer le mort au sein de mon Asus U36JC. Et pour ne pas l’ouvrir juste pour un banal remplacement de SSD j’ai décidé de remplacer par la même occasion la carte wifi, une Intel N-1000 par une Intel N-6320. Celle-ci disposant en plus du bluetooth. J’en ai donc profité pour prendre des photos supplémentaires du démontage pour compléter mon précédent article : Démontage d’un Asus U36. Vous pouvez d’abord lire mon ancien article avant d’attaquer celui-ci, je ne ferai qu’apporter des informations complémentaires pour le démontage. (suite…)

                            +
                            Par HugoPoi, il y a
                            +
                            + +
                            +
                            +
                            +
                            + +
                            +
                            + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/d40c399660d5a4fdc45e115ec103d38e1419e383.00000590.js b/www/.content.EZtzwPjb/html/d40c399660d5a4fdc45e115ec103d38e1419e383.00000590.js new file mode 100644 index 0000000..5b87867 --- /dev/null +++ b/www/.content.EZtzwPjb/html/d40c399660d5a4fdc45e115ec103d38e1419e383.00000590.js @@ -0,0 +1,325 @@ +(function($) { + + if (typeof _wpcf7 == 'undefined' || _wpcf7 === null) + _wpcf7 = {}; + + _wpcf7 = $.extend({ cached: 0 }, _wpcf7); + + $(function() { + _wpcf7.supportHtml5 = $.wpcf7SupportHtml5(); + $('div.wpcf7 > form').wpcf7InitForm(); + }); + + $.fn.wpcf7InitForm = function() { + this.ajaxForm({ + beforeSubmit: function(arr, $form, options) { + $form.wpcf7ClearResponseOutput(); + $form.find('[aria-invalid]').attr('aria-invalid', 'false'); + $form.find('img.ajax-loader').css({ visibility: 'visible' }); + return true; + }, + beforeSerialize: function($form, options) { + $form.find('[placeholder].placeheld').each(function(i, n) { + $(n).val(''); + }); + return true; + }, + data: { '_wpcf7_is_ajax_call': 1 }, + dataType: 'json', + success: $.wpcf7AjaxSuccess, + error: function(xhr, status, error, $form) { + var e = $('
                            ').text(error.message); + $form.after(e); + } + }); + + if (_wpcf7.cached) + this.wpcf7OnloadRefill(); + + this.wpcf7ToggleSubmit(); + + this.find('.wpcf7-submit').wpcf7AjaxLoader(); + + this.find('.wpcf7-acceptance').click(function() { + $(this).closest('form').wpcf7ToggleSubmit(); + }); + + this.find('.wpcf7-exclusive-checkbox').wpcf7ExclusiveCheckbox(); + + this.find('.wpcf7-list-item.has-free-text').wpcf7ToggleCheckboxFreetext(); + + this.find('[placeholder]').wpcf7Placeholder(); + + if (_wpcf7.jqueryUi && ! _wpcf7.supportHtml5.date) { + this.find('input.wpcf7-date[type="date"]').each(function() { + $(this).datepicker({ + dateFormat: 'yy-mm-dd', + minDate: new Date($(this).attr('min')), + maxDate: new Date($(this).attr('max')) + }); + }); + } + + if (_wpcf7.jqueryUi && ! _wpcf7.supportHtml5.number) { + this.find('input.wpcf7-number[type="number"]').each(function() { + $(this).spinner({ + min: $(this).attr('min'), + max: $(this).attr('max'), + step: $(this).attr('step') + }); + }); + } + }; + + $.wpcf7AjaxSuccess = function(data, status, xhr, $form) { + if (! $.isPlainObject(data) || $.isEmptyObject(data)) + return; + + var $responseOutput = $form.find('div.wpcf7-response-output'); + + $form.wpcf7ClearResponseOutput(); + + $form.find('.wpcf7-form-control').removeClass('wpcf7-not-valid'); + $form.removeClass('invalid spam sent failed'); + + if (data.captcha) + $form.wpcf7RefillCaptcha(data.captcha); + + if (data.quiz) + $form.wpcf7RefillQuiz(data.quiz); + + if (data.invalids) { + $.each(data.invalids, function(i, n) { + $form.find(n.into).wpcf7NotValidTip(n.message); + $form.find(n.into).find('.wpcf7-form-control').addClass('wpcf7-not-valid'); + $form.find(n.into).find('[aria-invalid]').attr('aria-invalid', 'true'); + }); + + $responseOutput.addClass('wpcf7-validation-errors'); + $form.addClass('invalid'); + + $(data.into).trigger('invalid.wpcf7'); + + } else if (1 == data.spam) { + $responseOutput.addClass('wpcf7-spam-blocked'); + $form.addClass('spam'); + + $(data.into).trigger('spam.wpcf7'); + + } else if (1 == data.mailSent) { + $responseOutput.addClass('wpcf7-mail-sent-ok'); + $form.addClass('sent'); + + if (data.onSentOk) + $.each(data.onSentOk, function(i, n) { eval(n) }); + + $(data.into).trigger('mailsent.wpcf7'); + + } else { + $responseOutput.addClass('wpcf7-mail-sent-ng'); + $form.addClass('failed'); + + $(data.into).trigger('mailfailed.wpcf7'); + } + + if (data.onSubmit) + $.each(data.onSubmit, function(i, n) { eval(n) }); + + $(data.into).trigger('submit.wpcf7'); + + if (1 == data.mailSent) + $form.resetForm().clearForm(); + + $form.find('[placeholder].placeheld').each(function(i, n) { + $(n).val($(n).attr('placeholder')); + }); + + $responseOutput.append(data.message).slideDown('fast'); + $responseOutput.attr('role', 'alert'); + } + + $.fn.wpcf7ExclusiveCheckbox = function() { + return this.find('input:checkbox').click(function() { + $(this).closest('.wpcf7-checkbox').find('input:checkbox').not(this).removeAttr('checked'); + }); + }; + + $.fn.wpcf7Placeholder = function() { + if (_wpcf7.supportHtml5.placeholder) + return this; + + return this.each(function() { + $(this).val($(this).attr('placeholder')); + $(this).addClass('placeheld'); + + $(this).focus(function() { + if ($(this).hasClass('placeheld')) + $(this).val('').removeClass('placeheld'); + }); + + $(this).blur(function() { + if ('' == $(this).val()) { + $(this).val($(this).attr('placeholder')); + $(this).addClass('placeheld'); + } + }); + }); + }; + + $.fn.wpcf7AjaxLoader = function() { + return this.each(function() { + var loader = $('') + .attr({ src: _wpcf7.loaderUrl, alt: _wpcf7.sending }) + .css('visibility', 'hidden'); + + $(this).after(loader); + }); + }; + + $.fn.wpcf7ToggleSubmit = function() { + return this.each(function() { + var form = $(this); + if (this.tagName.toLowerCase() != 'form') + form = $(this).find('form').first(); + + if (form.hasClass('wpcf7-acceptance-as-validation')) + return; + + var submit = form.find('input:submit'); + if (! submit.length) return; + + var acceptances = form.find('input:checkbox.wpcf7-acceptance'); + if (! acceptances.length) return; + + submit.removeAttr('disabled'); + acceptances.each(function(i, n) { + n = $(n); + if (n.hasClass('wpcf7-invert') && n.is(':checked') + || ! n.hasClass('wpcf7-invert') && ! n.is(':checked')) + submit.attr('disabled', 'disabled'); + }); + }); + }; + + $.fn.wpcf7ToggleCheckboxFreetext = function() { + return this.each(function() { + var $wrap = $(this).closest('.wpcf7-form-control'); + + if ($(this).find(':checkbox, :radio').is(':checked')) { + $(this).find(':input.wpcf7-free-text').prop('disabled', false); + } else { + $(this).find(':input.wpcf7-free-text').prop('disabled', true); + } + + $wrap.find(':checkbox, :radio').change(function() { + var $cb = $('.has-free-text', $wrap).find(':checkbox, :radio'); + var $freetext = $(':input.wpcf7-free-text', $wrap); + + if ($cb.is(':checked')) { + $freetext.prop('disabled', false).focus(); + } else { + $freetext.prop('disabled', true); + } + }); + }); + }; + + $.fn.wpcf7NotValidTip = function(message) { + return this.each(function() { + var $into = $(this); + $into.hide().append('' + message + '').slideDown('fast'); + + if ($into.is('.use-floating-validation-tip *')) { + $('.wpcf7-not-valid-tip', $into).mouseover(function() { + $(this).wpcf7FadeOut(); + }); + + $(':input', $into).focus(function() { + $('.wpcf7-not-valid-tip', $into).not(':hidden').wpcf7FadeOut(); + }); + } + }); + }; + + $.fn.wpcf7FadeOut = function() { + return this.each(function() { + $(this).animate({ + opacity: 0 + }, 'fast', function() { + $(this).css({'z-index': -100}); + }); + }); + }; + + $.fn.wpcf7OnloadRefill = function() { + return this.each(function() { + var url = $(this).attr('action'); + if (0 < url.indexOf('#')) + url = url.substr(0, url.indexOf('#')); + + var id = $(this).find('input[name="_wpcf7"]').val(); + var unitTag = $(this).find('input[name="_wpcf7_unit_tag"]').val(); + + $.getJSON(url, + { _wpcf7_is_ajax_call: 1, _wpcf7: id, _wpcf7_request_ver: $.now() }, + function(data) { + if (data && data.captcha) + $('#' + unitTag).wpcf7RefillCaptcha(data.captcha); + + if (data && data.quiz) + $('#' + unitTag).wpcf7RefillQuiz(data.quiz); + } + ); + }); + }; + + $.fn.wpcf7RefillCaptcha = function(captcha) { + return this.each(function() { + var form = $(this); + + $.each(captcha, function(i, n) { + form.find(':input[name="' + i + '"]').clearFields(); + form.find('img.wpcf7-captcha-' + i).attr('src', n); + var match = /([0-9]+)\.(png|gif|jpeg)$/.exec(n); + form.find('input:hidden[name="_wpcf7_captcha_challenge_' + i + '"]').attr('value', match[1]); + }); + }); + }; + + $.fn.wpcf7RefillQuiz = function(quiz) { + return this.each(function() { + var form = $(this); + + $.each(quiz, function(i, n) { + form.find(':input[name="' + i + '"]').clearFields(); + form.find(':input[name="' + i + '"]').siblings('span.wpcf7-quiz-label').text(n[0]); + form.find('input:hidden[name="_wpcf7_quiz_answer_' + i + '"]').attr('value', n[1]); + }); + }); + }; + + $.fn.wpcf7ClearResponseOutput = function() { + return this.each(function() { + $(this).find('div.wpcf7-response-output').hide().empty().removeClass('wpcf7-mail-sent-ok wpcf7-mail-sent-ng wpcf7-validation-errors wpcf7-spam-blocked').removeAttr('role'); + $(this).find('span.wpcf7-not-valid-tip').remove(); + $(this).find('img.ajax-loader').css({ visibility: 'hidden' }); + }); + }; + + $.wpcf7SupportHtml5 = function() { + var features = {}; + var input = document.createElement('input'); + + features.placeholder = 'placeholder' in input; + + var inputTypes = ['email', 'url', 'tel', 'number', 'range', 'date']; + + $.each(inputTypes, function(index, value) { + input.setAttribute('type', value); + features[value] = input.type !== 'text'; + }); + + return features; + }; + +})(jQuery); \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/d465164ccf739ee2c3c4709a8a126f449adc7700.00000393.xml b/www/.content.EZtzwPjb/html/d465164ccf739ee2c3c4709a8a126f449adc7700.00000393.xml new file mode 100644 index 0000000..a06c2c7 --- /dev/null +++ b/www/.content.EZtzwPjb/html/d465164ccf739ee2c3c4709a8a126f449adc7700.00000393.xml @@ -0,0 +1,38 @@ + + + + HugoPoi » dev + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Sat, 14 Sep 2013 23:01:40 +0000 + fr-FR + hourly + 1 + http://wordpress.org/?v=3.6 + + Pascal Negre tu m’emmerdes + http://blog.hugopoi.net/2012/01/07/pascal-negre-tu-memmerdes/ + http://blog.hugopoi.net/2012/01/07/pascal-negre-tu-memmerdes/#comments + Sat, 07 Jan 2012 14:32:47 +0000 + HugoPoi + + + + + + + http://blog.hugopoi.net/?p=574 + Lire la suite »

                            ]]>
                            + http://blog.hugopoi.net/2012/01/07/pascal-negre-tu-memmerdes/feed/ + 4 +
                            +
                            +
                            diff --git a/www/.content.EZtzwPjb/html/d465eaee99032c4f5413c5e23e0e96f819a4097a.00000116.html b/www/.content.EZtzwPjb/html/d465eaee99032c4f5413c5e23e0e96f819a4097a.00000116.html new file mode 100644 index 0000000..7db8044 --- /dev/null +++ b/www/.content.EZtzwPjb/html/d465eaee99032c4f5413c5e23e0e96f819a4097a.00000116.html @@ -0,0 +1,1370 @@ + + + + + + + + Réparations Samsung SyncMaster 2232BW – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            +

                            Allô docteur on a un problème,

                            +

                            En ce dimanche calme avant la fin de mes partiels, mon écran Samsung SyncMaster 2232BW commençait à faire des siennes. Celui-ci depuis un mois ou deux clignotait de façon systématique au démarrage, au début pendant seulement quelques secondes, puis au fur et à mesure, de plus en plus jusqu’à devoir attendre 10 minutes pour que je puisse l’utiliser. Après 3 ans et 4 mois de bons et loyaux services, il voulait me quitter. J’ai tenté le support Samsung par email avec peu d’espoir car l’écran a dépassé sa garantie de 4 mois (oui oui les bâtards -> obsolescence programmée). Et donc j’ai eu le droit à un joli mail automatique me disant de contacter un numéro non surtaxé (mais avec combien de temps d’attente ?), ce que je n’ai pas fait car je n’avais pas envie de passer 30min au téléphone pour au final avoir un « On est désolé mais on ne peut rien faire pour vous car la garantie est dépassée, mais on peut envoyer votre écran en SAV pour faire un devis pour seulement 50 boules ». Concernant le support email de Samsung France, je leur donne une note de 0/20 puisque ce n’est pas un support mais une redirection vers le téléphone.

                            +

                            +

                            Symptômes

                            +

                            Clignotements de l’écran et de la LED power systématiques à chaque démarrage de l’écran. Je me suis tout de suite douté d’un problème d’alimentation et après quelques recherches sur google, confirmation du problème sur beaucoup d’écrans et téléviseurs. Dans 99% des cas ce clignotement est dû à des condensateurs défectueux qu’il faut simplement changer :-D

                            +

                            Démontage

                            +

                            Donc après avoir cerné le problème, j’ai ouvert l’écran pour chercher les condos défectueux. J’ai trouvé une petite vidéo pour mon écran :

                            +

                            +

                            Voici quelques photos en plus pour vous aider :

                            +

                            Les outils que j’ai utilisé pour le démontage

                            +

                            Position des clips

                            +

                            Carte d’alimentation dans son emplacement

                            +

                            Et voici les condensateurs qui posent problèmes. Comme vous pouvez le voir sur la photo, ils sont très facilement identifiable car ils sont bombés sur le dessus.

                            +

                            Condensateurs défectueux

                            +

                            Vous devez donc acheter des condensateurs de remplacement, par exemple sur Conrad.

                            +

                            Mes condensateurs suivant étaient endommagés:

                            +
                              +
                            • 1 de 330uF 25V remplacé par un 470uF 25V
                            • +
                            • 3 de 820uF 25V remplacé par des 1000uF 50V
                            • +
                            +

                            Pour la réparation, il vous faut un fer à souder avec une panne pas trop grosse mais d’une grosse puissance car les soudures sont très solides (j’ai galéré avec un fer pro qui monte jusqu’à 400°).

                            +

                            Tout remarche nickel après remontage, plus de clignotement pour seulement quelques euros.

                            +

                            edit du 19 aout 2014 : j’ai trouvé le service manuel de l’écran si besoin samsung_2232bw_chassis_lpe22bs_sm

                            + + +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +

                            + 41 commentaires

                            +
                            + +
                            +
                            +
                            +
                            +

                            + c'est_moi + · 30 janvier 2012 à 18 h 57 min +

                            +

                            Mille mercis et mille félicitations pour cette fiche technique si pédagogue.

                            +

                            J’espère que le partiels se passent plus que parfait !!

                            +

                            J’ai gardé l’url de la page pour réparer mon écran dans un petit mois : j’espère que la page soit toujours là ;-)

                            +

                            Merci encore.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Maxime + · 5 mai 2012 à 12 h 31 min +

                            +

                            Bonjour HugoPoi!

                            +

                            Merci pour toutes vos infos et votre topic, je voulais avoir quelques précisions sur les condos à changer pour samsung 2232bw, je veux passer commande mais j’ai un problème avec les dimensions des condos, si vous pouvez m’informer de ce que je pourrais acheter car il y a trop de références. En vous remerciant A+ Maxime

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 14 juin 2012 à 22 h 56 min +

                              +

                              N’importe quel condensateur polarisé avec des caractéristiques proches devrait marché.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + gaubjezj + · 14 juin 2012 à 22 h 32 min +

                            +

                            Merci pour le tuto qui m’a bien aidé.
                            +J’ai utilisé un fer de 40 W avec une panne fine et
                            +une pompe à dessouder et j’ai retiré les condensateurs sans problème.
                            +Merci encore (3€40 pour le dépannage).

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + DragonTribal + · 2 juillet 2012 à 12 h 02 min +

                            +

                            super merci pour manifique tuto.
                            +Est-il possible de changer les 5 condensateurs 820uF 25V par des 1000uF 50V? car moi mes 5 condensateurs sont presque HS ;-)

                            +

                            Cordialement

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 2 juillet 2012 à 12 h 25 min +

                              +

                              Oui je penses que ça marchera étant donné que c’est des valeurs plus grandes.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + FRED + · 11 juillet 2012 à 19 h 11 min +

                            +

                            Bravo, MERCI.
                            +Je n’ai encore rien fait…mais j’ai le même problème, et tu me donnes la solution.
                            +Super.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + daninpet + · 31 août 2012 à 10 h 10 min +

                            +

                            Merci mille fois!

                            +

                            J’avais ce problème, et j’ai emmener la photo des trucs a remplacer chez le réparateur du coin et voila!! Ça m’a coûté 7 Euros (mais j’habite en Thaïlande)

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + moi + · 15 novembre 2012 à 15 h 25 min +

                            +

                            super mon 2232bw vient de lâcher, les 3 + 1 condos sont gonflés j ai trouvé un 330 en 35v qui traîné sur un écran mort et j’ai commander 5 1000uf 35v sur ebay pour moins de 3 dollars, ca devrait le faire j’espere j’attend d’être livré merci! par contre j’ai qu’un gros pistolet a soudure et un gros fil d’étain, c’est pas évident mais bon ca le fait quand même =)

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + moi + · 7 décembre 2012 à 9 h 33 min +

                              +

                              parfait je vient de recevoir les condos; j ai meuler la panne du fer a souder pour la tailler en mine de crayon et j ai reussi a les souder facilement ils étaient un peu plus gros mais ca passe tout juste, mais attention ne pas prendre des plus gros! l écran fonctionne nickel maintenant.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Croco + · 19 janvier 2013 à 18 h 39 min +

                            +

                            Je souhaiterai savoir si tu as utilisé un fer à souder bien précis étant donné que la carte est une multi couche.
                            +Merci

                            + +
                            +
                            + + +
                            + +
                            +
                            +
                            +
                            +

                            + momo + · 10 juin 2013 à 13 h 15 min +

                            +

                            slut je voudrai savoir ou trouvé les condansateur a changer sur mon ecran qui clignote

                            + +
                            +
                            + + +
                            + +
                            +
                            +
                            +
                            +

                            + lokmane + · 5 juillet 2013 à 16 h 08 min +

                            +

                            merci j’avais un ecran rouge ! et c’etais la tresse qui relie mon ecran votre page m’a aider a l’ouvrir et a le reparer merci bien

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + ML + · 21 août 2013 à 19 h 11 min +

                            +

                            Merci ! Ecran réparé. Halte à l’obsolescence programmée.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + raymond + · 31 octobre 2013 à 13 h 20 min +

                            +

                            ai vu votre vidéo et les explications pour la reparation de mon écran , apparemment le méme probléme l écran passe au noir apres quelque seconde , j ai vu un le condensateur en bas a gauche gonflé , je l ai fait changé (10€) les autre condensateur étant toujour bon d après la personne qui me l a changé , mais j ai toujour le méme probléme cela peut il venir de la carte video a gauche ?

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 20 décembre 2013 à 12 h 27 min +

                              +

                              Si la led bleu du bouton power s’éteint aussi c’est un problème d’alimentation sinon c’est plus compliqué et ça peut provenir de condensateurs sur la partie vidéo. Changé tous les plus gros condensateurs sur la partie alimentation pourrait être un bon début même si ils ne paraissent pas endommagé.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + damien + · 4 novembre 2013 à 0 h 29 min +

                            +

                            bonjour,

                            +

                            j’ai des crasses coincées entres l’écran et le truc juste derrière, est ce qu’on sais les enlever en démontant la dalle ?

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 20 décembre 2013 à 12 h 28 min +

                              +

                              Je ne sais si cette partie de la dalle est démontable, je penses que c’est collé mais vous pouvez essayer.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + mac + · 1 décembre 2013 à 17 h 30 min +

                            +

                            Merci HugoPoi, avec ces excellents conseils et tuto vidéo, mon écran est reparti pour une nouvelle vie.
                            +Pour les composants, si vous êtes sur Paris ou proche. La boutique RAM électroniques est une bonne adresse, 138 bd Diderot 75012 Paris (Place de la Nation).

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Bouddhid + · 16 janvier 2014 à 19 h 21 min +

                            +

                            Merci beaucoup pour ces conseils ! J’étais à 2 doigts de jeter mon écran, le voilà comme neuf pour moins de 5€ ! Vive la bricole !

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Vincent + · 17 mai 2014 à 16 h 45 min +

                            +

                            Alors là merci.

                            +

                            Pour ce post, les photos, la vidéo, tout y est.

                            +

                            J’ai démonté l’écran assez vite, enlevé la carte, regarder quel condensateurs étaient gonflés,(il y en avaient 4), un magasin d’électronique sur lyon et une heure de démontage, soudure, remontage plus tard, voilà, c’est tout beau.
                            +Ca ne clignote plus, ça s’allume comme avant, comme neuf.

                            +

                            Et dire que j’allais jeter cet écran et claquer 350 euros pour un neuf…

                            +

                            Coût de l’opération pour 4 condensateurs, du fil d’étain 7 euros.

                            +

                            Je précise que je n’avais jamais fais de soudure sur composant électronique auparavant.
                            +Comme quoi cette opération de réparation est à la portée de tous.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Julot + · 6 juillet 2014 à 13 h 49 min +

                            +

                            Site vraiment détaillé et très claire. J’ai pu dépanner mon écran avec succès. Merci beaucoup pour ces précieuses explications.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + PaniK31 + · 29 juillet 2014 à 9 h 21 min +

                            +

                            Pas besoin d’une grosse puissance pour le fer, il faut au préalable gratter le vernis sur l’étain afin de pouvoir le faire fondre plus facilement

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + R211_IP-45130B + · 20 août 2014 à 14 h 04 min +

                            +

                            Bonjour à tous,

                            +

                            Une âme charitable peut-elle me communiquer ce qui est gravé sur la résistance CMS R211 de la carte d’alimentation/inverter IP-45130B qui équipe le SAMSUNG 2232BW ? Cette résistance a pris un coup de tournevis et je n’arrive pas à déterminer sa valeur de résistance car son marquage est effacé et comme le composant est abimé la mesure à l’ohmmètre indique l’infinie.

                            +

                            Merci par avance.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + roger + · 24 octobre 2014 à 17 h 21 min +

                            +

                            Ca refonctionne après échange de 4 condensateurs :
                            +-un 330uf25v remplacé à l’identique.
                            +-trois 820uf25v remplacés par 1000uf25v.
                            +Le tout pour quelques €. Le plus dur était le dessoudage, la tresse n’était pas très efficace contrairement à la pompe.
                            +Grand merci à HugoPoi.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Max + · 26 février 2015 à 16 h 28 min +

                            +

                            ENORME MERCI!! J’ai réparé mon écran en 20mn pour 3,50€, il était à 2 doigts de partir à la déchetterie. Ca faisait des mois qu’il clignotait, et l’allumage mettait parfois plus d’une demi heure. J’ai changé 5 condos 820uf25v et 1 330uf25v, par exactement les mêmes en neuf, et là il démarre au quart de tour! Ca fait plaisir! :)

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + rocco michelle + · 7 octobre 2015 à 10 h 16 min +

                              +

                              Bonjour je ne sais si vous verrez mon message mais je tente…je cherche quelqu’un qui accepterait de changer mes condensateurs sur mon samsung, les réparateurs me demandent 70 à 80 euros et encore ils n’ont pss envie de le faire et me disent d’acheter un nouvel écran. j’aurais bien tenter mais je n’ai pas de matériel et j’ai lu que les condo pouvaient être très dangereux s’ils avaient de la charge alors j’ai la trouille de bidouiller pq je n’y connais rien. si vous êtes de lyon acccepteriez vous de changer mes condensateurs pour 45 euros? merci de votre réponse.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + lecakeseb + · 27 juillet 2015 à 15 h 26 min +

                            +

                            Bonjour,

                            +

                            J’ai utilisé la vidéo pour démonter mon écran afin de le nettoyer de 4 bêtes d’orage infiltrés entre le premier écran (noir) et la dalle (blanche) de mon samsung SyncMaster 2232W

                            +

                            Petits conseils afin de modérer ce que j’ai pu voir dans cette vidéo :

                            +

                            0 : aspirez, nettoyez l’extérieur de l’écran avant de l’ouvrir et nettoyez la table qui vous servira d’atelier, pour éviter les poussières qui s’infiltreront forcément plus tard si vous ne le faites pas…
                            +1 : pour ouvrir, utilisez plutôt un couteau à enduire pour la première partie (le cadre). Vous n’abîmerez ainsi pas du tout l’écran. Soyez patients, ne forcez pas ! ça viendra doucement, mais ça viendra. Il m’a fallu à peine 10 minutes, sans détériorer l’écran, sans le griffer… Il est encore nickel !
                            +2 : attention à ne pas déconnecter les fils reliant le cadre à la carte. Inutile pour simplement nettoyer l’écran.
                            +3 : pour séparer les deux éléments de la dalle entre lesquels les bêtes se sont infiltrées, les doigts suffisent, pas besoin d’outils qui viendraient les endommager. La dalle blanche reste à l’horizontale, l’écran noir sera tenu à la verticale.
                            +4 : utiliser un chiffon doux ne peluchant pas pour enlever les bêtes (faites-vous aider de quelqu’un qui les enlèvera pendant que vous tenez l’écran extérieur en position verticale).
                            +5 : repositionnez la colle d’étanchéité qui aurait pu se déplacer, avant de repositionner les deux écrans.
                            +6 : commencer par refermer par le bas de l’écran (sinon les éléments de réglage situés au bas de l’écran – luminosité, contraste,…- ne se replaceront pas correctement).
                            +7 : Une fois l’écran refermé, j’ai appliqué un peu de « barrage aux insectes », avec un chiffon à l’arrière de mon écran en insistant surtout sur les bouches d’aération par lesquelles les maudites bestioles ont du s’infiltrer. En espérant ne pas avoir à ouvrir !

                            +

                            Bon courage à vous !

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Michel Jousserandot + · 20 janvier 2017 à 20 h 41 min +

                            +

                            Merci pour les conseils au démontage.
                            +J’avais un problème un peu différent :l’écran ne s’allumait plus du tout. Avec un copain beaucoup plus malin que moi, on a détecté 2 fusibles dont l’un était fichu. On l’a remplacé par un petit fil de cuivre. Et tout a remarché comme avant.
                            +Il faut surtout faire attention quand on teste la partie haute tension
                            +Michel.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Crec + · 14 juillet 2017 à 10 h 20 min +

                            +

                            Bonjour. Très bons conseils avertis. Merci beaucoup.
                            +Peut-on avoir les mêmes conseils pour un écran BX2250.
                            +Merci par avance.
                            +Crec

                            + +
                            +
                            +
                              +
                              + +
                              +
                              +
                              +
                              +

                              + HugoPoi + · 6 août 2017 à 14 h 03 min +

                              +

                              J’ai pas de BX2250 donc dans le détails non mais si c’est les même symptômes ça doit la même procédure.

                              + +
                              +
                              + +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Ferronnier + · 10 août 2017 à 17 h 42 min +

                            +

                            Un grand merci !
                            +J’ai changé tous les condensateurs de la partie alimentation de la carte, en déportant certains qui n’avaient pas le même format qu’à l’origine, et ça tourne nickel !

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Nours + · 1 décembre 2017 à 15 h 17 min +

                            +

                            Ca fait des années que j’ai cet article enregistré dans un coin, en nourrissant l’espoir d’avoir un jour le courage de réparer ce foutu écran… Après plus de cinq ans c’est chose faite \o/
                            +Un giga, hypra, immense merci pour ce tutoriel tellement bien expliqué et facile d’accès (je n’avais pas touché à un fer à souder depuis… Oh boy 15 ans déjà).
                            +Après une longue pause, l’écran reprend du service… Jusqu’à la prochaine panne /o/

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + Alex + · 11 août 2018 à 13 h 28 min +

                            +

                            Quelqu’un sait qui pourrait me le faire svp j ai le même problème mais aucun matériel

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + David + · 5 février 2019 à 21 h 06 min +

                            +

                            Merci Hugo pour ce tuto qui m’a déjà servi en 2013 et qui va me resservir aujourd’hui car mon 2ème 2232bw commence à avoir les mêmes symptômes.

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + yvan + · 23 novembre 2019 à 17 h 14 min +

                            +

                            Bonjour
                            +j’ai tenté de changer le condensateur qui avait l’air naze mais ça n’a pas marché … toujours le bouton bleu allumé, l’écran est reconnu par Windows 10 même si l’écran est éteint
                            +grâce au service manuel de l’écran fourni plus haut, j’ai vérifié les tensions jusque sur la carte de la dalle et elles sont correctes, ainsi que sur la carte elle-même, tout est ok, donc je pense que ce n’est plus un problème de condensateur
                            +pour les fusibles, ils ressemblent plutôt à des composants qu’à de simple fusibles, mais comme j’ai les bonnes tension, je ne pense pas que ça vienne de là
                            +j’ai bien peur que ce soit la dalle qui soit naze ? quelqu’un a t il des idées supplémentaires avant que je le jette avec grand regret (c’est un 2032bw, mais c’est la même chose, même si ma carte électronique est un peu différente car plus récente
                            +merci d’avance pour vos conseils

                            + +
                            +
                            + +
                            + +
                            +
                            +
                            +
                            +

                            + yvan + · 24 novembre 2019 à 17 h 26 min +

                            +

                            finalement j’ai trouvé, c’est un petit fusible vert qui ressemble à une résistance mais tout vert avec écrit 4A LF qui assure l’alimentation de la dalle.
                            +En le shuntant, mon écran a retrouvé l’image.
                            +après enquête il s’agit d’un fusible pico de 4ampères de chez little fuse, pas du tout évident à trouver
                            +Résolu !

                            + +
                            +
                            + +
                            +
                            +

                            + Reflow Dell 1546 | HugoPoi + · 22 août 2016 à 16 h 09 min +

                            +

                            […] « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable de marque Dell un 1546 pour être précis. Encore […]

                            + +
                            +
                            + +
                            +
                            +

                            + Reflow Dell Inspiron 1546 – HugoPoi + · 23 juin 2017 à 23 h 18 min +

                            +

                            […] d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un […]

                            + +
                            +
                            + +
                            +
                            +
                            +

                            Répondre à lecakeseb Annuler la réponse

                            Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                            +
                            +
                            +

                            + +

                            +
                            +
                            +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            + + +
                            + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/d526533783056231bfae4b6dc4e5fefa6ad9edf9.00000734.js b/www/.content.EZtzwPjb/html/d526533783056231bfae4b6dc4e5fefa6ad9edf9.00000734.js new file mode 100644 index 0000000..8472db3 --- /dev/null +++ b/www/.content.EZtzwPjb/html/d526533783056231bfae4b6dc4e5fefa6ad9edf9.00000734.js @@ -0,0 +1,96 @@ +jQuery(document).ready(function($) +{ + $('.wp_syntax').bind( + { + mouseover: function() + { + var w = $(this).find('table').outerWidth(); + var hw = $(document).width() - $(this).offset().left - 20; + + /* + * Test code. + */ + /*var left, top; + left = $(this).offset().left; + top = $(this).offset().top; + + $(this) + .appendTo('body') + .css({ + 'position': 'absolute', + 'left': left + 'px', + 'top': top + 'px' + }); + */ + + if(w > $(this).outerWidth()) { + // $(this).css({'position':'relative', 'z-index':'9999', 'box-shadow':'5px 5px 5px #888', 'width':(w > hw ? hw : w)+'px'}); + $(this).css({'position':'relative', 'z-index':'9999', 'width':(w > hw ? hw : w)+'px'}); + } + }, + mouseout: function() + { + // $(this).removeAttr('style'); + $(this).css({'position':'relative', 'z-index':'', 'width':'auto'}); + }, + dblclick: function() + { + //Create text area on top of code on double click + //This can make copying of the code easier + + var jthis = $(this); + if (!jthis.data('hasTextArea')) { + var code = jthis.find(".theCode").html(); + var ta = $('

                            + +

                            + + + + + +
                            + +
                            + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/d60fd5d3261fb8691b0d691d3e50aaafbfb216a3.00000055.html b/www/.content.EZtzwPjb/html/d60fd5d3261fb8691b0d691d3e50aaafbfb216a3.00000055.html new file mode 100644 index 0000000..023668f --- /dev/null +++ b/www/.content.EZtzwPjb/html/d60fd5d3261fb8691b0d691d3e50aaafbfb216a3.00000055.html @@ -0,0 +1,549 @@ + + + + + + + + Freebox Révolution #oupas – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            +

                            Après une longue longue attente, ma Freebox révolution est finalement arrivée à la maison. J’ai opté pour la livraison par relai Kiala qui est gratuite mais moins rapide que par UPS, 20€ ça fait cher après les 120 € dégressifs à payer pour obtenir la nouvelle boite magique. Bon cette nouvelle box est grosse et plus lourde que la dernière voir le carton :

                            +

                            +

                            Une fois le carton ouvert, encore des cartons :

                            +

                            +

                            Et enfin voici la Freebox Server qui remplace la Freebox v5 ADSL, le modem-routeur mais celui-ci fait un plus que ça :

                            +

                            +

                            Alors le point fort, c’est qu’ on branche et ça marche, tous vos paramètres sont transférés dans votre nouvelle box (wifi, routeur, ip) en moins de 5 minutes votre connexion internet est de nouveau opérationnelle ! Au niveau esthétique, on aime ou on aime pas perso je la trouve plus « belle » que l’ancienne. Passons le nouveau design et voici les points forts :

                            +

                            Une première pour free l’interface Web locale pour gérer la box Server, celle-ci est disponible via http://mafreebox.freebox.fr. Elle sert à configurer tous les paramètres routeurs et wifi disponible via l’interface distante, affiche des infos temps réel sur votre connexion. Elle contient aussi un explorateur de fichier pour manager le disque-dur de 250Go intégré, ainsi qu’un système de téléchargement autonome succin qui prend en charge HTTP FTP et BitTorrent.

                            +

                            Cette freebox est aussi équipée d’un module DECT qui permet de connecter directement vos téléphones compatibles, moi j’ai essayé ça marche bien au début puis mon téléphone se dés-associe au bout 30 min tout seul mais toujours paramétré dans la freebox, affaire à suivre. (modèle : Siemens Gigaset C2)

                            +

                            Pour ce qui est du réseau, le wifi est de norme n avec support du WPA2-AES, et un switch Gigabit 4 ports dont 3 sont utilisables car le dernier sert à connecter le freeplug pour la box tv.

                            +

                            Donc pour conclure sur la Freebox Server, plus grosse que la V5 ADSL mais plus de fonctionnalités pas encore toutes au point mais ça avance toute les semaines avec les mises à jour. J’ai noté de mon coté une petite baisse de débit en download depuis mon passage à la v6 mais bon je suis à 4 Km du DSLAM donc 4,5Mbits c’est déjà bien. J’ai trouvé que la fonctionnalité de téléchargement autonome pouvait servir occasionnellement mais est trop simple et ne pourras pas remplacer un NAS ou un serveur pour l’instant. Des surprises sont à venir car elle contient une puce Broadcom VDSL2 qui permet de monter à 50Mbits sismétric sur des lignes de moins d’un kilomètre ; et aussi un emplacement pci-express pour une extension fem-to-cell maybe ? #freemobilevatoutpeter

                            +

                            Maintenant je vais parler TV avec la Freebox Player qui remplace la v5 HD :

                            +

                            +

                            Les points positifs :

                            +
                              +
                            • Interface agréable et simple à l’usage.(merci à @hkoprod)
                            • +
                            • Support USB complet : stockage, clavier, manette de jeux.
                            • +
                            • Support des vidéos HD en H264 1080p mkv
                            • +
                            +

                            Les points négatifs :

                            +
                              +
                            • La fonction Télévision ADSL et TNT, elle marche quand elle veut des fois faut que je redémarre ma box pour voir disparaître le jolie cercle de chargement.
                            • +
                            • Le navigateur internet est plus long que mon Galaxy S pour charger les pages.
                            • +
                            • Pas de sous-titres .srt et .mkv affiché
                            • +
                            • Les .avi ne marchent que après avoir lancé un .mkv avant sinon ça affiche « format non supporté » bizarre ??? (en Upnp avec Tversity et Vuze)
                            • +
                            • Problèmes de programmation des enregistrements
                            • +
                            • Les Blu-Ray mettent trois plombes pour se charger mais ils marchent
                            • +
                            +

                            Je vais m’arrêter là, liste complète sur le bugtracker de freeplayer.org.

                            +

                            Conclusion

                            +

                            Est-ce une révolution cette Freebox ? Pour moi non, car comme toujours chez free la finition n’est pas au rendez-vous. Beaucoup de fonctions sont bogués ou inexistante. Et puis la politique de prix pratiquée par Free avec cette nouvelle offre est détestable on se croirait presque chez Orange avec cette option dégroupage totale à 5.99€ qui au final est de la vente forcée, puis le coup de l’option TV à 2€/mois pour éviter les résiliations c’est pitoyable. Sinon, revenons sur du positif. Cette Freebox apporte un mini-pc Atom dans le salon pour seulement 8€/mois avec lecteur Blu-Ray, TNT HD, navigateur internet, « jeux vidéo » et seedbox ; les possibilités offertes par la puissance de ces deux boîtes sont prometteuses, vivement que les développeurs se bougent le cul ! (promis dans 3 ans je rejoins l’équipe de Free pour donner un coup de main)

                            +

                            Liens Complémentaires :

                            +

                            La freebox démontée

                            +

                            Un test complet et le dossier évolutif

                            +

                            Le dossier de presse de freenews.fr

                            +
                            +
                            +
                            +
                            +
                            Catégories : HardwareNewsTest
                            +
                            +
                            +
                            + + + + + + + + + +
                            +
                            +
                            +
                            +
                            +
                            +
                            +

                            + 2 commentaires

                            +
                            + +
                            +
                            +
                            +
                            +

                            + sebclick + · 9 février 2011 à 12 h 22 min +

                            +

                            Les points négatifs sont en majorité des bugs. Free aurait sûrement pu améliorer la satisfaction utilisateurs si des tests plus poussé avait été effectué avant. L’idéal serait presque que des bêta-testeurs (de vrais clients) soient sélectionné pour tester les box.

                            + +
                            +
                            + +
                            +
                            +

                            + Tweets that mention Freebox Révolution #oupas | HugoPoi -- Topsy.com + · 9 février 2011 à 12 h 44 min +

                            +

                            […] This post was mentioned on Twitter by HugoPoi and HugoPoi, Bim.im. Bim.im said: New Bim.im link: Freebox Révolution #oupas | HugoPoi http://bim.im/yk […]

                            + +
                            +
                            + +
                            +
                            +
                            +

                            Laisser un commentaire

                            Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                            +
                            +
                            +

                            + +

                            +
                            +
                            +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +
                            + + +
                            + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/d61bdf200349b0244a538999d906e7b6f3bf19ec.00000728.js b/www/.content.EZtzwPjb/html/d61bdf200349b0244a538999d906e7b6f3bf19ec.00000728.js new file mode 100644 index 0000000..ce23fb3 --- /dev/null +++ b/www/.content.EZtzwPjb/html/d61bdf200349b0244a538999d906e7b6f3bf19ec.00000728.js @@ -0,0 +1,80 @@ +/*!! + * Piwik - free/libre analytics platform + * + * JavaScript tracking client + * + * @link https://piwik.org + * @source https://github.com/matomo-org/matomo/blob/master/js/piwik.js + * @license https://piwik.org/free-software/bsd/ BSD-3 Clause (also in js/LICENSE.txt) + * @license magnet:?xt=urn:btih:c80d50af7d3db9be66a4d0a86db0286e4fd33292&dn=bsd-3-clause.txt BSD-3-Clause + */ +;if(typeof JSON_PIWIK!=="object"&&typeof window.JSON==="object"&&window.JSON.stringify&&window.JSON.parse){JSON_PIWIK=window.JSON}else{(function(){var a={}; +/*!! JSON v3.3.2 | http://bestiejs.github.io/json3 | Copyright 2012-2014, Kit Cambridge | http://kit.mit-license.org */ +(function(){var c=typeof define==="function"&&define.amd;var e={"function":true,object:true};var h=e[typeof a]&&a&&!a.nodeType&&a;var i=e[typeof window]&&window||this,b=h&&e[typeof module]&&module&&!module.nodeType&&typeof global=="object"&&global;if(b&&(b.global===b||b.window===b||b.self===b)){i=b}function j(ab,V){ab||(ab=i.Object());V||(V=i.Object()); +var K=ab.Number||i.Number,R=ab.String||i.String,x=ab.Object||i.Object,S=ab.Date||i.Date,T=ab.SyntaxError||i.SyntaxError,aa=ab.TypeError||i.TypeError,J=ab.Math||i.Math,Y=ab.JSON||i.JSON;if(typeof Y=="object"&&Y){V.stringify=Y.stringify;V.parse=Y.parse}var n=x.prototype,u=n.toString,r,m,L;var B=new S(-3509827334573292);try{B=B.getUTCFullYear()==-109252&&B.getUTCMonth()===0&&B.getUTCDate()===1&&B.getUTCHours()==10&&B.getUTCMinutes()==37&&B.getUTCSeconds()==6&&B.getUTCMilliseconds()==708}catch(v){}function o(ac){if(o[ac]!==L){return o[ac]}var ad;if(ac=="bug-string-char-index"){ad="a"[0]!="a"}else{if(ac=="json"){ad=o("json-stringify")&&o("json-parse")}else{var ak,ah='{"a":[1,true,false,null,"\\u0000\\b\\n\\f\\r\\t"]}';if(ac=="json-stringify"){var ai=V.stringify,aj=typeof ai=="function"&&B;if(aj){(ak=function(){return 1}).toJSON=ak;try{aj=ai(0)==="0"&&ai(new K())==="0"&&ai(new R())=='""'&&ai(u)===L&&ai(L)===L&&ai()===L&&ai(ak)==="1"&&ai([ak])=="[1]"&&ai([L])=="[null]"&&ai(null)=="null"&&ai([L,u,null])=="[null,null,null]"&&ai({a:[ak,true,false,null,"\x00\b\n\f\r\t"]})==ah&&ai(null,ak)==="1"&&ai([1,2],null,1)=="[\n 1,\n 2\n]"&&ai(new S(-8640000000000000))=='"-271821-04-20T00:00:00.000Z"'&&ai(new S(8640000000000000))=='"+275760-09-13T00:00:00.000Z"'&&ai(new S(-62198755200000))=='"-000001-01-01T00:00:00.000Z"'&&ai(new S(-1))=='"1969-12-31T23:59:59.999Z"' +}catch(ae){aj=false}}ad=aj}if(ac=="json-parse"){var ag=V.parse;if(typeof ag=="function"){try{if(ag("0")===0&&!ag(false)){ak=ag(ah);var af=ak.a.length==5&&ak.a[0]===1;if(af){try{af=!ag('"\t"')}catch(ae){}if(af){try{af=ag("01")!==1}catch(ae){}}if(af){try{af=ag("1.")!==1}catch(ae){}}}}}catch(ae){af=false}}ad=af}}}return o[ac]=!!ad}if(!o("json")){var U="[object Function]",Q="[object Date]",N="[object Number]",O="[object String]",E="[object Array]",A="[object Boolean]";var F=o("bug-string-char-index");if(!B){var s=J.floor;var Z=[0,31,59,90,120,151,181,212,243,273,304,334];var D=function(ac,ad){return Z[ad]+365*(ac-1970)+s((ac-1969+(ad=+(ad>1)))/4)-s((ac-1901+ad)/100)+s((ac-1601+ad)/400)}}if(!(r=n.hasOwnProperty)){r=function(ae){var ac={},ad;if((ac.__proto__=null,ac.__proto__={toString:1},ac).toString!=u){r=function(ah){var ag=this.__proto__,af=ah in (this.__proto__=null,this);this.__proto__=ag;return af}}else{ad=ac.constructor;r=function(ag){var af=(this.constructor||ad).prototype;return ag in this&&!(ag in af&&this[ag]===af[ag]) +}}ac=null;return r.call(this,ae)}}m=function(ae,ah){var af=0,ac,ad,ag;(ac=function(){this.valueOf=0}).prototype.valueOf=0;ad=new ac();for(ag in ad){if(r.call(ad,ag)){af++}}ac=ad=null;if(!af){ad=["valueOf","toString","toLocaleString","propertyIsEnumerable","isPrototypeOf","hasOwnProperty","constructor"];m=function(aj,an){var am=u.call(aj)==U,al,ak;var ai=!am&&typeof aj.constructor!="function"&&e[typeof aj.hasOwnProperty]&&aj.hasOwnProperty||r;for(al in aj){if(!(am&&al=="prototype")&&ai.call(aj,al)){an(al)}}for(ak=ad.length;al=ad[--ak];ai.call(aj,al)&&an(al)){}}}else{if(af==2){m=function(aj,am){var ai={},al=u.call(aj)==U,ak;for(ak in aj){if(!(al&&ak=="prototype")&&!r.call(ai,ak)&&(ai[ak]=1)&&r.call(aj,ak)){am(ak)}}}}else{m=function(aj,am){var al=u.call(aj)==U,ak,ai;for(ak in aj){if(!(al&&ak=="prototype")&&r.call(aj,ak)&&!(ai=ak==="constructor")){am(ak)}}if(ai||r.call(aj,(ak="constructor"))){am(ak)}}}}return m(ae,ah)};if(!o("json-stringify")){var q={92:"\\\\",34:'\\"',8:"\\b",12:"\\f",10:"\\n",13:"\\r",9:"\\t"}; +var I="000000";var t=function(ac,ad){return(I+(ad||0)).slice(-ac)};var z="\\u00";var C=function(ai){var ad='"',ag=0,ah=ai.length,ac=!F||ah>10;var af=ac&&(F?ai.split(""):ai);for(;ag-1/0&&at<1/0){if(D){ay=s(at/86400000);for(ap=s(ay/365.2425)+1970-1;D(ap+1,0)<=ay;ap++){}for(az=s((ay-D(ap,0))/30.42);D(ap,az+1)<=ay;az++){}ay=1+ay-D(ap,az);ak=(at%86400000+86400000)%86400000;aw=s(ak/3600000)%24;au=s(ak/60000)%60;aq=s(ak/1000)%60;an=ak%1000}else{ap=at.getUTCFullYear();az=at.getUTCMonth();ay=at.getUTCDate();aw=at.getUTCHours();au=at.getUTCMinutes();aq=at.getUTCSeconds();an=at.getUTCMilliseconds()}at=(ap<=0||ap>=10000?(ap<0?"-":"+")+t(6,ap<0?-ap:ap):t(4,ap))+"-"+t(2,az+1)+"-"+t(2,ay)+"T"+t(2,aw)+":"+t(2,au)+":"+t(2,aq)+"."+t(3,an)+"Z" +}else{at=null}}else{if(typeof at.toJSON=="function"&&((ae!=N&&ae!=O&&ae!=E)||r.call(at,"toJSON"))){at=at.toJSON(ai)}}}if(ag){at=ag.call(aA,ai,at)}if(at===null){return"null"}ae=u.call(at);if(ae==A){return""+at}else{if(ae==N){return at>-1/0&&at<1/0?""+at:"null"}else{if(ae==O){return C(""+at)}}}if(typeof at=="object"){for(af=aj.length;af--;){if(aj[af]===at){throw aa()}}aj.push(at);ar=[];av=ac;ac+=ax;if(ae==E){for(ah=0,af=at.length;ah0){for(ad="",af>10&&(af=10); +ad.length=48&&ad<=57||ad>=97&&ad<=102||ad>=65&&ad<=70)){H()}}ag+=M("0x"+ah.slice(ae,G));break;default:H()}}else{if(ad==34){break}ad=ah.charCodeAt(G);ae=G;while(ad>=32&&ad!=92&&ad!=34){ad=ah.charCodeAt(++G)}ag+=ah.slice(ae,G)}}}if(ah.charCodeAt(G)==34){G++; +return ag}H();default:ae=G;if(ad==45){ai=true;ad=ah.charCodeAt(++G)}if(ad>=48&&ad<=57){if(ad==48&&((ad=ah.charCodeAt(G+1)),ad>=48&&ad<=57)){H()}ai=false;for(;G=48&&ad<=57);G++){}if(ah.charCodeAt(G)==46){ac=++G;for(;ac=48&&ad<=57);ac++){}if(ac==G){H()}G=ac}ad=ah.charCodeAt(G);if(ad==101||ad==69){ad=ah.charCodeAt(++G);if(ad==43||ad==45){G++}for(ac=G;ac=48&&ad<=57);ac++){}if(ac==G){H()}G=ac}return +ah.slice(ae,G)}if(ai){H()}if(ah.slice(G,G+4)=="true"){G+=4;return true}else{if(ah.slice(G,G+5)=="false"){G+=5;return false}else{if(ah.slice(G,G+4)=="null"){G+=4;return null}}}H()}}return"$"};var W=function(ad){var ac,ae;if(ad=="$"){H()}if(typeof ad=="string"){if((F?ad.charAt(0):ad[0])=="@"){return ad.slice(1)}if(ad=="["){ac=[];for(;;ae||(ae=true)){ad=y();if(ad=="]"){break}if(ae){if(ad==","){ad=y();if(ad=="]"){H()}}else{H()}}if(ad==","){H()}ac.push(W(ad))}return ac}else{if(ad=="{"){ac={};for(;;ae||(ae=true)){ad=y(); +if(ad=="}"){break}if(ae){if(ad==","){ad=y();if(ad=="}"){H()}}else{H()}}if(ad==","||typeof ad!="string"||(F?ad.charAt(0):ad[0])!="@"||y()!=":"){H()}ac[ad.slice(1)]=W(y())}return ac}}H()}return ad};var P=function(ae,ad,af){var ac=w(ae,ad,af);if(ac===L){delete ae[ad]}else{ae[ad]=ac}};var w=function(af,ae,ag){var ad=af[ae],ac;if(typeof ad=="object"&&ad){if(u.call(ad)==E){for(ac=ad.length;ac--;){P(ad,ac,ag)}}else{m(ad,function(ah){P(ad,ah,ag)})}}return ag.call(af,ae,ad)};V.parse=function(ae,af){var ac,ad;G=0;X=""+ae;ac=W(y());if(y()!="$"){H()}G=X=null;return af&&u.call(af)==U?w((ad={},ad[""]=ac,ad),"",af):ac}}}V.runInContext=j;return V}if(h&&!c){j(i,h)}else{var f=i.JSON,k=i.JSON3,d=false;var g=j(i,(i.JSON3={noConflict:function(){if(!d){d=true;i.JSON=f;i.JSON3=k;f=k=null}return g}}));i.JSON={parse:g.parse,stringify:g.stringify}}if(c){define(function(){return g})}}).call(this);JSON_PIWIK=a})()}if(typeof _paq!=="object"){_paq=[]}if(typeof window.Piwik!=="object"){window.Matomo=window.Piwik=(function(){var r,b={},y={},G=document,h=navigator,X=screen,T=window,i=T.performance||T.mozPerformance||T.msPerformance||T.webkitPerformance,t=T.encodeURIComponent,S=T.decodeURIComponent,l=unescape,I=[],E,e,ah=[],x=0,ab=0,U=0,m=false; +function p(ao){try{return S(ao)}catch(ap){return unescape(ao)}}function J(ap){var ao=typeof ap;return ao!=="undefined"}function A(ao){return typeof ao==="function"}function W(ao){return typeof ao==="object"}function w(ao){return typeof ao==="string"||ao instanceof String}function ag(ao){return typeof ao==="number"||ao instanceof Number}function Y(ao){return J(ao)&&(ag(ao)||(w(ao)&&ao.length))}function B(ap){if(!ap){return true}var ao;var aq=true;for(ao in ap){if(Object.prototype.hasOwnProperty.call(ap,ao)){aq=false}}return aq}function ak(ao){var ap=typeof console;if(ap!=="undefined"&&console&&console.error){console.error(ao)}}function af(){var au,at,aw,ap,ao;for(au=0;au0;if(ar){av=aw.split("::");aq=av[0];aw=av[1];if("object"===typeof e[aq]&&"function"===typeof e[aq][aw]){e[aq][aw].apply(e[aq],ap)}else{if(ao){ah.push(ao)}}}else{for(at=0; +at0;if(ax){av=aw.split(".");if(aq&&"object"===typeof aq[av[0]]){aq=aq[av[0]];aw=av[1]}else{if(ao){ah.push(ao);break}}}if(aq[aw]){aq[aw].apply(aq,ap)}else{var ay="The method '"+aw+'\' was not found in "_paq" variable. Please have a look at the Piwik tracker documentation: https://developer.piwik.org/api-reference/tracking-javascript';ak(ay);if(!ax){throw new TypeError(ay)}}if(aw==="addTracker"){break}if(aw==="setTrackerUrl"||aw==="setSiteId"){break}}else{aw.apply(I[at],ap)}}}}}function an(ar,aq,ap,ao){if(ar.addEventListener){ar.addEventListener(aq,ap,ao);return true}if(ar.attachEvent){return ar.attachEvent("on"+aq,ap)}ar["on"+aq]=ap}function n(ao){if(G.readyState==="complete"){ao()}else{if(T.addEventListener){T.addEventListener("load",ao,false)}else{if(T.attachEvent){T.attachEvent("onload",ao)}}}}function q(ar){var ao=false;if(G.attachEvent){ao=G.readyState==="complete"}else{ao=G.readyState!=="loading"}if(ao){ar();return}var aq;if(G.addEventListener){an(G,"DOMContentLoaded",function ap(){G.removeEventListener("DOMContentLoaded",ap,false); +if(!ao){ao=true;ar()}})}else{if(G.attachEvent){G.attachEvent("onreadystatechange",function ap(){if(G.readyState==="complete"){G.detachEvent("onreadystatechange",ap);if(!ao){ao=true;ar()}}});if(G.documentElement.doScroll&&T===T.top){(function ap(){if(!ao){try{G.documentElement.doScroll("left")}catch(at){setTimeout(ap,0);return}ao=true;ar()}}())}}}an(T,"load",function(){if(!ao){ao=true;ar()}},false)}function ac(ap,av,aw){if(!ap){return""}var ao="",ar,aq,at,au;for(ar in b){if(Object.prototype.hasOwnProperty.call(b,ar)){au=b[ar]&&"function"===typeof b[ar][ap];if(au){aq=b[ar][ap];at=aq(av||{},aw);if(at){ao+=at}}}}return ao}function ai(){var ao;m=true;ac("unload");if(r){do{ao=new Date()}while(ao.getTimeAlias()=0;au--){at=av[au].split("=")[0];if(at===aq){av.splice(au,1)}}var ay=av.join("&");if(ay){aw=aw+"?"+ay}if(ax){aw+="#"+ax}}return aw}function f(aq,ap){var ao="[\\?&#]"+ap+"=([^&#]*)";var at=new RegExp(ao);var ar=at.exec(aq);return ar?S(ar[1]):""}function a(ao){if(ao&&String(ao)===ao){return ao.replace(/^\s+|\s+$/g,"")}return ao}function D(ao){return unescape(t(ao))}function am(aE){var aq=function(aK,aJ){return(aK<>>(32-aJ))},aF=function(aM){var aK="",aL,aJ;for(aL=7;aL>=0;aL--){aJ=(aM>>>(aL*4))&15;aK+=aJ.toString(16)}return aK},au,aH,aG,ap=[],ay=1732584193,aw=4023233417,av=2562383102,at=271733878,ar=3285377520,aD,aC,aB,aA,az,aI,ao,ax=[];aE=D(aE);ao=aE.length;for(aH=0;aH>>29);ax.push((ao<<3)&4294967295);for(au=0;auau.offsetWidth+au.scrollLeft||aw+az-aAau.offsetHeight+au.scrollTop||aB+ax-aAax?-1:1});if(ao.length<=1){return ao}var ap=0;var ar=0;var at=[];var aq;aq=ao[ap++];while(aq){if(aq===ao[ap]){ar=at.push(ap)}aq=ao[ap++]||null}while(ar--){ao.splice(at[ar],1)}return ao},getAttributeValueFromNode:function(at,aq){if(!this.hasNodeAttribute(at,aq)){return}if(at&&at.getAttribute){return at.getAttribute(aq)}if(!at||!at.attributes){return}var ar=(typeof at.attributes[aq]);if("undefined"===ar){return}if(at.attributes[aq].value){return at.attributes[aq].value}if(at.attributes[aq].nodeValue){return at.attributes[aq].nodeValue}var ap;var ao=at.attributes;if(!ao){return}for(ap=0;ap1000){break}ao++}},findPieceNode:function(ap){var ao;ao=ae.findFirstNodeHavingAttribute(ap,this.CONTENT_PIECE_ATTR);if(!ao){ao=ae.findFirstNodeHavingClass(ap,this.CONTENT_PIECE_CLASS)}if(ao){return ao}return ap},findTargetNodeNoDefault:function(ao){if(!ao){return}var ap=ae.findFirstNodeHavingAttributeWithValue(ao,this.CONTENT_TARGET_ATTR); +if(ap){return ap}ap=ae.findFirstNodeHavingAttribute(ao,this.CONTENT_TARGET_ATTR);if(ap){return ap}ap=ae.findFirstNodeHavingClass(ao,this.CONTENT_TARGET_CLASS);if(ap){return ap}},findTargetNode:function(ao){var ap=this.findTargetNodeNoDefault(ao);if(ap){return ap}return ao},findContentName:function(ap){if(!ap){return}var at=ae.findFirstNodeHavingAttributeWithValue(ap,this.CONTENT_NAME_ATTR);if(at){return ae.getAttributeValueFromNode(at,this.CONTENT_NAME_ATTR)}var ao=this.findContentPiece(ap);if(ao){return this.removeDomainIfIsInLink(ao)}if(ae.hasNodeAttributeWithValue(ap,"title")){return ae.getAttributeValueFromNode(ap,"title")}var aq=this.findPieceNode(ap);if(ae.hasNodeAttributeWithValue(aq,"title")){return ae.getAttributeValueFromNode(aq,"title")}var ar=this.findTargetNode(ap);if(ae.hasNodeAttributeWithValue(ar,"title")){return ae.getAttributeValueFromNode(ar,"title")}},findContentPiece:function(ap){if(!ap){return}var ar=ae.findFirstNodeHavingAttributeWithValue(ap,this.CONTENT_PIECE_ATTR); +if(ar){return ae.getAttributeValueFromNode(ar,this.CONTENT_PIECE_ATTR)}var ao=this.findPieceNode(ap);var aq=this.findMediaUrlInNode(ao);if(aq){return this.toAbsoluteUrl(aq)}},findContentTarget:function(aq){if(!aq){return}var ar=this.findTargetNode(aq);if(ae.hasNodeAttributeWithValue(ar,this.CONTENT_TARGET_ATTR)){return ae.getAttributeValueFromNode(ar,this.CONTENT_TARGET_ATTR)}var ap;if(ae.hasNodeAttributeWithValue(ar,"href")){ap=ae.getAttributeValueFromNode(ar,"href");return this.toAbsoluteUrl(ap)}var ao=this.findPieceNode(aq);if(ae.hasNodeAttributeWithValue(ao,"href")){ap=ae.getAttributeValueFromNode(ao,"href");return this.toAbsoluteUrl(ap)}},isSameDomain:function(ao){if(!ao||!ao.indexOf){return false}if(0===ao.indexOf(this.getLocation().origin)){return true}var ap=ao.indexOf(this.getLocation().host);if(8>=ap&&0<=ap){return true}return false},removeDomainIfIsInLink:function(aq){var ap="^https?://[^/]+";var ao="^.*//[^/]+";if(aq&&aq.search&&-1!==aq.search(new RegExp(ap))&&this.isSameDomain(aq)){aq=aq.replace(new RegExp(ao),""); +if(!aq){aq="/"}}return aq},findMediaUrlInNode:function(at){if(!at){return}var aq=["img","embed","video","audio"];var ao=at.nodeName.toLowerCase();if(-1!==M(aq,ao)&&ae.findFirstNodeHavingAttributeWithValue(at,"src")){var ar=ae.findFirstNodeHavingAttributeWithValue(at,"src");return ae.getAttributeValueFromNode(ar,"src")}if(ao==="object"&&ae.hasNodeAttributeWithValue(at,"data")){return ae.getAttributeValueFromNode(at,"data")}if(ao==="object"){var au=ae.findNodesByTagName(at,"param");if(au&&au.length){var ap;for(ap=0;ap0}var ap=ar.clientWidth;if(T.innerWidth&&ap>T.innerWidth){ap=T.innerWidth}var ao=ar.clientHeight;if(T.innerHeight&&ao>T.innerHeight){ao=T.innerHeight}return((at.bottom>0||aq)&&at.right>0&&at.left=0){dk=dk.slice(0,dj)}dj=dk.lastIndexOf("/");if(dj!==dk.length-1){dk=dk.slice(0,dj+1)}return dk+di}function cE(dk,di){var dj;dk=String(dk).toLowerCase();di=String(di).toLowerCase();if(dk===di){return true}if(di.slice(0,1)==="."){if(dk===di.slice(1)){return true}dj=dk.length-di.length;if((dj>0)&&(dk.slice(dj)===di)){return true}}return false}function ck(di){var dj=document.createElement("a"); +if(di.indexOf("//")!==0&&di.indexOf("http")!==0){if(di.indexOf("*")===0){di=di.substr(1)}if(di.indexOf(".")===0){di=di.substr(1)}di="http://"+di}dj.href=v.toAbsoluteUrl(di);if(dj.pathname){return dj.pathname}return""}function a3(dj,di){if(!aj(di,"/")){di="/"+di}if(!aj(dj,"/")){dj="/"+dj}var dk=(di==="/"||di==="/*");if(dk){return true}if(dj===di){return true}di=String(di).toLowerCase();dj=String(dj).toLowerCase();if(R(di,"*")){di=di.slice(0,-1);dk=(!di||di==="/");if(dk){return true}if(dj===di){return true}return dj.indexOf(di)===0}if(!R(dj,"/")){dj+="/"}if(!R(di,"/")){di+="/"}return dj.indexOf(di)===0}function ar(dm,dp){var dj,di,dk,dl,dn;for(dj=0;dj0)&&(dl.slice(dk)===di)){return true}}}return false}function cp(di,dk){di=di.replace("send_image=0","send_image=1"); +var dj=new Image(1,1);dj.onload=function(){E=0;if(typeof dk==="function"){dk({request:di,trackerUrl:aD,success:true})}};dj.onerror=function(){if(typeof dk==="function"){dk({request:di,trackerUrl:aD,success:false})}};dj.src=aD+(aD.indexOf("?")<0?"?":"&")+di}function aJ(){return"object"===typeof h&&"function"===typeof h.sendBeacon&&"function"===typeof Blob}function a6(dl,dq){var dk=aJ();if(!dk){return false}var dp={type:"application/x-www-form-urlencoded; charset=UTF-8"};var dn=false;var dj=aD;try{var di=new Blob([dl],dp);if(dl.length<=2000){di=new Blob([],dp);dj=dj+(dj.indexOf("?")<0?"?":"&")+dl}dn=h.sendBeacon(dj,di)}catch(dm){return false}if(dn&&typeof dq==="function"){dq({request:dl,trackerUrl:aD,success:true,isSendBeacon:true})}return dn}function c3(dj,dk,di){if(!J(di)||null===di){di=true}if(m&&a6(dj,dk)){return}setTimeout(function(){if(m&&a6(dj,dk)){return}var dn;try{var dm=T.XMLHttpRequest?new T.XMLHttpRequest():T.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):null;dm.open("POST",aD,true); +dm.onreadystatechange=function(){if(this.readyState===4&&!(this.status>=200&&this.status<300)){var dp=m&&a6(dj,dk);if(!dp&&di){cp(dj,dk)}else{if(typeof dk==="function"){dk({request:dj,trackerUrl:aD,success:false,xhr:this})}}}else{if(this.readyState===4&&(typeof dk==="function")){dk({request:dj,trackerUrl:aD,success:true,xhr:this})}}};dm.setRequestHeader("Content-Type",cw);dm.withCredentials=true;dm.send(dj)}catch(dl){dn=m&&a6(dj,dk);if(!dn&&di){cp(dj,dk)}else{if(typeof dk==="function"){dk({request:dj,trackerUrl:aD,success:false})}}}},50)}function cf(dj){var di=new Date();var dk=di.getTime()+dj;if(!r||dk>r){r=dk}}function cn(di){if(cb||!a5||!bA){return}cb=setTimeout(function dj(){cb=null;if(!bc){bc=(!G.hasFocus||G.hasFocus())}if(!bc){cn(a5);return}if(bQ()){return}var dk=new Date(),dl=a5-(dk.getTime()-cX);dl=Math.min(a5,dl);cn(dl)},di||a5)}function bJ(){if(!cb){return}clearTimeout(cb);cb=null}function ba(){bc=true;cQ=new Date().getTime()}function dc(){var di=new Date().getTime();return !cQ||(di-cQ)>a5 +}function ay(){if(dc()){bQ()}bJ()}function df(){if(aN||!a5){return}aN=true;an(T,"focus",ba);an(T,"blur",ay);ab++;e.addPlugin("HeartBeat"+ab,{unload:function(){if(aN&&dc()){bQ()}}})}function cB(dm){var dj=new Date();var di=dj.getTime();cX=di;if(cA&&di2000){c3(dj,dk)}else{cp(dj,dk)}cf(di)})}if(!aN){df()}}function cj(di){if(cO){return false}return(di&&di.length)}function c2(di,dm){if(!dm||dm>=di.length){return[di]}var dj=0;var dk=di.length;var dl=[];for(dj;dj=dj&&di<=(dj+aZ)){return true}}return false}function dg(di){if(!cL){return""}var dm=f(di,av);if(!dm){return""}dm=String(dm); +var dk=new RegExp("^[a-zA-Z0-9]+$");if(dm.length===32&&dk.test(dm)){var dj=dm.substr(16,32);if(c1(dj)){var dl=dm.substr(0,16);return dl}}return""}function cM(){if(!bN){bN=dg(bM)}var dk=new Date(),di=Math.round(dk.getTime()/1000),dj=aT("id"),dn=aC(dj),dm,dl;if(dn){dm=dn.split(".");dm.unshift("0");if(bN.length){dm[1]=bN}return dm}if(bN.length){dl=bN}else{if("0"===b4()){dl=""}else{dl=cP()}}dm=["1",dl,di,0,di,"",""];return dm}function aY(){var dq=cM(),dl=dq[0],dm=dq[1],dj=dq[2],di=dq[3],dn=dq[4],dk=dq[5];if(!J(dq[6])){dq[6]=""}var dp=dq[6];return{newVisitor:dl,uuid:dm,createTs:dj,visitCount:di,currentVisitTs:dn,lastVisitTs:dk,lastEcommerceOrderTs:dp}}function aG(){var dl=new Date(),dj=dl.getTime(),dm=aY().createTs;var di=parseInt(dm,10);var dk=(di*1000)+cH-dj;return dk}function aL(di){if(!b5){return}var dk=new Date(),dj=Math.round(dk.getTime()/1000);if(!J(di)){di=aY()}var dl=di.uuid+"."+di.createTs+"."+di.visitCount+"."+dj+"."+di.lastVisitTs+"."+di.lastEcommerceOrderTs;dd(aT("id"),dl,aG(),bo,cW,bR) +}function bL(){var di=aC(aT("ref"));if(di.length){try{di=JSON_PIWIK.parse(di);if(W(di)){return di}}catch(dj){}}return["","",0,""]}function bv(dj){var di="testvalue";dd("test",di,10000,null,dj);if(aC("test")===di){bX("test",null,dj);return true}return false}function aE(){var dj=bk;bk=false;var di,dk;for(di=0;didI){dz.visitCount++;dz.lastVisitTs=dz.currentVisitTs}if(!bu||!dr.length){for(dF in cq){if(Object.prototype.hasOwnProperty.call(cq,dF)){dr=f(dJ,cq[dF]);if(dr.length){break}}}for(dF in bF){if(Object.prototype.hasOwnProperty.call(bF,dF)){di=f(dJ,bF[dF]);if(di.length){break}}}}dN=d(bm);du=dE.length?d(dE):"";if(dN.length&&!aV(dN)&&(!bu||!du.length||aV(du))){dE=bm}if(dE.length||dr.length){dq=dt;dD=[dr,di,dq,b1(dE.slice(0,dm))];dd(dA,JSON_PIWIK.stringify(dD),c4,bo,cW)}}dk+="&idsite="+b5+"&rec=1&r="+String(Math.random()).slice(2,8)+"&h="+dj.getHours()+"&m="+dj.getMinutes()+"&s="+dj.getSeconds()+"&url="+t(b1(dJ))+(bm.length?"&urlref="+t(b1(bm)):"")+((bx&&bx.length)?"&uid="+t(bx):"")+"&_id="+dz.uuid+"&_idts="+dz.createTs+"&_idvc="+dz.visitCount+"&_idn="+dz.newVisitor+(dr.length?"&_rcn="+t(dr):"")+(di.length?"&_rck="+t(di):"")+"&_refts="+dq+"&_viewts="+dz.lastVisitTs+(String(dz.lastEcommerceOrderTs).length?"&_ects="+dz.lastEcommerceOrderTs:"")+(String(dE).length?"&_ref="+t(b1(dE.slice(0,dm))):"")+(dw?"&cs="+t(dw):"")+"&send_image=0"; +var dM=cF();for(dF in dM){if(Object.prototype.hasOwnProperty.call(dM,dF)){dk+="&"+dF+"="+dM[dF]}}var dL=[];if(dG){for(dF in dG){if(Object.prototype.hasOwnProperty.call(dG,dF)&&/^dimension\d+$/.test(dF)){var dp=dF.replace("dimension","");dL.push(parseInt(dp,10));dL.push(String(dp));dk+="&"+dF+"="+t(dG[dF]);delete dG[dF]}}}if(dG&&B(dG)){dG=null}for(dF in bl){if(Object.prototype.hasOwnProperty.call(bl,dF)){var dv=(-1===M(dL,dF));if(dv){dk+="&dimension"+dF+"="+t(bl[dF])}}}if(dG){dk+="&data="+t(JSON_PIWIK.stringify(dG))}else{if(ao){dk+="&data="+t(JSON_PIWIK.stringify(ao))}}function ds(dO,dP){var dQ=JSON_PIWIK.stringify(dO);if(dQ.length>2){return"&"+dP+"="+t(dQ)}return""}var dK=dh(bV);var dB=dh(cl);dk+=ds(dK,"cvar");dk+=ds(dB,"e_cvar");if(aQ){dk+=ds(aQ,"_cvar");for(dF in dC){if(Object.prototype.hasOwnProperty.call(dC,dF)){if(aQ[dF][0]===""||aQ[dF][1]===""){delete aQ[dF]}}}if(bP){dd(dx,JSON_PIWIK.stringify(aQ),co,bo,cW)}}if(a2){if(cm){dk+=">_ms="+cm}else{if(i&&i.timing&&i.timing.requestStart&&i.timing.responseEnd){dk+=">_ms="+(i.timing.responseEnd-i.timing.requestStart) +}}}if(aK){dk+="&pv_id="+aK}dz.lastEcommerceOrderTs=J(dl)&&String(dl).length?dl:dz.lastEcommerceOrderTs;aL(dz);cc();dk+=ac(dH,{tracker:bH,request:dk});if(cY.length){dk+="&"+cY}if(A(ca)){dk=ca(dk)}return dk}bQ=function a7(){var di=new Date();di=di.getTime();if(!cX){return false}if((cX+(1000*c6))<=di){return false}if(cX+a5<=di){bH.ping();return true}return false};function bp(dl,dk,dr,dm,di,du){var dp="idgoal=0",dq,dj=new Date(),ds=[],dt,dn=String(dl).length;if(dn){dp+="&ec_id="+t(dl);dq=Math.round(dj.getTime()/1000)}dp+="&revenue="+dk;if(String(dr).length){dp+="&ec_st="+dr}if(String(dm).length){dp+="&ec_tx="+dm}if(String(di).length){dp+="&ec_sh="+di}if(String(du).length){dp+="&ec_dt="+du}if(cZ){for(dt in cZ){if(Object.prototype.hasOwnProperty.call(cZ,dt)){if(!J(cZ[dt][1])){cZ[dt][1]=""}if(!J(cZ[dt][2])){cZ[dt][2]=""}if(!J(cZ[dt][3])||String(cZ[dt][3]).length===0){cZ[dt][3]=0}if(!J(cZ[dt][4])||String(cZ[dt][4]).length===0){cZ[dt][4]=1}ds.push(cZ[dt])}}dp+="&ec_items="+t(JSON_PIWIK.stringify(ds)) +}dp=cs(dp,ao,"ecommerce",dq);bE(dp,bI);if(dn){cZ={}}}function bY(di,dm,dl,dk,dj,dn){if(String(di).length&&J(dm)){bp(di,dm,dl,dk,dj,dn)}}function br(di){if(J(di)){bp("",di,"","","","")}}function bZ(dj,dl,dk){aK=bg();var di=cs("action_name="+t(al(dj||bi)),dl,"log");bE(di,bI,dk)}function a0(dk,dj){var dl,di="(^| )(piwik[_-]"+dj;if(dk){for(dl=0;dl0){dm=parseInt(dm,10);dq(dm)}})}var bB={enabled:true,requests:[],timeout:null,interval:2500,sendRequests:function(){var di=this.requests;this.requests=[];if(di.length===1){bE(di[0],bI)}else{de(di,bI)}},push:function(di){if(!di){return}if(m||!this.enabled){bE(di,bI);return}bB.requests.push(di);if(this.timeout){clearTimeout(this.timeout);this.timeout=null}this.timeout=setTimeout(function(){bB.timeout=null;bB.sendRequests()},bB.interval);var dj="RequestQueue"+aw;if(!Object.prototype.hasOwnProperty.call(b,dj)){b[dj]={unload:function(){if(bB.timeout){clearTimeout(bB.timeout)}bB.sendRequests()}}}}};bh();aL();this.hasConsent=function(){return bA};this.getVisitorId=function(){return aY().uuid +};this.getVisitorInfo=function(){return cM()};this.getAttributionInfo=function(){return bL()};this.getAttributionCampaignName=function(){return bL()[0]};this.getAttributionCampaignKeyword=function(){return bL()[1]};this.getAttributionReferrerTimestamp=function(){return bL()[2]};this.getAttributionReferrerUrl=function(){return bL()[3]};this.setTrackerUrl=function(di){aD=di};this.getTrackerUrl=function(){return aD};this.getPiwikUrl=function(){return O(this.getTrackerUrl(),bG)};this.addTracker=function(di,dk){if(!J(di)||null===di){di=this.getTrackerUrl()}var dj=new Q(di,dk);I.push(dj);e.trigger("TrackerAdded",[this]);return dj};this.getSiteId=function(){return b5};this.setSiteId=function(di){b2(di)};this.resetUserId=function(){bx=""};this.setUserId=function(di){if(Y(di)){bx=di}};this.getUserId=function(){return bx};this.setCustomData=function(di,dj){if(W(di)){ao=di}else{if(!ao){ao={}}ao[di]=dj}};this.getCustomData=function(){return ao};this.setCustomRequestProcessing=function(di){ca=di};this.appendToTrackingUrl=function(di){cY=di +};this.getRequest=function(di){return cs(di)};this.addPlugin=function(di,dj){b[di]=dj};this.setCustomDimension=function(di,dj){di=parseInt(di,10);if(di>0){if(!J(dj)){dj=""}if(!w(dj)){dj=String(dj)}bl[di]=dj}};this.getCustomDimension=function(di){di=parseInt(di,10);if(di>0&&Object.prototype.hasOwnProperty.call(bl,di)){return bl[di]}};this.deleteCustomDimension=function(di){di=parseInt(di,10);if(di>0){delete bl[di]}};this.setCustomVariable=function(dj,di,dm,dk){var dl;if(!J(dk)){dk="visit"}if(!J(di)){return}if(!J(dm)){dm=""}if(dj>0){di=!w(di)?String(di):di;dm=!w(dm)?String(dm):dm;dl=[di.slice(0,bs),dm.slice(0,bs)];if(dk==="visit"||dk===2){cC();aQ[dj]=dl}else{if(dk==="page"||dk===3){bV[dj]=dl}else{if(dk==="event"){cl[dj]=dl}}}}};this.getCustomVariable=function(dj,dk){var di;if(!J(dk)){dk="visit"}if(dk==="page"||dk===3){di=bV[dj]}else{if(dk==="event"){di=cl[dj]}else{if(dk==="visit"||dk===2){cC();di=aQ[dj]}}}if(!J(di)||(di&&di[0]==="")){return false}return di};this.deleteCustomVariable=function(di,dj){if(this.getCustomVariable(di,dj)){this.setCustomVariable(di,"","",dj) +}};this.deleteCustomVariables=function(di){if(di==="page"||di===3){bV={}}else{if(di==="event"){cl={}}else{if(di==="visit"||di===2){aQ={}}}}};this.storeCustomVariablesInCookie=function(){bP=true};this.setLinkTrackingTimer=function(di){bI=di};this.getLinkTrackingTimer=function(){return bI};this.setDownloadExtensions=function(di){if(w(di)){di=di.split("|")}c5=di};this.addDownloadExtensions=function(dj){var di;if(w(dj)){dj=dj.split("|")}for(di=0;di1&&ap!=="addTracker"){ak("The method "+ap+' is registered more than once in "_paq" variable. Only the last call has an effect. Please have a look at the multiple Piwik trackers documentation: https://developer.piwik.org/guides/tracking-javascript-guide#multiple-piwik-trackers')}av[ap]++}}}}return au}var C=["addTracker","disableCookies","setTrackerUrl","setAPIUrl","enableCrossDomainLinking","setCrossDomainLinkingTimeout","setSessionCookieTimeout","setVisitorCookieTimeout","setSecureCookie","setCookiePath","setCookieDomain","setDomains","setUserId","setSiteId","alwaysUseSendBeacon","enableLinkTracking","requireConsent","setConsentGiven"];function ad(ao,aq){var ap=new Q(ao,aq);I.push(ap);_paq=c(_paq,C);for(E=0;E<_paq.length;E++){if(_paq[E]){af(_paq[E])}}_paq=new H();e.trigger("TrackerAdded",[ap]);return ap}an(T,"beforeunload",ai,false);an(T,"message",function(au){if(!au||!au.origin){return}var aw,ar,ap;var ax=d(au.origin);var at=e.getAsyncTrackers();for(ar=0;ar 0 ) { + children[0].appendChild( ak_js ); + } + } +} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/d658e34a07d3a1378ea1f8b6b76f28cd18b16bf3.00001224.js b/www/.content.EZtzwPjb/html/d658e34a07d3a1378ea1f8b6b76f28cd18b16bf3.00001224.js new file mode 100644 index 0000000..cbf09d6 --- /dev/null +++ b/www/.content.EZtzwPjb/html/d658e34a07d3a1378ea1f8b6b76f28cd18b16bf3.00001224.js @@ -0,0 +1,11 @@ +/*! + * jQuery UI Core 1.11.4 + * http://jqueryui.com + * + * Copyright jQuery Foundation and other contributors + * Released under the MIT license. + * http://jquery.org/license + * + * http://api.jqueryui.com/category/ui-core/ + */ +!function(e){"function"==typeof define&&define.amd?define(["jquery"],e):e(jQuery)}(function(a){var e,t,n,i;function r(e,t){var n,i,r,o=e.nodeName.toLowerCase();return"area"===o?(i=(n=e.parentNode).name,!(!e.href||!i||"map"!==n.nodeName.toLowerCase())&&(!!(r=a("img[usemap='#"+i+"']")[0])&&s(r))):(/^(input|select|textarea|button|object)$/.test(o)?!e.disabled:"a"===o&&e.href||t)&&s(e)}function s(e){return a.expr.filters.visible(e)&&!a(e).parents().addBack().filter(function(){return"hidden"===a.css(this,"visibility")}).length}a.ui=a.ui||{},a.extend(a.ui,{version:"1.11.4",keyCode:{BACKSPACE:8,COMMA:188,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,LEFT:37,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SPACE:32,TAB:9,UP:38}}),a.fn.extend({scrollParent:function(e){var t=this.css("position"),n="absolute"===t,i=e?/(auto|scroll|hidden)/:/(auto|scroll)/,r=this.parents().filter(function(){var e=a(this);return(!n||"static"!==e.css("position"))&&i.test(e.css("overflow")+e.css("overflow-y")+e.css("overflow-x"))}).eq(0);return"fixed"!==t&&r.length?r:a(this[0].ownerDocument||document)},uniqueId:(e=0,function(){return this.each(function(){this.id||(this.id="ui-id-"+ ++e)})}),removeUniqueId:function(){return this.each(function(){/^ui-id-\d+$/.test(this.id)&&a(this).removeAttr("id")})}}),a.extend(a.expr[":"],{data:a.expr.createPseudo?a.expr.createPseudo(function(t){return function(e){return!!a.data(e,t)}}):function(e,t,n){return!!a.data(e,n[3])},focusable:function(e){return r(e,!isNaN(a.attr(e,"tabindex")))},tabbable:function(e){var t=a.attr(e,"tabindex"),n=isNaN(t);return(n||0<=t)&&r(e,!n)}}),a("").outerWidth(1).jquery||a.each(["Width","Height"],function(e,n){var r="Width"===n?["Left","Right"]:["Top","Bottom"],i=n.toLowerCase(),o={innerWidth:a.fn.innerWidth,innerHeight:a.fn.innerHeight,outerWidth:a.fn.outerWidth,outerHeight:a.fn.outerHeight};function s(e,t,n,i){return a.each(r,function(){t-=parseFloat(a.css(e,"padding"+this))||0,n&&(t-=parseFloat(a.css(e,"border"+this+"Width"))||0),i&&(t-=parseFloat(a.css(e,"margin"+this))||0)}),t}a.fn["inner"+n]=function(e){return void 0===e?o["inner"+n].call(this):this.each(function(){a(this).css(i,s(this,e)+"px")})},a.fn["outer"+n]=function(e,t){return"number"!=typeof e?o["outer"+n].call(this,e):this.each(function(){a(this).css(i,s(this,e,!0,t)+"px")})}}),a.fn.addBack||(a.fn.addBack=function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}),a("").data("a-b","a").removeData("a-b").data("a-b")&&(a.fn.removeData=(t=a.fn.removeData,function(e){return arguments.length?t.call(this,a.camelCase(e)):t.call(this)})),a.ui.ie=!!/msie [\w.]+/.exec(navigator.userAgent.toLowerCase()),a.fn.extend({focus:(i=a.fn.focus,function(t,n){return"number"==typeof t?this.each(function(){var e=this;setTimeout(function(){a(e).focus(),n&&n.call(e)},t)}):i.apply(this,arguments)}),disableSelection:(n="onselectstart"in document.createElement("div")?"selectstart":"mousedown",function(){return this.bind(n+".ui-disableSelection",function(e){e.preventDefault()})}),enableSelection:function(){return this.unbind(".ui-disableSelection")},zIndex:function(e){if(void 0!==e)return this.css("zIndex",e);if(this.length)for(var t,n,i=a(this[0]);i.length&&i[0]!==document;){if(("absolute"===(t=i.css("position"))||"relative"===t||"fixed"===t)&&(n=parseInt(i.css("zIndex"),10),!isNaN(n)&&0!==n))return n;i=i.parent()}return 0}}),a.ui.plugin={add:function(e,t,n){var i,r=a.ui[e].prototype;for(i in n)r.plugins[i]=r.plugins[i]||[],r.plugins[i].push([t,n[i]])},call:function(e,t,n,i){var r,o=e.plugins[t];if(o&&(i||e.element[0].parentNode&&11!==e.element[0].parentNode.nodeType))for(r=0;r + + + + + À propos | HugoPoi + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +

                            À propos

                            + +
                            +
                            +

                            Bienvenu, sur mon petit blog ou je parle de technologie de l’Internet (avec un grand I s’il vous plait) et de matos. Comme le changement c’est maintenant, j’ai apporté et j’ apporterais quelques modifications sur ce petit morceau de Web dans les mois à venir. Avec cette nouvelle version 2.0, je vais essayer d’écrire plus souvent avec un objectif de une fois par semaine. Mais d’autres changement plus discret vont s’opérer dans l’arrière boutique, dans l’envie d’avoir plus de liberté et grâce à mon nouveau job je vais héberger mon blog  sur un serveur dédié. Aussi pas mal d’optimisations sur ce petit WordPress coté référencement et peut-être l’ajout de pub mais je n’ai pas encore décidé si ce modèle me convenait. Je vais aussi enlever progressivement les différents widgets externes pour booster mon score PageSpeed dans l’espoir d’avoir le WordPress le plus rapide de la Terre.

                            +

                            Bonne lecture.

                            +

                            Hugo

                            +

                            PS : Des fautes d’orthographes se cache peut-être dans ce texte.

                            +
                            +
                            + +
                            +
                            +
                            + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/d66fa4b8baee0d05603e56047540926288c1c50a.00001302.json b/www/.content.EZtzwPjb/html/d66fa4b8baee0d05603e56047540926288c1c50a.00001302.json new file mode 100644 index 0000000..4a62e76 --- /dev/null +++ b/www/.content.EZtzwPjb/html/d66fa4b8baee0d05603e56047540926288c1c50a.00001302.json @@ -0,0 +1 @@ +{"version":"1.0","provider_name":"HugoPoi","provider_url":"http:\/\/blog.hugopoi.net","author_name":"HugoPoi","author_url":"http:\/\/blog.hugopoi.net\/author\/hugopoi\/","title":"R\u00e9parer et transformer une cl\u00e9 USB de 4Go en 8Go","type":"rich","width":600,"height":338,"html":"
                            R\u00e9parer et transformer une cl\u00e9 USB de 4Go en 8Go<\/a><\/blockquote>\n + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +

                            SSH Port forwarding par l’exemple

                            Accéder à un port distant via SSH ssh -L $LOCAL_PORT:$TARGET_IP:$TARGET_PORT user@serverssh $LOCAL_PORT est le port qui sera ouvert localement qui pointera vers le port cible $TARGET_PORT $TARGET_IP ip de la cible doit être joingnable depuis le serveur ssh Exemple Accéder à un serveur MongoDB sur un serveur distant non exposé Lire la suite…

                            +

                            Je me barre de Facebook

                            Cela fait un long moment que je me dis que je vais supprimer mon compte Facebook, voilà mes raisons et pourquoi j’ai du mal a partir. Pourquoi Comme on m’a largement devancé sur pourquoi il faut se barrer à tout prix, je vous recommande la lecture des 31 raisons de Lire la suite…

                            +
                            Par HugoPoi, il y a

                            Pourquoi je suis sous Linux bordel !

                            Début d’année 2017, 6 mois que j’ai pas écrit sur le blog ! Cette année j’ai pris une résolution un choix de merde je n’installerais plus Windaube que se soit pour moi ou pour la dépanne, les amis, la famille, mon chat … Bref pendant les fêtes j’avais de la maintenance à faire comme d’habitude fallait faire une réinstallation pour la famille « met moi Windows 7 ça me suffit et au moins il y tout qui marche dessus » ça faisait environ plus 1 an que j’avais pas installé de windaube. Je me dit que ça va me prendre une petite demi journée. J’ai mis plus d’une journée si on compte le temps de faire les mises à jour. (suite…)

                            +
                            Par HugoPoi, il y a

                            Liste de Noël

                            Bonjour cher Père Noël des Internets 2.0,

                            +

                            Alors je me permets de te déposer ma liste de noël sur mon blog car je suis sûr que tu as demandé à Google et Facebook de t’aider pour satisfaire tout le monde sur la terre(N’oublie pas les petits africains qui crèvent la dalle). Comme je suis égoïste un minimum humain et que je ne saurais dire ce que représente noël pour moi à part manger, boire, dormir, du sexe, avoir des cadeaux et en offrir, cela fait de bonnes raisons pour faire une liste de noël. (suite…)

                            +
                            Par HugoPoi, il y a
                            +
                            +
                            + +
                            +
                            +
                            +
                            + +
                            +
                            + + + + + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/d6e7841f8a53d5ab85891e4acc3c20454a97a096.00000530.html b/www/.content.EZtzwPjb/html/d6e7841f8a53d5ab85891e4acc3c20454a97a096.00000530.html new file mode 100644 index 0000000..2e5b30f --- /dev/null +++ b/www/.content.EZtzwPjb/html/d6e7841f8a53d5ab85891e4acc3c20454a97a096.00000530.html @@ -0,0 +1,364 @@ + + + + + + + télécharger – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                            +
                            +
                            +
                            + +
                            +
                            +
                            +
                            +
                            +

                            Download-Day

                            Bon voilà, je vais officialiser ma participation au D-Day organisé par LinuxManua, en date du 1er novembre 2010. Le but de l’opération étant de télécharger 20 Go et cela uniquement sur les réseaux Peer to Peer de préférence pas anonyme : Edonkey2000, Gnutella, Bitorrent, etc. Alors comme je suis joueur, je Lire la suite…

                            +
                            +
                            + +
                            +
                            +
                            +
                            + +
                            +
                            + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/d7023fb14867eac995753618a18b09599e2b2e1e.00000599.js b/www/.content.EZtzwPjb/html/d7023fb14867eac995753618a18b09599e2b2e1e.00000599.js new file mode 100644 index 0000000..7c7cadf --- /dev/null +++ b/www/.content.EZtzwPjb/html/d7023fb14867eac995753618a18b09599e2b2e1e.00000599.js @@ -0,0 +1,501 @@ +( function( $ ) { + + 'use strict'; + + if ( typeof wpcf7 === 'undefined' || wpcf7 === null ) { + return; + } + + wpcf7 = $.extend( { + cached: 0, + inputs: [] + }, wpcf7 ); + + $( function() { + wpcf7.supportHtml5 = ( function() { + var features = {}; + var input = document.createElement( 'input' ); + + features.placeholder = 'placeholder' in input; + + var inputTypes = [ 'email', 'url', 'tel', 'number', 'range', 'date' ]; + + $.each( inputTypes, function( index, value ) { + input.setAttribute( 'type', value ); + features[ value ] = input.type !== 'text'; + } ); + + return features; + } )(); + + $( 'div.wpcf7 > form' ).each( function() { + var $form = $( this ); + wpcf7.initForm( $form ); + + if ( wpcf7.cached ) { + wpcf7.refill( $form ); + } + } ); + } ); + + wpcf7.getId = function( form ) { + return parseInt( $( 'input[name="_wpcf7"]', form ).val(), 10 ); + }; + + wpcf7.initForm = function( form ) { + var $form = $( form ); + + $form.submit( function( event ) { + if ( typeof window.FormData !== 'function' ) { + return; + } + + wpcf7.submit( $form ); + event.preventDefault(); + } ); + + $( '.wpcf7-submit', $form ).after( '' ); + + wpcf7.toggleSubmit( $form ); + + $form.on( 'click', '.wpcf7-acceptance', function() { + wpcf7.toggleSubmit( $form ); + } ); + + // Exclusive Checkbox + $( '.wpcf7-exclusive-checkbox', $form ).on( 'click', 'input:checkbox', function() { + var name = $( this ).attr( 'name' ); + $form.find( 'input:checkbox[name="' + name + '"]' ).not( this ).prop( 'checked', false ); + } ); + + // Free Text Option for Checkboxes and Radio Buttons + $( '.wpcf7-list-item.has-free-text', $form ).each( function() { + var $freetext = $( ':input.wpcf7-free-text', this ); + var $wrap = $( this ).closest( '.wpcf7-form-control' ); + + if ( $( ':checkbox, :radio', this ).is( ':checked' ) ) { + $freetext.prop( 'disabled', false ); + } else { + $freetext.prop( 'disabled', true ); + } + + $wrap.on( 'change', ':checkbox, :radio', function() { + var $cb = $( '.has-free-text', $wrap ).find( ':checkbox, :radio' ); + + if ( $cb.is( ':checked' ) ) { + $freetext.prop( 'disabled', false ).focus(); + } else { + $freetext.prop( 'disabled', true ); + } + } ); + } ); + + // Placeholder Fallback + if ( ! wpcf7.supportHtml5.placeholder ) { + $( '[placeholder]', $form ).each( function() { + $( this ).val( $( this ).attr( 'placeholder' ) ); + $( this ).addClass( 'placeheld' ); + + $( this ).focus( function() { + if ( $( this ).hasClass( 'placeheld' ) ) { + $( this ).val( '' ).removeClass( 'placeheld' ); + } + } ); + + $( this ).blur( function() { + if ( '' === $( this ).val() ) { + $( this ).val( $( this ).attr( 'placeholder' ) ); + $( this ).addClass( 'placeheld' ); + } + } ); + } ); + } + + if ( wpcf7.jqueryUi && ! wpcf7.supportHtml5.date ) { + $form.find( 'input.wpcf7-date[type="date"]' ).each( function() { + $( this ).datepicker( { + dateFormat: 'yy-mm-dd', + minDate: new Date( $( this ).attr( 'min' ) ), + maxDate: new Date( $( this ).attr( 'max' ) ) + } ); + } ); + } + + if ( wpcf7.jqueryUi && ! wpcf7.supportHtml5.number ) { + $form.find( 'input.wpcf7-number[type="number"]' ).each( function() { + $( this ).spinner( { + min: $( this ).attr( 'min' ), + max: $( this ).attr( 'max' ), + step: $( this ).attr( 'step' ) + } ); + } ); + } + + // Character Count + $( '.wpcf7-character-count', $form ).each( function() { + var $count = $( this ); + var name = $count.attr( 'data-target-name' ); + var down = $count.hasClass( 'down' ); + var starting = parseInt( $count.attr( 'data-starting-value' ), 10 ); + var maximum = parseInt( $count.attr( 'data-maximum-value' ), 10 ); + var minimum = parseInt( $count.attr( 'data-minimum-value' ), 10 ); + + var updateCount = function( target ) { + var $target = $( target ); + var length = $target.val().length; + var count = down ? starting - length : length; + $count.attr( 'data-current-value', count ); + $count.text( count ); + + if ( maximum && maximum < length ) { + $count.addClass( 'too-long' ); + } else { + $count.removeClass( 'too-long' ); + } + + if ( minimum && length < minimum ) { + $count.addClass( 'too-short' ); + } else { + $count.removeClass( 'too-short' ); + } + }; + + $( ':input[name="' + name + '"]', $form ).each( function() { + updateCount( this ); + + $( this ).keyup( function() { + updateCount( this ); + } ); + } ); + } ); + + $form.on( 'change', '.wpcf7-validates-as-url', function() { + var val = $.trim( $( this ).val() ); + + // check the scheme part + if ( val && ! val.match( /^[a-z][a-z0-9.+-]*:/i ) ) { + val = val.replace( /^\/+/, '' ); + val = 'http://' + val; + } + + $( this ).val( val ); + } ); + }; + + wpcf7.submit = function( form ) { + var $form = $( form ); + + $( '[placeholder].placeheld', $form ).each( function( i, n ) { + $( n ).val( '' ); + } ); + + wpcf7.clearResponse( $form ); + $( '.ajax-loader', $form ).addClass( 'is-active' ); + + if ( typeof window.FormData !== 'function' ) { + return; + } + + var formData = new FormData( $form.get( 0 ) ); + + var ajaxSuccess = function( data, status, xhr, $form ) { + var detail = { + id: $( data.into ).attr( 'id' ), + status: data.status, + inputs: [] + }; + + $.each( $form.serializeArray(), function( i, field ) { + if ( '_wpcf7' == field.name ) { + detail.contactFormId = field.value; + } else if ( '_wpcf7_version' == field.name ) { + detail.pluginVersion = field.value; + } else if ( '_wpcf7_locale' == field.name ) { + detail.contactFormLocale = field.value; + } else if ( '_wpcf7_unit_tag' == field.name ) { + detail.unitTag = field.value; + } else if ( '_wpcf7_container_post' == field.name ) { + detail.containerPostId = field.value; + } else if ( field.name.match( /^_wpcf7_\w+_free_text_/ ) ) { + var owner = field.name.replace( /^_wpcf7_\w+_free_text_/, '' ); + detail.inputs.push( { + name: owner + '-free-text', + value: field.value + } ); + } else if ( field.name.match( /^_/ ) ) { + // do nothing + } else { + detail.inputs.push( field ); + } + } ); + + var $message = $( '.wpcf7-response-output', $form ); + + switch ( data.status ) { + case 'validation_failed': + $.each( data.invalidFields, function( i, n ) { + $( n.into, $form ).each( function() { + wpcf7.notValidTip( this, n.message ); + $( '.wpcf7-form-control', this ).addClass( 'wpcf7-not-valid' ); + $( '[aria-invalid]', this ).attr( 'aria-invalid', 'true' ); + } ); + } ); + + $message.addClass( 'wpcf7-validation-errors' ); + $form.addClass( 'invalid' ); + + wpcf7.triggerEvent( data.into, 'invalid', detail ); + break; + case 'spam': + $message.addClass( 'wpcf7-spam-blocked' ); + $form.addClass( 'spam' ); + + $( '[name="g-recaptcha-response"]', $form ).each( function() { + if ( '' === $( this ).val() ) { + var $recaptcha = $( this ).closest( '.wpcf7-form-control-wrap' ); + wpcf7.notValidTip( $recaptcha, wpcf7.recaptcha.messages.empty ); + } + } ); + + wpcf7.triggerEvent( data.into, 'spam', detail ); + break; + case 'mail_sent': + $message.addClass( 'wpcf7-mail-sent-ok' ); + $form.addClass( 'sent' ); + + if ( data.onSentOk ) { + $.each( data.onSentOk, function( i, n ) { eval( n ) } ); + } + + wpcf7.triggerEvent( data.into, 'mailsent', detail ); + break; + case 'mail_failed': + case 'acceptance_missing': + default: + $message.addClass( 'wpcf7-mail-sent-ng' ); + $form.addClass( 'failed' ); + + wpcf7.triggerEvent( data.into, 'mailfailed', detail ); + } + + wpcf7.refill( $form, data ); + + if ( data.onSubmit ) { + $.each( data.onSubmit, function( i, n ) { eval( n ) } ); + } + + wpcf7.triggerEvent( data.into, 'submit', detail ); + + if ( 'mail_sent' == data.status ) { + $form.each( function() { + this.reset(); + } ); + } + + $form.find( '[placeholder].placeheld' ).each( function( i, n ) { + $( n ).val( $( n ).attr( 'placeholder' ) ); + } ); + + $message.html( '' ).append( data.message ).slideDown( 'fast' ); + $message.attr( 'role', 'alert' ); + + $( '.screen-reader-response', $form.closest( '.wpcf7' ) ).each( function() { + var $response = $( this ); + $response.html( '' ).attr( 'role', '' ).append( data.message ); + + if ( data.invalidFields ) { + var $invalids = $( '
                              ' ); + + $.each( data.invalidFields, function( i, n ) { + if ( n.idref ) { + var $li = $( '
                            • ' ).append( $( '' ).attr( 'href', '#' + n.idref ).append( n.message ) ); + } else { + var $li = $( '
                            • ' ).append( n.message ); + } + + $invalids.append( $li ); + } ); + + $response.append( $invalids ); + } + + $response.attr( 'role', 'alert' ).focus(); + } ); + }; + + $.ajax( { + type: 'POST', + url: wpcf7.apiSettings.getRoute( + '/contact-forms/' + wpcf7.getId( $form ) + '/feedback' ), + data: formData, + dataType: 'json', + processData: false, + contentType: false + } ).done( function( data, status, xhr ) { + ajaxSuccess( data, status, xhr, $form ); + $( '.ajax-loader', $form ).removeClass( 'is-active' ); + } ).fail( function( xhr, status, error ) { + var $e = $( '
                              ' ).text( error.message ); + $form.after( $e ); + } ); + }; + + wpcf7.triggerEvent = function( target, name, detail ) { + var $target = $( target ); + + /* DOM event */ + var event = new CustomEvent( 'wpcf7' + name, { + bubbles: true, + detail: detail + } ); + + $target.get( 0 ).dispatchEvent( event ); + + /* jQuery event */ + $target.trigger( 'wpcf7:' + name, detail ); + $target.trigger( name + '.wpcf7', detail ); // deprecated + }; + + wpcf7.toggleSubmit = function( form, state ) { + var $form = $( form ); + var $submit = $( 'input:submit', $form ); + + if ( typeof state !== 'undefined' ) { + $submit.prop( 'disabled', ! state ); + return; + } + + if ( $form.hasClass( 'wpcf7-acceptance-as-validation' ) ) { + return; + } + + $submit.prop( 'disabled', false ); + + $( 'input:checkbox.wpcf7-acceptance', $form ).each( function() { + var $a = $( this ); + + if ( $a.hasClass( 'wpcf7-invert' ) && $a.is( ':checked' ) + || ! $a.hasClass( 'wpcf7-invert' ) && ! $a.is( ':checked' ) ) { + $submit.prop( 'disabled', true ); + return false; + } + } ); + }; + + wpcf7.notValidTip = function( target, message ) { + var $target = $( target ); + $( '.wpcf7-not-valid-tip', $target ).remove(); + $( '' ) + .text( message ).appendTo( $target ); + + if ( $target.is( '.use-floating-validation-tip *' ) ) { + var fadeOut = function( target ) { + $( target ).not( ':hidden' ).animate( { + opacity: 0 + }, 'fast', function() { + $( this ).css( { 'z-index': -100 } ); + } ); + }; + + $target.on( 'mouseover', '.wpcf7-not-valid-tip', function() { + fadeOut( this ); + } ); + + $target.on( 'focus', ':input', function() { + fadeOut( $( '.wpcf7-not-valid-tip', $target ) ); + } ); + } + }; + + wpcf7.refill = function( form, data ) { + var $form = $( form ); + + var refillCaptcha = function( $form, items ) { + $.each( items, function( i, n ) { + $form.find( ':input[name="' + i + '"]' ).val( '' ); + $form.find( 'img.wpcf7-captcha-' + i ).attr( 'src', n ); + var match = /([0-9]+)\.(png|gif|jpeg)$/.exec( n ); + $form.find( 'input:hidden[name="_wpcf7_captcha_challenge_' + i + '"]' ).attr( 'value', match[ 1 ] ); + } ); + }; + + var refillQuiz = function( $form, items ) { + $.each( items, function( i, n ) { + $form.find( ':input[name="' + i + '"]' ).val( '' ); + $form.find( ':input[name="' + i + '"]' ).siblings( 'span.wpcf7-quiz-label' ).text( n[ 0 ] ); + $form.find( 'input:hidden[name="_wpcf7_quiz_answer_' + i + '"]' ).attr( 'value', n[ 1 ] ); + } ); + }; + + if ( typeof data === 'undefined' ) { + $.ajax( { + type: 'GET', + url: wpcf7.apiSettings.getRoute( + '/contact-forms/' + wpcf7.getId( $form ) + '/refill' ), + dataType: 'json' + } ).done( function( data, status, xhr ) { + if ( data.captcha ) { + refillCaptcha( $form, data.captcha ); + } + + if ( data.quiz ) { + refillQuiz( $form, data.quiz ); + } + } ); + + } else { + if ( data.captcha ) { + refillCaptcha( $form, data.captcha ); + } + + if ( data.quiz ) { + refillQuiz( $form, data.quiz ); + } + } + }; + + wpcf7.clearResponse = function( form ) { + var $form = $( form ); + $form.removeClass( 'invalid spam sent failed' ); + $form.siblings( '.screen-reader-response' ).html( '' ).attr( 'role', '' ); + + $( '.wpcf7-not-valid-tip', $form ).remove(); + $( '[aria-invalid]', $form ).attr( 'aria-invalid', 'false' ); + $( '.wpcf7-form-control', $form ).removeClass( 'wpcf7-not-valid' ); + + $( '.wpcf7-response-output', $form ) + .hide().empty().removeAttr( 'role' ) + .removeClass( 'wpcf7-mail-sent-ok wpcf7-mail-sent-ng wpcf7-validation-errors wpcf7-spam-blocked' ); + }; + + wpcf7.apiSettings.getRoute = function( path ) { + var url = wpcf7.apiSettings.root; + + url = url.replace( + wpcf7.apiSettings.namespace, + wpcf7.apiSettings.namespace + path ); + + return url; + }; + +} )( jQuery ); + +/* + * Polyfill for Internet Explorer + * See https://developer.mozilla.org/en-US/docs/Web/API/CustomEvent/CustomEvent + */ +( function () { + if ( typeof window.CustomEvent === "function" ) return false; + + function CustomEvent ( event, params ) { + params = params || { bubbles: false, cancelable: false, detail: undefined }; + var evt = document.createEvent( 'CustomEvent' ); + evt.initCustomEvent( event, + params.bubbles, params.cancelable, params.detail ); + return evt; + } + + CustomEvent.prototype = window.Event.prototype; + + window.CustomEvent = CustomEvent; +} )(); diff --git a/www/.content.EZtzwPjb/html/d72c3f04251af10de8f709d73289c81805c377df.00000080.html b/www/.content.EZtzwPjb/html/d72c3f04251af10de8f709d73289c81805c377df.00000080.html new file mode 100644 index 0000000..a4db57b --- /dev/null +++ b/www/.content.EZtzwPjb/html/d72c3f04251af10de8f709d73289c81805c377df.00000080.html @@ -0,0 +1,497 @@ + + + + + + Démontage Asus U36 | HugoPoi + + + + + + + + + + + + + + + + + +
                              + +
                              +
                              +

                              Démontage Asus U36

                              + +
                              +
                              + +

                              J’ai acheté un petit SSD pour mettre dans mon U36 acheté il y a quelques mois, je n’ai pas trouvé de procédure de démontage sur Internet donc voici les photos de mon démontage.

                              +

                              1) Commencer par enlever toutes les vis et la trappe pour accéder à la RAM, puis déconnecter les deux connecteurs clavier et touchpad qui se situent juste à coté de la carte wifi.

                              +

                              2) Retourner le pc et à l’aide d’un petit tournevis plat, dé-clipser les petits clips sur tout le tour du pc. Vous pouvez maintenant enlever toute la partie supérieur.

                              +

                              +

                              3) Démontage Terminé :D

                              +

                              4) Galerie

                              + + +
                              +
                              +
                              + + +
                              + + +
                                +
                              1. +
                                + +
                                +

                                Salut Hugo,

                                +

                                Comment as tu fait pour déconnecter les deux connecteurs clavier et touchpad qui se situent juste à coté de la carte wifi ?

                                +

                                Merci d’avance,
                                +John

                                +
                                + +
                                +
                                  +
                                • +
                                  + +
                                  +

                                  Désolé pour l’attente,

                                  +

                                  Il faut prendre un petit tournevis plat et relever les petites languettes au dessus des nappes de façon à la mettre à 90° par rapport à la carte mère.

                                  +
                                  + +
                                  +
                                • +
                                +
                              2. +
                              3. +
                                +
                                + leboulanger + +
                                +
                                +

                                bonjour,
                                +super ton tuto ! j’ai la m idée que toi à savoir mettre un ssd mais est ce que tu sais si çest du SATA 1 ou 2 ? concernant les connecteurs je ne l’ai situe pas du tout. est ce que tu pourrais ajoutait une photo stp ?
                                +merci en ts cas pour la contribution

                                +
                                + +
                                +
                                  +
                                • +
                                  + +
                                  +

                                  Salut,
                                  +Pour le mode SATA c’est du 2. Après j’ai pas d’autre photo mais le connecteur il est situé juste au bout du disque sur la gauche.

                                  +
                                  + +
                                  +
                                • +
                                +
                              4. +
                              5. +
                                +
                                + Asus U36 et OCZ Vertex 3 la suite | HugoPoi - pingback on 15 mai 2012 at 3 h 39 min +
                                +
                                +
                              6. +
                              7. +
                                + +
                                +

                                J’ai aussi démonté le mien pour mettre un ssd et il n’a plus jamais redémarré (même avec le disque dur initial) …
                                +Un conseil, soyez très prudents !

                                +
                                + +
                                + +
                              8. +
                              9. +
                                + +
                                +

                                Emiso tu es un boulet

                                +
                                + +
                                + +
                              10. +
                              11. +
                                + +
                                +

                                Mon U36 avec un SSD Crucial M4 et une carte Intel Centrino n-6230 à la place de la n-100… que du bonheur.

                                +

                                Merci pour le tuto bien utile.

                                +
                                + +
                                +
                              12. +
                              13. +
                                + +
                                +

                                merci pour ce tuto; a noter un truc pour ne pas perdre les vis et savoir où les replacer:

                                +

                                http://fr.slideshare.net/stepmond/remplacement-ecran-sony-vaio?ref=http://www.pcsoleil.fr/ecran-pc-portable-sony-vaio-casse/

                                +

                                3eme diapo

                                +
                                + +
                                +
                              14. +
                              15. +
                                + +
                                +

                                Can you send me a close up picture of both sides of the U36JC I/O board? It would be nice if you could give me also the resistor/capacitor values. I need to connect my SATA hard drive, but the board itself is very expensive. Do you think I can solder the SATA wires to a cable and plug that to the hard drive?

                                +
                                + +
                                +
                                  +
                                • +
                                  + +
                                  +

                                  I don’t want to reopen my laptop just for take picture. I don’t know if there are any out pins to solder a SATA connector but in Intel driver menu on Windows a port with no-connection appear.

                                  +
                                  + +
                                  +
                                • +
                                +
                              16. +
                              17. +
                                + +
                                +

                                Hello , j’ai également cet Asus et comme tout le monde je pense, bien tenté de remplacer le disque dur de base par un ssd ^^.
                                + Sur la première image de ton petit tuto, tu sembles montrer des emplacements vis sous les antidérapants.. ca me semble étrange ;p. Je voulais savoir si ceux si ne risquaient pas de s’abîmer (et du coup s’ils se remettaient également facilement).
                                + Si tu passe par là, merci de la réponse!

                                +
                                + +
                                +
                                  +
                                • +
                                  + +
                                  +

                                  J’ai pu décoller et recoller sans problème les patins antidérapants. Mais à la rigueur prévoir du double-face pour remplacement.

                                  +
                                  + +
                                  +
                                • +
                                +
                              18. +
                              19. +
                                + +
                                +

                                Oh my goodness! Incredible article dude! Thank
                                +you so much, However I am going through issues with your RSS.
                                +I don’t know why I am unable to subscribe to it. Is there anyone else getting the same RSS problems? Anybody who knows the answer will you kindly respond? Thanks!!

                                +
                                + +
                                + +
                              20. +
                              + +
                              +

                              Répondre à Emiso ¬
                              Annuler la réponse

                              +
                              +

                              + +

                              +

                              NOTE - Vous pouvez utiliser les éléments et attributs HTML tags and attributes:
                              <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

                              + + + +

                              +

                              +
                              +
                              +

                              Trackbacks and Pingbacks:

                              + +
                              +
                              +
                              +
                              + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/d7739f27147fb8556b09f310f566c6410f5aa776.00001267.json b/www/.content.EZtzwPjb/html/d7739f27147fb8556b09f310f566c6410f5aa776.00001267.json new file mode 100644 index 0000000..8bdc2f8 --- /dev/null +++ b/www/.content.EZtzwPjb/html/d7739f27147fb8556b09f310f566c6410f5aa776.00001267.json @@ -0,0 +1 @@ +{"version":"1.0","provider_name":"HugoPoi","provider_url":"http:\/\/blog.hugopoi.net","author_name":"HugoPoi","author_url":"http:\/\/blog.hugopoi.net\/author\/hugopoi\/","title":"GET to POST","type":"rich","width":600,"height":338,"html":"
                              GET to POST<\/a><\/blockquote>\n + + + + + + + + + + + + + + + + + +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              +
                              +

                              Réparations Samsung SyncMaster 2232BW

                              Allô docteur on a un problème,

                              +

                              En ce dimanche calme avant la fin de mes partiels, mon écran Samsung SyncMaster 2232BW commençait à faire des siennes. Celui-ci depuis un mois ou deux clignotait de façon systématique au démarrage, au début pendant seulement quelques secondes, puis au fur et à mesure, de plus en plus jusqu’à devoir attendre 10 minutes pour que je puisse l’utiliser. Après 3 ans et 4 mois de bons et loyaux services, il voulait me quitter. J’ai tenté le support Samsung par email avec peu d’espoir car l’écran a dépassé sa garantie de 4 mois (oui oui les bâtards -> obsolescence programmée). Et donc j’ai eu le droit à un joli mail automatique me disant de contacter un numéro non surtaxé (mais avec combien de temps d’attente ?), ce que je n’ai pas fait car je n’avais pas envie de passer 30min au téléphone pour au final avoir un « On est désolé mais on ne peut rien faire pour vous car la garantie est dépassée, mais on peut envoyer votre écran en SAV pour faire un devis pour seulement 50 boules ». Concernant le support email de Samsung France, je leur donne une note de 0/20 puisque ce n’est pas un support mais une redirection vers le téléphone.

                              +

                              (suite…)

                              +
                              Par HugoPoi, il y a

                              Vos données sauvegardées

                              Dans le monde d’aujourd’hui, le numérique est omniprésent, tout ce que vous faites est ou peut être numérisé. Qu’il s’agisse de vos photos de vacances, de votre CV ou votre liste de course, vos contacts et tous les documents que vous utilisez pour travailler sont surement numériques. L’informatique est partout et aide à gérer votre comptabilité, vos contacts pro ou perso et même bientôt votre frigo. Quand je pense qu’il y a 10 ans, beaucoup de professions géraient leur base clients avec des fiches papiers, et que ça existe encore… Pourtant, c’est une perte de temps importante de gérer des clientèles de plus 100 personnes, trier les fiches à la main dans l’ordre alphabétique. Imaginez devoir sortir tous les clients que vous n’avez pas contacté depuis 2 mois, même avec uniquement 100 personnes vous allez y passer au moins une 1 heure avant que votre liste soit faite, avec une base de données, cela est fait en moins d’1 seconde. Tous ça pour dire que l’informatique facilite grandement votre vie jusqu’au jour où ça tombe en panne ! J’ai donc quelques propositions à vous faire concernant la protection de vos données. (suite…)

                              +
                              Par HugoPoi, il y a

                              Montage PC de A à Z

                              Bonjour tout le monde,

                              +

                              Ready pour un montage de PC dans les Règles de l’art. Ce Week-end avec Calcifer on a monté du PC :D [Week end du 14 et 15 Mai … Merci à Hugopoi de sa réactivité pour finir ses articles :p] (suite…)

                              +
                              Par HugoPoi, il y a

                              Quel age pour s’inscrire sur Facebook ?

                              Pour commencer définition et contexte:

                              +

                              Facebook est un réseau social créé par Mark Zuckerberg dont le but premier était de mettre un nom sur un visage et ainsi de permettre de contacter facilement une personne faisant parti de votre réseau universitaire. Exemple, vous voulez « pécho » ce soir, vous allez sur Facebook vous faites le tour des amis de vos amis et c’est bon. Depuis, le réseau a un peu évolué au vu de son augmentation de popularité mais le principe est inchangé. (suite…)

                              +
                              Par HugoPoi, il y a
                              +
                              +
                              + +
                              +
                              +
                              +
                              + +
                              +
                              + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/d791abc3d22eaef8a0d54afc62d1fe5c223074f0.00000012.html b/www/.content.EZtzwPjb/html/d791abc3d22eaef8a0d54afc62d1fe5c223074f0.00000012.html new file mode 100644 index 0000000..4252a36 --- /dev/null +++ b/www/.content.EZtzwPjb/html/d791abc3d22eaef8a0d54afc62d1fe5c223074f0.00000012.html @@ -0,0 +1,290 @@ + + + + + + Anonymat I2P, TOR et les VPN | HugoPoi + + + + + + + + + + + + + + + + + + + + + +
                              +
                              +
                              +

                              Anonymat I2P, TOR et les VPN

                              + +
                              +
                              + +

                              Intro

                              +

                              Mon Minitel à coté de (soon) mon Minitel 2.0

                              +

                              Suite aux articles de mon « confrère » Bluetouff, je voudrais apporter ma pierre à l’édifice anonymat sur internet. Cet article va donc parler de 2 concepts logiciels réseaux qui permettent de surfer de façon blindée sur Internet. Enfin pas tant que ça …

                              +

                              En premier lieu, je devais écrire cet article dans le but de vous donnez des conseils pour utiliser les réseaux anonymes, mais je suis rendu compte qu’il était urgent d’informer les gens sur les dangers que sont les VPN.

                              +

                              Suite à une conversation avec un ami (et même plusieurs), je leur disais que je téléchargeais sur le réseau Bitorrent. La grande question était : est-ce que tu utilises un VPN ? Je leur ai répondu que non. La première des raisons pour laquelle je n’utilise pas de VPN c’est que je n’ai pas d’argent. Aussi le fait que pour utiliser un VPN, il faut rediriger ses paquets ip, ils transitent donc par un tiers qui peut comme il le veut logger toutes vos connexions et trafics. Enfin si je suis une autorité qui veux écouter le trafic des gens (genre hadopi), bah j’ouvre un VPN « pas-hadopi.fr« , venez tous ici pour contourner hadopi, tout le monde il est beau, tout le monde il est gentil, voilà tous les pigeons dans mon filet. Pour dire aussi que le VPN c’est de l’anti-internet, cela revient à supprimer le plus grand intérêt d’internet, à savoir l’échange direct possible entre tous et publier, discuter de façon décentralisée. Ce qui m’inquiète le plus en ce moment, c’est cette nouvelle vague « cloud computing  » « web 3.0  » qui vient avec des périphériques qui ne servent à rien sans internet et des services hyper centralisés tel Facebook ou Youtube et Google. Je ne sais pas si les gens se rendent compte qu’ils mettent leurs vies entre les mains de sociétés privées dont ils n’ont que peu de contrôle.

                              +

                              Tor

                              +

                              The Onion Router, je vais pas écrire un roman sur le fonctionnement de ce système de routage anonymisant mais le principe est pas super compliqué. Au lieu de choisir d’acheminer votre trafic de façon la plus rapide et/ou la moins cher, ce réseau va acheminer votre trafic de façon aléatoire et cryptée. Attention le cryptage est présent qu’entre votre ordinateur et le dernier nœud, qui lui se connecte en clair sur le serveur que vous voulez atteindre. Donc il serait facile, comme tout le monde peut devenir nœud sur Tor, d’intercepter le trafic qui passe en clair quand on est le dernier maillon de la chaîne. Quand vous utilisez ce genre de service (TOR,I2P,VPN,Proxy,…) évitez d’aller vous connecter sur le site de votre banque. Et puis quel serait l’intérêt d’être anonyme si c’est pour vous identifier sur facebook, on marche sur la tête là non ?!

                              +

                              En surfant sur les pages du projet Tor, je suis tombé sur ça. Une page qui donne des retours d’expériences sur l’hébergement de nœuds relais pour Tor. Il est marrant de constater que les hébergeurs ne sont pas du tout fan de ce genre d’installation sur leur réseau. Cela montre que ce genre de système est suffisamment puissant pour faire peur, et permet d’effectuer sûrement des attaques ciblées de façon totalement anonyme.

                              +

                              I2P

                              +

                              Alors je vais être moins long sur l’explication du fonctionnement de I2P, ça rassemble beaucoup à Tor sauf que c’est plus orienté service et échange peer to peer. Vous pouvez lire cette page qui explique les différences entre les réseaux Tor et I2P.

                              +
                              + + +
                              + + +
                                +
                              1. +
                                + +
                                +

                                Yop Hugo, il est cool ton blog mais pour être tranquille avec HADOPI faut faire du wawa :)
                                +Ca peut être une idée d’article :p

                                +
                                + +
                                +
                              2. +
                              3. +
                                + +
                                +

                                quote : « le VPN c’est de l’anti-internet, cela revient à supprimer le plus grand intérêt d’internet, à savoir l’échange direct possible entre tous »…
                                +Un FTP sous SSL chez moi via mon VPN nordique va bien pour mes amis… Je ne comprends pas votre argument…
                                +Une plus fine explication?
                                +Merci.

                                +
                                + +
                                + +
                              4. +
                              5. +
                                + +
                                +

                                pour 4.90 euros par mois j utilise http://www.vpn-discount.com qui me procure une grande satisfaction au niveau fiabilite,securite,rapidite et surete….un super vpn

                                +
                                + +
                                +
                                  +
                                • +
                                  + +
                                  +

                                  tu ne peux pas vérifier si il log tes connexions … Mais bon si il est à l’étranger ça limite le traçage :)

                                  +
                                  + +
                                  +
                                • +
                                +
                              6. +
                              + +
                              +

                              Répondre à HugoPoi ¬
                              Annuler la réponse

                              +
                              +

                              + +

                              +

                              NOTE - Vous pouvez utiliser les éléments et attributs HTML tags and attributes:
                              <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>

                              +

                              + +

                              +
                              +
                              +
                              +
                              + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/d7d8fd91687e5bdf4ac763f638c09cb1e6a2ddac.00000411.html b/www/.content.EZtzwPjb/html/d7d8fd91687e5bdf4ac763f638c09cb1e6a2ddac.00000411.html new file mode 100644 index 0000000..1b82186 --- /dev/null +++ b/www/.content.EZtzwPjb/html/d7d8fd91687e5bdf4ac763f638c09cb1e6a2ddac.00000411.html @@ -0,0 +1,364 @@ + + + + + + + freebox – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              + +
                              +
                              + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/d7ebfb90e92998fdb63efc68cf7fb6c5bcdf8db8.00000193.html b/www/.content.EZtzwPjb/html/d7ebfb90e92998fdb63efc68cf7fb6c5bcdf8db8.00000193.html new file mode 100644 index 0000000..0307007 --- /dev/null +++ b/www/.content.EZtzwPjb/html/d7ebfb90e92998fdb63efc68cf7fb6c5bcdf8db8.00000193.html @@ -0,0 +1,645 @@ + + + + + + + + Réparer et transformer une clé USB de 4Go en 8Go – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              +
                              +
                              +

                              J’étais en train de bosser sur un projet Java quand ma belle mère me demande si je peux regarder une clé USB Maxell 4GB qui ne marche plus.Clé USB Maxell

                              +

                              Je branche et la clé se connecte correctement mais pas de table des partitions et la clé indiquait 0 octet de disponible. Je tente un « diskpart.exe » celui-ci me dit « pas de media ». Autre symptôme la LED sur la clé restait continuellement allumé. Je commence à me dire que c’est mort puis comme d’habitude je fais une recherche Google et je tombe sur ça http://www.easytutoriel.com/flasher-reparer-cle-usb-memoire/(ce lien est à moitié mort la DB est cassée) . Donc je télécharge ChipGenius_v4_00_0022_RC3 et il reconnait ma clé il me dit que c’est un controleur Phison PS2251-67(PS2267) et une puce mémoire Toshiba de type TLC.ChipGenius4

                              +

                              Rien de bien exceptionnel je vais sur http://flashboot.ru/iflash/ je farfouille je trouve des noms de logiciels mais pas de lien téléchargement qui marche puis pour finir je vais sur http://dl.mydigit.net/special/up/phison.html, sans traduire je comprends vite que c’est une mine d’or ce site web, tout un tas de nom de logiciel récupérer chez les fabricants de puces en tout genre de quoi flasher n’importe quoi. J’arrive à ça http://rghost.net/39050058, je télécharge j’exécute GetInfo.exe  (sans les droits administrateur) qui me donne les même infos que ChipGenius.GetInfo V3.8.3.2

                              +

                              Après il y a deux soft MPALL_F1_8400_v360_0B.exe et MPALL_F2_v360_0B.exe . Au hasard je lance le premier (sans les droits administrateur) et je clic sur Update sans vraiment savoir ce que ça allait vraiment faire. Et la ça reconnait la clé dans la liste et surprise il me dit que la puce de mémoire est une 8Go au début je crois à une erreur.MPAll 8400 3.60.0B

                              +

                              N’ayant plus rien à perdre je clic sur Start et cela lance la procédure de flash du firmware du contrôleur, pas de documentation donc je peux pas vraiment savoir ce que ça fait réellement. DRAME ça affiche une erreur et un beau fail, je ne désespère pas je débranche rebranche la clé. Et c’est un ………………….WIN Windaube m’affiche le beau panneau voulez-vous formater cette merde. Deuxième WIN de taille, la clé est reconnu comme une clé de 8 Go LOL. Je mets plus de 4 Go de données dedans je fais un checksum des fichiers et ça marche !!!

                              +

                              L’erreur survenu à la fin du flash peu provenir du fait que je n’avais pas lancé l’exécutable avec des privilèges élevés donc le programme n’a pas pu effectuer le formatage.

                              +

                              Maintenant la grande question comment ce fait t’il que Maxell qui est l’assembleur de cet clé USB nous vend t’il des clé USB 4GB comme sont en réalité des clé de 8Go. J’ai trois début de réponse :

                              +

                              1) Soit Maxell se fout de notre gueule sur les prix et du coup au lieu d’acheter 4000 puces Toshiba de 4 Go et 4000 de puces de 8Go , Maxell achète 8000 puces de 8Go et bidouille les firmware des contrôleurs pour faire des clés USB de 4 et 8 Go.

                              +

                              2) Maxell utilise des puces 8Go qui ont des défauts d’usines et utilise uniquement une parti de la puce. Ce qui expliquerait les problèmes que j’ai rencontré avec cette clé au début.

                              +

                              3) Maxell utilise les 4 Go restant pour faire du over-provisioning pour les cellules de mémoire défectueuse en écriture étant donné que je penses que ce genre de mémoire n’a pas beaucoup de cycle d’écriture mais c’est très peu probable que ce type technologie propre aux SSD soit dans de vulgaire clé USB bas de gamme.

                              +
                              +
                              +
                              +
                              +
                              Catégories : BidouilleHardwareNews
                              +
                              +
                              +
                              + + + + + + + + + +
                              +
                              +
                              +
                              +
                              +
                              +
                              +

                              + 8 commentaires

                              +
                              + +
                              +
                              +
                              +
                              +

                              + 2Pi informatique + · 16 mai 2013 à 9 h 01 min +

                              +

                              Je n’avais jamais entendu parler de ce genre de manip, et du gain potentiel de capacité.

                              +

                              C’est assez étonnant, et je me demande si tous les constructeurs « brident » la capacité des clés usb …

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + Amedoumba + · 22 juillet 2013 à 14 h 15 min +

                              +

                              Hello !
                              +Intéressant comme manip. J’ai une de mes clés USB avec le même genre de probleme. Je vais donc tester et voir si cela fonctionne. Je n’ai rien à perdre de toute façon.
                              +Merci en tout cas.

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + diop + · 14 novembre 2013 à 15 h 11 min +

                              +

                              pour répéré cle usb

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + diop + · 14 novembre 2013 à 15 h 12 min +

                              +

                              salut pour ma cle usb

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + watchix + · 28 décembre 2013 à 10 h 40 min +

                              +

                              « File is deleted » :-(

                              + +
                              +
                              +
                                +
                                + +
                                +
                                +
                                +
                                +

                                + HugoPoi + · 4 janvier 2014 à 12 h 38 min +

                                +

                                à moitié réparer ;-)

                                + +
                                +
                                + +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + Jean + · 22 avril 2015 à 20 h 18 min +

                              +

                              Je penche pour ma part pour les raisons 1 et 2.

                              +

                              La première raison car le coût de la flash est diminuée plus on en commande, et aussi ça évite d’avoir deux chaines d’assemblage pour le PCB de la clé.

                              +

                              La seconde raison car c’est ce qui est pratiqué par pas mal de fabricants du domaine du semi-conducteur pour « créer » une gamme : AMD n’hésitait pas à vendre en entrée de gamme des processeurs amputés de certains coeurs défectueux. Et si il manque des processeurs défectueux … et bien on désactive quand même des coeurs !

                              +

                              Il y a aussi un paramètre à prendre en compte : la redevance sur la copie privée. Elle est proportionnelle à la capacité du support de stockage (cf. http://www.culturecommunication.gouv.fr/Politiques-ministerielles/Propriete-litteraire-et-artistique/Commission-pour-la-remuneration-de-la-copie-privee/Questions-pratiques/Les-montants-de-la-Remuneration-pour-Copie-Privee). Elle est de 0,64€ pour une clé de 4 Go, et 1,04€ pour une clé de 8 Go.

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + Pila + · 10 décembre 2015 à 21 h 45 min +

                              +

                              Salut,
                              +Je pense qu’il s’agit de puce MLC ( je crois que c’est le terme ? ), qui ont de très bonne performances sur la première moitié de leur capacité, et des très mauvaises sur la seconde moitié, car celle-ci est obtenu par réécriture sur la première partie.

                              +

                              En tout cas merci pour les différentes infos que tu as glanées !

                              + +
                              +
                              + +
                              +
                              +
                              +

                              Répondre à Amedoumba Annuler la réponse

                              Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                              +
                              +
                              +

                              + +

                              +
                              +
                              +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              +
                              +
                              + + +
                              + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/d8143030aebc5839a3e315be1d065bb1662c8d78.00000014.html b/www/.content.EZtzwPjb/html/d8143030aebc5839a3e315be1d065bb1662c8d78.00000014.html new file mode 100644 index 0000000..7f1dad9 --- /dev/null +++ b/www/.content.EZtzwPjb/html/d8143030aebc5839a3e315be1d065bb1662c8d78.00000014.html @@ -0,0 +1,502 @@ + + + + + + + + Trolling – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              +
                              +
                              +

                              Apple New MacBook Air

                              +

                              J’avais envie de me défouler un peu donc je vais troller sur la sortie du nouveau MacBook Air. Alors oui il est beau, il est léger, la finition est nikel Chrome. Mais c’est du Apple donc c’est cher le prix d’entrée est de 999€ ouch ! pour la version 11 pouces …

                              +

                              Donc pour le hardware, à ce prix, on a un Core 2 Duo (un peu dépassé à l’heure des Core i3,5UM), 2Go Ram seulement, 64 Go « SSD » et une camera « FaceTime » #MDR. Bon pour remettre les choses à leurs places, ce Mac n’est pas à mettre dans la catégorie des netbooks car vu la finition et le prix, et la puissance processeur bien supérieure à celle d’un Intel Atom. Pour ma part je le classerais dans la catégorie des CULV (Centrino Ultra Low Voltage) qui correspond en terme de prix et d’équipement. L’autonomie annoncée est de 7 heures #lol même un netbook haut de gamme ne le fait pas écran allumé, 4 heures serait plus réaliste.

                              +

                              Ensuite, je cite les commentaires sur le JDG « En tout cas ceux qui critiquent, essayez un mac pendant 1 mois et on verra ce que vous direz ensuite. C’est facile de critiquer quand on n’a pas essayé. » , et bien moi j’ai essayé MacOSX à plusieurs reprises et j’ai trouvé que le système étais très merdique. Mon ressenti c’est qu’il y a une jolie façade avec un beau navigateur et des jolies icônes mais derrière dès que l’on creuse, il n’y a rien. Il y a un des menus avec des icônes en vrac, puis dès qu’on veut faire quelque chose faut payer et repasser par la caisse Apple. C’est un OS parfait pour une personne qui utilise l’outil informatique pour aller sur Facebook, retoucher ses photos et se la péter devant tout le monde avec son fric.

                              +

                              Bon voilà, j’ai fini de troller sur Apple. Vous aurez compris que je n’aurais jamais d’ appareil Apple chez moi, pour la simple et bonne raison que je trouve leur politique commerciale déplorable. Qu’on achète du Apple, et on se retrouve coincé dans leur bulle.

                              +
                              +
                              +
                              +
                              +
                              Catégories : HardwareNews
                              +
                              +
                              +
                              + + + + + + + + + +
                              +
                              +
                              +
                              +
                              +
                              +
                              +

                              + 1 commentaire

                              +
                              + +
                              +
                              +
                              +
                              +

                              + Samy DINDANE + · 26 décembre 2010 à 12 h 32 min +

                              +

                              C’est vrai que leurs prix sont abusés, leur politique détestable, mais certains de leur produits sont tout simplement les meilleurs dans leur catégorie. Et le premier qui me vient à l’esprit c’est l’iPod Classic.

                              + +
                              +
                              + +
                              +
                              +
                              +

                              Laisser un commentaire

                              Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                              +
                              +
                              +

                              + +

                              +
                              +
                              +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              +
                              +
                              + + +
                              + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/d8c0bbaeef42b45d6c280f9eee4e38f9acb1ff22.00000483.html b/www/.content.EZtzwPjb/html/d8c0bbaeef42b45d6c280f9eee4e38f9acb1ff22.00000483.html new file mode 100644 index 0000000..d4f50e6 --- /dev/null +++ b/www/.content.EZtzwPjb/html/d8c0bbaeef42b45d6c280f9eee4e38f9acb1ff22.00000483.html @@ -0,0 +1,364 @@ + + + + + + + Pascal Negre – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              + +
                              +
                              + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/d8f954cbcadcfb7f9b99369befd8b99b7c95ac44.00000681.css b/www/.content.EZtzwPjb/html/d8f954cbcadcfb7f9b99369befd8b99b7c95ac44.00000681.css new file mode 100644 index 0000000..20df2bb --- /dev/null +++ b/www/.content.EZtzwPjb/html/d8f954cbcadcfb7f9b99369befd8b99b7c95ac44.00000681.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7 .screen-reader-response{position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);height:1px;width:1px;margin:0;padding:0;border:0}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{color:#f00;font-size:1em;display:block}.use-floating-validation-tip span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;border:1px +solid #f00;background:#fff;padding: .2em .8em}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/d90a4ea0dcc1526e9f945608cf99501345be7c18.00001310.json b/www/.content.EZtzwPjb/html/d90a4ea0dcc1526e9f945608cf99501345be7c18.00001310.json new file mode 100644 index 0000000..80ea830 --- /dev/null +++ b/www/.content.EZtzwPjb/html/d90a4ea0dcc1526e9f945608cf99501345be7c18.00001310.json @@ -0,0 +1 @@ +{"version":"1.0","provider_name":"HugoPoi","provider_url":"http:\/\/blog.hugopoi.net","author_name":"HugoPoi","author_url":"http:\/\/blog.hugopoi.net\/author\/hugopoi\/","title":"Test et d\u00e9montage d'un Sony Multi Flip 15 SVF15N1C5E","type":"rich","width":600,"height":338,"html":"
                              Test et d\u00e9montage d’un Sony Multi Flip 15 SVF15N1C5E<\/a><\/blockquote>\n + + + + + + + + + + + + + + + + + + + + + + + + +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              +
                              +
                              +

                              hadopi.fr

                              +

                              Bienvenue sur mon blog, voila c’est fait, je voulais depuis un petit moment ouvrir un blog pour m’ exprimer sur l’ actualité geek et raconter ma vie parler technique. Alors j’annonce les couleurs ici je vais pas parler coupe de cheveux ni sous-vêtement mais des sujets orientés internet, réseaux, développement et politique #hadopi #fail.

                              +

                              Bon comme je suis pas trop mal parti pour ce premier article, quelques mises au point : premièrement je suis nul en orthographe et pour écrire en général, c’ est pas vraiment mon truc donc si je suis nul et que le contenu de mon blog est nul, je suis près à tout arrêter si je sert à rien (n’hésité à me le faire savoir dans vos commentaire pour que je puisse m’arrêter à temps). Pour les corrections orthographique insulter houspillé moi dans vos commentaires.

                              +

                              Deuxièment je vais pas écrire cet article pour juste ouvrir mon blog donc je vais rentrer direct dans le vif du sujet.

                              +

                              H. A. D. O. P. I. seulement 6 lettres qui me font lever chaque matin et le sujet qui me fait bien marrer en ce moment. Pour résumer pour ceux qui ne savent pas la Hadopi, c’est la Haute Autorité pour La Diffusion des Oeuvres et Protection des droits sur Internet, c’est un truc administratif qui coute la bagatelle de 12 millions d’euros dans le budget de l’état. Enfin pas si sur peut-être le double si les rumeurs sur le coût d’identification des adresses IP se vérifie.

                              +

                              La Haute Autorité elle fait quoi ? Plusieurs choses officiellement :

                              +
                                +
                              • Mettre en place la réponce graduée
                              • +
                              • Faire de la pédagogie sur le respect des droits auteurs et la sécurisation de son accès à internet
                              • +
                              • Réfléchir ensemble sur les questions de la vie sur internet (Labs)
                              • +
                              • Développer l’offre légale
                              • +
                              +

                              En vrai ce qu’ils font déjà c’est fliquer les internautes avec des méthodes douteuses avec ma police privée du net préféré TMG. Pour les fameux Labs qui vont permettre de réfléchir si on va pouvoir mettre hadopi à la poubelle ou installer du DPI sur vos connexions internet très neutre ; on va les voir arriver que dans 6 mois si tout se passe bien. Chaque sujet sera traité par un Labs dirigé par une personne choisie par la hadopi qui à son tour choisira par cooptation les personnes faisant parti de son Labs cela posant problème car si l’expert pilote du labs a parti pris dans le débat alors il choisira des personne de son coté, faussant ainsi les résultats du labs. Donc pour remédier à cela le blogueur Spyou en dialogue avec M. Walter, propose que tous les experts pilotes choisissent ensembles les membres des labs ce qui me parait être une bonne idée.

                              +

                              Pour répondre aux différentes tendances du moment concernant les Labs certaines personnes refusent le dialogue avec hadopi, d’autres acceptent de jouer le jeu. Moi j’annonce, je prends la tangente car refuser le dialogue me parait une réponse normale car il y a un an Mme Albanel n’a pas trouvé bon de consulter des experts pour faire la loi hadopi et hadopi a décidé de taper sur les gens avant de lancer les discussions avec les labs ! En gros c’est un peu mettre la charrue avant les bœufs. Mais d’un coté si on laisse les labs sans personne du coté anti-dpi les majors vont se faire un plaisir de nous sortir des études bidonnées des labs.

                              +

                              Pour la pédagogie faut passer par la case à revoir parce que envoyer des jolis mails aux internautes pour leur dire de sécuriser leur connexion internet alors que la majorité d’entre eux ne savent pas comment marche un ordinateur et ont pour ainsi dire zéro notion en sécurité informatique.

                              +

                              Bon bah je vais m’arrêter là pour l’instant et vous laisser suivre tranquillement l’actualité Hadopi et vous informer sur le sujet si vous ne l’êtes pas déjà.

                              +
                              +
                              +
                              +
                              +
                              Catégories : HadopiNews
                              +
                              +
                              +
                              + + + + + + + + + +
                              +
                              +
                              +
                              +
                              +
                              +
                              +

                              + 1 commentaire

                              +
                              + +
                              +
                              +
                              +
                              +

                              + Calcifer + · 17 octobre 2010 à 14 h 27 min +

                              +

                              Cool de te voir ouvrir un blog, pour avoir vécu avec toi en coloc, je sais que ça sera très passionnant :)
                              +See you !

                              + +
                              +
                              + +
                              +
                              +
                              +

                              Répondre à Calcifer Annuler la réponse

                              Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                              +
                              +
                              +

                              + +

                              +
                              +
                              +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              +
                              +
                              + + +
                              + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/d99490df1617d62664fbcf0607dafc763a26c98d.00000229.html b/www/.content.EZtzwPjb/html/d99490df1617d62664fbcf0607dafc763a26c98d.00000229.html new file mode 100644 index 0000000..e6d1496 --- /dev/null +++ b/www/.content.EZtzwPjb/html/d99490df1617d62664fbcf0607dafc763a26c98d.00000229.html @@ -0,0 +1,333 @@ + + + + + + + Screenshot_LinuxMint19-LXDE-x64-clone-secureboot-test_2018-11-18_18:58:53 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                              +
                              +
                              +
                              +
                              +
                              +
                              +
                              + + + +

                              +
                              +
                              +
                              +
                              +

                              + 0 commentaire

                              +
                              +
                              +
                              +

                              Laisser un commentaire

                              Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                              +
                              +
                              +

                              + +

                              +
                              +
                              +
                              +
                              +
                              +
                              +
                              +
                              + +
                              + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/da4a16747995c1ba701da971fafb72b0318305cb.00000155.xml b/www/.content.EZtzwPjb/html/da4a16747995c1ba701da971fafb72b0318305cb.00000155.xml new file mode 100644 index 0000000..858a425 --- /dev/null +++ b/www/.content.EZtzwPjb/html/da4a16747995c1ba701da971fafb72b0318305cb.00000155.xml @@ -0,0 +1,27 @@ + + + Commentaires sur : Démonter un Switch Cisco 2950T + + http://blog.hugopoi.net/2013/02/09/demonter-un-switch-cisco-2950t/ + Internet, Hardware et Bidouille + Wed, 21 Aug 2013 17:11:00 +0000 + hourly + 1 + http://wordpress.org/?v=3.6 + + Par : watchix + http://blog.hugopoi.net/2013/02/09/demonter-un-switch-cisco-2950t/#comment-132 + watchix + Mon, 11 Feb 2013 19:17:58 +0000 + http://blog.hugopoi.net/?p=716#comment-132 + + Du dhcp discover pour un switch c’est pas si étrange lorsque on ne spécifie pas un « no ip addr » sur un Vlan ;)

                              +]]>
                              +
                              +
                              +
                              diff --git a/www/.content.EZtzwPjb/html/da723649da83708b74c40e4bd477e4e3cd4208bc.00000352.html b/www/.content.EZtzwPjb/html/da723649da83708b74c40e4bd477e4e3cd4208bc.00000352.html new file mode 100644 index 0000000..75b014c --- /dev/null +++ b/www/.content.EZtzwPjb/html/da723649da83708b74c40e4bd477e4e3cd4208bc.00000352.html @@ -0,0 +1,365 @@ + + + + + + + Boitier FT02 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              +
                              +

                              Liste de Noël

                              Bonjour cher Père Noël des Internets 2.0,

                              +

                              Alors je me permets de te déposer ma liste de noël sur mon blog car je suis sûr que tu as demandé à Google et Facebook de t’aider pour satisfaire tout le monde sur la terre(N’oublie pas les petits africains qui crèvent la dalle). Comme je suis égoïste un minimum humain et que je ne saurais dire ce que représente noël pour moi à part manger, boire, dormir, du sexe, avoir des cadeaux et en offrir, cela fait de bonnes raisons pour faire une liste de noël. (suite…)

                              +
                              Par HugoPoi, il y a
                              +
                              + +
                              +
                              +
                              +
                              + +
                              +
                              + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/da8954597836e2a88c3ec4b82a6038157da41c67.00000564.html b/www/.content.EZtzwPjb/html/da8954597836e2a88c3ec4b82a6038157da41c67.00000564.html new file mode 100644 index 0000000..a41d820 --- /dev/null +++ b/www/.content.EZtzwPjb/html/da8954597836e2a88c3ec4b82a6038157da41c67.00000564.html @@ -0,0 +1,364 @@ + + + + + + + zfsbackup – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              + +
                              +
                              + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/dacd78693bab714733cc4c5ebb41f2079df17f54.00000577.css b/www/.content.EZtzwPjb/html/dacd78693bab714733cc4c5ebb41f2079df17f54.00000577.css new file mode 100644 index 0000000..cda068b --- /dev/null +++ b/www/.content.EZtzwPjb/html/dacd78693bab714733cc4c5ebb41f2079df17f54.00000577.css @@ -0,0 +1,107 @@ +div.wpcf7 { + margin: 0; + padding: 0; +} + +div.wpcf7-response-output { + margin: 2em 0.5em 1em; + padding: 0.2em 1em; +} + +div.wpcf7 .screen-reader-response { + position: absolute; + overflow: hidden; + clip: rect(1px, 1px, 1px, 1px); + height: 1px; + width: 1px; + margin: 0; + padding: 0; + border: 0; +} + +div.wpcf7-mail-sent-ok { + border: 2px solid #398f14; +} + +div.wpcf7-mail-sent-ng { + border: 2px solid #ff0000; +} + +div.wpcf7-spam-blocked { + border: 2px solid #ffa500; +} + +div.wpcf7-validation-errors { + border: 2px solid #f7e700; +} + +.wpcf7-form-control-wrap { + position: relative; +} + +span.wpcf7-not-valid-tip { + color: #f00; + font-size: 1em; + font-weight: normal; + display: block; +} + +.use-floating-validation-tip span.wpcf7-not-valid-tip { + position: absolute; + top: 20%; + left: 20%; + z-index: 100; + border: 1px solid #ff0000; + background: #fff; + padding: .2em .8em; +} + +span.wpcf7-list-item { + display: inline-block; + margin: 0 0 0 1em; +} + +span.wpcf7-list-item-label::before, +span.wpcf7-list-item-label::after { + content: " "; +} + +.wpcf7-display-none { + display: none; +} + +div.wpcf7 .ajax-loader { + visibility: hidden; + display: inline-block; + background-image: url('../../images/ajax-loader.gif'); + width: 16px; + height: 16px; + border: none; + padding: 0; + margin: 0 0 0 4px; + vertical-align: middle; +} + +div.wpcf7 .ajax-loader.is-active { + visibility: visible; +} + +div.wpcf7 div.ajax-error { + display: none; +} + +div.wpcf7 .placeheld { + color: #888; +} + +div.wpcf7 .wpcf7-recaptcha iframe { + margin-bottom: 0; +} + +div.wpcf7 input[type="file"] { + cursor: pointer; +} + +div.wpcf7 input[type="file"]:disabled { + cursor: default; +} diff --git a/www/.content.EZtzwPjb/html/db59050774368fce32185d001f0093580418d02a.00000562.html b/www/.content.EZtzwPjb/html/db59050774368fce32185d001f0093580418d02a.00000562.html new file mode 100644 index 0000000..a0bd19d --- /dev/null +++ b/www/.content.EZtzwPjb/html/db59050774368fce32185d001f0093580418d02a.00000562.html @@ -0,0 +1,364 @@ + + + + + + + Yunohost – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              +
                              +

                              Le cloud maison

                              Voilà un petit moment que je me devais de faire cet article pour vous en dire un peu plus sur comment je gère mes données numériques au quotidien. Et après plusieurs essais et échecs, je peux enfin dire que j’ai trouvé des outils simples et maintenus pour cette quête. Même Lire la suite…

                              +
                              Par HugoPoi, il y a
                              +
                              + +
                              +
                              +
                              +
                              + +
                              +
                              + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/db5a30f41773e5d5d44fb98d3ee2335a2ab93612.00000754.css b/www/.content.EZtzwPjb/html/db5a30f41773e5d5d44fb98d3ee2335a2ab93612.00000754.css new file mode 100644 index 0000000..5578ea5 --- /dev/null +++ b/www/.content.EZtzwPjb/html/db5a30f41773e5d5d44fb98d3ee2335a2ab93612.00000754.css @@ -0,0 +1,4 @@ +/*! + * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto} diff --git a/www/.content.EZtzwPjb/html/dba33f41cf4264f3816826a6f4db709b9ccba34c.00000054.html b/www/.content.EZtzwPjb/html/dba33f41cf4264f3816826a6f4db709b9ccba34c.00000054.html new file mode 100644 index 0000000..9bb5158 --- /dev/null +++ b/www/.content.EZtzwPjb/html/dba33f41cf4264f3816826a6f4db709b9ccba34c.00000054.html @@ -0,0 +1,533 @@ + + + + + + + + Stockage numérique pour tous – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              +
                              +
                              +

                              Ce blog parle très technique comme en témoigne mon dernier article mais aujourd’hui je vais faire un petit topo sur les disques-dur ou plutôt le stockage de vos données numériques en général. Dans cet article je vais m’adresser à tout le monde de papi-geek à tante-photo et pas uniquement à tous les geeks.

                              +

                              Je me suis aperçu, dans mon entourage proche mais aussi sur des forums ou je traîne parfois, que beaucoup n’ont aucune notion sur comment est stockée l’information sur nos ordinateurs et ce qu’il y a dans un disque USB que l’on achète à la Fnac pour ne citer que ces abrutis.

                              +

                              Retour en arrière, le fameux disque-dur que tout le monde utilise (peut-être sans le savoir) a été inventé en 1953 par IBM. Les premiers modèles avaient une capacité de quelques mégaoctets pour un prix de 10 000$. Aujourd’hui, il existe des modèles allant jusqu’à plus de 2 Téraoctets de capacité soit un million de fois plus.

                              +

                              Le disque-dur stocke les informations de façon magnétique sur des plateaux qui ressemblent à des CDs qui sont en rotation. Des petits bras viennent se positionner au dessus des disques pour écrire/lire les informations. ça ressemble à cela :

                              +

                              +

                              et l’intérieur c’est comme cela :

                              +

                              +

                              Mais comment est branché ce truc ?

                              +

                              Par deux connecteurs: l’alimentation(à droite) et le câble de données (à gauche).

                              +

                              +

                              Vos photos de famille, vos documents textuels, de la musique et des vidéos, tous ces fichiers sont stockés sur votre disque-dur qui lui est connecté à votre ordinateur grâce à une interface qui se nomme SATA ou Serial ATA (si votre ordinateur a moins de 5 ans sinon c’est de l’IDE). Le disque qui est dans votre ordinateur est le même que celui dans vos disques-dur externes USB, c’est juste que le disque externe contient une petite carte qui convertit le signal SATA en USB.

                              +

                              Qui utilise ça ?

                              +

                              Tout le monde, vous lecteurs, l’ordinateur que vous êtes en train d’utiliser pour lire cet article a de très grandes chance d’utiliser un disque-dur pour stocker les informations dont il a besoin pour fonctionner. Votre système d’exploitation Windows, Mac OSX ou encore Ubuntu, Debian mais aussi vos programmes comme le navigateur internet que vous utilisez Mozilla Firefox, Internet Explorer, Safari, Chrome ; et pour finir vos données personnelles.

                              +

                              Mais aussi les sociétés comme Google et Facebook, pour stocker vos profils grâce à des armoire à disques SAN (Storage Area Network).

                              +

                              +

                              La majorité des données d’Internet sont stockées sur des millions de disques-dur ! C’est pour ça que l’expression Cloud Computing me fait bien marrer parce qu’un nuage ça produit pas de CO2, à comparer avec un petit milliard de disques-dur pour héberger le « cloud ».

                              +

                              Acheter un disque-dur externe en france :

                              +

                              Alors vous ne le savez peut-être pas, mais quand vous achetez un disque-dur externe dans le commerce, vous payez une taxe spéciale dessus, la taxe de copie privée. En résumé, c’est une taxe qui vous donne le droit de mettre le mp3 que vous achetez sur votre baladeur. Cette taxe est reversée à certains artistes et surtout aux majors ( Sacem et compagnie), elle représente 20€ pour un disque-dur externe de 1 To. Le montant total reversé aux ayants droits a été de 762 Million d’ euros pour 2009. Pour éviter de payer cette taxe de merde suivez le guide ci-dessous.

                              +

                              Faire son disque dur externe soit même, c’est pas dur !

                              +

                              Eh oui le gros #fail de la taxe pour copie privée c’est qu’elle se base sur un prix par Go donc pas applicable sur des boitiers sans disque. Donc comme les disques-dur nus ne sont pas concernés par cette taxe, vous pouvez acheter un boitier externe sans disque et le disque de la capacité que vous voulez à part. Vous assemblez les deux avec vos mains et un tournevis #DIY. Pour acheter un boitier externe sans disque il y en a sur ldlc.com pour tous les prix et aussi multimedia. Les critères sont la connectique (USB 3.0, e-SATA, HDMI, …) prenez systématiquement de l’interface SATA interne et vous pouvez faire une petite recherche sur internet pour trouver un petit test du boitier (ex : « ICY BOX IB-290STUS-B test« ). Pour le disque-dur il y a plein de références sur ldlc.com . Préférez les modèles de dernières génération qui auront de bien meilleures performances. Attention au format du disque puisque qu’il y a deux tailles différentes: les 3.5 pouces qui sont pour PC fixe et les 2.5 pouces pour ordinateurs portables. Voilà vous êtes près pour acheter ! Si vous voulez des conseils : commentaires, twitter, facebook … ;)

                              +

                              What is Next ?

                              +

                              Maintenant que vous savez presque tout sur les disques-dur, il va falloir oublier puis se pencher sur les nouvelles technologies qui vont le remplacer. Cette nouvelle techno, c’est le SSD ou Solid State Disk en gros c’est de la mémoire flash, celle qu’il y a dans vos petites clés USB ou cartes mémoires, sauf que celle-ci est plus rapide et de plus grande capacité. Et c’est déjà en vente sur internet depuis 2 ans environ, c’est maintenant disponible à des tarifs accessibles, et je vous parie que ça va faire fureur dans les prochains arrivages de la Fnac dans quelques mois.

                              +
                              +
                              +
                              + +
                              +
                              + + + + + + + + + +
                              +
                              +
                              +
                              +
                              +
                              +
                              +

                              + 2 commentaires

                              +
                              +
                              +

                              + Tweets that mention Stockage numérique pour tous | HugoPoi -- Topsy.com + · 26 janvier 2011 à 23 h 58 min +

                              +

                              […] This post was mentioned on Twitter by HugoPoi, HugoPoi. HugoPoi said: [blog] Stockage numérique http://bim.im/wN […]

                              + +
                              +
                              + +
                              +
                              +

                              + Vos données sauvegardées | HugoPoi + · 10 décembre 2011 à 1 h 00 min +

                              +

                              […] même le faire, vous pouvez récupérer les disques-dur que vous possédez déjà, vous pouvez démonter vos disques-dur externes et les placer dans un NAS.(Le Netgear Stora est trouvable pour 70€) Moi, j’ai opté pour […]

                              + +
                              +
                              + +
                              +
                              +
                              +

                              Répondre à Vos données sauvegardées | HugoPoi Annuler la réponse

                              Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                              +
                              +
                              +

                              + +

                              +
                              +
                              +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              +
                              +
                              + + +
                              + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/dbbb8b43ebd392c93163f1e46262660024064dfb.00000509.xml b/www/.content.EZtzwPjb/html/dbbb8b43ebd392c93163f1e46262660024064dfb.00000509.xml new file mode 100644 index 0000000..7195b4d --- /dev/null +++ b/www/.content.EZtzwPjb/html/dbbb8b43ebd392c93163f1e46262660024064dfb.00000509.xml @@ -0,0 +1,41 @@ + + + + HugoPoi » Seasonic + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Sat, 14 Sep 2013 23:01:40 +0000 + fr-FR + hourly + 1 + http://wordpress.org/?v=3.6 + + Liste de Noël + http://blog.hugopoi.net/2012/11/18/liste-de-noel-2/ + http://blog.hugopoi.net/2012/11/18/liste-de-noel-2/#comments + Sun, 18 Nov 2012 21:00:38 +0000 + HugoPoi + + + + + + + + + + http://blog.hugopoi.net/?p=556 + Lire la suite »

                              ]]>
                              + http://blog.hugopoi.net/2012/11/18/liste-de-noel-2/feed/ + 0 +
                              +
                              +
                              diff --git a/www/.content.EZtzwPjb/html/dbe24111c9a11e8594c228173c4d2143473972d9.00000513.html b/www/.content.EZtzwPjb/html/dbe24111c9a11e8594c228173c4d2143473972d9.00000513.html new file mode 100644 index 0000000..5f11317 --- /dev/null +++ b/www/.content.EZtzwPjb/html/dbe24111c9a11e8594c228173c4d2143473972d9.00000513.html @@ -0,0 +1,365 @@ + + + + + + + Silverstone – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              +
                              +

                              Liste de Noël

                              Bonjour cher Père Noël des Internets 2.0,

                              +

                              Alors je me permets de te déposer ma liste de noël sur mon blog car je suis sûr que tu as demandé à Google et Facebook de t’aider pour satisfaire tout le monde sur la terre(N’oublie pas les petits africains qui crèvent la dalle). Comme je suis égoïste un minimum humain et que je ne saurais dire ce que représente noël pour moi à part manger, boire, dormir, du sexe, avoir des cadeaux et en offrir, cela fait de bonnes raisons pour faire une liste de noël. (suite…)

                              +
                              Par HugoPoi, il y a
                              +
                              + +
                              +
                              +
                              +
                              + +
                              +
                              + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/dbe76a592688dbc7befcba927a751f90fc8609b4.00000310.xml b/www/.content.EZtzwPjb/html/dbe76a592688dbc7befcba927a751f90fc8609b4.00000310.xml new file mode 100644 index 0000000..f6085cc --- /dev/null +++ b/www/.content.EZtzwPjb/html/dbe76a592688dbc7befcba927a751f90fc8609b4.00000310.xml @@ -0,0 +1,134 @@ + + + Logiciels – HugoPoi + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Sat, 11 Feb 2017 17:37:20 +0000 + fr-FR + hourly + 1 + https://wordpress.org/?v=4.7.2 + + Installer Mac OS X Mavericks avec VirtualBox + http://blog.hugopoi.net/2013/12/27/installer-mac-os-x-mavericks-avec-virtualbox/ + http://blog.hugopoi.net/2013/12/27/installer-mac-os-x-mavericks-avec-virtualbox/#comments + Fri, 27 Dec 2013 21:40:28 +0000 + + + + + + + + + http://blog.hugopoi.net/?p=802 + Lire la suite »

                              ]]>
                              + http://blog.hugopoi.net/2013/12/27/installer-mac-os-x-mavericks-avec-virtualbox/feed/ + 6 +
                              + + Home Cinéma + http://blog.hugopoi.net/2012/12/26/home-cinema/ + http://blog.hugopoi.net/2012/12/26/home-cinema/#respond + Wed, 26 Dec 2012 14:42:16 +0000 + + + + + + + + + + + + + http://blog.hugopoi.net/?p=518 + Lire la suite »

                              ]]>
                              + http://blog.hugopoi.net/2012/12/26/home-cinema/feed/ + 0 +
                              + + Redimensionner une partition NTFS + http://blog.hugopoi.net/2012/12/23/redimensionner-une-partition-ntfs/ + http://blog.hugopoi.net/2012/12/23/redimensionner-une-partition-ntfs/#respond + Sun, 23 Dec 2012 17:56:48 +0000 + + + + + + + + + + + http://blog.hugopoi.net/?p=685 + Lire la suite »

                              ]]>
                              + http://blog.hugopoi.net/2012/12/23/redimensionner-une-partition-ntfs/feed/ + 0 +
                              + + Optimus vs Mégatron + http://blog.hugopoi.net/2011/05/04/optimus-vs-megatron/ + http://blog.hugopoi.net/2011/05/04/optimus-vs-megatron/#comments + Wed, 04 May 2011 14:04:13 +0000 + + + + + + + + + http://blog.hugopoi.net/?p=418 + Lire la suite »

                              ]]>
                              + http://blog.hugopoi.net/2011/05/04/optimus-vs-megatron/feed/ + 3 +
                              + + Asus U36JC-RX260V + http://blog.hugopoi.net/2011/04/10/asus-u36jc-rx260v/ + http://blog.hugopoi.net/2011/04/10/asus-u36jc-rx260v/#comments + Sun, 10 Apr 2011 18:49:18 +0000 + + + + + + + + http://blog.hugopoi.net/?p=398 + Lire la suite »

                              ]]>
                              + http://blog.hugopoi.net/2011/04/10/asus-u36jc-rx260v/feed/ + 4 +
                              + + Anonymat I2P, TOR et les VPN + http://blog.hugopoi.net/2010/10/21/anonymat-i2p-tor-et-les-vpn/ + http://blog.hugopoi.net/2010/10/21/anonymat-i2p-tor-et-les-vpn/#comments + Thu, 21 Oct 2010 17:57:20 +0000 + + + + + + + + + + http://blog.hugopoi.net/?p=71 + Lire la suite »

                              ]]>
                              + http://blog.hugopoi.net/2010/10/21/anonymat-i2p-tor-et-les-vpn/feed/ + 5 +
                              +
                              +
                              diff --git a/www/.content.EZtzwPjb/html/dbe860db81d004d3f4cfe32d7be8d92113b82356.00000345.xml b/www/.content.EZtzwPjb/html/dbe860db81d004d3f4cfe32d7be8d92113b82356.00000345.xml new file mode 100644 index 0000000..e76e9f0 --- /dev/null +++ b/www/.content.EZtzwPjb/html/dbe860db81d004d3f4cfe32d7be8d92113b82356.00000345.xml @@ -0,0 +1,37 @@ + + + Asus N53SN – HugoPoi + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Mon, 22 Aug 2016 14:10:26 +0000 + fr-FR + hourly + 1 + https://wordpress.org/?v=4.6.1 + + Écran miraculé d’un Asus N53SN + http://blog.hugopoi.net/2014/08/02/ecran-miracule-dun-asus-n53sn/ + http://blog.hugopoi.net/2014/08/02/ecran-miracule-dun-asus-n53sn/#comments + Sat, 02 Aug 2014 17:53:57 +0000 + + + + + + + + http://blog.hugopoi.net/?p=819 + Lire la suite »

                              ]]>
                              + http://blog.hugopoi.net/2014/08/02/ecran-miracule-dun-asus-n53sn/feed/ + 1 +
                              +
                              +
                              diff --git a/www/.content.EZtzwPjb/html/dbfb408004bbfc3044173a085899edd50f0ece49.00000187.xml b/www/.content.EZtzwPjb/html/dbfb408004bbfc3044173a085899edd50f0ece49.00000187.xml new file mode 100644 index 0000000..e80aabf --- /dev/null +++ b/www/.content.EZtzwPjb/html/dbfb408004bbfc3044173a085899edd50f0ece49.00000187.xml @@ -0,0 +1,17 @@ + + + Commentaires sur : La table du salon 2 + + http://blog.hugopoi.net/2013/05/04/reparer-un-videoprojecteur-sony-vpl-cx5/samsung-92/ + Internet, Hardware et Bidouille + Wed, 21 Aug 2013 17:11:00 +0000 + hourly + 1 + http://wordpress.org/?v=3.6 + + diff --git a/www/.content.EZtzwPjb/html/dc7dde05a1fd94c637d97916afa18d392d2a6055.00000196.html b/www/.content.EZtzwPjb/html/dc7dde05a1fd94c637d97916afa18d392d2a6055.00000196.html new file mode 100644 index 0000000..e675dc8 --- /dev/null +++ b/www/.content.EZtzwPjb/html/dc7dde05a1fd94c637d97916afa18d392d2a6055.00000196.html @@ -0,0 +1,645 @@ + + + + + + + + Réparer et transformer une clé USB de 4Go en 8Go – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              +
                              +
                              +

                              J’étais en train de bosser sur un projet Java quand ma belle mère me demande si je peux regarder une clé USB Maxell 4GB qui ne marche plus.Clé USB Maxell

                              +

                              Je branche et la clé se connecte correctement mais pas de table des partitions et la clé indiquait 0 octet de disponible. Je tente un « diskpart.exe » celui-ci me dit « pas de media ». Autre symptôme la LED sur la clé restait continuellement allumé. Je commence à me dire que c’est mort puis comme d’habitude je fais une recherche Google et je tombe sur ça http://www.easytutoriel.com/flasher-reparer-cle-usb-memoire/(ce lien est à moitié mort la DB est cassée) . Donc je télécharge ChipGenius_v4_00_0022_RC3 et il reconnait ma clé il me dit que c’est un controleur Phison PS2251-67(PS2267) et une puce mémoire Toshiba de type TLC.ChipGenius4

                              +

                              Rien de bien exceptionnel je vais sur http://flashboot.ru/iflash/ je farfouille je trouve des noms de logiciels mais pas de lien téléchargement qui marche puis pour finir je vais sur http://dl.mydigit.net/special/up/phison.html, sans traduire je comprends vite que c’est une mine d’or ce site web, tout un tas de nom de logiciel récupérer chez les fabricants de puces en tout genre de quoi flasher n’importe quoi. J’arrive à ça http://rghost.net/39050058, je télécharge j’exécute GetInfo.exe  (sans les droits administrateur) qui me donne les même infos que ChipGenius.GetInfo V3.8.3.2

                              +

                              Après il y a deux soft MPALL_F1_8400_v360_0B.exe et MPALL_F2_v360_0B.exe . Au hasard je lance le premier (sans les droits administrateur) et je clic sur Update sans vraiment savoir ce que ça allait vraiment faire. Et la ça reconnait la clé dans la liste et surprise il me dit que la puce de mémoire est une 8Go au début je crois à une erreur.MPAll 8400 3.60.0B

                              +

                              N’ayant plus rien à perdre je clic sur Start et cela lance la procédure de flash du firmware du contrôleur, pas de documentation donc je peux pas vraiment savoir ce que ça fait réellement. DRAME ça affiche une erreur et un beau fail, je ne désespère pas je débranche rebranche la clé. Et c’est un ………………….WIN Windaube m’affiche le beau panneau voulez-vous formater cette merde. Deuxième WIN de taille, la clé est reconnu comme une clé de 8 Go LOL. Je mets plus de 4 Go de données dedans je fais un checksum des fichiers et ça marche !!!

                              +

                              L’erreur survenu à la fin du flash peu provenir du fait que je n’avais pas lancé l’exécutable avec des privilèges élevés donc le programme n’a pas pu effectuer le formatage.

                              +

                              Maintenant la grande question comment ce fait t’il que Maxell qui est l’assembleur de cet clé USB nous vend t’il des clé USB 4GB comme sont en réalité des clé de 8Go. J’ai trois début de réponse :

                              +

                              1) Soit Maxell se fout de notre gueule sur les prix et du coup au lieu d’acheter 4000 puces Toshiba de 4 Go et 4000 de puces de 8Go , Maxell achète 8000 puces de 8Go et bidouille les firmware des contrôleurs pour faire des clés USB de 4 et 8 Go.

                              +

                              2) Maxell utilise des puces 8Go qui ont des défauts d’usines et utilise uniquement une parti de la puce. Ce qui expliquerait les problèmes que j’ai rencontré avec cette clé au début.

                              +

                              3) Maxell utilise les 4 Go restant pour faire du over-provisioning pour les cellules de mémoire défectueuse en écriture étant donné que je penses que ce genre de mémoire n’a pas beaucoup de cycle d’écriture mais c’est très peu probable que ce type technologie propre aux SSD soit dans de vulgaire clé USB bas de gamme.

                              +
                              +
                              +
                              +
                              +
                              Catégories : BidouilleHardwareNews
                              +
                              +
                              +
                              + + + + + + + + + +
                              +
                              +
                              +
                              +
                              +
                              +
                              +

                              + 8 commentaires

                              +
                              + +
                              +
                              +
                              +
                              +

                              + 2Pi informatique + · 16 mai 2013 à 9 h 01 min +

                              +

                              Je n’avais jamais entendu parler de ce genre de manip, et du gain potentiel de capacité.

                              +

                              C’est assez étonnant, et je me demande si tous les constructeurs « brident » la capacité des clés usb …

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + Amedoumba + · 22 juillet 2013 à 14 h 15 min +

                              +

                              Hello !
                              +Intéressant comme manip. J’ai une de mes clés USB avec le même genre de probleme. Je vais donc tester et voir si cela fonctionne. Je n’ai rien à perdre de toute façon.
                              +Merci en tout cas.

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + diop + · 14 novembre 2013 à 15 h 11 min +

                              +

                              pour répéré cle usb

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + diop + · 14 novembre 2013 à 15 h 12 min +

                              +

                              salut pour ma cle usb

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + watchix + · 28 décembre 2013 à 10 h 40 min +

                              +

                              « File is deleted » :-(

                              + +
                              +
                              +
                                +
                                + +
                                +
                                +
                                +
                                +

                                + HugoPoi + · 4 janvier 2014 à 12 h 38 min +

                                +

                                à moitié réparer ;-)

                                + +
                                +
                                + +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + Jean + · 22 avril 2015 à 20 h 18 min +

                              +

                              Je penche pour ma part pour les raisons 1 et 2.

                              +

                              La première raison car le coût de la flash est diminuée plus on en commande, et aussi ça évite d’avoir deux chaines d’assemblage pour le PCB de la clé.

                              +

                              La seconde raison car c’est ce qui est pratiqué par pas mal de fabricants du domaine du semi-conducteur pour « créer » une gamme : AMD n’hésitait pas à vendre en entrée de gamme des processeurs amputés de certains coeurs défectueux. Et si il manque des processeurs défectueux … et bien on désactive quand même des coeurs !

                              +

                              Il y a aussi un paramètre à prendre en compte : la redevance sur la copie privée. Elle est proportionnelle à la capacité du support de stockage (cf. http://www.culturecommunication.gouv.fr/Politiques-ministerielles/Propriete-litteraire-et-artistique/Commission-pour-la-remuneration-de-la-copie-privee/Questions-pratiques/Les-montants-de-la-Remuneration-pour-Copie-Privee). Elle est de 0,64€ pour une clé de 4 Go, et 1,04€ pour une clé de 8 Go.

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + Pila + · 10 décembre 2015 à 21 h 45 min +

                              +

                              Salut,
                              +Je pense qu’il s’agit de puce MLC ( je crois que c’est le terme ? ), qui ont de très bonne performances sur la première moitié de leur capacité, et des très mauvaises sur la seconde moitié, car celle-ci est obtenu par réécriture sur la première partie.

                              +

                              En tout cas merci pour les différentes infos que tu as glanées !

                              + +
                              +
                              + +
                              +
                              +
                              +

                              Répondre à watchix Annuler la réponse

                              Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                              +
                              +
                              +

                              + +

                              +
                              +
                              +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              +
                              +
                              + + +
                              + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/dcb08dd950c84f03013d9b55a19498c4e47dcbd8.00000157.xml b/www/.content.EZtzwPjb/html/dcb08dd950c84f03013d9b55a19498c4e47dcbd8.00000157.xml new file mode 100644 index 0000000..b526598 --- /dev/null +++ b/www/.content.EZtzwPjb/html/dcb08dd950c84f03013d9b55a19498c4e47dcbd8.00000157.xml @@ -0,0 +1,105 @@ + + + Commentaires sur : Réparer un Vidéoprojecteur Sony VPL-CX5 + + http://blog.hugopoi.net/2013/05/04/reparer-un-videoprojecteur-sony-vpl-cx5/ + Internet, Hardware et Bidouille + Tue, 29 Jul 2014 07:21:09 +0000 + hourly + 1 + http://wordpress.org/?v=3.9.2 + + Par : HugoPoi + http://blog.hugopoi.net/2013/05/04/reparer-un-videoprojecteur-sony-vpl-cx5/#comment-271 + + Fri, 09 May 2014 15:50:52 +0000 + http://blog.hugopoi.net/?p=737#comment-271 + + Le VPL que j’avais était en panne je l’ai réparé jusqu’à il y a 2 mois ou il retombé en panne. Ton problème d’allumage ressemble à un problème de condensateur cramé. tu peux regarder si tu en vois des gonflés en démontant.

                              +]]>
                              +
                              + + Par : florian + http://blog.hugopoi.net/2013/05/04/reparer-un-videoprojecteur-sony-vpl-cx5/#comment-264 + + Mon, 21 Apr 2014 07:09:19 +0000 + http://blog.hugopoi.net/?p=737#comment-264 + + Bonjour,
                              +Je possède également un sony VPL CS7, et depuis plusieurs mois il a quelques signes de faiblesses.

                              +

                              1) lorsque je le débranche du secteur et que je le rebranche, il faut que j’attende 24 à 48 h pour que le voyant on/off se mette à éclairer, donc je ne peux pas l’allumer pendant ce temps.

                              +

                              2) aujourd’hui j’ai beau le laisser brancher, aucun signe de vie plus rien ne s’allume.

                              +

                              As tu attaqué ton VPL, As tu trouvé quelque chose ?

                              +

                              Merci

                              +]]>
                              +
                              + + Par : HugoPoi + http://blog.hugopoi.net/2013/05/04/reparer-un-videoprojecteur-sony-vpl-cx5/#comment-256 + + Fri, 21 Feb 2014 16:36:55 +0000 + http://blog.hugopoi.net/?p=737#comment-256 + + Sorry to be so long to answer,
                              +320V seems to be OK, I have extrapolated the value from the schema ~ 220Vxrootsquare(2) but this depends of the quality of your current source. I think 320 will not impact the power for the next card.

                              +

                              Good repair !
                              +Thanks for the comment :-D

                              +]]>
                              +
                              + + Par : henri moine + http://blog.hugopoi.net/2013/05/04/reparer-un-videoprojecteur-sony-vpl-cx5/#comment-255 + + Sun, 02 Feb 2014 19:43:26 +0000 + http://blog.hugopoi.net/?p=737#comment-255 + + Bonsoir,
                              +Merci beaucoup pour l’explication détaillée et les photos.
                              +Je vais pas tarder de m’attaquer à mon SONY VPL CS7 bizarrement inerte depuis quelques semaines…
                              +Bonne continuation !

                              +]]>
                              +
                              + + Par : Georg + http://blog.hugopoi.net/2013/05/04/reparer-un-videoprojecteur-sony-vpl-cx5/#comment-254 + + Thu, 30 Jan 2014 11:22:54 +0000 + http://blog.hugopoi.net/?p=737#comment-254 + + Hello,
                              +dear Hugo, at first: HAVE MANY THANKS FOR YOUR VERY INTERESTING BLOG!!!

                              +

                              I also have a cx5 and try to repair it.

                              +

                              It has the same problems like your projector…

                              +

                              I’ve measured the CN2001 but in my power supply there are only 320 V (stable).
                              +Are you sure, that there have to be 380V?
                              +In the service manual, I didn’t find a value (either 320V nor 380V)

                              +

                              Best Regards
                              +Your Georg

                              +]]>
                              +
                              +
                              +
                              diff --git a/www/.content.EZtzwPjb/html/dde9dbdf75472e3e359cf38bfc57ffbe979ad746.00000655.css b/www/.content.EZtzwPjb/html/dde9dbdf75472e3e359cf38bfc57ffbe979ad746.00000655.css new file mode 100644 index 0000000..8043bbf --- /dev/null +++ b/www/.content.EZtzwPjb/html/dde9dbdf75472e3e359cf38bfc57ffbe979ad746.00000655.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;background:#fff;border:1px +solid #f00;font-size:10pt;width:280px;padding:2px}span.wpcf7-not-valid-tip-no-ajax{color:#f00;font-size:10pt;display:block}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/de89c21b6678d0403b636aa57aae89a2566c5fc0.00000370.html b/www/.content.EZtzwPjb/html/de89c21b6678d0403b636aa57aae89a2566c5fc0.00000370.html new file mode 100644 index 0000000..e7d18c8 --- /dev/null +++ b/www/.content.EZtzwPjb/html/de89c21b6678d0403b636aa57aae89a2566c5fc0.00000370.html @@ -0,0 +1,364 @@ + + + + + + + cookies – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              + +
                              +
                              + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/df705454052e7af594ae32a13deeb1752df47126.00000330.html b/www/.content.EZtzwPjb/html/df705454052e7af594ae32a13deeb1752df47126.00000330.html new file mode 100644 index 0000000..7d89691 --- /dev/null +++ b/www/.content.EZtzwPjb/html/df705454052e7af594ae32a13deeb1752df47126.00000330.html @@ -0,0 +1,402 @@ + + + + + + + HugoPoi – Page 9 – Internet, Hardware et Bidouille + + + + + + + + + + + + + + + + + + + + + + + +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              +
                              +

                              Plugin WordPress

                              Cela va faire plus d’un mois que j’ai ouvert mon blog, j’ai donc pu prendre en main le CMS WordPress. Alors je vais faire un petit retour sur les plugins que j’ai trouvés et plus particulièrement ceux que j’utilise.

                              +

                              Dans la catégorie Décoration j’ai adopté :

                              +

                              TweetMeme Retweet Button

                              +

                              Ajoute un joli bouton TweetMeme pour RT mes articles.

                              +

                              TwitterWidget

                              +

                              Ajoute un Widget qui permet d’afficher ma Timeline Twitter sur la sidebar du blog.

                              +

                              Contact Form 7

                              +

                              Permet de créer des formulaires de contact, c’est simple et sobre. Je l’ai utilisé pour ma page contact.

                              +

                              Dans la catégorie Administration et Maintenance :

                              +

                              WP Maintenance Mode

                              +

                              Cette extension permet de passer le blog en mode maintenance, avec la possibilité de personnaliser la page affichée et elle dispose d’un compte à rebours.

                              +

                              (suite…)

                              +
                              Par HugoPoi, il y a

                              Cloud Computing

                              Dans les nouvelles TPME, PME et autres entreprises un peu plus grandes, il y a un nouveau phénomène qui se met doucement en place: le Cloud Computing. C’est quoi ce truc ? C’est une nouvelle façon de gérer son infrastructure Lire la suite…

                              +

                              Download-Day

                              Bon voilà, je vais officialiser ma participation au D-Day organisé par LinuxManua, en date du 1er novembre 2010. Le but de l’opération étant de télécharger 20 Go et cela uniquement sur les réseaux Peer to Peer de préférence pas anonyme Lire la suite…

                              +

                              Trolling

                              Apple New MacBook Air

                              +

                              J’avais envie de me défouler un peu donc je vais troller sur la sortie du nouveau MacBook Air. Alors oui il est beau, il est léger, la finition est nikel Chrome. Mais c’est du Apple donc c’est cher le prix d’entrée est de 999€ ouch ! pour la version 11 pouces … (suite…)

                              +
                              Par HugoPoi, il y a

                              Présentation

                              Un petit message pour remercier le créateur de ce blog de m’avoir intégré à son projet. Je suis là officiellement pour corriger les fautes d’orthographe, mais je vous annonce que j’en laisserais plusieurs par choix… officiellement ^^ Bonne lecture à Lire la suite…

                              +
                              Par Calcifer, il y a
                              +
                              +
                              + +
                              +
                              +
                              +
                              + +
                              +
                              + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/e01c32b70fe0e551ff214f9f96ebb2d9956a73e0.00000588.js b/www/.content.EZtzwPjb/html/e01c32b70fe0e551ff214f9f96ebb2d9956a73e0.00000588.js new file mode 100644 index 0000000..d9dc49a --- /dev/null +++ b/www/.content.EZtzwPjb/html/e01c32b70fe0e551ff214f9f96ebb2d9956a73e0.00000588.js @@ -0,0 +1,249 @@ +(function($) { + + $(function() { + try { + if (typeof _wpcf7 == 'undefined' || _wpcf7 === null) + _wpcf7 = {}; + + _wpcf7 = $.extend({ cached: 0 }, _wpcf7); + + _wpcf7.supportHtml5Placeholder + = 'placeholder' in document.createElement('input'); + + $('div.wpcf7 > form').ajaxForm({ + beforeSubmit: function(formData, jqForm, options) { + jqForm.wpcf7ClearResponseOutput(); + jqForm.find('img.ajax-loader').css({ visibility: 'visible' }); + return true; + }, + beforeSerialize: function(jqForm, options) { + jqForm.find('[placeholder].placeheld').each(function(i, n) { + $(n).val(''); + }); + return true; + }, + data: { '_wpcf7_is_ajax_call': 1 }, + dataType: 'json', + success: function(data) { + if (! $.isPlainObject(data) || $.isEmptyObject(data)) + return; + + var ro = $(data.into).find('div.wpcf7-response-output'); + $(data.into).wpcf7ClearResponseOutput(); + + $(data.into).find('.wpcf7-form-control').removeClass('wpcf7-not-valid'); + $(data.into).find('form.wpcf7-form').removeClass('invalid spam sent failed'); + + if (data.captcha) + $(data.into).wpcf7RefillCaptcha(data.captcha); + + if (data.quiz) + $(data.into).wpcf7RefillQuiz(data.quiz); + + if (data.invalids) { + $.each(data.invalids, function(i, n) { + $(data.into).find(n.into).wpcf7NotValidTip(n.message); + $(data.into).find(n.into).find('.wpcf7-form-control').addClass('wpcf7-not-valid'); + }); + + ro.addClass('wpcf7-validation-errors'); + $(data.into).find('form.wpcf7-form').addClass('invalid'); + + $(data.into).trigger('invalid.wpcf7'); + + } else if (1 == data.spam) { + ro.addClass('wpcf7-spam-blocked'); + $(data.into).find('form.wpcf7-form').addClass('spam'); + + $(data.into).trigger('spam.wpcf7'); + + } else if (1 == data.mailSent) { + ro.addClass('wpcf7-mail-sent-ok'); + $(data.into).find('form.wpcf7-form').addClass('sent'); + + if (data.onSentOk) + $.each(data.onSentOk, function(i, n) { eval(n) }); + + $(data.into).trigger('mailsent.wpcf7'); + + } else { + ro.addClass('wpcf7-mail-sent-ng'); + $(data.into).find('form.wpcf7-form').addClass('failed'); + + $(data.into).trigger('mailfailed.wpcf7'); + } + + if (data.onSubmit) + $.each(data.onSubmit, function(i, n) { eval(n) }); + + $(data.into).trigger('submit.wpcf7'); + + if (1 == data.mailSent) + $(data.into).find('form').resetForm().clearForm(); + + $(data.into).find('[placeholder].placeheld').each(function(i, n) { + $(n).val($(n).attr('placeholder')); + }); + + $(data.into).wpcf7FillResponseOutput(data.message); + } + }); + + $('div.wpcf7 > form').each(function(i, n) { + if (_wpcf7.cached) + $(n).wpcf7OnloadRefill(); + + $(n).wpcf7ToggleSubmit(); + + $(n).find('.wpcf7-submit').wpcf7AjaxLoader(); + + $(n).find('.wpcf7-acceptance').click(function() { + $(n).wpcf7ToggleSubmit(); + }); + + $(n).find('.wpcf7-exclusive-checkbox').each(function(i, n) { + $(n).find('input:checkbox').click(function() { + $(n).find('input:checkbox').not(this).removeAttr('checked'); + }); + }); + + $(n).find('[placeholder]').each(function(i, n) { + var input = $(n); + + if (_wpcf7.supportHtml5Placeholder) + return; + + input.val(input.attr('placeholder')); + input.addClass('placeheld'); + + input.focus(function() { + if ($(this).hasClass('placeheld')) + $(this).val('').removeClass('placeheld'); + }); + + input.blur(function() { + if ('' == $(this).val()) { + $(this).val($(this).attr('placeholder')); + $(this).addClass('placeheld'); + } + }); + }); + }); + + } catch (e) { + } + }); + + $.fn.wpcf7AjaxLoader = function() { + return this.each(function() { + var loader = $('') + .attr({ src: _wpcf7.loaderUrl, alt: _wpcf7.sending }) + .css('visibility', 'hidden'); + + $(this).after(loader); + }); + }; + + $.fn.wpcf7ToggleSubmit = function() { + return this.each(function() { + var form = $(this); + if (this.tagName.toLowerCase() != 'form') + form = $(this).find('form').first(); + + if (form.hasClass('wpcf7-acceptance-as-validation')) + return; + + var submit = form.find('input:submit'); + if (! submit.length) return; + + var acceptances = form.find('input:checkbox.wpcf7-acceptance'); + if (! acceptances.length) return; + + submit.removeAttr('disabled'); + acceptances.each(function(i, n) { + n = $(n); + if (n.hasClass('wpcf7-invert') && n.is(':checked') + || ! n.hasClass('wpcf7-invert') && ! n.is(':checked')) + submit.attr('disabled', 'disabled'); + }); + }); + }; + + $.fn.wpcf7NotValidTip = function(message) { + return this.each(function() { + var into = $(this); + into.append('' + message + ''); + $('span.wpcf7-not-valid-tip').mouseover(function() { + $(this).fadeOut('fast'); + }); + into.find(':input').mouseover(function() { + into.find('.wpcf7-not-valid-tip').not(':hidden').fadeOut('fast'); + }); + into.find(':input').focus(function() { + into.find('.wpcf7-not-valid-tip').not(':hidden').fadeOut('fast'); + }); + }); + }; + + $.fn.wpcf7OnloadRefill = function() { + return this.each(function() { + var url = $(this).attr('action'); + if (0 < url.indexOf('#')) + url = url.substr(0, url.indexOf('#')); + + var id = $(this).find('input[name="_wpcf7"]').val(); + var unitTag = $(this).find('input[name="_wpcf7_unit_tag"]').val(); + + $.getJSON(url, + { _wpcf7_is_ajax_call: 1, _wpcf7: id, _wpcf7_request_ver: $.now() }, + function(data) { + if (data && data.captcha) + $('#' + unitTag).wpcf7RefillCaptcha(data.captcha); + + if (data && data.quiz) + $('#' + unitTag).wpcf7RefillQuiz(data.quiz); + } + ); + }); + }; + + $.fn.wpcf7RefillCaptcha = function(captcha) { + return this.each(function() { + var form = $(this); + + $.each(captcha, function(i, n) { + form.find(':input[name="' + i + '"]').clearFields(); + form.find('img.wpcf7-captcha-' + i).attr('src', n); + var match = /([0-9]+)\.(png|gif|jpeg)$/.exec(n); + form.find('input:hidden[name="_wpcf7_captcha_challenge_' + i + '"]').attr('value', match[1]); + }); + }); + }; + + $.fn.wpcf7RefillQuiz = function(quiz) { + return this.each(function() { + var form = $(this); + + $.each(quiz, function(i, n) { + form.find(':input[name="' + i + '"]').clearFields(); + form.find(':input[name="' + i + '"]').siblings('span.wpcf7-quiz-label').text(n[0]); + form.find('input:hidden[name="_wpcf7_quiz_answer_' + i + '"]').attr('value', n[1]); + }); + }); + }; + + $.fn.wpcf7ClearResponseOutput = function() { + return this.each(function() { + $(this).find('div.wpcf7-response-output').hide().empty().removeClass('wpcf7-mail-sent-ok wpcf7-mail-sent-ng wpcf7-validation-errors wpcf7-spam-blocked'); + $(this).find('span.wpcf7-not-valid-tip').remove(); + $(this).find('img.ajax-loader').css({ visibility: 'hidden' }); + }); + }; + + $.fn.wpcf7FillResponseOutput = function(message) { + return this.each(function() { + $(this).find('div.wpcf7-response-output').append(message).slideDown('fast'); + }); + }; + +})(jQuery); \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/e03ed9c788acae4a88b7290ef76352d169d32ff2.00000662.css b/www/.content.EZtzwPjb/html/e03ed9c788acae4a88b7290ef76352d169d32ff2.00000662.css new file mode 100644 index 0000000..8043bbf --- /dev/null +++ b/www/.content.EZtzwPjb/html/e03ed9c788acae4a88b7290ef76352d169d32ff2.00000662.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;background:#fff;border:1px +solid #f00;font-size:10pt;width:280px;padding:2px}span.wpcf7-not-valid-tip-no-ajax{color:#f00;font-size:10pt;display:block}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/e04167d4df5865194b8acec71c73541adcbd6ded.00001303.xml b/www/.content.EZtzwPjb/html/e04167d4df5865194b8acec71c73541adcbd6ded.00001303.xml new file mode 100644 index 0000000..69506ce --- /dev/null +++ b/www/.content.EZtzwPjb/html/e04167d4df5865194b8acec71c73541adcbd6ded.00001303.xml @@ -0,0 +1,7 @@ + +1.0HugoPoihttp://blog.hugopoi.netHugoPoihttp://blog.hugopoi.net/author/hugopoi/Réparer et transformer une clé USB de 4Go en 8Gorich600338<blockquote class="wp-embedded-content"><a href="/2013/05/11/reparer-et-transformer-une-cle-usb-de-4go-en-8go/">Réparer et transformer une clé USB de 4Go en 8Go</a></blockquote> +<script type='text/javascript'> +<!--//--><![CDATA[//><!-- + !function(a,b){"use strict";function c(){if(!e){e=!0;var a,c,d,f,g=-1!==navigator.appVersion.indexOf("MSIE 10"),h=!!navigator.userAgent.match(/Trident.*rv:11\./),i=b.querySelectorAll("iframe.wp-embedded-content"),j=b.querySelectorAll("blockquote.wp-embedded-content");for(c=0;c<j.length;c++)j[c].style.display="none";for(c=0;c<i.length;c++)if(d=i[c],d.style.display="",!d.getAttribute("data-secret")){if(f=Math.random().toString(36).substr(2,10),d.src+="#?secret="+f,d.setAttribute("data-secret",f),g||h)a=d.cloneNode(!0),a.removeAttribute("security"),d.parentNode.replaceChild(a,d)}else;}}var d=!1,e=!1;if(b.querySelector)if(a.addEventListener)d=!0;if(a.wp=a.wp||{},!a.wp.receiveEmbedMessage)if(a.wp.receiveEmbedMessage=function(c){var d=c.data;if(d.secret||d.message||d.value)if(!/[^a-zA-Z0-9]/.test(d.secret)){var e,f,g,h,i,j=b.querySelectorAll('iframe[data-secret="'+d.secret+'"]'),k=b.querySelectorAll('blockquote[data-secret="'+d.secret+'"]');for(e=0;e<k.length;e++)k[e].style.display="none";for(e=0;e<j.length;e++)if(f=j[e],c.source===f.contentWindow){if(f.style.display="","height"===d.message){if(g=parseInt(d.value,10),g>1e3)g=1e3;else if(200>~~g)g=200;f.height=g}if("link"===d.message)if(h=b.createElement("a"),i=b.createElement("a"),h.href=f.getAttribute("src"),i.href=d.value,i.host===h.host)if(b.activeElement===f)a.top.location.href=d.value}else;}},d)a.addEventListener("message",a.wp.receiveEmbedMessage,!1),b.addEventListener("DOMContentLoaded",c,!1),a.addEventListener("load",c,!1)}(window,document); +//--><!]]> +</script><iframe sandbox="allow-scripts" security="restricted" src="/2013/05/11/reparer-et-transformer-une-cle-usb-de-4go-en-8go/embed/" width="600" height="338" title="Inclure un article WordPress" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" class="wp-embedded-content"></iframe> diff --git a/www/.content.EZtzwPjb/html/e04342ee631ebe533640acafdb207fe68d9f32db.00000548.xml b/www/.content.EZtzwPjb/html/e04342ee631ebe533640acafdb207fe68d9f32db.00000548.xml new file mode 100644 index 0000000..85960a9 --- /dev/null +++ b/www/.content.EZtzwPjb/html/e04342ee631ebe533640acafdb207fe68d9f32db.00000548.xml @@ -0,0 +1,38 @@ + + + VirtualBox – HugoPoi + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Mon, 22 Aug 2016 14:10:26 +0000 + fr-FR + hourly + 1 + https://wordpress.org/?v=4.6.1 + + Installer Mac OS X Mavericks avec VirtualBox + http://blog.hugopoi.net/2013/12/27/installer-mac-os-x-mavericks-avec-virtualbox/ + http://blog.hugopoi.net/2013/12/27/installer-mac-os-x-mavericks-avec-virtualbox/#comments + Fri, 27 Dec 2013 21:40:28 +0000 + + + + + + + + + http://blog.hugopoi.net/?p=802 + Lire la suite »

                              ]]>
                              + http://blog.hugopoi.net/2013/12/27/installer-mac-os-x-mavericks-avec-virtualbox/feed/ + 6 +
                              +
                              +
                              diff --git a/www/.content.EZtzwPjb/html/e076ac0083a1baaadd39ad46594f293555c0bd45.00000283.html b/www/.content.EZtzwPjb/html/e076ac0083a1baaadd39ad46594f293555c0bd45.00000283.html new file mode 100644 index 0000000..5ef1c6d --- /dev/null +++ b/www/.content.EZtzwPjb/html/e076ac0083a1baaadd39ad46594f293555c0bd45.00000283.html @@ -0,0 +1,397 @@ + + + + + + + Aventure PC – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              +
                              +

                              Secure Boot n’est pas simple

                              1. Pourquoi cet article La sécurité de nos ordinateurs c’est un peu amélioré si on sait ce qu’on fait avec. Avant pour démarrer votre OS le BIOS utilisait un MBR Master Boot Record présent dans le premier secteur de votre disque-dur. Ce MBR pouvait être écrasé par n’importe quel programme Lire la suite…

                              +
                              Par HugoPoi, il y a

                              Pourquoi je suis sous Linux bordel !

                              Début d’année 2017, 6 mois que j’ai pas écrit sur le blog ! Cette année j’ai pris une résolution un choix de merde je n’installerais plus Windaube que se soit pour moi ou pour la dépanne, les amis, la famille, mon chat … Bref pendant les fêtes j’avais de la maintenance à faire comme d’habitude fallait faire une réinstallation pour la famille « met moi Windows 7 ça me suffit et au moins il y tout qui marche dessus » ça faisait environ plus 1 an que j’avais pas installé de windaube. Je me dit que ça va me prendre une petite demi journée. J’ai mis plus d’une journée si on compte le temps de faire les mises à jour. (suite…)

                              +
                              Par HugoPoi, il y a

                              Reflow Dell Inspiron 1546

                              +
                              Les choses n’ont pas beaucoup changé en terme d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un cadeau empoisonné de la belle-famille « Essaye de faire ce que tu peux pour récupérer mes photos, j’en rachèterais un ». Le pc portable en question était dans un état de mort certain.
                              + (suite…)
                              +
                              +
                              Par HugoPoi, il y a

                              Test et démontage d’un Sony Multi Flip 15 SVF15N1C5E

                              Longtemps que je n’avais pas posté ici, mais la je suis en vacances donc j’ai le temps. Voici donc mes retours sur ce pc portable Sony un peu atypique. J’ai choisit cette machine sur plusieurs critères qui m’avait convaincu pour les usages de ma chérie (c’est sa machine), elle fait du dessin vectoriel et de la retouche d’images principalement.
                              + (suite…)

                              +
                              Par HugoPoi, il y a
                              +
                              +
                              + +
                              +
                              +
                              +
                              + +
                              +
                              + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/e099b26de50dcd03200ac4fef867a9f11d1d1cd5.00000088.html b/www/.content.EZtzwPjb/html/e099b26de50dcd03200ac4fef867a9f11d1d1cd5.00000088.html new file mode 100644 index 0000000..7adb518 --- /dev/null +++ b/www/.content.EZtzwPjb/html/e099b26de50dcd03200ac4fef867a9f11d1d1cd5.00000088.html @@ -0,0 +1,497 @@ + + + + + + Démontage Asus U36 | HugoPoi + + + + + + + + + + + + + + + + + +
                              + +
                              +
                              +

                              Démontage Asus U36

                              + +
                              +
                              + +

                              J’ai acheté un petit SSD pour mettre dans mon U36 acheté il y a quelques mois, je n’ai pas trouvé de procédure de démontage sur Internet donc voici les photos de mon démontage.

                              +

                              1) Commencer par enlever toutes les vis et la trappe pour accéder à la RAM, puis déconnecter les deux connecteurs clavier et touchpad qui se situent juste à coté de la carte wifi.

                              +

                              2) Retourner le pc et à l’aide d’un petit tournevis plat, dé-clipser les petits clips sur tout le tour du pc. Vous pouvez maintenant enlever toute la partie supérieur.

                              +

                              +

                              3) Démontage Terminé :D

                              +

                              4) Galerie

                              + + +
                              +
                              +
                              + + +
                              + + +
                                +
                              1. +
                                + +
                                +

                                Salut Hugo,

                                +

                                Comment as tu fait pour déconnecter les deux connecteurs clavier et touchpad qui se situent juste à coté de la carte wifi ?

                                +

                                Merci d’avance,
                                +John

                                +
                                + +
                                +
                                  +
                                • +
                                  + +
                                  +

                                  Désolé pour l’attente,

                                  +

                                  Il faut prendre un petit tournevis plat et relever les petites languettes au dessus des nappes de façon à la mettre à 90° par rapport à la carte mère.

                                  +
                                  + +
                                  +
                                • +
                                +
                              2. +
                              3. +
                                +
                                + leboulanger + +
                                +
                                +

                                bonjour,
                                +super ton tuto ! j’ai la m idée que toi à savoir mettre un ssd mais est ce que tu sais si çest du SATA 1 ou 2 ? concernant les connecteurs je ne l’ai situe pas du tout. est ce que tu pourrais ajoutait une photo stp ?
                                +merci en ts cas pour la contribution

                                +
                                + +
                                +
                                  +
                                • +
                                  + +
                                  +

                                  Salut,
                                  +Pour le mode SATA c’est du 2. Après j’ai pas d’autre photo mais le connecteur il est situé juste au bout du disque sur la gauche.

                                  +
                                  + +
                                  +
                                • +
                                +
                              4. +
                              5. +
                                +
                                + Asus U36 et OCZ Vertex 3 la suite | HugoPoi - pingback on 15 mai 2012 at 3 h 39 min +
                                +
                                +
                              6. +
                              7. +
                                + +
                                +

                                J’ai aussi démonté le mien pour mettre un ssd et il n’a plus jamais redémarré (même avec le disque dur initial) …
                                +Un conseil, soyez très prudents !

                                +
                                + +
                                + +
                              8. +
                              9. +
                                + +
                                +

                                Emiso tu es un boulet

                                +
                                + +
                                + +
                              10. +
                              11. +
                                + +
                                +

                                Mon U36 avec un SSD Crucial M4 et une carte Intel Centrino n-6230 à la place de la n-100… que du bonheur.

                                +

                                Merci pour le tuto bien utile.

                                +
                                + +
                                +
                              12. +
                              13. +
                                + +
                                +

                                merci pour ce tuto; a noter un truc pour ne pas perdre les vis et savoir où les replacer:

                                +

                                http://fr.slideshare.net/stepmond/remplacement-ecran-sony-vaio?ref=http://www.pcsoleil.fr/ecran-pc-portable-sony-vaio-casse/

                                +

                                3eme diapo

                                +
                                + +
                                +
                              14. +
                              15. +
                                + +
                                +

                                Can you send me a close up picture of both sides of the U36JC I/O board? It would be nice if you could give me also the resistor/capacitor values. I need to connect my SATA hard drive, but the board itself is very expensive. Do you think I can solder the SATA wires to a cable and plug that to the hard drive?

                                +
                                + +
                                +
                                  +
                                • +
                                  + +
                                  +

                                  I don’t want to reopen my laptop just for take picture. I don’t know if there are any out pins to solder a SATA connector but in Intel driver menu on Windows a port with no-connection appear.

                                  +
                                  + +
                                  +
                                • +
                                +
                              16. +
                              17. +
                                + +
                                +

                                Hello , j’ai également cet Asus et comme tout le monde je pense, bien tenté de remplacer le disque dur de base par un ssd ^^.
                                + Sur la première image de ton petit tuto, tu sembles montrer des emplacements vis sous les antidérapants.. ca me semble étrange ;p. Je voulais savoir si ceux si ne risquaient pas de s’abîmer (et du coup s’ils se remettaient également facilement).
                                + Si tu passe par là, merci de la réponse!

                                +
                                + +
                                +
                                  +
                                • +
                                  + +
                                  +

                                  J’ai pu décoller et recoller sans problème les patins antidérapants. Mais à la rigueur prévoir du double-face pour remplacement.

                                  +
                                  + +
                                  +
                                • +
                                +
                              18. +
                              19. +
                                + +
                                +

                                Oh my goodness! Incredible article dude! Thank
                                +you so much, However I am going through issues with your RSS.
                                +I don’t know why I am unable to subscribe to it. Is there anyone else getting the same RSS problems? Anybody who knows the answer will you kindly respond? Thanks!!

                                +
                                + +
                                + +
                              20. +
                              + +
                              +

                              Répondre à HugoPoi ¬
                              Annuler la réponse

                              +
                              +

                              + +

                              +

                              NOTE - Vous pouvez utiliser les éléments et attributs HTML tags and attributes:
                              <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

                              + + + +

                              +

                              +
                              +
                              +

                              Trackbacks and Pingbacks:

                              + +
                              +
                              +
                              +
                              + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/e0a70bf5d9943724d0ad6212f3a9756bc0eb4da8.00001237.js b/www/.content.EZtzwPjb/html/e0a70bf5d9943724d0ad6212f3a9756bc0eb4da8.00001237.js new file mode 100644 index 0000000..5db6356 --- /dev/null +++ b/www/.content.EZtzwPjb/html/e0a70bf5d9943724d0ad6212f3a9756bc0eb4da8.00001237.js @@ -0,0 +1 @@ +!function(e,n){e.wp=e.wp||{},e.wp.mediaelement=new function(){var e={};return{initialize:function(){(e="undefined"!=typeof _wpmejsSettings?n.extend(!0,{},_wpmejsSettings):e).classPrefix="mejs-",e.success=e.success||function(e){var n,t;e.rendererName&&-1!==e.rendererName.indexOf("flash")&&(n=e.attributes.autoplay&&"false"!==e.attributes.autoplay,t=e.attributes.loop&&"false"!==e.attributes.loop,n&&e.addEventListener("canplay",function(){e.play()},!1),t&&e.addEventListener("ended",function(){e.play()},!1))},e.customError=function(e,n){if(-1!==e.rendererName.indexOf("flash")||-1!==e.rendererName.indexOf("flv"))return''+mejsL10n.strings["mejs.download-file"]+""},n(".wp-audio-shortcode, .wp-video-shortcode").not(".mejs-container").filter(function(){return!n(this).parent().hasClass("mejs-mediaelement")}).mediaelementplayer(e)}}},n(e.wp.mediaelement.initialize)}(window,jQuery); \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/e0d8ed0083edce13b6093711c57a415179532dbd.00000058.html b/www/.content.EZtzwPjb/html/e0d8ed0083edce13b6093711c57a415179532dbd.00000058.html new file mode 100644 index 0000000..a49a489 --- /dev/null +++ b/www/.content.EZtzwPjb/html/e0d8ed0083edce13b6093711c57a415179532dbd.00000058.html @@ -0,0 +1,554 @@ + + + + + + + + Freebox Révolution #oupas – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              +
                              +
                              +

                              Après une longue longue attente, ma Freebox révolution est finalement arrivée à la maison. J’ai opté pour la livraison par relai Kiala qui est gratuite mais moins rapide que par UPS, 20€ ça fait cher après les 120 € dégressifs à payer pour obtenir la nouvelle boite magique. Bon cette nouvelle box est grosse et plus lourde que la dernière voir le carton :

                              +

                              +

                              Une fois le carton ouvert, encore des cartons :

                              +

                              +

                              Et enfin voici la Freebox Server qui remplace la Freebox v5 ADSL, le modem-routeur mais celui-ci fait un plus que ça :

                              +

                              +

                              Alors le point fort, c’est qu’ on branche et ça marche, tous vos paramètres sont transférés dans votre nouvelle box (wifi, routeur, ip) en moins de 5 minutes votre connexion internet est de nouveau opérationnelle ! Au niveau esthétique, on aime ou on aime pas perso je la trouve plus « belle » que l’ancienne. Passons le nouveau design et voici les points forts :

                              +

                              Une première pour free l’interface Web locale pour gérer la box Server, celle-ci est disponible via http://mafreebox.freebox.fr. Elle sert à configurer tous les paramètres routeurs et wifi disponible via l’interface distante, affiche des infos temps réel sur votre connexion. Elle contient aussi un explorateur de fichier pour manager le disque-dur de 250Go intégré, ainsi qu’un système de téléchargement autonome succin qui prend en charge HTTP FTP et BitTorrent.

                              +

                              Cette freebox est aussi équipée d’un module DECT qui permet de connecter directement vos téléphones compatibles, moi j’ai essayé ça marche bien au début puis mon téléphone se dés-associe au bout 30 min tout seul mais toujours paramétré dans la freebox, affaire à suivre. (modèle : Siemens Gigaset C2)

                              +

                              Pour ce qui est du réseau, le wifi est de norme n avec support du WPA2-AES, et un switch Gigabit 4 ports dont 3 sont utilisables car le dernier sert à connecter le freeplug pour la box tv.

                              +

                              Donc pour conclure sur la Freebox Server, plus grosse que la V5 ADSL mais plus de fonctionnalités pas encore toutes au point mais ça avance toute les semaines avec les mises à jour. J’ai noté de mon coté une petite baisse de débit en download depuis mon passage à la v6 mais bon je suis à 4 Km du DSLAM donc 4,5Mbits c’est déjà bien. J’ai trouvé que la fonctionnalité de téléchargement autonome pouvait servir occasionnellement mais est trop simple et ne pourras pas remplacer un NAS ou un serveur pour l’instant. Des surprises sont à venir car elle contient une puce Broadcom VDSL2 qui permet de monter à 50Mbits sismétric sur des lignes de moins d’un kilomètre ; et aussi un emplacement pci-express pour une extension fem-to-cell maybe ? #freemobilevatoutpeter

                              +

                              Maintenant je vais parler TV avec la Freebox Player qui remplace la v5 HD :

                              +

                              +

                              Les points positifs :

                              +
                                +
                              • Interface agréable et simple à l’usage.(merci à @hkoprod)
                              • +
                              • Support USB complet : stockage, clavier, manette de jeux.
                              • +
                              • Support des vidéos HD en H264 1080p mkv
                              • +
                              +

                              Les points négatifs :

                              +
                                +
                              • La fonction Télévision ADSL et TNT, elle marche quand elle veut des fois faut que je redémarre ma box pour voir disparaître le jolie cercle de chargement.
                              • +
                              • Le navigateur internet est plus long que mon Galaxy S pour charger les pages.
                              • +
                              • Pas de sous-titres .srt et .mkv affiché
                              • +
                              • Les .avi ne marchent que après avoir lancé un .mkv avant sinon ça affiche « format non supporté » bizarre ??? (en Upnp avec Tversity et Vuze)
                              • +
                              • Problèmes de programmation des enregistrements
                              • +
                              • Les Blu-Ray mettent trois plombes pour se charger mais ils marchent
                              • +
                              +

                              Je vais m’arrêter là, liste complète sur le bugtracker de freeplayer.org.

                              +

                              Conclusion

                              +

                              Est-ce une révolution cette Freebox ? Pour moi non, car comme toujours chez free la finition n’est pas au rendez-vous. Beaucoup de fonctions sont bogués ou inexistante. Et puis la politique de prix pratiquée par Free avec cette nouvelle offre est détestable on se croirait presque chez Orange avec cette option dégroupage totale à 5.99€ qui au final est de la vente forcée, puis le coup de l’option TV à 2€/mois pour éviter les résiliations c’est pitoyable. Sinon, revenons sur du positif. Cette Freebox apporte un mini-pc Atom dans le salon pour seulement 8€/mois avec lecteur Blu-Ray, TNT HD, navigateur internet, « jeux vidéo » et seedbox ; les possibilités offertes par la puissance de ces deux boîtes sont prometteuses, vivement que les développeurs se bougent le cul ! (promis dans 3 ans je rejoins l’équipe de Free pour donner un coup de main)

                              +

                              Liens Complémentaires :

                              +

                              La freebox démontée

                              +

                              Un test complet et le dossier évolutif

                              +

                              Le dossier de presse de freenews.fr

                              +
                              +
                              +
                              +
                              +
                              Catégories : HardwareNewsTest
                              +
                              +
                              +
                              + + + + + + + + + +
                              +
                              +
                              +
                              +
                              +
                              +
                              +

                              + 2 commentaires

                              +
                              + +
                              +
                              +
                              +
                              +

                              + sebclick + · 9 février 2011 à 12 h 22 min +

                              +

                              Les points négatifs sont en majorité des bugs. Free aurait sûrement pu améliorer la satisfaction utilisateurs si des tests plus poussé avait été effectué avant. L’idéal serait presque que des bêta-testeurs (de vrais clients) soient sélectionné pour tester les box.

                              + +
                              +
                              + +
                              +
                              +

                              + Tweets that mention Freebox Révolution #oupas | HugoPoi -- Topsy.com + · 9 février 2011 à 12 h 44 min +

                              +

                              […] This post was mentioned on Twitter by HugoPoi and HugoPoi, Bim.im. Bim.im said: New Bim.im link: Freebox Révolution #oupas | HugoPoi http://bim.im/yk […]

                              + +
                              +
                              + +
                              +
                              +
                              +

                              Répondre à Tweets that mention Freebox Révolution #oupas | HugoPoi -- Topsy.com Annuler la réponse

                              Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                              +
                              +
                              +

                              + +

                              +
                              +
                              +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              +
                              +
                              + + +
                              + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/e15a1aa4ac95726c9c9b366f65635236eaf707db.00000258.html b/www/.content.EZtzwPjb/html/e15a1aa4ac95726c9c9b366f65635236eaf707db.00000258.html new file mode 100644 index 0000000..ba37a6d --- /dev/null +++ b/www/.content.EZtzwPjb/html/e15a1aa4ac95726c9c9b366f65635236eaf707db.00000258.html @@ -0,0 +1,573 @@ + + + + + + + + How to backup FreeNas zvol to S3 storage – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              +
                              +
                              +

                              Context

                              +
                                +
                              • I have a FreeNAS setup
                              • +
                              • I want a cheap offsite backup solution
                              • +
                              • Backblaze only offer S3 storage solution
                              • +
                              • I have virtual machines on zvol to backup (not just files)
                              • +
                              • ZFS send/receive is very convenient if you have another zfs system in other
                                +location
                              • +
                              +

                              I choose zfsbackup-go, this tool use zfs send/receive to generate archives on S3 storage space. This software is not ready for very critical use, still in « beta » missing some features like deletation on remote location from the command line.

                              +

                              Advantages

                              +
                                +
                              • Can backup zvol as well as dataset
                              • +
                              • Differential backups based on snapshots
                              • +
                              • Encrypted backups
                              • +
                              • Compressed backups
                              • +
                              • Compatible with all S3 solutions
                              • +
                              +

                              Drawbacks

                              +
                                +
                              • You can’t use backups without re-import in a ZFS pool (so real backups
                                +not a archives solution)
                              • +
                              • Still in beta
                              • +
                              +

                              How to

                              +
                                +
                              1. (Optional) Build zfsbackup-go for freebsd with crosscompile from a linux +
                                  +
                                1. You need GO
                                2. +
                                3. git clone git@github.com:someone1/zfsbackup-go.git
                                4. +
                                5. GOOS=freebsd GOARCH=amd64 go build -o zfsbackup main.go
                                6. +
                                +
                              2. +
                              3. Generate a gpg key gpg --full-generate-key +

                                Learn gpg getting started

                                +
                              4. +
                              5. +

                                Export the private/public gpg keys

                                +
                                  +
                                1. gpg --list-keys
                                2. +
                                3. gpg --export-secret-keys -a keyid
                                4. +
                                5. gpg --export -a keyid
                                6. +
                                +

                                How to export keys

                                +
                              6. +
                              7. +

                                Create the S3 credentials you need
                                +I use BackBlaze because it’s the cheapper one, but you can use every S3 storage service or implementation you want.

                                +
                              8. +
                              9. +

                                Configure periodic snapshot in FreeNas
                                +Freenas Periodical Snapshot

                                +
                              10. +
                              11. +

                                Configure zfsbackup cron task
                                +Crontask FreeNas

                                +
                                  +
                                • You need to ensure the schedule is after the snapshot
                                • +
                                • I have develop a very little script to have a more simpler crontask because zfsbackup only support one Dataset at a time
                                • +
                                • Command DATASETS="Tank/Dataset1 Tank/Group/Data1" /root/zfsbackup.sh
                                • +
                                +
                                #!/bin/bash
                                +export B2_ACCOUNT_ID=
                                +export B2_ACCOUNT_KEY=
                                +export PGP_PASSPHRASE=
                                +PGP_EMAIL=
                                +PGP_PUBLIC_RING=
                                +PGP_PRIVATE_RING=
                                +S3_DEST=
                                +for dataset in $DATASETS
                                +do
                                +  /root/zfsbackup send --encryptTo $PGP_EMAIL --signFrom $PGP_EMAIL --publicKeyRingPath $PGP_PUBLIC_RING --secretKeyRingPath $PGP_PRIVATE_RING --fullIfOlderThan 2160h $dataset $S3_DEST
                                +done
                                +
                                +
                              12. +
                              +

                              Conclusion

                              +
                                +
                              • This solution offer very good performance like 15MB/s during backup operation with only 10% cpu usage on Xeon D1521. My Orange ISP uplink is the limitation here.
                              • +
                              • With incremental snapshot, BackBlaze is a very effective solution at low cost like less than 60€ a year for a 100GB on disk backuped VM.
                              • +
                              • DO BACKUPS
                              • +
                              • DO BACKUPS
                              • +
                              • DO BACKUPS
                              • +
                              +
                              +
                              +
                              +
                              +
                              Catégories : Aventure Serveur
                              +
                              +
                              +
                              + + + + + + + + + +
                              +
                              +
                              +
                              +
                              +
                              +
                              +

                              + 1 commentaire

                              +
                              + +
                              +
                              +
                              +
                              +

                              + Rudi Pittman + · 30 mai 2020 à 21 h 25 min +

                              +

                              I think I posted my question to another article by accident. Is there a way to transfer the configured containers from the old rancheros image to the new one?

                              + +
                              +
                              + +
                              +
                              +
                              +

                              Laisser un commentaire

                              Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                              +
                              +
                              +

                              + +

                              +
                              +
                              +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              +
                              +
                              + + +
                              + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/e1e5feb5ac7450f7538bb712e13d495ee75061ab.00000104.html b/www/.content.EZtzwPjb/html/e1e5feb5ac7450f7538bb712e13d495ee75061ab.00000104.html new file mode 100644 index 0000000..6c36a08 --- /dev/null +++ b/www/.content.EZtzwPjb/html/e1e5feb5ac7450f7538bb712e13d495ee75061ab.00000104.html @@ -0,0 +1,1370 @@ + + + + + + + + Réparations Samsung SyncMaster 2232BW – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              +
                              +
                              +

                              Allô docteur on a un problème,

                              +

                              En ce dimanche calme avant la fin de mes partiels, mon écran Samsung SyncMaster 2232BW commençait à faire des siennes. Celui-ci depuis un mois ou deux clignotait de façon systématique au démarrage, au début pendant seulement quelques secondes, puis au fur et à mesure, de plus en plus jusqu’à devoir attendre 10 minutes pour que je puisse l’utiliser. Après 3 ans et 4 mois de bons et loyaux services, il voulait me quitter. J’ai tenté le support Samsung par email avec peu d’espoir car l’écran a dépassé sa garantie de 4 mois (oui oui les bâtards -> obsolescence programmée). Et donc j’ai eu le droit à un joli mail automatique me disant de contacter un numéro non surtaxé (mais avec combien de temps d’attente ?), ce que je n’ai pas fait car je n’avais pas envie de passer 30min au téléphone pour au final avoir un « On est désolé mais on ne peut rien faire pour vous car la garantie est dépassée, mais on peut envoyer votre écran en SAV pour faire un devis pour seulement 50 boules ». Concernant le support email de Samsung France, je leur donne une note de 0/20 puisque ce n’est pas un support mais une redirection vers le téléphone.

                              +

                              +

                              Symptômes

                              +

                              Clignotements de l’écran et de la LED power systématiques à chaque démarrage de l’écran. Je me suis tout de suite douté d’un problème d’alimentation et après quelques recherches sur google, confirmation du problème sur beaucoup d’écrans et téléviseurs. Dans 99% des cas ce clignotement est dû à des condensateurs défectueux qu’il faut simplement changer :-D

                              +

                              Démontage

                              +

                              Donc après avoir cerné le problème, j’ai ouvert l’écran pour chercher les condos défectueux. J’ai trouvé une petite vidéo pour mon écran :

                              +

                              +

                              Voici quelques photos en plus pour vous aider :

                              +

                              Les outils que j’ai utilisé pour le démontage

                              +

                              Position des clips

                              +

                              Carte d’alimentation dans son emplacement

                              +

                              Et voici les condensateurs qui posent problèmes. Comme vous pouvez le voir sur la photo, ils sont très facilement identifiable car ils sont bombés sur le dessus.

                              +

                              Condensateurs défectueux

                              +

                              Vous devez donc acheter des condensateurs de remplacement, par exemple sur Conrad.

                              +

                              Mes condensateurs suivant étaient endommagés:

                              +
                                +
                              • 1 de 330uF 25V remplacé par un 470uF 25V
                              • +
                              • 3 de 820uF 25V remplacé par des 1000uF 50V
                              • +
                              +

                              Pour la réparation, il vous faut un fer à souder avec une panne pas trop grosse mais d’une grosse puissance car les soudures sont très solides (j’ai galéré avec un fer pro qui monte jusqu’à 400°).

                              +

                              Tout remarche nickel après remontage, plus de clignotement pour seulement quelques euros.

                              +

                              edit du 19 aout 2014 : j’ai trouvé le service manuel de l’écran si besoin samsung_2232bw_chassis_lpe22bs_sm

                              + + +
                              +
                              + +
                              +
                              +
                              +
                              +
                              +

                              + 41 commentaires

                              +
                              + +
                              +
                              +
                              +
                              +

                              + c'est_moi + · 30 janvier 2012 à 18 h 57 min +

                              +

                              Mille mercis et mille félicitations pour cette fiche technique si pédagogue.

                              +

                              J’espère que le partiels se passent plus que parfait !!

                              +

                              J’ai gardé l’url de la page pour réparer mon écran dans un petit mois : j’espère que la page soit toujours là ;-)

                              +

                              Merci encore.

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + Maxime + · 5 mai 2012 à 12 h 31 min +

                              +

                              Bonjour HugoPoi!

                              +

                              Merci pour toutes vos infos et votre topic, je voulais avoir quelques précisions sur les condos à changer pour samsung 2232bw, je veux passer commande mais j’ai un problème avec les dimensions des condos, si vous pouvez m’informer de ce que je pourrais acheter car il y a trop de références. En vous remerciant A+ Maxime

                              + +
                              +
                              +
                                +
                                + +
                                +
                                +
                                +
                                +

                                + HugoPoi + · 14 juin 2012 à 22 h 56 min +

                                +

                                N’importe quel condensateur polarisé avec des caractéristiques proches devrait marché.

                                + +
                                +
                                + +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + gaubjezj + · 14 juin 2012 à 22 h 32 min +

                              +

                              Merci pour le tuto qui m’a bien aidé.
                              +J’ai utilisé un fer de 40 W avec une panne fine et
                              +une pompe à dessouder et j’ai retiré les condensateurs sans problème.
                              +Merci encore (3€40 pour le dépannage).

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + DragonTribal + · 2 juillet 2012 à 12 h 02 min +

                              +

                              super merci pour manifique tuto.
                              +Est-il possible de changer les 5 condensateurs 820uF 25V par des 1000uF 50V? car moi mes 5 condensateurs sont presque HS ;-)

                              +

                              Cordialement

                              + +
                              +
                              +
                                +
                                + +
                                +
                                +
                                +
                                +

                                + HugoPoi + · 2 juillet 2012 à 12 h 25 min +

                                +

                                Oui je penses que ça marchera étant donné que c’est des valeurs plus grandes.

                                + +
                                +
                                + +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + FRED + · 11 juillet 2012 à 19 h 11 min +

                              +

                              Bravo, MERCI.
                              +Je n’ai encore rien fait…mais j’ai le même problème, et tu me donnes la solution.
                              +Super.

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + daninpet + · 31 août 2012 à 10 h 10 min +

                              +

                              Merci mille fois!

                              +

                              J’avais ce problème, et j’ai emmener la photo des trucs a remplacer chez le réparateur du coin et voila!! Ça m’a coûté 7 Euros (mais j’habite en Thaïlande)

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + moi + · 15 novembre 2012 à 15 h 25 min +

                              +

                              super mon 2232bw vient de lâcher, les 3 + 1 condos sont gonflés j ai trouvé un 330 en 35v qui traîné sur un écran mort et j’ai commander 5 1000uf 35v sur ebay pour moins de 3 dollars, ca devrait le faire j’espere j’attend d’être livré merci! par contre j’ai qu’un gros pistolet a soudure et un gros fil d’étain, c’est pas évident mais bon ca le fait quand même =)

                              + +
                              +
                              +
                                +
                                + +
                                +
                                +
                                +
                                +

                                + moi + · 7 décembre 2012 à 9 h 33 min +

                                +

                                parfait je vient de recevoir les condos; j ai meuler la panne du fer a souder pour la tailler en mine de crayon et j ai reussi a les souder facilement ils étaient un peu plus gros mais ca passe tout juste, mais attention ne pas prendre des plus gros! l écran fonctionne nickel maintenant.

                                + +
                                +
                                + +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + Croco + · 19 janvier 2013 à 18 h 39 min +

                              +

                              Je souhaiterai savoir si tu as utilisé un fer à souder bien précis étant donné que la carte est une multi couche.
                              +Merci

                              + +
                              +
                              + + +
                              + +
                              +
                              +
                              +
                              +

                              + momo + · 10 juin 2013 à 13 h 15 min +

                              +

                              slut je voudrai savoir ou trouvé les condansateur a changer sur mon ecran qui clignote

                              + +
                              +
                              + + +
                              + +
                              +
                              +
                              +
                              +

                              + lokmane + · 5 juillet 2013 à 16 h 08 min +

                              +

                              merci j’avais un ecran rouge ! et c’etais la tresse qui relie mon ecran votre page m’a aider a l’ouvrir et a le reparer merci bien

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + ML + · 21 août 2013 à 19 h 11 min +

                              +

                              Merci ! Ecran réparé. Halte à l’obsolescence programmée.

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + raymond + · 31 octobre 2013 à 13 h 20 min +

                              +

                              ai vu votre vidéo et les explications pour la reparation de mon écran , apparemment le méme probléme l écran passe au noir apres quelque seconde , j ai vu un le condensateur en bas a gauche gonflé , je l ai fait changé (10€) les autre condensateur étant toujour bon d après la personne qui me l a changé , mais j ai toujour le méme probléme cela peut il venir de la carte video a gauche ?

                              + +
                              +
                              +
                                +
                                + +
                                +
                                +
                                +
                                +

                                + HugoPoi + · 20 décembre 2013 à 12 h 27 min +

                                +

                                Si la led bleu du bouton power s’éteint aussi c’est un problème d’alimentation sinon c’est plus compliqué et ça peut provenir de condensateurs sur la partie vidéo. Changé tous les plus gros condensateurs sur la partie alimentation pourrait être un bon début même si ils ne paraissent pas endommagé.

                                + +
                                +
                                + +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + damien + · 4 novembre 2013 à 0 h 29 min +

                              +

                              bonjour,

                              +

                              j’ai des crasses coincées entres l’écran et le truc juste derrière, est ce qu’on sais les enlever en démontant la dalle ?

                              + +
                              +
                              +
                                +
                                + +
                                +
                                +
                                +
                                +

                                + HugoPoi + · 20 décembre 2013 à 12 h 28 min +

                                +

                                Je ne sais si cette partie de la dalle est démontable, je penses que c’est collé mais vous pouvez essayer.

                                + +
                                +
                                + +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + mac + · 1 décembre 2013 à 17 h 30 min +

                              +

                              Merci HugoPoi, avec ces excellents conseils et tuto vidéo, mon écran est reparti pour une nouvelle vie.
                              +Pour les composants, si vous êtes sur Paris ou proche. La boutique RAM électroniques est une bonne adresse, 138 bd Diderot 75012 Paris (Place de la Nation).

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + Bouddhid + · 16 janvier 2014 à 19 h 21 min +

                              +

                              Merci beaucoup pour ces conseils ! J’étais à 2 doigts de jeter mon écran, le voilà comme neuf pour moins de 5€ ! Vive la bricole !

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + Vincent + · 17 mai 2014 à 16 h 45 min +

                              +

                              Alors là merci.

                              +

                              Pour ce post, les photos, la vidéo, tout y est.

                              +

                              J’ai démonté l’écran assez vite, enlevé la carte, regarder quel condensateurs étaient gonflés,(il y en avaient 4), un magasin d’électronique sur lyon et une heure de démontage, soudure, remontage plus tard, voilà, c’est tout beau.
                              +Ca ne clignote plus, ça s’allume comme avant, comme neuf.

                              +

                              Et dire que j’allais jeter cet écran et claquer 350 euros pour un neuf…

                              +

                              Coût de l’opération pour 4 condensateurs, du fil d’étain 7 euros.

                              +

                              Je précise que je n’avais jamais fais de soudure sur composant électronique auparavant.
                              +Comme quoi cette opération de réparation est à la portée de tous.

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + Julot + · 6 juillet 2014 à 13 h 49 min +

                              +

                              Site vraiment détaillé et très claire. J’ai pu dépanner mon écran avec succès. Merci beaucoup pour ces précieuses explications.

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + PaniK31 + · 29 juillet 2014 à 9 h 21 min +

                              +

                              Pas besoin d’une grosse puissance pour le fer, il faut au préalable gratter le vernis sur l’étain afin de pouvoir le faire fondre plus facilement

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + R211_IP-45130B + · 20 août 2014 à 14 h 04 min +

                              +

                              Bonjour à tous,

                              +

                              Une âme charitable peut-elle me communiquer ce qui est gravé sur la résistance CMS R211 de la carte d’alimentation/inverter IP-45130B qui équipe le SAMSUNG 2232BW ? Cette résistance a pris un coup de tournevis et je n’arrive pas à déterminer sa valeur de résistance car son marquage est effacé et comme le composant est abimé la mesure à l’ohmmètre indique l’infinie.

                              +

                              Merci par avance.

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + roger + · 24 octobre 2014 à 17 h 21 min +

                              +

                              Ca refonctionne après échange de 4 condensateurs :
                              +-un 330uf25v remplacé à l’identique.
                              +-trois 820uf25v remplacés par 1000uf25v.
                              +Le tout pour quelques €. Le plus dur était le dessoudage, la tresse n’était pas très efficace contrairement à la pompe.
                              +Grand merci à HugoPoi.

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + Max + · 26 février 2015 à 16 h 28 min +

                              +

                              ENORME MERCI!! J’ai réparé mon écran en 20mn pour 3,50€, il était à 2 doigts de partir à la déchetterie. Ca faisait des mois qu’il clignotait, et l’allumage mettait parfois plus d’une demi heure. J’ai changé 5 condos 820uf25v et 1 330uf25v, par exactement les mêmes en neuf, et là il démarre au quart de tour! Ca fait plaisir! :)

                              + +
                              +
                              +
                                +
                                + +
                                +
                                +
                                +
                                +

                                + rocco michelle + · 7 octobre 2015 à 10 h 16 min +

                                +

                                Bonjour je ne sais si vous verrez mon message mais je tente…je cherche quelqu’un qui accepterait de changer mes condensateurs sur mon samsung, les réparateurs me demandent 70 à 80 euros et encore ils n’ont pss envie de le faire et me disent d’acheter un nouvel écran. j’aurais bien tenter mais je n’ai pas de matériel et j’ai lu que les condo pouvaient être très dangereux s’ils avaient de la charge alors j’ai la trouille de bidouiller pq je n’y connais rien. si vous êtes de lyon acccepteriez vous de changer mes condensateurs pour 45 euros? merci de votre réponse.

                                + +
                                +
                                + +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + lecakeseb + · 27 juillet 2015 à 15 h 26 min +

                              +

                              Bonjour,

                              +

                              J’ai utilisé la vidéo pour démonter mon écran afin de le nettoyer de 4 bêtes d’orage infiltrés entre le premier écran (noir) et la dalle (blanche) de mon samsung SyncMaster 2232W

                              +

                              Petits conseils afin de modérer ce que j’ai pu voir dans cette vidéo :

                              +

                              0 : aspirez, nettoyez l’extérieur de l’écran avant de l’ouvrir et nettoyez la table qui vous servira d’atelier, pour éviter les poussières qui s’infiltreront forcément plus tard si vous ne le faites pas…
                              +1 : pour ouvrir, utilisez plutôt un couteau à enduire pour la première partie (le cadre). Vous n’abîmerez ainsi pas du tout l’écran. Soyez patients, ne forcez pas ! ça viendra doucement, mais ça viendra. Il m’a fallu à peine 10 minutes, sans détériorer l’écran, sans le griffer… Il est encore nickel !
                              +2 : attention à ne pas déconnecter les fils reliant le cadre à la carte. Inutile pour simplement nettoyer l’écran.
                              +3 : pour séparer les deux éléments de la dalle entre lesquels les bêtes se sont infiltrées, les doigts suffisent, pas besoin d’outils qui viendraient les endommager. La dalle blanche reste à l’horizontale, l’écran noir sera tenu à la verticale.
                              +4 : utiliser un chiffon doux ne peluchant pas pour enlever les bêtes (faites-vous aider de quelqu’un qui les enlèvera pendant que vous tenez l’écran extérieur en position verticale).
                              +5 : repositionnez la colle d’étanchéité qui aurait pu se déplacer, avant de repositionner les deux écrans.
                              +6 : commencer par refermer par le bas de l’écran (sinon les éléments de réglage situés au bas de l’écran – luminosité, contraste,…- ne se replaceront pas correctement).
                              +7 : Une fois l’écran refermé, j’ai appliqué un peu de « barrage aux insectes », avec un chiffon à l’arrière de mon écran en insistant surtout sur les bouches d’aération par lesquelles les maudites bestioles ont du s’infiltrer. En espérant ne pas avoir à ouvrir !

                              +

                              Bon courage à vous !

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + Michel Jousserandot + · 20 janvier 2017 à 20 h 41 min +

                              +

                              Merci pour les conseils au démontage.
                              +J’avais un problème un peu différent :l’écran ne s’allumait plus du tout. Avec un copain beaucoup plus malin que moi, on a détecté 2 fusibles dont l’un était fichu. On l’a remplacé par un petit fil de cuivre. Et tout a remarché comme avant.
                              +Il faut surtout faire attention quand on teste la partie haute tension
                              +Michel.

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + Crec + · 14 juillet 2017 à 10 h 20 min +

                              +

                              Bonjour. Très bons conseils avertis. Merci beaucoup.
                              +Peut-on avoir les mêmes conseils pour un écran BX2250.
                              +Merci par avance.
                              +Crec

                              + +
                              +
                              +
                                +
                                + +
                                +
                                +
                                +
                                +

                                + HugoPoi + · 6 août 2017 à 14 h 03 min +

                                +

                                J’ai pas de BX2250 donc dans le détails non mais si c’est les même symptômes ça doit la même procédure.

                                + +
                                +
                                + +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + Ferronnier + · 10 août 2017 à 17 h 42 min +

                              +

                              Un grand merci !
                              +J’ai changé tous les condensateurs de la partie alimentation de la carte, en déportant certains qui n’avaient pas le même format qu’à l’origine, et ça tourne nickel !

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + Nours + · 1 décembre 2017 à 15 h 17 min +

                              +

                              Ca fait des années que j’ai cet article enregistré dans un coin, en nourrissant l’espoir d’avoir un jour le courage de réparer ce foutu écran… Après plus de cinq ans c’est chose faite \o/
                              +Un giga, hypra, immense merci pour ce tutoriel tellement bien expliqué et facile d’accès (je n’avais pas touché à un fer à souder depuis… Oh boy 15 ans déjà).
                              +Après une longue pause, l’écran reprend du service… Jusqu’à la prochaine panne /o/

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + Alex + · 11 août 2018 à 13 h 28 min +

                              +

                              Quelqu’un sait qui pourrait me le faire svp j ai le même problème mais aucun matériel

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + David + · 5 février 2019 à 21 h 06 min +

                              +

                              Merci Hugo pour ce tuto qui m’a déjà servi en 2013 et qui va me resservir aujourd’hui car mon 2ème 2232bw commence à avoir les mêmes symptômes.

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + yvan + · 23 novembre 2019 à 17 h 14 min +

                              +

                              Bonjour
                              +j’ai tenté de changer le condensateur qui avait l’air naze mais ça n’a pas marché … toujours le bouton bleu allumé, l’écran est reconnu par Windows 10 même si l’écran est éteint
                              +grâce au service manuel de l’écran fourni plus haut, j’ai vérifié les tensions jusque sur la carte de la dalle et elles sont correctes, ainsi que sur la carte elle-même, tout est ok, donc je pense que ce n’est plus un problème de condensateur
                              +pour les fusibles, ils ressemblent plutôt à des composants qu’à de simple fusibles, mais comme j’ai les bonnes tension, je ne pense pas que ça vienne de là
                              +j’ai bien peur que ce soit la dalle qui soit naze ? quelqu’un a t il des idées supplémentaires avant que je le jette avec grand regret (c’est un 2032bw, mais c’est la même chose, même si ma carte électronique est un peu différente car plus récente
                              +merci d’avance pour vos conseils

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + yvan + · 24 novembre 2019 à 17 h 26 min +

                              +

                              finalement j’ai trouvé, c’est un petit fusible vert qui ressemble à une résistance mais tout vert avec écrit 4A LF qui assure l’alimentation de la dalle.
                              +En le shuntant, mon écran a retrouvé l’image.
                              +après enquête il s’agit d’un fusible pico de 4ampères de chez little fuse, pas du tout évident à trouver
                              +Résolu !

                              + +
                              +
                              + +
                              +
                              +

                              + Reflow Dell 1546 | HugoPoi + · 22 août 2016 à 16 h 09 min +

                              +

                              […] « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable de marque Dell un 1546 pour être précis. Encore […]

                              + +
                              +
                              + +
                              +
                              +

                              + Reflow Dell Inspiron 1546 – HugoPoi + · 23 juin 2017 à 23 h 18 min +

                              +

                              […] d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un […]

                              + +
                              +
                              + +
                              +
                              +
                              +

                              Répondre à DragonTribal Annuler la réponse

                              Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                              +
                              +
                              +

                              + +

                              +
                              +
                              +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              +
                              +
                              + + +
                              + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/e23840f862058ad01d0ad4214d79f046f4de4430.00000406.html b/www/.content.EZtzwPjb/html/e23840f862058ad01d0ad4214d79f046f4de4430.00000406.html new file mode 100644 index 0000000..6055728 --- /dev/null +++ b/www/.content.EZtzwPjb/html/e23840f862058ad01d0ad4214d79f046f4de4430.00000406.html @@ -0,0 +1,365 @@ + + + + + + + facebook – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              +
                              +

                              Quel age pour s’inscrire sur Facebook ?

                              Pour commencer définition et contexte:

                              +

                              Facebook est un réseau social créé par Mark Zuckerberg dont le but premier était de mettre un nom sur un visage et ainsi de permettre de contacter facilement une personne faisant parti de votre réseau universitaire. Exemple, vous voulez « pécho » ce soir, vous allez sur Facebook vous faites le tour des amis de vos amis et c’est bon. Depuis, le réseau a un peu évolué au vu de son augmentation de popularité mais le principe est inchangé. (suite…)

                              +
                              +
                              + +
                              +
                              +
                              +
                              + +
                              +
                              + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/e319b4923a8af06820a9b2e35e508cf33349ef66.00000066.xml b/www/.content.EZtzwPjb/html/e319b4923a8af06820a9b2e35e508cf33349ef66.00000066.xml new file mode 100644 index 0000000..16b666f --- /dev/null +++ b/www/.content.EZtzwPjb/html/e319b4923a8af06820a9b2e35e508cf33349ef66.00000066.xml @@ -0,0 +1,61 @@ + + + Commentaires sur : Asus U36JC-RX260V + + http://blog.hugopoi.net/2011/04/10/asus-u36jc-rx260v/ + Internet, Hardware et Bidouille + Tue, 29 Jul 2014 07:21:09 +0000 + hourly + 1 + http://wordpress.org/?v=3.9.2 + + Par : Démontage Asus U36 | HugoPoi + http://blog.hugopoi.net/2011/04/10/asus-u36jc-rx260v/#comment-69 + + Sun, 31 Jul 2011 00:00:13 +0000 + http://blog.hugopoi.net/?p=398#comment-69 + + [...] acheté un petit SSD pour mettre dans mon U36 acheté il y a quelques mois, je n’ai pas trouvé de procédure de démontage sur Internet donc voici les photos de mon [...]

                              +]]>
                              +
                              + + Par : darkneo + http://blog.hugopoi.net/2011/04/10/asus-u36jc-rx260v/#comment-66 + + Sat, 28 May 2011 15:21:21 +0000 + http://blog.hugopoi.net/?p=398#comment-66 + + Par contre sur ce modèle je crois que l’accès au disque n’est pas possible sans ouvrir toute la coque!

                              +]]>
                              +
                              + + Par : Optimus vs Mégatron | HugoPoi + http://blog.hugopoi.net/2011/04/10/asus-u36jc-rx260v/#comment-61 + + Thu, 05 May 2011 00:00:20 +0000 + http://blog.hugopoi.net/?p=398#comment-61 + + [...] l’heureux acquéreur #oupas d’un pc portable avec technologie Optimus de Nvidia (voir Asus U36JC). Après quelques jours de recherches et de tests je vais essayer de vous faire un résumé [...]

                              +]]>
                              +
                              + + Par : Mikky + http://blog.hugopoi.net/2011/04/10/asus-u36jc-rx260v/#comment-59 + + Sun, 01 May 2011 18:51:58 +0000 + http://blog.hugopoi.net/?p=398#comment-59 + + Yop Hugo,
                              +sache que lorsqu’on achète un pc portable faut le réinstaller comme ça tu peux dégager tout les merdes pré-installés car on peut choisir ceux qu’on veut intaller ;)

                              +

                              Bisous =)

                              +]]>
                              +
                              +
                              +
                              diff --git a/www/.content.EZtzwPjb/html/e331c3cb0aced906c1431cd831f6599f1b38d639.00000700.css b/www/.content.EZtzwPjb/html/e331c3cb0aced906c1431cd831f6599f1b38d639.00000700.css new file mode 100644 index 0000000..20df2bb --- /dev/null +++ b/www/.content.EZtzwPjb/html/e331c3cb0aced906c1431cd831f6599f1b38d639.00000700.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7 .screen-reader-response{position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);height:1px;width:1px;margin:0;padding:0;border:0}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{color:#f00;font-size:1em;display:block}.use-floating-validation-tip span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;border:1px +solid #f00;background:#fff;padding: .2em .8em}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/e33b73b71c3c8eac17caf7afebf89225b5808327.00000558.html b/www/.content.EZtzwPjb/html/e33b73b71c3c8eac17caf7afebf89225b5808327.00000558.html new file mode 100644 index 0000000..69f4b85 --- /dev/null +++ b/www/.content.EZtzwPjb/html/e33b73b71c3c8eac17caf7afebf89225b5808327.00000558.html @@ -0,0 +1,379 @@ + + + + + + + Yamaha – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              +
                              +

                              Home Cinéma

                              Bientôt fini mais peut-être jamais terminé tellement il y a de boulot autour d’un système home-cinema complet et parfait. Cela fait bientôt deux semaines que je suis dans mes travaux et ma configuration HTPC. Première semaine, je suis parti de rien, aucun câble posé, pas de pc installé et pas de meuble. Du coup, le lundi, je suis allé à Ikea et j’ai trouvé à peu près ce que je voulais pour pas trop cher (120 € pour de l’aggloméré de merde). Le mardi, je venais de recevoir tout le matos, à savoir :

                              +
                                +
                              • Un Amplificateur Yamaha RX-671
                              • +
                              • Un kit d’enceinte Jamo 5.1
                              • +
                              • Un boitier Antec Remote black et les 2-3 composants qui vont bien
                              • +
                              +

                              Salon Wii

                              +

                               

                              + +
                              Par HugoPoi, il y a
                              +
                              + +
                              +
                              +
                              +
                              + +
                              +
                              + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/e34dbc775f308e1be198a16f24b9a21959345a99.00000678.css b/www/.content.EZtzwPjb/html/e34dbc775f308e1be198a16f24b9a21959345a99.00000678.css new file mode 100644 index 0000000..dc3f2d3 --- /dev/null +++ b/www/.content.EZtzwPjb/html/e34dbc775f308e1be198a16f24b9a21959345a99.00000678.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{color:#f00;font-size:1em;display:block}.use-floating-validation-tip span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;border:1px +solid #f00;background:#fff;padding: .2em .8em}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/e3db33ad4e42c70e4b446d5a434bf04723134849.00000371.html b/www/.content.EZtzwPjb/html/e3db33ad4e42c70e4b446d5a434bf04723134849.00000371.html new file mode 100644 index 0000000..c8a7cb2 --- /dev/null +++ b/www/.content.EZtzwPjb/html/e3db33ad4e42c70e4b446d5a434bf04723134849.00000371.html @@ -0,0 +1,369 @@ + + + + + + + copie privée – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              +
                              +

                              Stockage numérique pour tous

                              Ce blog parle très technique comme en témoigne mon dernier article mais aujourd’hui je vais faire un petit topo sur les disques-dur ou plutôt le stockage de vos données numériques en général. Dans cet article je vais m’adresser à tout le monde de papi-geek à tante-photo et pas uniquement à tous les geeks.

                              +

                              Je me suis aperçu, dans mon entourage proche mais aussi sur des forums ou je traîne parfois, que beaucoup n’ont aucune notion sur comment est stockée l’information sur nos ordinateurs et ce qu’il y a dans un disque USB que l’on achète à la Fnac pour ne citer que ces abrutis.

                              +

                              Retour en arrière, le fameux disque-dur que tout le monde utilise (peut-être sans le savoir) a été inventé en 1953 par IBM. Les premiers modèles avaient une capacité de quelques mégaoctets pour un prix de 10 000$. Aujourd’hui, il existe des modèles allant jusqu’à plus de 2 Téraoctets de capacité soit un million de fois plus.

                              +

                              Le disque-dur stocke les informations de façon magnétique sur des plateaux qui ressemblent à des CDs qui sont en rotation. Des petits bras viennent se positionner au dessus des disques pour écrire/lire les informations. ça ressemble à cela :

                              +

                              +

                              (suite…)

                              +
                              +
                              + +
                              +
                              +
                              +
                              + +
                              +
                              + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/e3fbc8b976c4c63af24758af79e188cb5d45f9e2.00000145.html b/www/.content.EZtzwPjb/html/e3fbc8b976c4c63af24758af79e188cb5d45f9e2.00000145.html new file mode 100644 index 0000000..e08da78 --- /dev/null +++ b/www/.content.EZtzwPjb/html/e3fbc8b976c4c63af24758af79e188cb5d45f9e2.00000145.html @@ -0,0 +1,617 @@ + + + + + + + + Asus U36 et OCZ Vertex 3 la suite – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              +
                              +
                              +

                              Après un mois d’attente auprès de Cdiscount, pour au final m’annoncer le remboursement de mon SSD Vertex 2 qui est mort subitement, j’ai donc décidé de commander un Vertex 3 qui va remplacer le mort au sein de mon Asus U36JC. Et pour ne pas l’ouvrir juste pour un banal remplacement de SSD j’ai décidé de remplacer par la même occasion la carte wifi, une Intel N-1000 par une Intel N-6320. Celle-ci disposant en plus du bluetooth. J’en ai donc profité pour prendre des photos supplémentaires du démontage pour compléter mon précédent article : Démontage d’un Asus U36. Vous pouvez d’abord lire mon ancien article avant d’attaquer celui-ci, je ne ferai qu’apporter des informations complémentaires pour le démontage.

                              +

                              On commence par ouvrir le capot arrière, puis enlever les deux petites nappes, il faut faire attention car celle de droite est fragile, il faut soulever la partie noire et la positionner vers le haut à 90° par rapport à la carte mère.

                              +

                              +

                              Une fois ceci fais, vous pouvez dévisser toutes les vis du châssis. Ensuite on retourne le pc pour enlever la partie supérieure.

                              +

                              +

                              Le reste c’est du gâteau, je vous laisse faire le changement de disque. Moi j’y place mon SSD Vertex 3 fraîchement reçu.

                              +

                              +

                              Puis avant de remonter le support disque, je vais démonter l’extension de carte mère qui comporte la carte wifi. Une seule vis est nécessaire à enlever en plus des deux qui étaient sur la fixation du disque, voir la photo ci-dessous :

                              +

                              +

                              Il suffit de soulever délicatement l’extension à la main, celle-ci est un peu collée avec de l’adhésif double face. Une fois décollé, vous pouvez la tirer vers vous pour la déconnecter de la carte mère.

                              +

                              +

                              Vous pouvez maintenant changer la carte wifi et la pile du BIOS si nécessaire. Moi je vais changer la carte wifi par une N-6230 que j’ai achetée sur Amazon pour 30€ environ. Après remontage complet, tout fonctionne. Pensez à mettre à jour votre SSD avant d’installer votre OS. Pour OCZ le mieux est de faire une clé USB bootable avec leur image linux. Une fois sous Windows j’ai fais un petit test des performances :

                              +
                              -----------------------------------------------------------------------
                              +CrystalDiskMark 3.0.1 x64 (C) 2007-2010 hiyohiyo
                              +                           Crystal Dew World : http://crystalmark.info/
                              +-----------------------------------------------------------------------
                              +* MB/s = 1,000,000 byte/s [SATA/300 = 300,000,000 byte/s]
                              + 
                              +           Sequential Read :   221.359 MB/s
                              +          Sequential Write :   168.989 MB/s
                              +         Random Read 512KB :   214.565 MB/s
                              +        Random Write 512KB :   166.993 MB/s
                              +    Random Read 4KB (QD=1) :    19.163 MB/s [  4678.5 IOPS]
                              +   Random Write 4KB (QD=1) :    29.546 MB/s [  7213.4 IOPS]
                              +   Random Read 4KB (QD=32) :   116.214 MB/s [ 28372.5 IOPS]
                              +  Random Write 4KB (QD=32) :   158.578 MB/s [ 38715.3 IOPS]
                              + 
                              +  Test : 1000 MB [C: 26.3% (29.4/111.7 GB)] (x5)
                              +  Date : 2012/03/29 14:26:15
                              +    OS : Windows 7 Ultimate Edition SP1 [6.1 Build 7601] (x64)
                              +

                              Évidemment les performances sont décevantes en terme de débit brut mais cela est surtout dû au contrôleur SATA-2 qui limite la vitesse des transferts. Enfin j’ai pris quelques photos supplémentaires pour vous aider dans votre démontage. En tout cas, je trouve ce PC Asus génial car hyper facile à démonter, léger, bien équipé. Vous pouvez acheter un Asus U36SD encore mieux les yeux fermés.

                              + + +
                              +
                              + +
                              +
                              +
                              +
                              +
                              +

                              + 1 commentaire

                              +
                              + +
                              +
                              +
                              +
                              +

                              + Plutonion + · 22 mai 2012 à 15 h 49 min +

                              +

                              Salut,
                              +je viens d’acheter un Asus u36sg (ça fait un moment que je lorgnait déjà sur les JC et SD…).
                              +Bien qu’il possède déjà le Bluetooth, je vais également l’équiper d’une carte n-6230.
                              +Sinon je vais y coller un SSD Crucial M4 de 128 Go.
                              +J’espère ainsi m’approcher de ma config tant rêvé !
                              +Merci pour les photos, ça me permettra de démonter/remonter sans soucis !
                              +@+

                              + +
                              +
                              + +
                              +
                              +
                              +

                              Laisser un commentaire

                              Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                              +
                              +
                              +

                              + +

                              +
                              +
                              +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              +
                              +
                              + + +
                              + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/e411336ff4300beb9e0e45967f1ec00742d7f853.00000309.html b/www/.content.EZtzwPjb/html/e411336ff4300beb9e0e45967f1ec00742d7f853.00000309.html new file mode 100644 index 0000000..2e0f4b6 --- /dev/null +++ b/www/.content.EZtzwPjb/html/e411336ff4300beb9e0e45967f1ec00742d7f853.00000309.html @@ -0,0 +1,401 @@ + + + + + + + Logiciels – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              +
                              +

                              Le cloud maison

                              Voilà un petit moment que je me devais de faire cet article pour vous en dire un peu plus sur comment je gère mes données numériques au quotidien. Et après plusieurs essais et échecs, je peux enfin dire que j’ai trouvé des outils simples et maintenus pour cette quête. Même Lire la suite…

                              +
                              Par HugoPoi, il y a

                              Secure Boot n’est pas simple

                              1. Pourquoi cet article La sécurité de nos ordinateurs c’est un peu amélioré si on sait ce qu’on fait avec. Avant pour démarrer votre OS le BIOS utilisait un MBR Master Boot Record présent dans le premier secteur de votre disque-dur. Ce MBR pouvait être écrasé par n’importe quel programme Lire la suite…

                              +
                              Par HugoPoi, il y a

                              Installer Mac OS X Mavericks avec VirtualBox

                              Capture Installation Mac OS X MavericksComme Apple c’est des blaireaux et que j’avais besoin d’un environnement de développement pour iDaube. J’ai du me résoudre à installer un Mac OS X dans une machine virtuel.

                              +

                              Ce dont vous avez besoin :

                              + +

                              Moi je travail sous Linux Mint mais vous devriez réussir à faire les manipulations sous Windaube. (suite…)

                              +
                              Par HugoPoi, il y a
                              +
                              +
                              + +
                              +
                              +
                              +
                              + +
                              +
                              + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/e436e9819524edad65888319cea718570806ece7.00000480.html b/www/.content.EZtzwPjb/html/e436e9819524edad65888319cea718570806ece7.00000480.html new file mode 100644 index 0000000..aad0f50 --- /dev/null +++ b/www/.content.EZtzwPjb/html/e436e9819524edad65888319cea718570806ece7.00000480.html @@ -0,0 +1,373 @@ + + + + + + + OS – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              + +
                              +
                              + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/e448cfe00eface1c4f850a732aeae64b4007f861.00000430.html b/www/.content.EZtzwPjb/html/e448cfe00eface1c4f850a732aeae64b4007f861.00000430.html new file mode 100644 index 0000000..fcae302 --- /dev/null +++ b/www/.content.EZtzwPjb/html/e448cfe00eface1c4f850a732aeae64b4007f861.00000430.html @@ -0,0 +1,367 @@ + + + + + + + javascript – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              + +
                              +
                              + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/e4e806fc052de0fb7f496d18d904b3aaeb1831e5.00000241.html b/www/.content.EZtzwPjb/html/e4e806fc052de0fb7f496d18d904b3aaeb1831e5.00000241.html new file mode 100644 index 0000000..ea8d443 --- /dev/null +++ b/www/.content.EZtzwPjb/html/e4e806fc052de0fb7f496d18d904b3aaeb1831e5.00000241.html @@ -0,0 +1,676 @@ + + + + + + + + Le cloud maison – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              +
                              +
                              +
                              +

                              Voilà un petit moment que je me devais de faire cet article pour vous en dire un peu plus sur comment je gère mes données numériques au quotidien.

                              +

                              Et après plusieurs essais et échecs, je peux enfin dire que j’ai trouvé des outils simples et maintenus pour cette quête. Même si ce n’est pas encore parfait ni à la porté de tous.

                              +

                              Ma philosophie

                              +

                              C’est celle de Framasoft Dégooglelisons l’Internet ! Dans un monde ou si c’est gratuit, c’est vous le produit. Je me devais d’éviter d’aller à la simplicité et utiliser les Gmail, Dropbox, Spotify, iCloud et autres merdes du genre. On peut se dire que c’est cool, c’est simple mais vous ne contrôlez plus rien, et au final les GAFAM se serviront de vos données pour vous faire devenir des moutons consommateurs au service des actionnaires. Et j’entends déjà dire que « oui mais moi je sais mais je m’en fout » !

                              +

                              Le matos

                              +

                              Oui c’est chiant mais pour faire du hors cloud, il faut le construire chez soi ou chez le voisin le nuage. L’avantage de le faire chez soi c’est qu’on dépend de personne et aussi plus c’est proche plus on a de débit donc la donnée locale devient la donnée accessible rapidement.

                              +

                              J’ai viré ma box

                              +

                              Pour ne plus dépendre de mon opérateur en terme de matos, j’ai remplacé le routeur (une NeufBox v6) par Netgear R8000 flashé sous DD-WRT mod Kong. Avantages :

                              +
                              • Meilleur wifi 30Mo/s sur la bande AC 5Ghz
                              • Peu de changement de configuration si changement d’opérateur
                              • Beaucoup paramétrage avancés possible
                              • Si votre opérateur est en carafe, votre routeur marche toujours.
                              +

                              Par ici pour voir comment se passer de la neufbox v6 de SFR.

                              +

                              Le NAS

                              +

                              Là vous avez plein de solution pour stocker des données. Mais pour avoir un truc flexible surtout si vous avez de gros besoin, il faut faire du sur mesure. Vous pouvez faire avec du Synology ou concurrents mais c’est plutôt cher et en plus ils se font du blé sur des logiciels libres dont ils ne reversent jamais le code, bref des enculés hors la loi.

                              +

                              Donc il vous faut un PC x86 de préférence, moi je suis parti sur une configuration maison avec dans l’idée de faire un truc très compacte.

                              +
                              • Intel Pentium G4400
                              • 24 Go de RAM ( je vous explique après )
                              • 4 x Disque de 3 To
                              • 1 Disque de merde pour l’OS de base
                              • Boîtier compacte In Win IW-MS04 ( Vous pouvez jeter un œil sur le SilverStone CS01-HS )
                              +

                              Et tous ça tient dans mon meuble de salon.

                              +
                              NAS dans le meuble TV
                              +

                              Donc si on fait les compte ça fait :

                              +
                              • 200€ de routeur
                              • Grosso modo 900€ de NAS
                              +

                              Ouai ça fait un budget après faut mettre en parallèle avec le coût du service rendu, pour avoir l’équivalent chez Dropbox c’est l’offre pro à 18€ par mois sauf qu’il faut prendre minimum 3 licences. Cela donne en annuel avec les remises si vous payez comptant 540€. Chez Google on est à 100€ par mois pour 10To soit 1200€ l’année. Après il y a en plus moyen de faire du recyclage de vieux composants ou acheter des trucs d’occasion ce que j’ai fait en partie. Pour ce qui est des solutions clé en main comme les Synology, on est au double du prix pour la même configuration.

                              +

                              Les logiciels

                              +

                              Dans l’idée d’avoir un truc souple et plutôt performant la première étape est de savoir comment vous allez exploiter vos disques-durs :

                              +
                              • Es que l’on va faire du RAID 1/5/6/10 ?
                              • Si du RAID logiciel ou matériel ?
                              • Quel système d’exploitation ?
                              +

                              J’ai utilisé pendant longtemps des NAS maison sous Debian avec du raid 5 logiciel, les performances sont correctes (>100Mo/s en écriture) mais il y a pas mal d’inconvénients à cette solution. Comme devoir souvent recourir à la ligne de commande pour installer ou configurer des logiciels, pas de gestion simplifier se rapprochant d’une solution Synology. Au niveau du stockage vous ne pouvez pas augmenter facilement la taille ou le nombre de disque sans devoir recourir à des opérations complexe. Et une simple monté de version de l’OS se transforme rapidement en cauchemar.

                              +

                              Donc pour la base de mon NAS je me suis dit que j’allais devoir choisir une solution d’OS plus proche de l’objectif que juste une simple distribution Linux ou il faut tout configurer de 0. Inventaire du possible :

                              +

                              FreeNAS

                              +

                              Basé sur FreeBSD, solution pour NAS avec interface web avec gestion du stockage via ZFS.

                              +

                              OpenMediaVault

                              +

                              Basé sur Debian, solution pour NAS avec interface web avec gestion du RAID logiciel via mdadm.

                              +

                              Syncloud

                              +

                              Basé sur Raspian/Debian, distribution minimaliste pour Raspberry Pi et autres joyeusetés.

                              +

                              Yunohost

                              +

                              Petit nouveau dans le game, basé sur Debian, solution pour NAS avec interface web sans solution de gestion du stockage.

                              +

                              Proxmox

                              +

                              Basé sur Debian distribution commercial, environnement complet de stockage et de virtualisation avec interface web.

                              +

                              UnRaid
                              Distribution Linux commercial proposant un solution de RAID propriétaire. Interface Web et virtualisation.

                              +

                              En faisant cet article je suis tombé sur snapraid qui fournit un comparatif des différentes solutions de RAID logiciel au niveau du système de fichier.

                              +

                              J’ai opté pour FreeNAS comme OS de base. Pour les raisons suivantes :

                              +
                              • Support natif de ZFS qui permet de faire du RAIDZ2 avec tolérance de panne de 2 disques, et gère les checksum sur fichier ainsi qu’une correction d’erreur. Gestion des snapshot comme LVM et permet de faire du stockage block pour d’autre système de fichier.
                              • Gère le chiffrement sur disque en natif.
                              • Robustesse et maintenue pour du commercial.
                              • Possibilité de faire de la virtualisation ainsi qu’un système de JAIL.
                              • L’interface WEB qui marche et est complète.
                              • Mise à jour hyper simple via l’interface Web
                              • Backup de la configuration via un simple fichier
                              +

                              FreeNAS

                              +

                              Déjà la mauvaise nouvelle c’est que pour avoir de bonne performance de stockage avec ZFS c’est qu’il vous faut de la RAM beaucoup de RAM car elle utilisé pour faire du cache et gérer les opérations interne de ZFS. J’en ai un peu plus que nécessaire car je prévois de faire de la virtualisation et ajouter d’autres fonctions sur mon NAS. Pour l’installation je vous recommande d’utiliser un device de merde pour le système car j’ai utilisé un SSD mais cela ne sert à rien, votre SSD sera beaucoup plus utile pour faire du cache pour ZFS. Vous pouvez utiliser une clé USB ou une carte SD.

                              +

                              NDLR: je vous laisse lire la doc de FreeNAS pour savoir comment installer le merdier. #RTFM

                              +

                              Ci-dessous un petit benchmark des performances disques sur du RAIDZ2 avec 4 disques de 3To, environ 400Mo/s de moyenne en écriture très correcte sans cache.

                              +
                              % fio --name TEST --eta-newline=5s --filename=fio-tempfile.dat --rw=write --size=500m --io_size=10g --blocksize=64k --fsync=10000 --iodepth=32 --direct=1 --numjobs=1 --runtime=60 --group_reporting
                              + TEST: (g=0): rw=write, bs=(R) 64.0KiB-64.0KiB, (W) 64.0KiB-64.0KiB, (T) 64.0KiB-64.0KiB, ioengine=psync, iodepth=32
                              + fio-3.0
                              + Starting 1 process
                              + Jobs: 1 (f=1): [W(1)][31.8%][r=0KiB/s,w=626MiB/s][r=0,w=10.0k IOPS][eta 00m:15s]
                              + Jobs: 1 (f=1): [W(1)][58.3%][r=0KiB/s,w=0KiB/s][r=0,w=0 IOPS][eta 00m:10s]
                              + Jobs: 1 (f=1): [W(1)][83.3%][r=0KiB/s,w=625MiB/s][r=0,w=10.0k IOPS][eta 00m:04s]
                              + Jobs: 1 (f=1): [W(1)][100.0%][r=0KiB/s,w=0KiB/s][r=0,w=0 IOPS][eta 00m:00s]
                              + TEST: (groupid=0, jobs=1): err= 0: pid=20290: Sun Mar 17 17:01:13 2019
                              +   write: IOPS=6702, BW=419MiB/s (439MB/s)(10.0GiB/24445msec)
                              +     clat (usec): min=5, max=17384, avg=10.20, stdev=96.40
                              +      lat (usec): min=6, max=17440, avg=10.76, stdev=105.67
                              +     clat percentiles (usec):
                              +      |  1.00th=[    8],  5.00th=[    8], 10.00th=[    8], 20.00th=[    9],
                              +      | 30.00th=[    9], 40.00th=[    9], 50.00th=[    9], 60.00th=[   10],
                              +      | 70.00th=[   10], 80.00th=[   10], 90.00th=[   11], 95.00th=[   11],
                              +      | 99.00th=[   21], 99.50th=[   30], 99.90th=[   75], 99.95th=[  165],
                              +      | 99.99th=[ 2999]
                              +    bw (  MiB/s): min=  105, max= 1250, per=100.00%, avg=1104.55, stdev=362.70, samples=18
                              +    iops        : min= 1688, max=20000, avg=17672.50, stdev=5803.29, samples=18
                              +   lat (usec)   : 10=90.15%, 20=8.83%, 50=0.87%, 100=0.07%, 250=0.04%
                              +   lat (usec)   : 500=0.01%, 750=0.01%, 1000=0.01%
                              +   lat (msec)   : 2=0.01%, 4=0.01%, 10=0.01%, 20=0.01%
                              +   cpu          : usr=0.68%, sys=7.26%, ctx=3362, majf=0, minf=1
                              +   IO depths    : 1=100.0%, 2=0.0%, 4=0.0%, 8=0.0%, 16=0.0%, 32=0.0%, >=64=0.0%
                              +      submit    : 0=0.0%, 4=100.0%, 8=0.0%, 16=0.0%, 32=0.0%, 64=0.0%, >=64=0.0%
                              +      complete  : 0=0.0%, 4=100.0%, 8=0.0%, 16=0.0%, 32=0.0%, 64=0.0%, >=64=0.0%
                              +      issued rwt: total=0,163840,0, short=0,0,0, dropped=0,0,0
                              +      latency   : target=0, window=0, percentile=100.00%, depth=32
                              +Run status group 0 (all jobs):
                              + WRITE: bw=419MiB/s (439MB/s), 419MiB/s-419MiB/s (439MB/s-439MB/s), io=10.0GiB (10.7GB), run=24445-24445msec
                              +
                              Capture FreeNAS écran des disques
                              +

                              Donc à partir de cette étape vous avez du stockage utilisable en 3 cliques vous pouvez l’utiliser en réseau.

                              +
                              • Partage NFS
                              • Partage SMB pour Windaube
                              • Partage MacOS avec AFP
                              • Et bien-sur aussi via SFTP
                              • Et aussi iSCSI
                              +

                              Vous allez me dire ouai c’est cool mais comment je fais pour utiliser mes données en dehors de chez moi comme dans le nuage. Vous pouvez mettre en place un VPN mais ça solutionne pas vraiment le problème de la mobilité

                              +

                              Les JAILs et la virtu

                              +

                              FreeNAS fournit des plugins basés sur les JAIL ancestre des containers Docker. Le truc assez cool vous pouvez installer Nextcloud, Owncloud et une dizaines d’autres donc si vos besoins sont limités et que vous voulez pas vous faire chier les plugins FreeNAS c’est la vie.

                              +
                              FreeNAS liste des plugins
                              +

                              Moi j’avais besoin de plus de souplesse et surtout de plus d’outils que ceux disponibles, et certains outils que je voulais avoir que j’utilisais déjà auparavant. C’est pour ça que mon usage des plugins est limité. J’utilise uniquement les plugins Transmission, SickRage et CouchPotato. Si vous voulez vous amusez le tuto ici est très bien fait pour configurer les différents plugins. J’utilise aussi une jail pour faire tourner Unbound comme résolveur DNS pour mon réseau local très pratique.

                              +

                              Yunohost

                              +

                              Comme FreeNAS ne fait pas tout, il me fallait une solution pour exploiter pleinement mon NAS et lui ajouter des features digne d’un cloud maison. Et Yunohost est vraiment super cool pour ça !

                              +
                              Page d’accueil utilisateur de Yunohost
                              +

                              Yunohost c’est faire plein de trucs !

                              +
                              • Les courriels en natif oui oui ! Multi-domaines multi-utilisateurs avec une interface web du bonheur !
                              • Baikal pour gérer la synchronisation Agenda / Contact sur tout mes devices en CardDav/CalDav
                              • Roundcube pour l’accès webmail
                              • Ampache pour gérer ma bibliothèque musical
                              • Wallabag pour gérer mes liens favoris à lire plus tard
                              • Tiny Tiny RSS pour gérer mes flux RSS
                              • Gitea pour gérer mes dépôts git
                              • Lufi pour uploader simplement des fichiers de manière temporaire et sécurisé
                              • Seafile pour faire comme Dropbox, ce soft est TRÈS PERFORMANT surtout quand vous devez synchroniser de gros volume de fichier aussi bien en taille que en nombre !
                              • Piwigo pour partager des albums photos pour la famille
                              • Riot pour tchater !
                              • Mastodon ( Je déconseille fortement car bouffe à mort de RAM ) pour remplacer Twitter
                              +

                              Pour installer Yunohost il vous faut une VM dans Freenas et vous installez Debian dedans, une fois Debian installé vous pouvez suivre la procédure pour installer Yunohost.

                              +

                              Je vous recommande de faire comme ça pour le partitionnement de votre VM Debian. Vous créez 2 disques virtuels un pour / et swap. Et le deuxième pour toutes les données donc /home /var.

                              +
                              FreeNAS volume pour yunohost
                              +

                              Pour le deuxième disque vous allez faire un truc un peu particulier, vous allez l’utiliser comme LVM mais sans table de partition si qui permettra de faire grossir le volume à chaud sans éditer la table de partition comme il y en aura pas ! Je suis pas sur que se soit supporté par Bhyve de FreeBSD donc faudra à minima que votre VM reboot une fois après le changement de taille.

                              +
                              Partitionnement VM Debian
                              +

                              Donc on a vda partitionné normalement avec une partition de boot EFI et le système dans un LVM mais pas indispensable. Le deuxième disque vdb n’a pas de table des partitions et a directement un LVM avec /var et /home Yunohost utilise principalement ces points de montages pour stocker les donnée des applications installées. Cette solution n’est pas parfaite car vous n’avez pas de moyen simple pour accéder au fichier de la machine Yunohost depuis FreeNas. Par contre l’inverse est possible rendre disponible vos fichiers et partages FreeNas dans Yunohost en utilisant un point de montage NFS. Ci-dessous mon fichier /etc/fstab.

                              +
                              # /etc/fstab: static file system information.
                              +#
                              +# Use 'blkid' to print the universally unique identifier for a
                              +# device; this may be used with UUID= as a more robust way to name devices
                              +# that works even if disks are added and removed. See fstab(5).
                              +#
                              +# <file system> <mount point>   <type>  <options>       <dump>  <pass>
                              +/dev/mapper/osvg-root /               ext4    errors=remount-ro 0       1
                              +# /boot/efi was on /dev/vda1 during installation
                              +UUID=4CFA-31EB  /boot/efi       vfat    umask=0077      0       1
                              +/dev/mapper/datasvg-home /home           ext4    defaults        0       2
                              +/dev/mapper/datasvg-var /var            xfs     defaults        0       0
                              +/dev/mapper/osvg-swap none            swap    sw              0       0
                              +192.168.1.35:/mnt/Mainraidz2/medias	/home/yunohost.multimedia/share	nfs	auto,x-systemd.automount,x-systemd.device-timeout=10,timeo=14,x-systemd.idle-timeout=1min	0	0
                              +

                              Pour revenir aux avantages de cette solution en machine virtuelle, cela permet une grande facilite de maintenance grâce a la possibilité de snapshot de la VM quand on le souhaite. Promis je vous fais un script de déploiement de Yunohost pour FreeNas, je ne sais si c’est possible que j’en fasse un plugin car Yunohost s’appuie beaucoup sur Debian, et on ne pas faire de plugin de VM dans FreeNas pour l’instant. J’ai aussi commencé à investiguer une autre solution plus élégante qui serait d’utiliser le sous-système d’émulation linux dans une Jail BSD pour monter Debian+Yunohost sauf que cette méthode ne permet que d’installer Wheezy comme version de Debian donc pas possible. La solution la plus probable serait d’utiliser Docker pour FreeBSD c’est encore en expérimental.

                              +

                              Schéma du merdier

                              +
                              Schéma de mon réseau à la maison
                              +

                              Améliorations et travaux en cours

                              +

                              Tout se merdier je le fais sur mon temps libre et tout est loin d’être parfait donc voici la liste des travaux à faire ou en cours :

                              +
                              • Secondary SMTP entry point has fail safe
                              • External offsite backup via ZFS Sync or S3 protocol
                              • Monitoring stuff (Premetheus, Grafana, snmp)
                              • Upgrade Router firmware
                              • Torrent stuff available on network trought SMB and other protocol
                              • Add a reverse proxy over transmission web and other freenas apps
                              • Use SSD for ZFS caching
                              • Add 4G fallback connection on the router
                              • Mastodon to Pleroma (save lot of ressource)
                              • Configure HDD hidle for saving some juice
                              • DNS-over-TLS
                              • VPN ? already have ssh … usefull only for UDP
                              • Have a haproxy in front of yunohost and the other stuff for manage ressource easily for sharing port like 443
                              • IPv6 !
                              +

                              +
                              +
                              + +
                              +
                              +
                              +
                              +
                              +

                              + 4 commentaires

                              +
                              + +
                              +
                              +
                              +
                              +

                              + clement + · 11 juillet 2019 à 22 h 15 min +

                              +

                              Merci pour le retour d’expérience (et l’humour sur le blog!) ^^. Chez moi, c’est Synology avec l’OS d’origine et Yunohost sur RASPI! #fun

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + emilien mougeat + · 27 janvier 2020 à 22 h 42 min +

                              +

                              Salut !
                              +Merci pour ce retour d’experience.
                              +J’ai également passé le pas ! freenas + yunohost en iohyve ( debian9+yunohost). plutot cool.
                              +Par contre j’ai une petite galere que je n’arrive pas à resoudre, et je voulais savoir si tu avais rencontré la meme problematique.
                              +En effet quand j’essaye de monter le NFS entre le yuno et le freenas, impossible.
                              +Ma conf « semble » bonne maiiiiiiis je n’y arrive pas.
                              +Qu niveau de la conf nfs du freenas, quels paramètres as tu ?
                              +++

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + emilien mougeat + · 27 janvier 2020 à 23 h 44 min +

                              +

                              Bon Je viens de comprendre le probleme NFS, les droits configurés sur le volume etaient des droits windaube ….. SERIEUX Oo

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + T'es pas sérieux + · 19 septembre 2020 à 15 h 46 min +

                              +

                              Comment peut-on confondre « sait » et « c’est » ? Ce et se? Mon dieu…

                              + +
                              +
                              + +
                              +
                              +
                              +

                              Répondre à clement Annuler la réponse

                              Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                              +
                              +
                              +

                              + +

                              +
                              +
                              +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              +
                              +
                              + + +
                              + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/e4eafa2c9922f8074c336a4d2624217dcbb6ca7f.00000114.html b/www/.content.EZtzwPjb/html/e4eafa2c9922f8074c336a4d2624217dcbb6ca7f.00000114.html new file mode 100644 index 0000000..9a56608 --- /dev/null +++ b/www/.content.EZtzwPjb/html/e4eafa2c9922f8074c336a4d2624217dcbb6ca7f.00000114.html @@ -0,0 +1,1370 @@ + + + + + + + + Réparations Samsung SyncMaster 2232BW – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              +
                              +
                              +

                              Allô docteur on a un problème,

                              +

                              En ce dimanche calme avant la fin de mes partiels, mon écran Samsung SyncMaster 2232BW commençait à faire des siennes. Celui-ci depuis un mois ou deux clignotait de façon systématique au démarrage, au début pendant seulement quelques secondes, puis au fur et à mesure, de plus en plus jusqu’à devoir attendre 10 minutes pour que je puisse l’utiliser. Après 3 ans et 4 mois de bons et loyaux services, il voulait me quitter. J’ai tenté le support Samsung par email avec peu d’espoir car l’écran a dépassé sa garantie de 4 mois (oui oui les bâtards -> obsolescence programmée). Et donc j’ai eu le droit à un joli mail automatique me disant de contacter un numéro non surtaxé (mais avec combien de temps d’attente ?), ce que je n’ai pas fait car je n’avais pas envie de passer 30min au téléphone pour au final avoir un « On est désolé mais on ne peut rien faire pour vous car la garantie est dépassée, mais on peut envoyer votre écran en SAV pour faire un devis pour seulement 50 boules ». Concernant le support email de Samsung France, je leur donne une note de 0/20 puisque ce n’est pas un support mais une redirection vers le téléphone.

                              +

                              +

                              Symptômes

                              +

                              Clignotements de l’écran et de la LED power systématiques à chaque démarrage de l’écran. Je me suis tout de suite douté d’un problème d’alimentation et après quelques recherches sur google, confirmation du problème sur beaucoup d’écrans et téléviseurs. Dans 99% des cas ce clignotement est dû à des condensateurs défectueux qu’il faut simplement changer :-D

                              +

                              Démontage

                              +

                              Donc après avoir cerné le problème, j’ai ouvert l’écran pour chercher les condos défectueux. J’ai trouvé une petite vidéo pour mon écran :

                              +

                              +

                              Voici quelques photos en plus pour vous aider :

                              +

                              Les outils que j’ai utilisé pour le démontage

                              +

                              Position des clips

                              +

                              Carte d’alimentation dans son emplacement

                              +

                              Et voici les condensateurs qui posent problèmes. Comme vous pouvez le voir sur la photo, ils sont très facilement identifiable car ils sont bombés sur le dessus.

                              +

                              Condensateurs défectueux

                              +

                              Vous devez donc acheter des condensateurs de remplacement, par exemple sur Conrad.

                              +

                              Mes condensateurs suivant étaient endommagés:

                              +
                                +
                              • 1 de 330uF 25V remplacé par un 470uF 25V
                              • +
                              • 3 de 820uF 25V remplacé par des 1000uF 50V
                              • +
                              +

                              Pour la réparation, il vous faut un fer à souder avec une panne pas trop grosse mais d’une grosse puissance car les soudures sont très solides (j’ai galéré avec un fer pro qui monte jusqu’à 400°).

                              +

                              Tout remarche nickel après remontage, plus de clignotement pour seulement quelques euros.

                              +

                              edit du 19 aout 2014 : j’ai trouvé le service manuel de l’écran si besoin samsung_2232bw_chassis_lpe22bs_sm

                              + + +
                              +
                              + +
                              +
                              +
                              +
                              +
                              +

                              + 41 commentaires

                              +
                              + +
                              +
                              +
                              +
                              +

                              + c'est_moi + · 30 janvier 2012 à 18 h 57 min +

                              +

                              Mille mercis et mille félicitations pour cette fiche technique si pédagogue.

                              +

                              J’espère que le partiels se passent plus que parfait !!

                              +

                              J’ai gardé l’url de la page pour réparer mon écran dans un petit mois : j’espère que la page soit toujours là ;-)

                              +

                              Merci encore.

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + Maxime + · 5 mai 2012 à 12 h 31 min +

                              +

                              Bonjour HugoPoi!

                              +

                              Merci pour toutes vos infos et votre topic, je voulais avoir quelques précisions sur les condos à changer pour samsung 2232bw, je veux passer commande mais j’ai un problème avec les dimensions des condos, si vous pouvez m’informer de ce que je pourrais acheter car il y a trop de références. En vous remerciant A+ Maxime

                              + +
                              +
                              +
                                +
                                + +
                                +
                                +
                                +
                                +

                                + HugoPoi + · 14 juin 2012 à 22 h 56 min +

                                +

                                N’importe quel condensateur polarisé avec des caractéristiques proches devrait marché.

                                + +
                                +
                                + +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + gaubjezj + · 14 juin 2012 à 22 h 32 min +

                              +

                              Merci pour le tuto qui m’a bien aidé.
                              +J’ai utilisé un fer de 40 W avec une panne fine et
                              +une pompe à dessouder et j’ai retiré les condensateurs sans problème.
                              +Merci encore (3€40 pour le dépannage).

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + DragonTribal + · 2 juillet 2012 à 12 h 02 min +

                              +

                              super merci pour manifique tuto.
                              +Est-il possible de changer les 5 condensateurs 820uF 25V par des 1000uF 50V? car moi mes 5 condensateurs sont presque HS ;-)

                              +

                              Cordialement

                              + +
                              +
                              +
                                +
                                + +
                                +
                                +
                                +
                                +

                                + HugoPoi + · 2 juillet 2012 à 12 h 25 min +

                                +

                                Oui je penses que ça marchera étant donné que c’est des valeurs plus grandes.

                                + +
                                +
                                + +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + FRED + · 11 juillet 2012 à 19 h 11 min +

                              +

                              Bravo, MERCI.
                              +Je n’ai encore rien fait…mais j’ai le même problème, et tu me donnes la solution.
                              +Super.

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + daninpet + · 31 août 2012 à 10 h 10 min +

                              +

                              Merci mille fois!

                              +

                              J’avais ce problème, et j’ai emmener la photo des trucs a remplacer chez le réparateur du coin et voila!! Ça m’a coûté 7 Euros (mais j’habite en Thaïlande)

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + moi + · 15 novembre 2012 à 15 h 25 min +

                              +

                              super mon 2232bw vient de lâcher, les 3 + 1 condos sont gonflés j ai trouvé un 330 en 35v qui traîné sur un écran mort et j’ai commander 5 1000uf 35v sur ebay pour moins de 3 dollars, ca devrait le faire j’espere j’attend d’être livré merci! par contre j’ai qu’un gros pistolet a soudure et un gros fil d’étain, c’est pas évident mais bon ca le fait quand même =)

                              + +
                              +
                              +
                                +
                                + +
                                +
                                +
                                +
                                +

                                + moi + · 7 décembre 2012 à 9 h 33 min +

                                +

                                parfait je vient de recevoir les condos; j ai meuler la panne du fer a souder pour la tailler en mine de crayon et j ai reussi a les souder facilement ils étaient un peu plus gros mais ca passe tout juste, mais attention ne pas prendre des plus gros! l écran fonctionne nickel maintenant.

                                + +
                                +
                                + +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + Croco + · 19 janvier 2013 à 18 h 39 min +

                              +

                              Je souhaiterai savoir si tu as utilisé un fer à souder bien précis étant donné que la carte est une multi couche.
                              +Merci

                              + +
                              +
                              + + +
                              + +
                              +
                              +
                              +
                              +

                              + momo + · 10 juin 2013 à 13 h 15 min +

                              +

                              slut je voudrai savoir ou trouvé les condansateur a changer sur mon ecran qui clignote

                              + +
                              +
                              + + +
                              + +
                              +
                              +
                              +
                              +

                              + lokmane + · 5 juillet 2013 à 16 h 08 min +

                              +

                              merci j’avais un ecran rouge ! et c’etais la tresse qui relie mon ecran votre page m’a aider a l’ouvrir et a le reparer merci bien

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + ML + · 21 août 2013 à 19 h 11 min +

                              +

                              Merci ! Ecran réparé. Halte à l’obsolescence programmée.

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + raymond + · 31 octobre 2013 à 13 h 20 min +

                              +

                              ai vu votre vidéo et les explications pour la reparation de mon écran , apparemment le méme probléme l écran passe au noir apres quelque seconde , j ai vu un le condensateur en bas a gauche gonflé , je l ai fait changé (10€) les autre condensateur étant toujour bon d après la personne qui me l a changé , mais j ai toujour le méme probléme cela peut il venir de la carte video a gauche ?

                              + +
                              +
                              +
                                +
                                + +
                                +
                                +
                                +
                                +

                                + HugoPoi + · 20 décembre 2013 à 12 h 27 min +

                                +

                                Si la led bleu du bouton power s’éteint aussi c’est un problème d’alimentation sinon c’est plus compliqué et ça peut provenir de condensateurs sur la partie vidéo. Changé tous les plus gros condensateurs sur la partie alimentation pourrait être un bon début même si ils ne paraissent pas endommagé.

                                + +
                                +
                                + +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + damien + · 4 novembre 2013 à 0 h 29 min +

                              +

                              bonjour,

                              +

                              j’ai des crasses coincées entres l’écran et le truc juste derrière, est ce qu’on sais les enlever en démontant la dalle ?

                              + +
                              +
                              +
                                +
                                + +
                                +
                                +
                                +
                                +

                                + HugoPoi + · 20 décembre 2013 à 12 h 28 min +

                                +

                                Je ne sais si cette partie de la dalle est démontable, je penses que c’est collé mais vous pouvez essayer.

                                + +
                                +
                                + +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + mac + · 1 décembre 2013 à 17 h 30 min +

                              +

                              Merci HugoPoi, avec ces excellents conseils et tuto vidéo, mon écran est reparti pour une nouvelle vie.
                              +Pour les composants, si vous êtes sur Paris ou proche. La boutique RAM électroniques est une bonne adresse, 138 bd Diderot 75012 Paris (Place de la Nation).

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + Bouddhid + · 16 janvier 2014 à 19 h 21 min +

                              +

                              Merci beaucoup pour ces conseils ! J’étais à 2 doigts de jeter mon écran, le voilà comme neuf pour moins de 5€ ! Vive la bricole !

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + Vincent + · 17 mai 2014 à 16 h 45 min +

                              +

                              Alors là merci.

                              +

                              Pour ce post, les photos, la vidéo, tout y est.

                              +

                              J’ai démonté l’écran assez vite, enlevé la carte, regarder quel condensateurs étaient gonflés,(il y en avaient 4), un magasin d’électronique sur lyon et une heure de démontage, soudure, remontage plus tard, voilà, c’est tout beau.
                              +Ca ne clignote plus, ça s’allume comme avant, comme neuf.

                              +

                              Et dire que j’allais jeter cet écran et claquer 350 euros pour un neuf…

                              +

                              Coût de l’opération pour 4 condensateurs, du fil d’étain 7 euros.

                              +

                              Je précise que je n’avais jamais fais de soudure sur composant électronique auparavant.
                              +Comme quoi cette opération de réparation est à la portée de tous.

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + Julot + · 6 juillet 2014 à 13 h 49 min +

                              +

                              Site vraiment détaillé et très claire. J’ai pu dépanner mon écran avec succès. Merci beaucoup pour ces précieuses explications.

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + PaniK31 + · 29 juillet 2014 à 9 h 21 min +

                              +

                              Pas besoin d’une grosse puissance pour le fer, il faut au préalable gratter le vernis sur l’étain afin de pouvoir le faire fondre plus facilement

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + R211_IP-45130B + · 20 août 2014 à 14 h 04 min +

                              +

                              Bonjour à tous,

                              +

                              Une âme charitable peut-elle me communiquer ce qui est gravé sur la résistance CMS R211 de la carte d’alimentation/inverter IP-45130B qui équipe le SAMSUNG 2232BW ? Cette résistance a pris un coup de tournevis et je n’arrive pas à déterminer sa valeur de résistance car son marquage est effacé et comme le composant est abimé la mesure à l’ohmmètre indique l’infinie.

                              +

                              Merci par avance.

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + roger + · 24 octobre 2014 à 17 h 21 min +

                              +

                              Ca refonctionne après échange de 4 condensateurs :
                              +-un 330uf25v remplacé à l’identique.
                              +-trois 820uf25v remplacés par 1000uf25v.
                              +Le tout pour quelques €. Le plus dur était le dessoudage, la tresse n’était pas très efficace contrairement à la pompe.
                              +Grand merci à HugoPoi.

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + Max + · 26 février 2015 à 16 h 28 min +

                              +

                              ENORME MERCI!! J’ai réparé mon écran en 20mn pour 3,50€, il était à 2 doigts de partir à la déchetterie. Ca faisait des mois qu’il clignotait, et l’allumage mettait parfois plus d’une demi heure. J’ai changé 5 condos 820uf25v et 1 330uf25v, par exactement les mêmes en neuf, et là il démarre au quart de tour! Ca fait plaisir! :)

                              + +
                              +
                              +
                                +
                                + +
                                +
                                +
                                +
                                +

                                + rocco michelle + · 7 octobre 2015 à 10 h 16 min +

                                +

                                Bonjour je ne sais si vous verrez mon message mais je tente…je cherche quelqu’un qui accepterait de changer mes condensateurs sur mon samsung, les réparateurs me demandent 70 à 80 euros et encore ils n’ont pss envie de le faire et me disent d’acheter un nouvel écran. j’aurais bien tenter mais je n’ai pas de matériel et j’ai lu que les condo pouvaient être très dangereux s’ils avaient de la charge alors j’ai la trouille de bidouiller pq je n’y connais rien. si vous êtes de lyon acccepteriez vous de changer mes condensateurs pour 45 euros? merci de votre réponse.

                                + +
                                +
                                + +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + lecakeseb + · 27 juillet 2015 à 15 h 26 min +

                              +

                              Bonjour,

                              +

                              J’ai utilisé la vidéo pour démonter mon écran afin de le nettoyer de 4 bêtes d’orage infiltrés entre le premier écran (noir) et la dalle (blanche) de mon samsung SyncMaster 2232W

                              +

                              Petits conseils afin de modérer ce que j’ai pu voir dans cette vidéo :

                              +

                              0 : aspirez, nettoyez l’extérieur de l’écran avant de l’ouvrir et nettoyez la table qui vous servira d’atelier, pour éviter les poussières qui s’infiltreront forcément plus tard si vous ne le faites pas…
                              +1 : pour ouvrir, utilisez plutôt un couteau à enduire pour la première partie (le cadre). Vous n’abîmerez ainsi pas du tout l’écran. Soyez patients, ne forcez pas ! ça viendra doucement, mais ça viendra. Il m’a fallu à peine 10 minutes, sans détériorer l’écran, sans le griffer… Il est encore nickel !
                              +2 : attention à ne pas déconnecter les fils reliant le cadre à la carte. Inutile pour simplement nettoyer l’écran.
                              +3 : pour séparer les deux éléments de la dalle entre lesquels les bêtes se sont infiltrées, les doigts suffisent, pas besoin d’outils qui viendraient les endommager. La dalle blanche reste à l’horizontale, l’écran noir sera tenu à la verticale.
                              +4 : utiliser un chiffon doux ne peluchant pas pour enlever les bêtes (faites-vous aider de quelqu’un qui les enlèvera pendant que vous tenez l’écran extérieur en position verticale).
                              +5 : repositionnez la colle d’étanchéité qui aurait pu se déplacer, avant de repositionner les deux écrans.
                              +6 : commencer par refermer par le bas de l’écran (sinon les éléments de réglage situés au bas de l’écran – luminosité, contraste,…- ne se replaceront pas correctement).
                              +7 : Une fois l’écran refermé, j’ai appliqué un peu de « barrage aux insectes », avec un chiffon à l’arrière de mon écran en insistant surtout sur les bouches d’aération par lesquelles les maudites bestioles ont du s’infiltrer. En espérant ne pas avoir à ouvrir !

                              +

                              Bon courage à vous !

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + Michel Jousserandot + · 20 janvier 2017 à 20 h 41 min +

                              +

                              Merci pour les conseils au démontage.
                              +J’avais un problème un peu différent :l’écran ne s’allumait plus du tout. Avec un copain beaucoup plus malin que moi, on a détecté 2 fusibles dont l’un était fichu. On l’a remplacé par un petit fil de cuivre. Et tout a remarché comme avant.
                              +Il faut surtout faire attention quand on teste la partie haute tension
                              +Michel.

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + Crec + · 14 juillet 2017 à 10 h 20 min +

                              +

                              Bonjour. Très bons conseils avertis. Merci beaucoup.
                              +Peut-on avoir les mêmes conseils pour un écran BX2250.
                              +Merci par avance.
                              +Crec

                              + +
                              +
                              +
                                +
                                + +
                                +
                                +
                                +
                                +

                                + HugoPoi + · 6 août 2017 à 14 h 03 min +

                                +

                                J’ai pas de BX2250 donc dans le détails non mais si c’est les même symptômes ça doit la même procédure.

                                + +
                                +
                                + +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + Ferronnier + · 10 août 2017 à 17 h 42 min +

                              +

                              Un grand merci !
                              +J’ai changé tous les condensateurs de la partie alimentation de la carte, en déportant certains qui n’avaient pas le même format qu’à l’origine, et ça tourne nickel !

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + Nours + · 1 décembre 2017 à 15 h 17 min +

                              +

                              Ca fait des années que j’ai cet article enregistré dans un coin, en nourrissant l’espoir d’avoir un jour le courage de réparer ce foutu écran… Après plus de cinq ans c’est chose faite \o/
                              +Un giga, hypra, immense merci pour ce tutoriel tellement bien expliqué et facile d’accès (je n’avais pas touché à un fer à souder depuis… Oh boy 15 ans déjà).
                              +Après une longue pause, l’écran reprend du service… Jusqu’à la prochaine panne /o/

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + Alex + · 11 août 2018 à 13 h 28 min +

                              +

                              Quelqu’un sait qui pourrait me le faire svp j ai le même problème mais aucun matériel

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + David + · 5 février 2019 à 21 h 06 min +

                              +

                              Merci Hugo pour ce tuto qui m’a déjà servi en 2013 et qui va me resservir aujourd’hui car mon 2ème 2232bw commence à avoir les mêmes symptômes.

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + yvan + · 23 novembre 2019 à 17 h 14 min +

                              +

                              Bonjour
                              +j’ai tenté de changer le condensateur qui avait l’air naze mais ça n’a pas marché … toujours le bouton bleu allumé, l’écran est reconnu par Windows 10 même si l’écran est éteint
                              +grâce au service manuel de l’écran fourni plus haut, j’ai vérifié les tensions jusque sur la carte de la dalle et elles sont correctes, ainsi que sur la carte elle-même, tout est ok, donc je pense que ce n’est plus un problème de condensateur
                              +pour les fusibles, ils ressemblent plutôt à des composants qu’à de simple fusibles, mais comme j’ai les bonnes tension, je ne pense pas que ça vienne de là
                              +j’ai bien peur que ce soit la dalle qui soit naze ? quelqu’un a t il des idées supplémentaires avant que je le jette avec grand regret (c’est un 2032bw, mais c’est la même chose, même si ma carte électronique est un peu différente car plus récente
                              +merci d’avance pour vos conseils

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + yvan + · 24 novembre 2019 à 17 h 26 min +

                              +

                              finalement j’ai trouvé, c’est un petit fusible vert qui ressemble à une résistance mais tout vert avec écrit 4A LF qui assure l’alimentation de la dalle.
                              +En le shuntant, mon écran a retrouvé l’image.
                              +après enquête il s’agit d’un fusible pico de 4ampères de chez little fuse, pas du tout évident à trouver
                              +Résolu !

                              + +
                              +
                              + +
                              +
                              +

                              + Reflow Dell 1546 | HugoPoi + · 22 août 2016 à 16 h 09 min +

                              +

                              […] « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable de marque Dell un 1546 pour être précis. Encore […]

                              + +
                              +
                              + +
                              +
                              +

                              + Reflow Dell Inspiron 1546 – HugoPoi + · 23 juin 2017 à 23 h 18 min +

                              +

                              […] d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un […]

                              + +
                              +
                              + +
                              +
                              +
                              +

                              Répondre à lokmane Annuler la réponse

                              Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                              +
                              +
                              +

                              + +

                              +
                              +
                              +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              +
                              +
                              + + +
                              + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/e546dafe5e9059c00a43188ffca3ccecc4f35d5f.00001235.css b/www/.content.EZtzwPjb/html/e546dafe5e9059c00a43188ffca3ccecc4f35d5f.00001235.css new file mode 100644 index 0000000..4bdba92 --- /dev/null +++ b/www/.content.EZtzwPjb/html/e546dafe5e9059c00a43188ffca3ccecc4f35d5f.00001235.css @@ -0,0 +1 @@ +.mejs-container{clear:both;max-width:100%}.mejs-container *{font-family:Helvetica,Arial}.mejs-container,.mejs-container .mejs-controls,.mejs-embed,.mejs-embed body{background:#222}.mejs-time{font-weight:400;word-wrap:normal}.mejs-controls a.mejs-horizontal-volume-slider{display:table}.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,.mejs-controls .mejs-time-rail .mejs-time-loaded{background:#fff}.mejs-controls .mejs-time-rail .mejs-time-current{background:#0073aa}.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,.mejs-controls .mejs-time-rail .mejs-time-total{background:rgba(255,255,255,.33)}.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,.mejs-controls .mejs-time-rail span{border-radius:0}.mejs-overlay-loading{background:0 0}.mejs-controls button:hover{border:none;-webkit-box-shadow:none;box-shadow:none}.me-cannotplay{width:auto!important}.media-embed-details .wp-audio-shortcode{display:inline-block;max-width:400px}.audio-details .embed-media-settings{overflow:visible}.media-embed-details .embed-media-settings .setting span:not(.button-group){max-width:400px;width:auto}.media-embed-details .embed-media-settings .checkbox-setting span{display:inline-block}.media-embed-details .embed-media-settings{padding-top:0;top:28px}.media-embed-details .instructions{padding:16px 0;max-width:600px}.media-embed-details .setting .remove-setting,.media-embed-details .setting p{color:#a00;font-size:10px;text-transform:uppercase}.media-embed-details .setting .remove-setting{padding:5px 0}.media-embed-details .setting a:hover{color:#dc3232}.media-embed-details .embed-media-settings .checkbox-setting{float:none;margin:0 0 10px}.wp-video{max-width:100%;height:auto}.wp_attachment_holder .wp-audio-shortcode,.wp_attachment_holder .wp-video{margin-top:18px}.wp-video-shortcode video,video.wp-video-shortcode{max-width:100%;display:inline-block}.video-details .wp-video-holder{width:100%;max-width:640px}.wp-playlist{border:1px solid #ccc;padding:10px;margin:12px 0 18px;font-size:14px;line-height:1.5}.wp-admin .wp-playlist{margin:0 0 18px}.wp-playlist video{display:inline-block;max-width:100%}.wp-playlist audio{display:none;max-width:100%;width:400px}.wp-playlist .mejs-container{margin:0;max-width:100%}.wp-playlist .mejs-controls .mejs-button button{outline:0}.wp-playlist-light{background:#fff;color:#000}.wp-playlist-dark{color:#fff;background:#000}.wp-playlist-caption{display:block;max-width:88%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:14px;line-height:1.5}.wp-playlist-item .wp-playlist-caption{text-decoration:none;color:#000;max-width:-webkit-calc(100% - 40px);max-width:calc(100% - 40px)}.wp-playlist-item-meta{display:block;font-size:14px;line-height:1.5}.wp-playlist-item-title{font-size:14px;line-height:1.5}.wp-playlist-item-album{font-style:italic;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.wp-playlist-item-artist{font-size:12px;text-transform:uppercase}.wp-playlist-item-length{position:absolute;right:3px;top:0;font-size:14px;line-height:1.5}.rtl .wp-playlist-item-length{left:3px;right:auto}.wp-playlist-tracks{margin-top:10px}.wp-playlist-item{position:relative;cursor:pointer;padding:0 3px;border-bottom:1px solid #ccc}.wp-playlist-item:last-child{border-bottom:0}.wp-playlist-light .wp-playlist-caption{color:#333}.wp-playlist-dark .wp-playlist-caption{color:#ddd}.wp-playlist-playing{font-weight:700;background:#f7f7f7}.wp-playlist-light .wp-playlist-playing{background:#fff;color:#000}.wp-playlist-dark .wp-playlist-playing{background:#000;color:#fff}.wp-playlist-current-item{overflow:hidden;margin-bottom:10px;height:60px}.wp-playlist .wp-playlist-current-item img{float:left;max-width:60px;height:auto;margin-right:10px;padding:0;border:0}.rtl .wp-playlist .wp-playlist-current-item img{float:right;margin-left:10px;margin-right:0}.wp-playlist-current-item .wp-playlist-item-artist,.wp-playlist-current-item .wp-playlist-item-title{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.wp-audio-playlist .me-cannotplay span{padding:5px 15px} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/e588c347ae4096407fb488685b88be98499b7050.00000459.html b/www/.content.EZtzwPjb/html/e588c347ae4096407fb488685b88be98499b7050.00000459.html new file mode 100644 index 0000000..d153e2b --- /dev/null +++ b/www/.content.EZtzwPjb/html/e588c347ae4096407fb488685b88be98499b7050.00000459.html @@ -0,0 +1,364 @@ + + + + + + + nginx – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              + +
                              +
                              + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/e58ff46f0fc2e0340c82438af3b4089cb15535c3.00000444.html b/www/.content.EZtzwPjb/html/e58ff46f0fc2e0340c82438af3b4089cb15535c3.00000444.html new file mode 100644 index 0000000..477365f --- /dev/null +++ b/www/.content.EZtzwPjb/html/e58ff46f0fc2e0340c82438af3b4089cb15535c3.00000444.html @@ -0,0 +1,372 @@ + + + + + + + mavericks – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              +
                              +

                              Installer Mac OS X Mavericks avec VirtualBox

                              Capture Installation Mac OS X MavericksComme Apple c’est des blaireaux et que j’avais besoin d’un environnement de développement pour iDaube. J’ai du me résoudre à installer un Mac OS X dans une machine virtuel.

                              +

                              Ce dont vous avez besoin :

                              + +

                              Moi je travail sous Linux Mint mais vous devriez réussir à faire les manipulations sous Windaube. (suite…)

                              +
                              Par HugoPoi, il y a
                              +
                              + +
                              +
                              +
                              +
                              + +
                              +
                              + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/e5cf28957335e3801c675659705eb1e05e4c0f3f.00000666.css b/www/.content.EZtzwPjb/html/e5cf28957335e3801c675659705eb1e05e4c0f3f.00000666.css new file mode 100644 index 0000000..8043bbf --- /dev/null +++ b/www/.content.EZtzwPjb/html/e5cf28957335e3801c675659705eb1e05e4c0f3f.00000666.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;background:#fff;border:1px +solid #f00;font-size:10pt;width:280px;padding:2px}span.wpcf7-not-valid-tip-no-ajax{color:#f00;font-size:10pt;display:block}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/e5ff15c82d6ec7f98ad9e6dd8069a6bc1c58b033.00001242.js b/www/.content.EZtzwPjb/html/e5ff15c82d6ec7f98ad9e6dd8069a6bc1c58b033.00001242.js new file mode 100644 index 0000000..69c1f01 --- /dev/null +++ b/www/.content.EZtzwPjb/html/e5ff15c82d6ec7f98ad9e6dd8069a6bc1c58b033.00001242.js @@ -0,0 +1 @@ +!function(a,b){"use strict";function c(){if(!e){e=!0;var a,c,d,f,g=-1!==navigator.appVersion.indexOf("MSIE 10"),h=!!navigator.userAgent.match(/Trident.*rv:11\./),i=b.querySelectorAll("iframe.wp-embedded-content");for(c=0;c1e3)g=1e3;else if(~~g<200)g=200;f.height=g}if("link"===d.message)if(h=b.createElement("a"),i=b.createElement("a"),h.href=f.getAttribute("src"),i.href=d.value,i.host===h.host)if(b.activeElement===f)a.top.location.href=d.value}else;}},d)a.addEventListener("message",a.wp.receiveEmbedMessage,!1),b.addEventListener("DOMContentLoaded",c,!1),a.addEventListener("load",c,!1)}(window,document); \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/e68cbbbe3fa2d652f7ed83f22afb063da8a222e9.00000247.html b/www/.content.EZtzwPjb/html/e68cbbbe3fa2d652f7ed83f22afb063da8a222e9.00000247.html new file mode 100644 index 0000000..ec05f75 --- /dev/null +++ b/www/.content.EZtzwPjb/html/e68cbbbe3fa2d652f7ed83f22afb063da8a222e9.00000247.html @@ -0,0 +1,817 @@ + + + + + + + + Install RancherOs on FreeNas 11.3 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              +
                              +
                              +

                              Install RancherOs on FreeNas 11.3

                              +
                                +
                              • The automated RancherOs installation aka Docker VM has been removed in
                                +11.3
                              • +
                              • RancherOs doesn’t support EFI boot out of the box
                              • +
                              • Thanks to MKinney howto
                              • +
                              • This howto is provided without warranty
                              • +
                              • TODO the proper way of doing it is somewhere here
                              • +
                              • Some stuff about losetup
                              • +
                              +

                              1. Make a EFI bootable RancherOs image

                              + +
                                +
                              1. wget https://releases.rancher.com/os/v1.5.5/rancheros.iso
                              2. +
                              3. wget http://releases.ubuntu.com/18.04/ubuntu-18.04.4-live-server-amd64.iso
                              4. +
                              5. mkdir tmpubuntu tmprancheros tmprancheros_dest
                              6. +
                              7. sudo mount ubuntuserverlive.iso tmpubuntu
                              8. +
                              9. sudo mount rancheros.iso tmprancheros
                              10. +
                              11. fallocate -l 150M rancheros.img
                              12. +
                              13. gdisk rancheros.img o,y,n,enter,enter,ef00,w,Y
                              14. +
                              15. sudo losetup --partscan --show --find rancheros.img
                              16. +
                              17. sudo mkfs.fat /dev/loop2p1
                              18. +
                              19. sudo mount /dev/loop2p1 rancheros_dest
                              20. +
                              21. sudo cp -r tmprancheros/* tmprancheros_dest/
                              22. +
                              23. sudo cp -r tmpubuntu/EFI tmprancheros_dest/
                              24. +
                              25. Replace the content of tmprancheros_dest/boot/grub/grub.cfg with:
                              26. +
                              +
                              set timeout=5
                              +menuentry "Install Rancher" {
                              +    linux   /boot/vmlinuz-4.14.138-rancher rancher.autologin=tty1 rancher.autologin=ttyS0 rancher.autologin=ttyS1 console=tty1 console=ttyS0 console=ttyS1 printk.devkmsg=on panic=10 ---
                              +    initrd  /boot/initrd-v1.5.5
                              +}
                              +
                              +
                                +
                              1. sudo umount tmprancheros_dest
                              2. +
                              3. sudo losetup -d /dev/loop2
                              4. +
                              5. sudo umount tmpubuntu tmprancheros
                              6. +
                              +

                              2. Installation in FreeNas as Vm

                              +
                                +
                              1. Create a VM with EFI boot 2GB RAM choose virtio for all the driver
                                +better performance with linux
                              2. +
                              3. Add a RAW device and select your rancheros.img
                              4. +
                              5. Start the VM
                              6. +
                              7. Go to serial and in the shell cu -l /dev/nmdmXX at this point you should
                                +have a rancher shell
                              8. +
                              9. sudo fdisk /dev/vda then g,n,1,+200M,t,1,n,enter,enter,w you
                                +should something like at the end
                              10. +
                              +
                              Disk /dev/vda: 10 GiB, 10737418240 bytes, 20971520 sectors
                              +Units: sectors of 1 * 512 = 512 bytes
                              +Sector size (logical/physical): 512 bytes / 16384 bytes
                              +I/O size (minimum/optimal): 16384 bytes / 16384 bytes
                              +Disklabel type: gpt
                              +Disk identifier: 2B56EE14-44BF-6443-A197-EF73723B715F
                              +Device      Start      End  Sectors  Size Type
                              +/dev/vda1    2048   411647   409600  200M EFI System
                              +/dev/vda2  411648 20971486 20559839  9.8G Linux filesystem
                              +
                              +
                                +
                              1. Format the boot partition sudo mkdosfs -n RANCHER -F 32 /dev/vda1
                              2. +
                              3. Format the main filesystem sudo mkfs.ext4 -L RANCHER_STATE /dev/vda2
                              4. +
                              5. Create a cloud-config.yml see https://rancher.com/docs/os/v1.x/en/installation/running-rancheros/server/install-to-disk/ for minimum content
                              6. +
                              7. sudo mkdir /dev/sr0 for installer checking about iso mounted before
                                +install
                              8. +
                              9. Install ros with sudo ros install -t gptsyslinux -c cloud-config.yml -d /dev/vda -p /dev/vda2
                              10. +
                              11. mkdir /mnt/efipart && sudo mount /dev/vda1 /mnt/efipart
                              12. +
                              13. mkdir /mnt/installer && sudo mount /dev/vdb1 /mnt/installer
                              14. +
                              15. sudo cp -r /mnt/installer/EFI /mnt/efipart
                              16. +
                              17. Add a grub.cfg in /mnt/efipart/EFI/BOOT/grub.cfg with in it:
                                +You might want to add/remove autologin as you wish below

                                +
                                  +
                                • tty0 I think is VNC but I havent tested it
                                • +
                                • ttyS0 is serial (I have autologin enable in serial see below)
                                • +
                                +
                              18. +
                              +
                              set timeout=1
                              +menuentry "Rancher from GPT" {
                              +    search --no-floppy --set=root --label RANCHER_STATE
                              +    linux    /boot/vmlinuz-4.14.138-rancher printk.devkmsg=on rancher.state.dev=LABEL=RANCHER_STATE rancher.state.wait panic=10 console=tty0 console=ttyS0 rancher.autologin=ttyS0
                              +    initrd    /boot/initrd-v1.5.5
                              +}
                              +
                              +
                                +
                              1. sudo umount /mnt/*
                              2. +
                              3. sudo reboot
                              4. +
                              5. You are good to go
                              6. +
                              7. You can remove the RAW device in the VM config in FreeNas
                              8. +
                              +
                              +
                              + +
                              +
                              +
                              +
                              +
                              +

                              + 12 commentaires

                              +
                              + +
                              +
                              +
                              +
                              +

                              + Rudi Pittman + · 18 mars 2020 à 17 h 46 min +

                              +

                              Can I or can I not use my existing rancher img that was previously being used by freenas? ie

                              +

                              -rw-r–r– 1 root wheel 21474836480 Mar 18 02:13 rancher.img_docker1

                              +

                              I have around 10 different docker containers defined inside and I really don’t want to have to redo all of them.

                              + +
                              +
                              +
                                +
                                + +
                                +
                                +
                                +
                                +

                                + HugoPoi + · 11 avril 2020 à 16 h 32 min +

                                +

                                If the image is a VM image like a zvol, I think it will work, but I’m not sure, it will only work if the 11.2 behavior is EFI compatible.
                                +You may patch your existing image/snapshot by justing installing the efi bootloader aka grub in it.

                                + +
                                +
                                + +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + Rob RD + · 4 avril 2020 à 19 h 36 min +

                              +

                              Parfait – Merci Beaucoup! :)

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + dario + · 12 avril 2020 à 14 h 07 min +

                              +

                              Thanks for this guide. I am stuck at Step 12:
                              +> sudo mount /dev/vdb1 /mnt/installer
                              +ther is no /dev/vdb1, regardingless if I choose to boot at step 10 or not

                              + +
                              +
                              +
                                +
                                + +
                                +
                                +
                                +
                                +

                                + HugoPoi + · 22 avril 2020 à 23 h 34 min +

                                +

                                Your installer may be on a different disk if you choose SCSI in place of virtio when you add the raw image device in Freenas, you can identified with

                                +

                                cat /proc/partitions

                                +

                                and

                                +

                                mount

                                +

                                it should be /dev/sda1 maybe

                                + +
                                +
                                + +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + somebody + · 19 avril 2020 à 13 h 07 min +

                              +

                              Thank you so much for the step by step guide, it was very helpful. With this I can finally transition from my old Docker VM inherited from FreeNAS 11.1.

                              +

                              Going to state the obvious (for some) and mention that when new version gets released and you run

                              +

                              sudo ros os upgrade

                              +

                              to upgrade you’ll also need to update initrd command in your grub.cfg file on EFI partition, otherwise you’re just going to boot into the same version.

                              + +
                              +
                              +
                                +
                                + +
                                +
                                +
                                +
                                +

                                + Rudi Pittman + · 1 juin 2020 à 1 h 58 min +

                                +

                                The problem I have is even though grub is specifying 4.14.138 and initird-v1.5.5 on reboot it tells me those don’t exist. Doing a grub edit and using autocomplete the files it ACTUALLY find are /boot/vmlinuz-4.14.73-rancher and /boot/initrd-v1.4.2. Where the heck are those coming from? When I look on /dev/vda2/boot I see the 4.14.138 and initrd-v1.5.5 as the grub reflects. /mnt/efipart/EFI/BOOT has:

                                +

                                -rwxr-xr-x 1 root root 1334816 May 30 15:13 BOOTx64.EFI
                                +-rwxr-xr-x 1 root root 316 May 30 15:15 grub.cfg
                                +-rwxr-xr-x 1 root root 1146744 May 30 15:13 grubx64.efi

                                + +
                                +
                                + +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + Max + · 3 mai 2020 à 16 h 40 min +

                              +

                              The image i downloaded does not start. Stuck at step4 in the bhyve shell. Any idea how to proceed from there?

                              + +
                              +
                              +
                                +
                                + +
                                +
                                +
                                +
                                +

                                + HugoPoi + · 10 mai 2020 à 14 h 53 min +

                                +

                                Try to change the device order to a lower or higher number to be sure it try to load the good bootloader.

                                + +
                                +
                                + +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + Rudi Pittman + · 1 juin 2020 à 18 h 28 min +

                              +

                              If you do a « ros os version » on your efi image it’s NOT v1.5.5. It’s v1.4.2 and running the command although it MAY download the files does nothing to actually make the grub.cfg FIND those new files. It’s still looking for vmlinuz-4.14.73 and initrd-v1.4.2.

                              + +
                              +
                              +
                                +
                                + +
                                +
                                +
                                +
                                +

                                + Johnny Z + · 25 juin 2020 à 8 h 49 min +

                                +

                                I found them. The guide doesn’t necessarily state where or when to get the files. You should be able to do this to find and copy the files

                                +

                                cd /mnt/installer/boot/
                                +ls -asl
                                +(here you will find the two files)
                                +cp vmlinuz-4.14.138-rancher ../../efipart/efi/boot/
                                +cp initrd-v1.5.5.5 ../../efipart/efi/boot

                                +

                                Double check my paths here but that should basically get you the files so the kernel can load proper

                                + +
                                +
                                + +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + Toohai + · 16 septembre 2020 à 8 h 18 min +

                              +

                              Missing step after 12 in part 1?

                              +

                              sudo cp -r tmpubuntu/boot/grub tmprancheros_dest/boot/

                              + +
                              +
                              + +
                              +
                              +
                              +

                              Répondre à Rob RD Annuler la réponse

                              Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                              +
                              +
                              +

                              + +

                              +
                              +
                              +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              +
                              +
                              + + +
                              + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/e6a654c75d7ca43337771bd1497dd0c68aa49a2a.00000036.html b/www/.content.EZtzwPjb/html/e6a654c75d7ca43337771bd1497dd0c68aa49a2a.00000036.html new file mode 100644 index 0000000..d13d6a2 --- /dev/null +++ b/www/.content.EZtzwPjb/html/e6a654c75d7ca43337771bd1497dd0c68aa49a2a.00000036.html @@ -0,0 +1,661 @@ + + + + + + + + GET to POST – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              +
                              +
                              +

                              Il est 00h16, comme d’habitude je suis en train de développer un truc useless pour passer le temps donc je vais le mettre histoire de dire que ça va peut-être servir à plus d’une personne.

                              +

                              Language : JavaScript

                              +

                              Dépendance : Aucune

                              +

                              Type d’exécution : Local

                              +

                              Description : Ce script sert à transformer une requête HTTP de type GET via URL en méthode POST.

                              +

                              Fonctionnement : Il prend les arguments passés en get dans l’url et les envois via un formulaire de type hidden créé à la volée.

                              +

                              Exemple : https://blog.hugopoi.net/wp-content/uploads/2010/12/script.html?urlserverpage=http://fr.php.net/search.php&pattern=test&lang=en&show=quickref

                              +

                              Download : Script Get to Post

                              +

                              Note: pour télécharge le fichier en lien ci-dessus faites un clic droit « enregistrer la cible sous ».

                              +
                              +
                              +
                              +
                              +
                              Catégories : DéveloppementNews
                              +
                              +
                              +
                              + + + + + + + + + +
                              +
                              +
                              +
                              +
                              +
                              +
                              +

                              + 9 commentaires

                              +
                              + +
                              +
                              +
                              +
                              +

                              + watchix + · 12 juillet 2011 à 17 h 50 min +

                              +

                              Merci mon bon Hugo :-)
                              +J’étais en train de chercher ce genre de script lorsque je suis tombé sur le blog de Camille Descombes, puis ensuite sur ton commentaire :-)
                              +Internet est petit dans le monde des développeurs ^^

                              + +
                              +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + mou7a + · 25 mai 2012 à 13 h 01 min +

                              +

                              bonjour, Je sais que l’article date un peu mais je n’arrive pas à récupérer la source elle n’est plus disponible merci!!!

                              + +
                              +
                              +
                                +
                                + +
                                +
                                +
                                +
                                +

                                + HugoPoi + · 14 juin 2012 à 23 h 00 min +

                                +

                                la source est dans le fichier HTML.

                                + +
                                +
                                + +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + houhou + · 10 juillet 2012 à 9 h 29 min +

                              +

                              Bonjour HugoPoi;
                              +j’ai besoin du script pour récupérer le contenu d’une div généré en js,l’envoyer à une autre page de traitement pour le convertir en pdf.c’est urgent,merci!!!

                              + +
                              +
                              + + +
                              + +
                              +
                              +
                              +
                              +

                              + Geolocalise Ip + · 25 avril 2014 à 10 h 42 min +

                              +

                              Bonjour,
                              +Merci beaucoup pour l’idée, mais ta page : http://blog.hugopoi.net/wp-content/uploads/2010/12/script.html est morte …

                              +

                              Quant à « houhou », il est formidable, je prendrai bien son adresse IP à celui là pour voir de quel pays il vient !!!! Grrr ….
                              +Bon c’était en 2012, il a dû changer de métiers depuis !

                              + +
                              +
                              +
                                +
                                + +
                                +
                                +
                                +
                                +

                                + HugoPoi + · 9 mai 2014 à 18 h 12 min +

                                +

                                Le lien n’est pas mort mais le script se lance même sans paramètres valide donc tu es redirigé quand tu clic.
                                +Fait un clic droit enregistrer sous.

                                + +
                                +
                                + +
                              + +
                              + +
                              +
                              +
                              +
                              +

                              + Gab Wink + · 13 février 2015 à 0 h 06 min +

                              +

                              Merci, ceci m’a été utile (et c’est toujours cool de le dire).

                              + +
                              +
                              + +
                              +
                              +
                              +

                              Répondre à Gab Wink Annuler la réponse

                              Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                              +
                              +
                              +

                              + +

                              +
                              +
                              +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              +
                              +
                              + + +
                              + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/e6dd10ad4bfc1bd0c64d1f5bffec59ded02a07af.00000357.html b/www/.content.EZtzwPjb/html/e6dd10ad4bfc1bd0c64d1f5bffec59ded02a07af.00000357.html new file mode 100644 index 0000000..6b02b3e --- /dev/null +++ b/www/.content.EZtzwPjb/html/e6dd10ad4bfc1bd0c64d1f5bffec59ded02a07af.00000357.html @@ -0,0 +1,364 @@ + + + + + + + Calibre – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              + +
                              +
                              + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/e725aca5f898498b8c44e430670af3b839688a88.00001218.js b/www/.content.EZtzwPjb/html/e725aca5f898498b8c44e430670af3b839688a88.00001218.js new file mode 100644 index 0000000..2e84fcb --- /dev/null +++ b/www/.content.EZtzwPjb/html/e725aca5f898498b8c44e430670af3b839688a88.00001218.js @@ -0,0 +1,2 @@ +/*! jQuery Migrate v1.4.1 | (c) jQuery Foundation and other contributors | jquery.org/license */ +"undefined"==typeof jQuery.migrateMute&&(jQuery.migrateMute=!0),function(a,b,c){function d(c){var d=b.console;f[c]||(f[c]=!0,a.migrateWarnings.push(c),d&&d.warn&&!a.migrateMute&&(d.warn("JQMIGRATE: "+c),a.migrateTrace&&d.trace&&d.trace()))}function e(b,c,e,f){if(Object.defineProperty)try{return void Object.defineProperty(b,c,{configurable:!0,enumerable:!0,get:function(){return d(f),e},set:function(a){d(f),e=a}})}catch(g){}a._definePropertyBroken=!0,b[c]=e}a.migrateVersion="1.4.1";var f={};a.migrateWarnings=[],b.console&&b.console.log&&b.console.log("JQMIGRATE: Migrate is installed"+(a.migrateMute?"":" with logging active")+", version "+a.migrateVersion),a.migrateTrace===c&&(a.migrateTrace=!0),a.migrateReset=function(){f={},a.migrateWarnings.length=0},"BackCompat"===document.compatMode&&d("jQuery is not compatible with Quirks Mode");var g=a("",{size:1}).attr("size")&&a.attrFn,h=a.attr,i=a.attrHooks.value&&a.attrHooks.value.get||function(){return null},j=a.attrHooks.value&&a.attrHooks.value.set||function(){return c},k=/^(?:input|button)$/i,l=/^[238]$/,m=/^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,n=/^(?:checked|selected)$/i;e(a,"attrFn",g||{},"jQuery.attrFn is deprecated"),a.attr=function(b,e,f,i){var j=e.toLowerCase(),o=b&&b.nodeType;return i&&(h.length<4&&d("jQuery.fn.attr( props, pass ) is deprecated"),b&&!l.test(o)&&(g?e in g:a.isFunction(a.fn[e])))?a(b)[e](f):("type"===e&&f!==c&&k.test(b.nodeName)&&b.parentNode&&d("Can't change the 'type' of an input or button in IE 6/7/8"),!a.attrHooks[j]&&m.test(j)&&(a.attrHooks[j]={get:function(b,d){var e,f=a.prop(b,d);return f===!0||"boolean"!=typeof f&&(e=b.getAttributeNode(d))&&e.nodeValue!==!1?d.toLowerCase():c},set:function(b,c,d){var e;return c===!1?a.removeAttr(b,d):(e=a.propFix[d]||d,e in b&&(b[e]=!0),b.setAttribute(d,d.toLowerCase())),d}},n.test(j)&&d("jQuery.fn.attr('"+j+"') might use property instead of attribute")),h.call(a,b,e,f))},a.attrHooks.value={get:function(a,b){var c=(a.nodeName||"").toLowerCase();return"button"===c?i.apply(this,arguments):("input"!==c&&"option"!==c&&d("jQuery.fn.attr('value') no longer gets properties"),b in a?a.value:null)},set:function(a,b){var c=(a.nodeName||"").toLowerCase();return"button"===c?j.apply(this,arguments):("input"!==c&&"option"!==c&&d("jQuery.fn.attr('value', val) no longer sets properties"),void(a.value=b))}};var o,p,q=a.fn.init,r=a.find,s=a.parseJSON,t=/^\s*)([^>]*)$/;a.fn.init=function(b,e,f){var g,h;return b&&"string"==typeof b&&!a.isPlainObject(e)&&(g=w.exec(a.trim(b)))&&g[0]&&(t.test(b)||d("$(html) HTML strings must start with '<' character"),g[3]&&d("$(html) HTML text after last tag is ignored"),"#"===g[0].charAt(0)&&(d("HTML string cannot start with a '#' character"),a.error("JQMIGRATE: Invalid selector string (XSS)")),e&&e.context&&e.context.nodeType&&(e=e.context),a.parseHTML)?q.call(this,a.parseHTML(g[2],e&&e.ownerDocument||e||document,!0),e,f):(h=q.apply(this,arguments),b&&b.selector!==c?(h.selector=b.selector,h.context=b.context):(h.selector="string"==typeof b?b:"",b&&(h.context=b.nodeType?b:e||document)),h)},a.fn.init.prototype=a.fn,a.find=function(a){var b=Array.prototype.slice.call(arguments);if("string"==typeof a&&u.test(a))try{document.querySelector(a)}catch(c){a=a.replace(v,function(a,b,c,d){return"["+b+c+'"'+d+'"]'});try{document.querySelector(a),d("Attribute selector with '#' must be quoted: "+b[0]),b[0]=a}catch(e){d("Attribute selector with '#' was not fixed: "+b[0])}}return r.apply(this,b)};var x;for(x in r)Object.prototype.hasOwnProperty.call(r,x)&&(a.find[x]=r[x]);a.parseJSON=function(a){return a?s.apply(this,arguments):(d("jQuery.parseJSON requires a valid JSON string"),null)},a.uaMatch=function(a){a=a.toLowerCase();var b=/(chrome)[ \/]([\w.]+)/.exec(a)||/(webkit)[ \/]([\w.]+)/.exec(a)||/(opera)(?:.*version|)[ \/]([\w.]+)/.exec(a)||/(msie) ([\w.]+)/.exec(a)||a.indexOf("compatible")<0&&/(mozilla)(?:.*? rv:([\w.]+)|)/.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},a.browser||(o=a.uaMatch(navigator.userAgent),p={},o.browser&&(p[o.browser]=!0,p.version=o.version),p.chrome?p.webkit=!0:p.webkit&&(p.safari=!0),a.browser=p),e(a,"browser",a.browser,"jQuery.browser is deprecated"),a.boxModel=a.support.boxModel="CSS1Compat"===document.compatMode,e(a,"boxModel",a.boxModel,"jQuery.boxModel is deprecated"),e(a.support,"boxModel",a.support.boxModel,"jQuery.support.boxModel is deprecated"),a.sub=function(){function b(a,c){return new b.fn.init(a,c)}a.extend(!0,b,this),b.superclass=this,b.fn=b.prototype=this(),b.fn.constructor=b,b.sub=this.sub,b.fn.init=function(d,e){var f=a.fn.init.call(this,d,e,c);return f instanceof b?f:b(f)},b.fn.init.prototype=b.fn;var c=b(document);return d("jQuery.sub() is deprecated"),b},a.fn.size=function(){return d("jQuery.fn.size() is deprecated; use the .length property"),this.length};var y=!1;a.swap&&a.each(["height","width","reliableMarginRight"],function(b,c){var d=a.cssHooks[c]&&a.cssHooks[c].get;d&&(a.cssHooks[c].get=function(){var a;return y=!0,a=d.apply(this,arguments),y=!1,a})}),a.swap=function(a,b,c,e){var f,g,h={};y||d("jQuery.swap() is undocumented and deprecated");for(g in b)h[g]=a.style[g],a.style[g]=b[g];f=c.apply(a,e||[]);for(g in b)a.style[g]=h[g];return f},a.ajaxSetup({converters:{"text json":a.parseJSON}});var z=a.fn.data;a.fn.data=function(b){var e,f,g=this[0];return!g||"events"!==b||1!==arguments.length||(e=a.data(g,b),f=a._data(g,b),e!==c&&e!==f||f===c)?z.apply(this,arguments):(d("Use of jQuery.fn.data('events') is deprecated"),f)};var A=/\/(java|ecma)script/i;a.clean||(a.clean=function(b,c,e,f){c=c||document,c=!c.nodeType&&c[0]||c,c=c.ownerDocument||c,d("jQuery.clean() is deprecated");var g,h,i,j,k=[];if(a.merge(k,a.buildFragment(b,c).childNodes),e)for(i=function(a){return!a.type||A.test(a.type)?f?f.push(a.parentNode?a.parentNode.removeChild(a):a):e.appendChild(a):void 0},g=0;null!=(h=k[g]);g++)a.nodeName(h,"script")&&i(h)||(e.appendChild(h),"undefined"!=typeof h.getElementsByTagName&&(j=a.grep(a.merge([],h.getElementsByTagName("script")),i),k.splice.apply(k,[g+1,0].concat(j)),g+=j.length));return k});var B=a.event.add,C=a.event.remove,D=a.event.trigger,E=a.fn.toggle,F=a.fn.live,G=a.fn.die,H=a.fn.load,I="ajaxStart|ajaxStop|ajaxSend|ajaxComplete|ajaxError|ajaxSuccess",J=new RegExp("\\b(?:"+I+")\\b"),K=/(?:^|\s)hover(\.\S+|)\b/,L=function(b){return"string"!=typeof b||a.event.special.hover?b:(K.test(b)&&d("'hover' pseudo-event is deprecated, use 'mouseenter mouseleave'"),b&&b.replace(K,"mouseenter$1 mouseleave$1"))};a.event.props&&"attrChange"!==a.event.props[0]&&a.event.props.unshift("attrChange","attrName","relatedNode","srcElement"),a.event.dispatch&&e(a.event,"handle",a.event.dispatch,"jQuery.event.handle is undocumented and deprecated"),a.event.add=function(a,b,c,e,f){a!==document&&J.test(b)&&d("AJAX events should be attached to document: "+b),B.call(this,a,L(b||""),c,e,f)},a.event.remove=function(a,b,c,d,e){C.call(this,a,L(b)||"",c,d,e)},a.each(["load","unload","error"],function(b,c){a.fn[c]=function(){var a=Array.prototype.slice.call(arguments,0);return"load"===c&&"string"==typeof a[0]?H.apply(this,a):(d("jQuery.fn."+c+"() is deprecated"),a.splice(0,0,c),arguments.length?this.bind.apply(this,a):(this.triggerHandler.apply(this,a),this))}}),a.fn.toggle=function(b,c){if(!a.isFunction(b)||!a.isFunction(c))return E.apply(this,arguments);d("jQuery.fn.toggle(handler, handler...) is deprecated");var e=arguments,f=b.guid||a.guid++,g=0,h=function(c){var d=(a._data(this,"lastToggle"+b.guid)||0)%g;return a._data(this,"lastToggle"+b.guid,d+1),c.preventDefault(),e[d].apply(this,arguments)||!1};for(h.guid=f;g + + Aventure PC – HugoPoi + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Sat, 11 Feb 2017 17:37:20 +0000 + fr-FR + hourly + 1 + https://wordpress.org/?v=4.7.2 + + Pourquoi je suis sous Linux bordel ! + http://blog.hugopoi.net/2017/02/11/pourquoi-je-suis-sous-linux-bordel/ + http://blog.hugopoi.net/2017/02/11/pourquoi-je-suis-sous-linux-bordel/#respond + Sat, 11 Feb 2017 17:37:20 +0000 + + + + + + + + http://blog.hugopoi.net/?p=947 + Lire la suite »

                              ]]>
                              + http://blog.hugopoi.net/2017/02/11/pourquoi-je-suis-sous-linux-bordel/feed/ + 0 +
                              + + Reflow Dell Inspiron 1546 + http://blog.hugopoi.net/2016/08/22/reflow-dell-1546/ + http://blog.hugopoi.net/2016/08/22/reflow-dell-1546/#respond + Mon, 22 Aug 2016 14:00:28 +0000 + + + + + + + + + + http://blog.hugopoi.net/?p=918 + Lire la suite »

                              ]]>
                              + http://blog.hugopoi.net/2016/08/22/reflow-dell-1546/feed/ + 0 +
                              + + Et si on faisait sans Twitch et sans Youtube + http://blog.hugopoi.net/2015/10/24/et-si-on-faisait-sans-twitch-et-sans-youtube/ + http://blog.hugopoi.net/2015/10/24/et-si-on-faisait-sans-twitch-et-sans-youtube/#respond + Sat, 24 Oct 2015 13:07:55 +0000 + + + + + + + + + + + + + + http://blog.hugopoi.net/?p=909 + Lire la suite »

                              ]]>
                              + http://blog.hugopoi.net/2015/10/24/et-si-on-faisait-sans-twitch-et-sans-youtube/feed/ + 0 +
                              + + Test et démontage d’un Sony Multi Flip 15 SVF15N1C5E + http://blog.hugopoi.net/2014/08/04/test-et-demontage-dun-sony-multi-flip-15-svf15n1c5e/ + http://blog.hugopoi.net/2014/08/04/test-et-demontage-dun-sony-multi-flip-15-svf15n1c5e/#respond + Mon, 04 Aug 2014 13:25:59 +0000 + + + + + + + + + http://blog.hugopoi.net/?p=856 + Lire la suite »

                              ]]>
                              + http://blog.hugopoi.net/2014/08/04/test-et-demontage-dun-sony-multi-flip-15-svf15n1c5e/feed/ + 0 +
                              + + Écran miraculé d’un Asus N53SN + http://blog.hugopoi.net/2014/08/02/ecran-miracule-dun-asus-n53sn/ + http://blog.hugopoi.net/2014/08/02/ecran-miracule-dun-asus-n53sn/#comments + Sat, 02 Aug 2014 17:53:57 +0000 + + + + + + + + http://blog.hugopoi.net/?p=819 + Lire la suite »

                              ]]>
                              + http://blog.hugopoi.net/2014/08/02/ecran-miracule-dun-asus-n53sn/feed/ + 1 +
                              + + Installer Mac OS X Mavericks avec VirtualBox + http://blog.hugopoi.net/2013/12/27/installer-mac-os-x-mavericks-avec-virtualbox/ + http://blog.hugopoi.net/2013/12/27/installer-mac-os-x-mavericks-avec-virtualbox/#comments + Fri, 27 Dec 2013 21:40:28 +0000 + + + + + + + + + http://blog.hugopoi.net/?p=802 + Lire la suite »

                              ]]>
                              + http://blog.hugopoi.net/2013/12/27/installer-mac-os-x-mavericks-avec-virtualbox/feed/ + 6 +
                              + + Home Cinéma + http://blog.hugopoi.net/2012/12/26/home-cinema/ + http://blog.hugopoi.net/2012/12/26/home-cinema/#respond + Wed, 26 Dec 2012 14:42:16 +0000 + + + + + + + + + + + + + http://blog.hugopoi.net/?p=518 + Lire la suite »

                              ]]>
                              + http://blog.hugopoi.net/2012/12/26/home-cinema/feed/ + 0 +
                              + + Asus U36 et OCZ Vertex 3 la suite + http://blog.hugopoi.net/2012/03/30/asus-u36-et-ocz-vertex-3-la-suite/ + http://blog.hugopoi.net/2012/03/30/asus-u36-et-ocz-vertex-3-la-suite/#comments + Fri, 30 Mar 2012 10:29:27 +0000 + + + + + + + + + + + + + + + + http://blog.hugopoi.net/?p=635 + Lire la suite »

                              ]]>
                              + http://blog.hugopoi.net/2012/03/30/asus-u36-et-ocz-vertex-3-la-suite/feed/ + 1 +
                              + + Réparations Samsung SyncMaster 2232BW + http://blog.hugopoi.net/2012/01/15/reparations-samsung-syncmaster-2232bw/ + http://blog.hugopoi.net/2012/01/15/reparations-samsung-syncmaster-2232bw/#comments + Sun, 15 Jan 2012 16:00:25 +0000 + + + + + + + + + + + + + http://blog.hugopoi.net/?p=586 + Lire la suite »

                              ]]>
                              + http://blog.hugopoi.net/2012/01/15/reparations-samsung-syncmaster-2232bw/feed/ + 32 +
                              + + Vos données sauvegardées + http://blog.hugopoi.net/2011/12/09/vos-donnees-sauvegardees/ + http://blog.hugopoi.net/2011/12/09/vos-donnees-sauvegardees/#respond + Fri, 09 Dec 2011 14:40:50 +0000 + + + + + + + + + + + + http://blog.hugopoi.net/?p=528 + Lire la suite »

                              ]]>
                              + http://blog.hugopoi.net/2011/12/09/vos-donnees-sauvegardees/feed/ + 0 +
                              +
                              +
                              diff --git a/www/.content.EZtzwPjb/html/e8b0efd64ba9b7b184fdbde9e73245a90ac92598.00000521.xml b/www/.content.EZtzwPjb/html/e8b0efd64ba9b7b184fdbde9e73245a90ac92598.00000521.xml new file mode 100644 index 0000000..1bce1f7 --- /dev/null +++ b/www/.content.EZtzwPjb/html/e8b0efd64ba9b7b184fdbde9e73245a90ac92598.00000521.xml @@ -0,0 +1,43 @@ + + + stream – HugoPoi + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Mon, 22 Aug 2016 14:10:26 +0000 + fr-FR + hourly + 1 + https://wordpress.org/?v=4.6.1 + + Et si on faisait sans Twitch et sans Youtube + http://blog.hugopoi.net/2015/10/24/et-si-on-faisait-sans-twitch-et-sans-youtube/ + http://blog.hugopoi.net/2015/10/24/et-si-on-faisait-sans-twitch-et-sans-youtube/#respond + Sat, 24 Oct 2015 13:07:55 +0000 + + + + + + + + + + + + + + http://blog.hugopoi.net/?p=909 + Lire la suite »

                              ]]>
                              + http://blog.hugopoi.net/2015/10/24/et-si-on-faisait-sans-twitch-et-sans-youtube/feed/ + 0 +
                              +
                              +
                              diff --git a/www/.content.EZtzwPjb/html/e8e6dc925c8abefc2e5ac233a3c842555dc57085.00000468.html b/www/.content.EZtzwPjb/html/e8e6dc925c8abefc2e5ac233a3c842555dc57085.00000468.html new file mode 100644 index 0000000..63ffbf6 --- /dev/null +++ b/www/.content.EZtzwPjb/html/e8e6dc925c8abefc2e5ac233a3c842555dc57085.00000468.html @@ -0,0 +1,370 @@ + + + + + + + NTFS – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              +
                              +
                              +
                              + +
                              +
                              +
                              +
                              + +
                              +
                              + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/e961b1995526d6f6071086c8d5a3e7a7cffcb1dd.00000278.xml b/www/.content.EZtzwPjb/html/e961b1995526d6f6071086c8d5a3e7a7cffcb1dd.00000278.xml new file mode 100644 index 0000000..2d26998 --- /dev/null +++ b/www/.content.EZtzwPjb/html/e961b1995526d6f6071086c8d5a3e7a7cffcb1dd.00000278.xml @@ -0,0 +1,73 @@ + + + Bidouille – HugoPoi + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Sat, 11 Feb 2017 17:37:20 +0000 + fr-FR + hourly + 1 + https://wordpress.org/?v=4.7.2 + + Reflow Dell Inspiron 1546 + http://blog.hugopoi.net/2016/08/22/reflow-dell-1546/ + http://blog.hugopoi.net/2016/08/22/reflow-dell-1546/#respond + Mon, 22 Aug 2016 14:00:28 +0000 + + + + + + + + + + http://blog.hugopoi.net/?p=918 + Lire la suite »

                              ]]>
                              + http://blog.hugopoi.net/2016/08/22/reflow-dell-1546/feed/ + 0 +
                              + + Réparer et transformer une clé USB de 4Go en 8Go + http://blog.hugopoi.net/2013/05/11/reparer-et-transformer-une-cle-usb-de-4go-en-8go/ + http://blog.hugopoi.net/2013/05/11/reparer-et-transformer-une-cle-usb-de-4go-en-8go/#comments + Sat, 11 May 2013 13:51:53 +0000 + + + + + + + + http://blog.hugopoi.net/?p=768 + Lire la suite »

                              ]]>
                              + http://blog.hugopoi.net/2013/05/11/reparer-et-transformer-une-cle-usb-de-4go-en-8go/feed/ + 8 +
                              + + Réparer un Vidéoprojecteur Sony VPL-CX5 + http://blog.hugopoi.net/2013/05/04/reparer-un-videoprojecteur-sony-vpl-cx5/ + http://blog.hugopoi.net/2013/05/04/reparer-un-videoprojecteur-sony-vpl-cx5/#comments + Sat, 04 May 2013 15:26:39 +0000 + + + + + + + + http://blog.hugopoi.net/?p=737 + Lire la suite »

                              ]]>
                              + http://blog.hugopoi.net/2013/05/04/reparer-un-videoprojecteur-sony-vpl-cx5/feed/ + 15 +
                              +
                              +
                              diff --git a/www/.content.EZtzwPjb/html/e98c4b7ada34a053eba101ea2f363921661cfabc.00000595.js b/www/.content.EZtzwPjb/html/e98c4b7ada34a053eba101ea2f363921661cfabc.00000595.js new file mode 100644 index 0000000..27d28f7 --- /dev/null +++ b/www/.content.EZtzwPjb/html/e98c4b7ada34a053eba101ea2f363921661cfabc.00000595.js @@ -0,0 +1,414 @@ +(function($) { + + if (typeof _wpcf7 == 'undefined' || _wpcf7 === null) + _wpcf7 = {}; + + _wpcf7 = $.extend({ cached: 0 }, _wpcf7); + + $(function() { + _wpcf7.supportHtml5 = $.wpcf7SupportHtml5(); + $('div.wpcf7 > form').wpcf7InitForm(); + }); + + $.fn.wpcf7InitForm = function() { + this.ajaxForm({ + beforeSubmit: function(arr, $form, options) { + $form.wpcf7ClearResponseOutput(); + $form.find('[aria-invalid]').attr('aria-invalid', 'false'); + $form.find('img.ajax-loader').css({ visibility: 'visible' }); + return true; + }, + beforeSerialize: function($form, options) { + $form.find('[placeholder].placeheld').each(function(i, n) { + $(n).val(''); + }); + return true; + }, + data: { '_wpcf7_is_ajax_call': 1 }, + dataType: 'json', + success: $.wpcf7AjaxSuccess, + error: function(xhr, status, error, $form) { + var e = $('
                              ').text(error.message); + $form.after(e); + } + }); + + if (_wpcf7.cached) + this.wpcf7OnloadRefill(); + + this.wpcf7ToggleSubmit(); + + this.find('.wpcf7-submit').wpcf7AjaxLoader(); + + this.find('.wpcf7-acceptance').click(function() { + $(this).closest('form').wpcf7ToggleSubmit(); + }); + + this.find('.wpcf7-exclusive-checkbox').wpcf7ExclusiveCheckbox(); + + this.find('.wpcf7-list-item.has-free-text').wpcf7ToggleCheckboxFreetext(); + + this.find('[placeholder]').wpcf7Placeholder(); + + if (_wpcf7.jqueryUi && ! _wpcf7.supportHtml5.date) { + this.find('input.wpcf7-date[type="date"]').each(function() { + $(this).datepicker({ + dateFormat: 'yy-mm-dd', + minDate: new Date($(this).attr('min')), + maxDate: new Date($(this).attr('max')) + }); + }); + } + + if (_wpcf7.jqueryUi && ! _wpcf7.supportHtml5.number) { + this.find('input.wpcf7-number[type="number"]').each(function() { + $(this).spinner({ + min: $(this).attr('min'), + max: $(this).attr('max'), + step: $(this).attr('step') + }); + }); + } + + this.find('.wpcf7-character-count').wpcf7CharacterCount(); + + this.find('.wpcf7-validates-as-url').change(function() { + $(this).wpcf7NormalizeUrl(); + }); + }; + + $.wpcf7AjaxSuccess = function(data, status, xhr, $form) { + if (! $.isPlainObject(data) || $.isEmptyObject(data)) + return; + + var $responseOutput = $form.find('div.wpcf7-response-output'); + + $form.wpcf7ClearResponseOutput(); + + $form.find('.wpcf7-form-control').removeClass('wpcf7-not-valid'); + $form.removeClass('invalid spam sent failed'); + + if (data.captcha) + $form.wpcf7RefillCaptcha(data.captcha); + + if (data.quiz) + $form.wpcf7RefillQuiz(data.quiz); + + if (data.invalids) { + $.each(data.invalids, function(i, n) { + $form.find(n.into).wpcf7NotValidTip(n.message); + $form.find(n.into).find('.wpcf7-form-control').addClass('wpcf7-not-valid'); + $form.find(n.into).find('[aria-invalid]').attr('aria-invalid', 'true'); + }); + + $responseOutput.addClass('wpcf7-validation-errors'); + $form.addClass('invalid'); + + $(data.into).trigger('invalid.wpcf7'); + + } else if (1 == data.spam) { + $responseOutput.addClass('wpcf7-spam-blocked'); + $form.addClass('spam'); + + $(data.into).trigger('spam.wpcf7'); + + } else if (1 == data.mailSent) { + $responseOutput.addClass('wpcf7-mail-sent-ok'); + $form.addClass('sent'); + + if (data.onSentOk) + $.each(data.onSentOk, function(i, n) { eval(n) }); + + $(data.into).trigger('mailsent.wpcf7'); + + } else { + $responseOutput.addClass('wpcf7-mail-sent-ng'); + $form.addClass('failed'); + + $(data.into).trigger('mailfailed.wpcf7'); + } + + if (data.onSubmit) + $.each(data.onSubmit, function(i, n) { eval(n) }); + + $(data.into).trigger('submit.wpcf7'); + + if (1 == data.mailSent) + $form.resetForm(); + + $form.find('[placeholder].placeheld').each(function(i, n) { + $(n).val($(n).attr('placeholder')); + }); + + $responseOutput.append(data.message).slideDown('fast'); + $responseOutput.attr('role', 'alert'); + + $.wpcf7UpdateScreenReaderResponse($form, data); + }; + + $.fn.wpcf7ExclusiveCheckbox = function() { + return this.find('input:checkbox').click(function() { + var name = $(this).attr('name'); + $(this).closest('form').find('input:checkbox[name="' + name + '"]').not(this).prop('checked', false); + }); + }; + + $.fn.wpcf7Placeholder = function() { + if (_wpcf7.supportHtml5.placeholder) + return this; + + return this.each(function() { + $(this).val($(this).attr('placeholder')); + $(this).addClass('placeheld'); + + $(this).focus(function() { + if ($(this).hasClass('placeheld')) + $(this).val('').removeClass('placeheld'); + }); + + $(this).blur(function() { + if ('' == $(this).val()) { + $(this).val($(this).attr('placeholder')); + $(this).addClass('placeheld'); + } + }); + }); + }; + + $.fn.wpcf7AjaxLoader = function() { + return this.each(function() { + var loader = $('') + .attr({ src: _wpcf7.loaderUrl, alt: _wpcf7.sending }) + .css('visibility', 'hidden'); + + $(this).after(loader); + }); + }; + + $.fn.wpcf7ToggleSubmit = function() { + return this.each(function() { + var form = $(this); + if (this.tagName.toLowerCase() != 'form') + form = $(this).find('form').first(); + + if (form.hasClass('wpcf7-acceptance-as-validation')) + return; + + var submit = form.find('input:submit'); + if (! submit.length) return; + + var acceptances = form.find('input:checkbox.wpcf7-acceptance'); + if (! acceptances.length) return; + + submit.removeAttr('disabled'); + acceptances.each(function(i, n) { + n = $(n); + if (n.hasClass('wpcf7-invert') && n.is(':checked') + || ! n.hasClass('wpcf7-invert') && ! n.is(':checked')) + submit.attr('disabled', 'disabled'); + }); + }); + }; + + $.fn.wpcf7ToggleCheckboxFreetext = function() { + return this.each(function() { + var $wrap = $(this).closest('.wpcf7-form-control'); + + if ($(this).find(':checkbox, :radio').is(':checked')) { + $(this).find(':input.wpcf7-free-text').prop('disabled', false); + } else { + $(this).find(':input.wpcf7-free-text').prop('disabled', true); + } + + $wrap.find(':checkbox, :radio').change(function() { + var $cb = $('.has-free-text', $wrap).find(':checkbox, :radio'); + var $freetext = $(':input.wpcf7-free-text', $wrap); + + if ($cb.is(':checked')) { + $freetext.prop('disabled', false).focus(); + } else { + $freetext.prop('disabled', true); + } + }); + }); + }; + + $.fn.wpcf7CharacterCount = function() { + return this.each(function() { + var $count = $(this); + var name = $count.attr('data-target-name'); + var down = $count.hasClass('down'); + var starting = parseInt($count.attr('data-starting-value'), 10); + var maximum = parseInt($count.attr('data-maximum-value'), 10); + var minimum = parseInt($count.attr('data-minimum-value'), 10); + + var updateCount = function($target) { + var length = $target.val().length; + var count = down ? starting - length : length; + $count.attr('data-current-value', count); + $count.text(count); + + if (maximum && maximum < length) { + $count.addClass('too-long'); + } else { + $count.removeClass('too-long'); + } + + if (minimum && length < minimum) { + $count.addClass('too-short'); + } else { + $count.removeClass('too-short'); + } + }; + + $count.closest('form').find(':input[name="' + name + '"]').each(function() { + updateCount($(this)); + + $(this).keyup(function() { + updateCount($(this)); + }); + }); + }); + }; + + $.fn.wpcf7NormalizeUrl = function() { + return this.each(function() { + var val = $.trim($(this).val()); + + if (! val.match(/^[a-z][a-z0-9.+-]*:/i)) { // check the scheme part + val = val.replace(/^\/+/, ''); + val = 'http://' + val; + } + + $(this).val(val); + }); + }; + + $.fn.wpcf7NotValidTip = function(message) { + return this.each(function() { + var $into = $(this); + + $into.find('span.wpcf7-not-valid-tip').remove(); + $into.append('' + message + ''); + + if ($into.is('.use-floating-validation-tip *')) { + $('.wpcf7-not-valid-tip', $into).mouseover(function() { + $(this).wpcf7FadeOut(); + }); + + $(':input', $into).focus(function() { + $('.wpcf7-not-valid-tip', $into).not(':hidden').wpcf7FadeOut(); + }); + } + }); + }; + + $.fn.wpcf7FadeOut = function() { + return this.each(function() { + $(this).animate({ + opacity: 0 + }, 'fast', function() { + $(this).css({'z-index': -100}); + }); + }); + }; + + $.fn.wpcf7OnloadRefill = function() { + return this.each(function() { + var url = $(this).attr('action'); + if (0 < url.indexOf('#')) + url = url.substr(0, url.indexOf('#')); + + var id = $(this).find('input[name="_wpcf7"]').val(); + var unitTag = $(this).find('input[name="_wpcf7_unit_tag"]').val(); + + $.getJSON(url, + { _wpcf7_is_ajax_call: 1, _wpcf7: id, _wpcf7_request_ver: $.now() }, + function(data) { + if (data && data.captcha) + $('#' + unitTag).wpcf7RefillCaptcha(data.captcha); + + if (data && data.quiz) + $('#' + unitTag).wpcf7RefillQuiz(data.quiz); + } + ); + }); + }; + + $.fn.wpcf7RefillCaptcha = function(captcha) { + return this.each(function() { + var form = $(this); + + $.each(captcha, function(i, n) { + form.find(':input[name="' + i + '"]').clearFields(); + form.find('img.wpcf7-captcha-' + i).attr('src', n); + var match = /([0-9]+)\.(png|gif|jpeg)$/.exec(n); + form.find('input:hidden[name="_wpcf7_captcha_challenge_' + i + '"]').attr('value', match[1]); + }); + }); + }; + + $.fn.wpcf7RefillQuiz = function(quiz) { + return this.each(function() { + var form = $(this); + + $.each(quiz, function(i, n) { + form.find(':input[name="' + i + '"]').clearFields(); + form.find(':input[name="' + i + '"]').siblings('span.wpcf7-quiz-label').text(n[0]); + form.find('input:hidden[name="_wpcf7_quiz_answer_' + i + '"]').attr('value', n[1]); + }); + }); + }; + + $.fn.wpcf7ClearResponseOutput = function() { + return this.each(function() { + $(this).find('div.wpcf7-response-output').hide().empty().removeClass('wpcf7-mail-sent-ok wpcf7-mail-sent-ng wpcf7-validation-errors wpcf7-spam-blocked').removeAttr('role'); + $(this).find('span.wpcf7-not-valid-tip').remove(); + $(this).find('img.ajax-loader').css({ visibility: 'hidden' }); + }); + }; + + $.wpcf7UpdateScreenReaderResponse = function($form, data) { + $('.wpcf7 .screen-reader-response').html('').attr('role', ''); + + if (data.message) { + var $response = $form.siblings('.screen-reader-response').first(); + $response.append(data.message); + + if (data.invalids) { + var $invalids = $('
                                '); + + $.each(data.invalids, function(i, n) { + if (n.idref) { + var $li = $('
                              • ').append($('').attr('href', '#' + n.idref).append(n.message)); + } else { + var $li = $('
                              • ').append(n.message); + } + + $invalids.append($li); + }); + + $response.append($invalids); + } + + $response.attr('role', 'alert').focus(); + } + }; + + $.wpcf7SupportHtml5 = function() { + var features = {}; + var input = document.createElement('input'); + + features.placeholder = 'placeholder' in input; + + var inputTypes = ['email', 'url', 'tel', 'number', 'range', 'date']; + + $.each(inputTypes, function(index, value) { + input.setAttribute('type', value); + features[value] = input.type !== 'text'; + }); + + return features; + }; + +})(jQuery); \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/e9dc712566ff1f542870b37c369fd1882dfa02cf.00000189.html b/www/.content.EZtzwPjb/html/e9dc712566ff1f542870b37c369fd1882dfa02cf.00000189.html new file mode 100644 index 0000000..379ba8f --- /dev/null +++ b/www/.content.EZtzwPjb/html/e9dc712566ff1f542870b37c369fd1882dfa02cf.00000189.html @@ -0,0 +1,640 @@ + + + + + + + + Réparer et transformer une clé USB de 4Go en 8Go – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                +
                                +
                                +
                                + +
                                +
                                +
                                +
                                +
                                +
                                +

                                J’étais en train de bosser sur un projet Java quand ma belle mère me demande si je peux regarder une clé USB Maxell 4GB qui ne marche plus.Clé USB Maxell

                                +

                                Je branche et la clé se connecte correctement mais pas de table des partitions et la clé indiquait 0 octet de disponible. Je tente un « diskpart.exe » celui-ci me dit « pas de media ». Autre symptôme la LED sur la clé restait continuellement allumé. Je commence à me dire que c’est mort puis comme d’habitude je fais une recherche Google et je tombe sur ça http://www.easytutoriel.com/flasher-reparer-cle-usb-memoire/(ce lien est à moitié mort la DB est cassée) . Donc je télécharge ChipGenius_v4_00_0022_RC3 et il reconnait ma clé il me dit que c’est un controleur Phison PS2251-67(PS2267) et une puce mémoire Toshiba de type TLC.ChipGenius4

                                +

                                Rien de bien exceptionnel je vais sur http://flashboot.ru/iflash/ je farfouille je trouve des noms de logiciels mais pas de lien téléchargement qui marche puis pour finir je vais sur http://dl.mydigit.net/special/up/phison.html, sans traduire je comprends vite que c’est une mine d’or ce site web, tout un tas de nom de logiciel récupérer chez les fabricants de puces en tout genre de quoi flasher n’importe quoi. J’arrive à ça http://rghost.net/39050058, je télécharge j’exécute GetInfo.exe  (sans les droits administrateur) qui me donne les même infos que ChipGenius.GetInfo V3.8.3.2

                                +

                                Après il y a deux soft MPALL_F1_8400_v360_0B.exe et MPALL_F2_v360_0B.exe . Au hasard je lance le premier (sans les droits administrateur) et je clic sur Update sans vraiment savoir ce que ça allait vraiment faire. Et la ça reconnait la clé dans la liste et surprise il me dit que la puce de mémoire est une 8Go au début je crois à une erreur.MPAll 8400 3.60.0B

                                +

                                N’ayant plus rien à perdre je clic sur Start et cela lance la procédure de flash du firmware du contrôleur, pas de documentation donc je peux pas vraiment savoir ce que ça fait réellement. DRAME ça affiche une erreur et un beau fail, je ne désespère pas je débranche rebranche la clé. Et c’est un ………………….WIN Windaube m’affiche le beau panneau voulez-vous formater cette merde. Deuxième WIN de taille, la clé est reconnu comme une clé de 8 Go LOL. Je mets plus de 4 Go de données dedans je fais un checksum des fichiers et ça marche !!!

                                +

                                L’erreur survenu à la fin du flash peu provenir du fait que je n’avais pas lancé l’exécutable avec des privilèges élevés donc le programme n’a pas pu effectuer le formatage.

                                +

                                Maintenant la grande question comment ce fait t’il que Maxell qui est l’assembleur de cet clé USB nous vend t’il des clé USB 4GB comme sont en réalité des clé de 8Go. J’ai trois début de réponse :

                                +

                                1) Soit Maxell se fout de notre gueule sur les prix et du coup au lieu d’acheter 4000 puces Toshiba de 4 Go et 4000 de puces de 8Go , Maxell achète 8000 puces de 8Go et bidouille les firmware des contrôleurs pour faire des clés USB de 4 et 8 Go.

                                +

                                2) Maxell utilise des puces 8Go qui ont des défauts d’usines et utilise uniquement une parti de la puce. Ce qui expliquerait les problèmes que j’ai rencontré avec cette clé au début.

                                +

                                3) Maxell utilise les 4 Go restant pour faire du over-provisioning pour les cellules de mémoire défectueuse en écriture étant donné que je penses que ce genre de mémoire n’a pas beaucoup de cycle d’écriture mais c’est très peu probable que ce type technologie propre aux SSD soit dans de vulgaire clé USB bas de gamme.

                                +
                                +
                                +
                                +
                                +
                                Catégories : BidouilleHardwareNews
                                +
                                +
                                +
                                + + + + + + + + + +
                                +
                                +
                                +
                                +
                                +
                                +
                                +

                                + 8 commentaires

                                +
                                + +
                                +
                                +
                                +
                                +

                                + 2Pi informatique + · 16 mai 2013 à 9 h 01 min +

                                +

                                Je n’avais jamais entendu parler de ce genre de manip, et du gain potentiel de capacité.

                                +

                                C’est assez étonnant, et je me demande si tous les constructeurs « brident » la capacité des clés usb …

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Amedoumba + · 22 juillet 2013 à 14 h 15 min +

                                +

                                Hello !
                                +Intéressant comme manip. J’ai une de mes clés USB avec le même genre de probleme. Je vais donc tester et voir si cela fonctionne. Je n’ai rien à perdre de toute façon.
                                +Merci en tout cas.

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + diop + · 14 novembre 2013 à 15 h 11 min +

                                +

                                pour répéré cle usb

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + diop + · 14 novembre 2013 à 15 h 12 min +

                                +

                                salut pour ma cle usb

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + watchix + · 28 décembre 2013 à 10 h 40 min +

                                +

                                « File is deleted » :-(

                                + +
                                +
                                +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  +

                                  + HugoPoi + · 4 janvier 2014 à 12 h 38 min +

                                  +

                                  à moitié réparer ;-)

                                  + +
                                  +
                                  + +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Jean + · 22 avril 2015 à 20 h 18 min +

                                +

                                Je penche pour ma part pour les raisons 1 et 2.

                                +

                                La première raison car le coût de la flash est diminuée plus on en commande, et aussi ça évite d’avoir deux chaines d’assemblage pour le PCB de la clé.

                                +

                                La seconde raison car c’est ce qui est pratiqué par pas mal de fabricants du domaine du semi-conducteur pour « créer » une gamme : AMD n’hésitait pas à vendre en entrée de gamme des processeurs amputés de certains coeurs défectueux. Et si il manque des processeurs défectueux … et bien on désactive quand même des coeurs !

                                +

                                Il y a aussi un paramètre à prendre en compte : la redevance sur la copie privée. Elle est proportionnelle à la capacité du support de stockage (cf. http://www.culturecommunication.gouv.fr/Politiques-ministerielles/Propriete-litteraire-et-artistique/Commission-pour-la-remuneration-de-la-copie-privee/Questions-pratiques/Les-montants-de-la-Remuneration-pour-Copie-Privee). Elle est de 0,64€ pour une clé de 4 Go, et 1,04€ pour une clé de 8 Go.

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Pila + · 10 décembre 2015 à 21 h 45 min +

                                +

                                Salut,
                                +Je pense qu’il s’agit de puce MLC ( je crois que c’est le terme ? ), qui ont de très bonne performances sur la première moitié de leur capacité, et des très mauvaises sur la seconde moitié, car celle-ci est obtenu par réécriture sur la première partie.

                                +

                                En tout cas merci pour les différentes infos que tu as glanées !

                                + +
                                +
                                + +
                                +
                                +
                                +

                                Laisser un commentaire

                                Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                                +
                                +
                                +

                                + +

                                +
                                +
                                +
                                +
                                +
                                +
                                + +
                                +
                                +
                                +
                                +
                                +
                                + + +
                                + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/e9dca7eba103381fbac0b011d2b849cf35e6d8c3.00000392.html b/www/.content.EZtzwPjb/html/e9dca7eba103381fbac0b011d2b849cf35e6d8c3.00000392.html new file mode 100644 index 0000000..9d84e74 --- /dev/null +++ b/www/.content.EZtzwPjb/html/e9dca7eba103381fbac0b011d2b849cf35e6d8c3.00000392.html @@ -0,0 +1,364 @@ + + + + + + + dev – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                                +
                                +
                                +
                                + +
                                +
                                +
                                +
                                +
                                +

                                Pascal Negre tu m’emmerdes

                                Bon sérieux, Pascal Negre il commence à me les briser sec. Après Deezer qui est devenu une belle merde car il n’y a plus que les Black Eyed Peas, Justin et Britney, la plateforme est devenue complètement payante et cela reste cher au vu du catalogue proposé. Puis l’année dernière Lire la suite…

                                +
                                Par HugoPoi, il y a
                                +
                                + +
                                +
                                +
                                +
                                + +
                                +
                                + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/ea348c0a1b3438863cf5d069f7bc7d472b5b301f.00001219.js b/www/.content.EZtzwPjb/html/ea348c0a1b3438863cf5d069f7bc7d472b5b301f.00001219.js new file mode 100644 index 0000000..969c84a --- /dev/null +++ b/www/.content.EZtzwPjb/html/ea348c0a1b3438863cf5d069f7bc7d472b5b301f.00001219.js @@ -0,0 +1,2 @@ +/*! jQuery Migrate v3.3.2 | (c) OpenJS Foundation and other contributors | jquery.org/license */ +"undefined"==typeof jQuery.migrateMute&&(jQuery.migrateMute=!0),function(t){"use strict";"function"==typeof define&&define.amd?define(["jquery"],function(e){return t(e,window)}):"object"==typeof module&&module.exports?module.exports=t(require("jquery"),window):t(jQuery,window)}(function(s,n){"use strict";function e(e){return 0<=function(e,t){for(var r=/^(\d+)\.(\d+)\.(\d+)/,n=r.exec(e)||[],o=r.exec(t)||[],i=1;i<=3;i++){if(+o[i]<+n[i])return 1;if(+n[i]<+o[i])return-1}return 0}(s.fn.jquery,e)}s.migrateVersion="3.3.2",n.console&&n.console.log&&(s&&e("3.0.0")||n.console.log("JQMIGRATE: jQuery 3.0.0+ REQUIRED"),s.migrateWarnings&&n.console.log("JQMIGRATE: Migrate plugin loaded multiple times"),n.console.log("JQMIGRATE: Migrate is installed"+(s.migrateMute?"":" with logging active")+", version "+s.migrateVersion));var r={};function u(e){var t=n.console;s.migrateDeduplicateWarnings&&r[e]||(r[e]=!0,s.migrateWarnings.push(e),t&&t.warn&&!s.migrateMute&&(t.warn("JQMIGRATE: "+e),s.migrateTrace&&t.trace&&t.trace()))}function t(e,t,r,n){Object.defineProperty(e,t,{configurable:!0,enumerable:!0,get:function(){return u(n),r},set:function(e){u(n),r=e}})}function o(e,t,r,n){e[t]=function(){return u(n),r.apply(this,arguments)}}s.migrateDeduplicateWarnings=!0,s.migrateWarnings=[],void 0===s.migrateTrace&&(s.migrateTrace=!0),s.migrateReset=function(){r={},s.migrateWarnings.length=0},"BackCompat"===n.document.compatMode&&u("jQuery is not compatible with Quirks Mode");var i,a,c,d={},l=s.fn.init,p=s.find,f=/\[(\s*[-\w]+\s*)([~|^$*]?=)\s*([-\w#]*?#[-\w#]*)\s*\]/,y=/\[(\s*[-\w]+\s*)([~|^$*]?=)\s*([-\w#]*?#[-\w#]*)\s*\]/g,m=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;for(i in s.fn.init=function(e){var t=Array.prototype.slice.call(arguments);return"string"==typeof e&&"#"===e&&(u("jQuery( '#' ) is not a valid selector"),t[0]=[]),l.apply(this,t)},s.fn.init.prototype=s.fn,s.find=function(t){var r=Array.prototype.slice.call(arguments);if("string"==typeof t&&f.test(t))try{n.document.querySelector(t)}catch(e){t=t.replace(y,function(e,t,r,n){return"["+t+r+'"'+n+'"]'});try{n.document.querySelector(t),u("Attribute selector with '#' must be quoted: "+r[0]),r[0]=t}catch(e){u("Attribute selector with '#' was not fixed: "+r[0])}}return p.apply(this,r)},p)Object.prototype.hasOwnProperty.call(p,i)&&(s.find[i]=p[i]);o(s.fn,"size",function(){return this.length},"jQuery.fn.size() is deprecated and removed; use the .length property"),o(s,"parseJSON",function(){return JSON.parse.apply(null,arguments)},"jQuery.parseJSON is deprecated; use JSON.parse"),o(s,"holdReady",s.holdReady,"jQuery.holdReady is deprecated"),o(s,"unique",s.uniqueSort,"jQuery.unique is deprecated; use jQuery.uniqueSort"),t(s.expr,"filters",s.expr.pseudos,"jQuery.expr.filters is deprecated; use jQuery.expr.pseudos"),t(s.expr,":",s.expr.pseudos,"jQuery.expr[':'] is deprecated; use jQuery.expr.pseudos"),e("3.1.1")&&o(s,"trim",function(e){return null==e?"":(e+"").replace(m,"")},"jQuery.trim is deprecated; use String.prototype.trim"),e("3.2.0")&&(o(s,"nodeName",function(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()},"jQuery.nodeName is deprecated"),o(s,"isArray",Array.isArray,"jQuery.isArray is deprecated; use Array.isArray")),e("3.3.0")&&(o(s,"isNumeric",function(e){var t=typeof e;return("number"==t||"string"==t)&&!isNaN(e-parseFloat(e))},"jQuery.isNumeric() is deprecated"),s.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(e,t){d["[object "+t+"]"]=t.toLowerCase()}),o(s,"type",function(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?d[Object.prototype.toString.call(e)]||"object":typeof e},"jQuery.type is deprecated"),o(s,"isFunction",function(e){return"function"==typeof e},"jQuery.isFunction() is deprecated"),o(s,"isWindow",function(e){return null!=e&&e===e.window},"jQuery.isWindow() is deprecated")),s.ajax&&(a=s.ajax,c=/(=)\?(?=&|$)|\?\?/,s.ajax=function(){var e=a.apply(this,arguments);return e.promise&&(o(e,"success",e.done,"jQXHR.success is deprecated and removed"),o(e,"error",e.fail,"jQXHR.error is deprecated and removed"),o(e,"complete",e.always,"jQXHR.complete is deprecated and removed")),e},e("4.0.0")||s.ajaxPrefilter("+json",function(e){!1!==e.jsonp&&(c.test(e.url)||"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&c.test(e.data))&&u("JSON-to-JSONP auto-promotion is deprecated")}));var g=s.fn.removeAttr,h=s.fn.toggleClass,v=/\S+/g;function j(e){return e.replace(/-([a-z])/g,function(e,t){return t.toUpperCase()})}s.fn.removeAttr=function(e){var r=this;return s.each(e.match(v),function(e,t){s.expr.match.bool.test(t)&&(u("jQuery.fn.removeAttr no longer sets boolean properties: "+t),r.prop(t,!1))}),g.apply(this,arguments)};var Q,b=!(s.fn.toggleClass=function(t){return void 0!==t&&"boolean"!=typeof t?h.apply(this,arguments):(u("jQuery.fn.toggleClass( boolean ) is deprecated"),this.each(function(){var e=this.getAttribute&&this.getAttribute("class")||"";e&&s.data(this,"__className__",e),this.setAttribute&&this.setAttribute("class",!e&&!1!==t&&s.data(this,"__className__")||"")}))}),w=/^[a-z]/,x=/^(?:Border(?:Top|Right|Bottom|Left)?(?:Width|)|(?:Margin|Padding)?(?:Top|Right|Bottom|Left)?|(?:Min|Max)?(?:Width|Height))$/;s.swap&&s.each(["height","width","reliableMarginRight"],function(e,t){var r=s.cssHooks[t]&&s.cssHooks[t].get;r&&(s.cssHooks[t].get=function(){var e;return b=!0,e=r.apply(this,arguments),b=!1,e})}),s.swap=function(e,t,r,n){var o,i,a={};for(i in b||u("jQuery.swap() is undocumented and deprecated"),t)a[i]=e.style[i],e.style[i]=t[i];for(i in o=r.apply(e,n||[]),t)e.style[i]=a[i];return o},e("3.4.0")&&"undefined"!=typeof Proxy&&(s.cssProps=new Proxy(s.cssProps||{},{set:function(){return u("JQMIGRATE: jQuery.cssProps is deprecated"),Reflect.set.apply(this,arguments)}})),s.cssNumber||(s.cssNumber={}),Q=s.fn.css,s.fn.css=function(e,t){var r,n,o=this;return e&&"object"==typeof e&&!Array.isArray(e)?(s.each(e,function(e,t){s.fn.css.call(o,e,t)}),this):("number"==typeof t&&(r=j(e),n=r,w.test(n)&&x.test(n[0].toUpperCase()+n.slice(1))||s.cssNumber[r]||u('Number-typed values are deprecated for jQuery.fn.css( "'+e+'", value )')),Q.apply(this,arguments))};var A,k,S,M,N=s.data;s.data=function(e,t,r){var n,o,i;if(t&&"object"==typeof t&&2===arguments.length){for(i in n=s.hasData(e)&&N.call(this,e),o={},t)i!==j(i)?(u("jQuery.data() always sets/gets camelCased names: "+i),n[i]=t[i]):o[i]=t[i];return N.call(this,e,o),t}return t&&"string"==typeof t&&t!==j(t)&&(n=s.hasData(e)&&N.call(this,e))&&t in n?(u("jQuery.data() always sets/gets camelCased names: "+t),2");t!==e&&T(e)!==T(t)&&u("HTML tags must be properly nested and closed: "+e)}var O=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>\x20\t\r\n\f]*)[^>]*)\/>/gi,q=s.htmlPrefilter;s.UNSAFE_restoreLegacyHtmlPrefilter=function(){s.htmlPrefilter=function(e){return P(e),e.replace(O,"<$1>")}},s.htmlPrefilter=function(e){return P(e),q(e)};var D,_=s.fn.offset;s.fn.offset=function(){var e=this[0];return!e||e.nodeType&&e.getBoundingClientRect?_.apply(this,arguments):(u("jQuery.fn.offset() requires a valid DOM element"),arguments.length?this:void 0)},s.ajax&&(D=s.param,s.param=function(e,t){var r=s.ajaxSettings&&s.ajaxSettings.traditional;return void 0===t&&r&&(u("jQuery.param() no longer uses jQuery.ajaxSettings.traditional"),t=r),D.call(this,e,t)});var E,F,J=s.fn.andSelf||s.fn.addBack;return s.fn.andSelf=function(){return u("jQuery.fn.andSelf() is deprecated and removed, use jQuery.fn.addBack()"),J.apply(this,arguments)},s.Deferred&&(E=s.Deferred,F=[["resolve","done",s.Callbacks("once memory"),s.Callbacks("once memory"),"resolved"],["reject","fail",s.Callbacks("once memory"),s.Callbacks("once memory"),"rejected"],["notify","progress",s.Callbacks("memory"),s.Callbacks("memory")]],s.Deferred=function(e){var i=E(),a=i.promise();return i.pipe=a.pipe=function(){var o=arguments;return u("deferred.pipe() is deprecated"),s.Deferred(function(n){s.each(F,function(e,t){var r="function"==typeof o[e]&&o[e];i[t[1]](function(){var e=r&&r.apply(this,arguments);e&&"function"==typeof e.promise?e.promise().done(n.resolve).fail(n.reject).progress(n.notify):n[t[0]+"With"](this===a?n.promise():this,r?[e]:arguments)})}),o=null}).promise()},e&&e.call(i,i),i},s.Deferred.exceptionHook=E.exceptionHook),s}); diff --git a/www/.content.EZtzwPjb/html/eae14c03b6a8a3ef9d5fbd1056fae24924b739ac.00000682.css b/www/.content.EZtzwPjb/html/eae14c03b6a8a3ef9d5fbd1056fae24924b739ac.00000682.css new file mode 100644 index 0000000..20df2bb --- /dev/null +++ b/www/.content.EZtzwPjb/html/eae14c03b6a8a3ef9d5fbd1056fae24924b739ac.00000682.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7 .screen-reader-response{position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);height:1px;width:1px;margin:0;padding:0;border:0}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{color:#f00;font-size:1em;display:block}.use-floating-validation-tip span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;border:1px +solid #f00;background:#fff;padding: .2em .8em}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/eb0e2b61378e3300def3813de52419afc7f8d36b.00000506.xml b/www/.content.EZtzwPjb/html/eb0e2b61378e3300def3813de52419afc7f8d36b.00000506.xml new file mode 100644 index 0000000..430b62f --- /dev/null +++ b/www/.content.EZtzwPjb/html/eb0e2b61378e3300def3813de52419afc7f8d36b.00000506.xml @@ -0,0 +1,76 @@ + + + samsung – HugoPoi + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Mon, 22 Aug 2016 14:10:26 +0000 + fr-FR + hourly + 1 + https://wordpress.org/?v=4.6.1 + + Orange et consort, impossible d’obtenir le désimlockage + http://blog.hugopoi.net/2013/09/15/orange-et-consort-impossible-dobtenir-le-desimlockage/ + http://blog.hugopoi.net/2013/09/15/orange-et-consort-impossible-dobtenir-le-desimlockage/#comments + Sat, 14 Sep 2013 23:01:40 +0000 + + + + + + + + + + http://blog.hugopoi.net/?p=794 + Lire la suite »

                                ]]>
                                + http://blog.hugopoi.net/2013/09/15/orange-et-consort-impossible-dobtenir-le-desimlockage/feed/ + 1 +
                                + + Réparations Samsung SyncMaster 2232BW + http://blog.hugopoi.net/2012/01/15/reparations-samsung-syncmaster-2232bw/ + http://blog.hugopoi.net/2012/01/15/reparations-samsung-syncmaster-2232bw/#comments + Sun, 15 Jan 2012 16:00:25 +0000 + + + + + + + + + + + + + http://blog.hugopoi.net/?p=586 + Lire la suite »

                                ]]>
                                + http://blog.hugopoi.net/2012/01/15/reparations-samsung-syncmaster-2232bw/feed/ + 31 +
                                + + Test du Samsung Galaxy S + http://blog.hugopoi.net/2010/12/27/test-du-samsung-galaxy-s/ + http://blog.hugopoi.net/2010/12/27/test-du-samsung-galaxy-s/#comments + Mon, 27 Dec 2010 18:45:47 +0000 + + + + + + http://blog.hugopoi.net/?p=234 + Lire la suite »

                                ]]>
                                + http://blog.hugopoi.net/2010/12/27/test-du-samsung-galaxy-s/feed/ + 1 +
                                +
                                +
                                diff --git a/www/.content.EZtzwPjb/html/eb81b6468fedb61818c3b8bab2e0f5e84feea259.00000040.html b/www/.content.EZtzwPjb/html/eb81b6468fedb61818c3b8bab2e0f5e84feea259.00000040.html new file mode 100644 index 0000000..f1b81d8 --- /dev/null +++ b/www/.content.EZtzwPjb/html/eb81b6468fedb61818c3b8bab2e0f5e84feea259.00000040.html @@ -0,0 +1,536 @@ + + + + + + + + IPv6 – Intro – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                +
                                +
                                +
                                + +
                                +
                                +
                                +
                                +
                                +
                                +

                                Etant donné la proche pénurie d’adresse IP v4, plus que 5% seraient disponible sur le réseau public qu’est Internet, je vais faire un dossier qui parlera d’IP v6. Dans ce dossier, je vais vous faire des tutoriels, des RFC et des découvertes.

                                +

                                Comme je vais écrire sur un sujet très technique et pas simple à comprendre je risque de faire des erreurs, vu que je ne suis pas un expert en IP v6. Dans les faits cette suite d’articles et de brèves sera un bon moyen pour vous « lecteurs » et pour moi de comprendre et apprendre sur ce sujet.

                                +

                                Question 1 : Qu’est-ce que c’est une IP v6 ? ou plutôt le protocole IP v6 ?

                                +

                                C’est la nouvelle version du protocole IP qui succède à IP v4. Celui-ci sert à faire communiquer plusieurs machines ou « devices » ensemble à l’aide d’un adressage spécifique pour savoir qui est qui. Et aussi à faire plein d’autres trucs fun ‘trouver des exemples’. Il se place jusqu’à la couche 3 du modèle OSI mais apporte des fonctionnalités sur les niveaux supérieurs.

                                +

                                Une adresse IP v4 c’était par exemple ça : 88.129.34.17 (32bits)

                                +

                                Une IP v6 c’est ça : 2001:0db8:0000:85a3:0000:0000:ac1f:8001 (128bits)

                                +

                                Question 2 : Pourquoi faut-il utiliser IP v6 ?

                                +

                                C’est vrai que c’est bien le petit confort qu’apporte l’IP v4, c’est lisible, court et facile à retenir. Mais le problème c’est que sur internet on est très nombreux, et on va incessamment sous peu être à court d’ adresse. IP v4 c’est 4 294 967 296 d’adresses, c’est moins d’une adresse par personne sur terre donc pas assez au vu de l’expansion actuelle du Web. IP v6 permet de disposer de 10^25 adresses au mètre carré sur terre de quoi installer un paquet de VM.

                                +

                                Question 3 : Pourquoi je vous en parle ?

                                +

                                Comme j’ai un peu de temps libre et que IPv6 c’est l’avenir, c’est le moment pour monter en compétence sur ce type de technologie. Parce que devenir expert en routage et firewalling IPv6 à mon avis c’est pas coton.

                                +

                                A lire pour comprendre les bases :

                                +

                                http://www.grm94.polymtl.ca/~lepage/IPv6/

                                +

                                http://fr.wikipedia.org/wiki/IPv6

                                +

                                J’ai rajouté un petit widget sur le coté pour vous indiquer quand il n’y aura plus d’adresses v4 et que ça sera la fin du monde …

                                +
                                +
                                +
                                +
                                +
                                Catégories : DossiersIP v6
                                +
                                +
                                +
                                + + + + + + + + + +
                                +
                                +
                                +
                                +
                                +
                                +
                                +

                                + 2 commentaires

                                +
                                + +
                                +
                                +
                                +
                                +

                                + Samy DINDANE + · 26 décembre 2010 à 12 h 06 min +

                                +

                                Article intéressant, qui le sera encore plus si tu parles des solutions de « transition ». :)

                                + +
                                +
                                + + +
                                +
                                +
                                +

                                Répondre à Samy DINDANE Annuler la réponse

                                Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                                +
                                +
                                +

                                + +

                                +
                                +
                                +
                                +
                                +
                                +
                                + +
                                +
                                +
                                +
                                +
                                +
                                + + +
                                + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/eb8f770ca0697c25e7e52de0d1eee2b2a373eaeb.00000565.html b/www/.content.EZtzwPjb/html/eb8f770ca0697c25e7e52de0d1eee2b2a373eaeb.00000565.html new file mode 100644 index 0000000..e7e2156 --- /dev/null +++ b/www/.content.EZtzwPjb/html/eb8f770ca0697c25e7e52de0d1eee2b2a373eaeb.00000565.html @@ -0,0 +1,364 @@ + + + + + + + zvol – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                                +
                                +
                                +
                                + +
                                +
                                +
                                +
                                +
                                +
                                +
                                + +
                                +
                                +
                                +
                                + +
                                +
                                + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/ec202262fa53644f93de625bc45df8a3af210e2b.00000457.html b/www/.content.EZtzwPjb/html/ec202262fa53644f93de625bc45df8a3af210e2b.00000457.html new file mode 100644 index 0000000..9e7025c --- /dev/null +++ b/www/.content.EZtzwPjb/html/ec202262fa53644f93de625bc45df8a3af210e2b.00000457.html @@ -0,0 +1,373 @@ + + + + + + + NAS – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + +
                                +
                                +
                                +
                                + +
                                +
                                +
                                +
                                +
                                +

                                Le cloud maison

                                Voilà un petit moment que je me devais de faire cet article pour vous en dire un peu plus sur comment je gère mes données numériques au quotidien. Et après plusieurs essais et échecs, je peux enfin dire que j’ai trouvé des outils simples et maintenus pour cette quête. Même Lire la suite…

                                +
                                Par HugoPoi, il y a

                                Vos données sauvegardées

                                Dans le monde d’aujourd’hui, le numérique est omniprésent, tout ce que vous faites est ou peut être numérisé. Qu’il s’agisse de vos photos de vacances, de votre CV ou votre liste de course, vos contacts et tous les documents que vous utilisez pour travailler sont surement numériques. L’informatique est partout et aide à gérer votre comptabilité, vos contacts pro ou perso et même bientôt votre frigo. Quand je pense qu’il y a 10 ans, beaucoup de professions géraient leur base clients avec des fiches papiers, et que ça existe encore… Pourtant, c’est une perte de temps importante de gérer des clientèles de plus 100 personnes, trier les fiches à la main dans l’ordre alphabétique. Imaginez devoir sortir tous les clients que vous n’avez pas contacté depuis 2 mois, même avec uniquement 100 personnes vous allez y passer au moins une 1 heure avant que votre liste soit faite, avec une base de données, cela est fait en moins d’1 seconde. Tous ça pour dire que l’informatique facilite grandement votre vie jusqu’au jour où ça tombe en panne ! J’ai donc quelques propositions à vous faire concernant la protection de vos données. (suite…)

                                +
                                Par HugoPoi, il y a
                                +
                                + +
                                +
                                +
                                +
                                + +
                                +
                                + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/ec2f1530fbcbb8334dedd824372d47ad0b16cc76.00000752.css b/www/.content.EZtzwPjb/html/ec2f1530fbcbb8334dedd824372d47ad0b16cc76.00000752.css new file mode 100644 index 0000000..5578ea5 --- /dev/null +++ b/www/.content.EZtzwPjb/html/ec2f1530fbcbb8334dedd824372d47ad0b16cc76.00000752.css @@ -0,0 +1,4 @@ +/*! + * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto} diff --git a/www/.content.EZtzwPjb/html/ec945b41c80acb1b245bf1b2626129d747989037.00000633.css b/www/.content.EZtzwPjb/html/ec945b41c80acb1b245bf1b2626129d747989037.00000633.css new file mode 100644 index 0000000..8043bbf --- /dev/null +++ b/www/.content.EZtzwPjb/html/ec945b41c80acb1b245bf1b2626129d747989037.00000633.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;background:#fff;border:1px +solid #f00;font-size:10pt;width:280px;padding:2px}span.wpcf7-not-valid-tip-no-ajax{color:#f00;font-size:10pt;display:block}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/ecb14ebf2911359a59b312c10ec1a33f003613b8.00000049.html b/www/.content.EZtzwPjb/html/ecb14ebf2911359a59b312c10ec1a33f003613b8.00000049.html new file mode 100644 index 0000000..f6a4a10 --- /dev/null +++ b/www/.content.EZtzwPjb/html/ecb14ebf2911359a59b312c10ec1a33f003613b8.00000049.html @@ -0,0 +1,523 @@ + + + + + + + + Aventure PC – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                +
                                +
                                +
                                + +
                                +
                                +
                                +
                                +
                                +
                                +

                                Petit Rewritting de ma soirée de mercredi, ceux qui me suivent sur twitter sont au courant, j’ai reçu quelques pièces pour mon pc à savoir un Noctua NH-D14 et une alimentation Cooler Master Silent Pro Gold. Aussitôt reçues, aussitôt montées voici le reportage photo avec horodatage …

                                +

                                19h00 Déballage de l’alimentation :

                                +

                                +

                                19h10 Déballage du radiateur :

                                +

                                +

                                19h17 Après vérification le radiateur est plus gros que l’alimentation ;)

                                +

                                +

                                21h51 Après la pause dîner, check twitter, sauvegarde des dernières applications ouvertes, voici le pc avant le grand démontage

                                +

                                +

                                22h18 Découvre que mon boitier ne comporte pas de découpage arrière pour démonter la fixation des ventirads donc obligé de tout démonter :(

                                +

                                +

                                22h29 Carte graphique enlevée, et pleine de poussière on ne voit même plus les ailettes

                                +

                                +

                                22h30 Reste plus que la carte mère à démonter soit 10 vis, courage.

                                +

                                +

                                22h51 Après avoir sorti en douceur la carte mère voici mon joli processeur plein de pâte thermique.

                                +

                                +

                                23h17 Processeur nettoyé, perso j’utilise un chiffon humidifié avec de l’eau ça marche très bien pour enlever le plus gros et après un petit chiffon sec. (dommage la photo est floue, c’est la faute de mon Galaxy S qui n’a pas de mode macro)

                                +

                                +

                                00h37 Plus d’une heure pour tout remonter, nettoyer et LA c’est le drame le NH-D14 passe pas, je m’en doutais un peu …

                                +

                                +

                                01h13 Avec une jolie pince coupante et une pince plate je fais les modifications nécessaires en moins de 30 minutes. Le mieux aurait été de le faire avec un Dremel mais je n’en ai pas et puis à 1H00 du matin j’aurais réveillé toute la maison. Donc ça fait un peu dégueulasse pour l’instant mais je rectifierai plus tard avec des outils plus précis, de toute façon mon boitier est pratiquement toujours fermé.

                                +

                                +

                                01h22 Installation du nouveau ventirad. Done. ça passe au milimètre !

                                +

                                +

                                02h03 Après le rangement du bordel organisé dans lequel je pouvais bosser, c’est le moment de vérité démarrage du PC. Tout est OK.

                                +

                                +

                                Le Noctua NH-D14 prend la place de mon Asus Artic Square. La Cooler Master Gold prend la place d’une Cooler Master Real Power M520 toutes deux très silencieuses. Après quelques jours de fonctionnement, le bruit du pc est un petit peu réduit en idle. Les températures en idle n’ont pas changé. Par contre je n’ai pas installé les ventilateurs fournis avec le radiateur donc mon processeur est actuellement en fanless (temp 39°c en idle). Mais il y a un ventilateur de 120mm en extraction juste à gauche du NH-D14 (celui du boitier), plus le ventilateur de l’alimentation qui est juste au dessus.

                                +

                                Pour les petits curieux voici ma configuration qui commence à dater un peu :

                                +
                                  +
                                • Processeur Intel Core 2 Duo E8400 @ 3Ghz
                                • +
                                • Carte Mère Asus Blitz Formula
                                • +
                                • Mémoire : 2 x 2Go G.Skill F2-6400CL4-2GBHK et 2 x 1 Go Crucial Ballistix Tracer PC8500 @ 400Mhz
                                • +
                                • Carte Graphique Gygabyte Ati HD5770
                                • +
                                • Boitier Antec Solo
                                • +
                                • Alimentation Cooler Master Silent Pro Gold 600W
                                • +
                                • Ventirad Noctua NH-D14
                                • +
                                • Disques Durs : 2 x Maxtor Diamond Max 21 250Go en Raid Matrix Storage
                                • +
                                +
                                +
                                +
                                +
                                +
                                Catégories : Aventure PCHardwareTest
                                +
                                +
                                +
                                + + + + + + + + + +
                                +
                                +
                                +
                                +
                                +
                                +
                                +

                                + 0 commentaire

                                +
                                +
                                +
                                +

                                Laisser un commentaire

                                Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                                +
                                +
                                +

                                + +

                                +
                                +
                                +
                                +
                                +
                                +
                                + +
                                +
                                +
                                +
                                +
                                +
                                + + +
                                + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/ecc18a01e7f7d55b4abbe4c629fc82b96b9dadaa.00001248.js b/www/.content.EZtzwPjb/html/ecc18a01e7f7d55b4abbe4c629fc82b96b9dadaa.00001248.js new file mode 100644 index 0000000..94fc2a7 --- /dev/null +++ b/www/.content.EZtzwPjb/html/ecc18a01e7f7d55b4abbe4c629fc82b96b9dadaa.00001248.js @@ -0,0 +1,2 @@ +/*! This file is auto-generated */ +!function(d,l){"use strict";var e=!1,o=!1;if(l.querySelector)if(d.addEventListener)e=!0;if(d.wp=d.wp||{},!d.wp.receiveEmbedMessage)if(d.wp.receiveEmbedMessage=function(e){var t=e.data;if(t)if(t.secret||t.message||t.value)if(!/[^a-zA-Z0-9]/.test(t.secret)){var r,a,i,s,n,o=l.querySelectorAll('iframe[data-secret="'+t.secret+'"]'),c=l.querySelectorAll('blockquote[data-secret="'+t.secret+'"]');for(r=0;r this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/ecfe8ce44f1819adb669996a8b68583984313d82.00000105.html b/www/.content.EZtzwPjb/html/ecfe8ce44f1819adb669996a8b68583984313d82.00000105.html new file mode 100644 index 0000000..40674f3 --- /dev/null +++ b/www/.content.EZtzwPjb/html/ecfe8ce44f1819adb669996a8b68583984313d82.00000105.html @@ -0,0 +1,1370 @@ + + + + + + + + Réparations Samsung SyncMaster 2232BW – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                +
                                +
                                +
                                + +
                                +
                                +
                                +
                                +
                                +
                                +

                                Allô docteur on a un problème,

                                +

                                En ce dimanche calme avant la fin de mes partiels, mon écran Samsung SyncMaster 2232BW commençait à faire des siennes. Celui-ci depuis un mois ou deux clignotait de façon systématique au démarrage, au début pendant seulement quelques secondes, puis au fur et à mesure, de plus en plus jusqu’à devoir attendre 10 minutes pour que je puisse l’utiliser. Après 3 ans et 4 mois de bons et loyaux services, il voulait me quitter. J’ai tenté le support Samsung par email avec peu d’espoir car l’écran a dépassé sa garantie de 4 mois (oui oui les bâtards -> obsolescence programmée). Et donc j’ai eu le droit à un joli mail automatique me disant de contacter un numéro non surtaxé (mais avec combien de temps d’attente ?), ce que je n’ai pas fait car je n’avais pas envie de passer 30min au téléphone pour au final avoir un « On est désolé mais on ne peut rien faire pour vous car la garantie est dépassée, mais on peut envoyer votre écran en SAV pour faire un devis pour seulement 50 boules ». Concernant le support email de Samsung France, je leur donne une note de 0/20 puisque ce n’est pas un support mais une redirection vers le téléphone.

                                +

                                +

                                Symptômes

                                +

                                Clignotements de l’écran et de la LED power systématiques à chaque démarrage de l’écran. Je me suis tout de suite douté d’un problème d’alimentation et après quelques recherches sur google, confirmation du problème sur beaucoup d’écrans et téléviseurs. Dans 99% des cas ce clignotement est dû à des condensateurs défectueux qu’il faut simplement changer :-D

                                +

                                Démontage

                                +

                                Donc après avoir cerné le problème, j’ai ouvert l’écran pour chercher les condos défectueux. J’ai trouvé une petite vidéo pour mon écran :

                                +

                                +

                                Voici quelques photos en plus pour vous aider :

                                +

                                Les outils que j’ai utilisé pour le démontage

                                +

                                Position des clips

                                +

                                Carte d’alimentation dans son emplacement

                                +

                                Et voici les condensateurs qui posent problèmes. Comme vous pouvez le voir sur la photo, ils sont très facilement identifiable car ils sont bombés sur le dessus.

                                +

                                Condensateurs défectueux

                                +

                                Vous devez donc acheter des condensateurs de remplacement, par exemple sur Conrad.

                                +

                                Mes condensateurs suivant étaient endommagés:

                                +
                                  +
                                • 1 de 330uF 25V remplacé par un 470uF 25V
                                • +
                                • 3 de 820uF 25V remplacé par des 1000uF 50V
                                • +
                                +

                                Pour la réparation, il vous faut un fer à souder avec une panne pas trop grosse mais d’une grosse puissance car les soudures sont très solides (j’ai galéré avec un fer pro qui monte jusqu’à 400°).

                                +

                                Tout remarche nickel après remontage, plus de clignotement pour seulement quelques euros.

                                +

                                edit du 19 aout 2014 : j’ai trouvé le service manuel de l’écran si besoin samsung_2232bw_chassis_lpe22bs_sm

                                + + +
                                +
                                + +
                                +
                                +
                                +
                                +
                                +

                                + 41 commentaires

                                +
                                + +
                                +
                                +
                                +
                                +

                                + c'est_moi + · 30 janvier 2012 à 18 h 57 min +

                                +

                                Mille mercis et mille félicitations pour cette fiche technique si pédagogue.

                                +

                                J’espère que le partiels se passent plus que parfait !!

                                +

                                J’ai gardé l’url de la page pour réparer mon écran dans un petit mois : j’espère que la page soit toujours là ;-)

                                +

                                Merci encore.

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Maxime + · 5 mai 2012 à 12 h 31 min +

                                +

                                Bonjour HugoPoi!

                                +

                                Merci pour toutes vos infos et votre topic, je voulais avoir quelques précisions sur les condos à changer pour samsung 2232bw, je veux passer commande mais j’ai un problème avec les dimensions des condos, si vous pouvez m’informer de ce que je pourrais acheter car il y a trop de références. En vous remerciant A+ Maxime

                                + +
                                +
                                +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  +

                                  + HugoPoi + · 14 juin 2012 à 22 h 56 min +

                                  +

                                  N’importe quel condensateur polarisé avec des caractéristiques proches devrait marché.

                                  + +
                                  +
                                  + +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + gaubjezj + · 14 juin 2012 à 22 h 32 min +

                                +

                                Merci pour le tuto qui m’a bien aidé.
                                +J’ai utilisé un fer de 40 W avec une panne fine et
                                +une pompe à dessouder et j’ai retiré les condensateurs sans problème.
                                +Merci encore (3€40 pour le dépannage).

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + DragonTribal + · 2 juillet 2012 à 12 h 02 min +

                                +

                                super merci pour manifique tuto.
                                +Est-il possible de changer les 5 condensateurs 820uF 25V par des 1000uF 50V? car moi mes 5 condensateurs sont presque HS ;-)

                                +

                                Cordialement

                                + +
                                +
                                +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  +

                                  + HugoPoi + · 2 juillet 2012 à 12 h 25 min +

                                  +

                                  Oui je penses que ça marchera étant donné que c’est des valeurs plus grandes.

                                  + +
                                  +
                                  + +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + FRED + · 11 juillet 2012 à 19 h 11 min +

                                +

                                Bravo, MERCI.
                                +Je n’ai encore rien fait…mais j’ai le même problème, et tu me donnes la solution.
                                +Super.

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + daninpet + · 31 août 2012 à 10 h 10 min +

                                +

                                Merci mille fois!

                                +

                                J’avais ce problème, et j’ai emmener la photo des trucs a remplacer chez le réparateur du coin et voila!! Ça m’a coûté 7 Euros (mais j’habite en Thaïlande)

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + moi + · 15 novembre 2012 à 15 h 25 min +

                                +

                                super mon 2232bw vient de lâcher, les 3 + 1 condos sont gonflés j ai trouvé un 330 en 35v qui traîné sur un écran mort et j’ai commander 5 1000uf 35v sur ebay pour moins de 3 dollars, ca devrait le faire j’espere j’attend d’être livré merci! par contre j’ai qu’un gros pistolet a soudure et un gros fil d’étain, c’est pas évident mais bon ca le fait quand même =)

                                + +
                                +
                                +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  +

                                  + moi + · 7 décembre 2012 à 9 h 33 min +

                                  +

                                  parfait je vient de recevoir les condos; j ai meuler la panne du fer a souder pour la tailler en mine de crayon et j ai reussi a les souder facilement ils étaient un peu plus gros mais ca passe tout juste, mais attention ne pas prendre des plus gros! l écran fonctionne nickel maintenant.

                                  + +
                                  +
                                  + +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Croco + · 19 janvier 2013 à 18 h 39 min +

                                +

                                Je souhaiterai savoir si tu as utilisé un fer à souder bien précis étant donné que la carte est une multi couche.
                                +Merci

                                + +
                                +
                                + + +
                                + +
                                +
                                +
                                +
                                +

                                + momo + · 10 juin 2013 à 13 h 15 min +

                                +

                                slut je voudrai savoir ou trouvé les condansateur a changer sur mon ecran qui clignote

                                + +
                                +
                                + + +
                                + +
                                +
                                +
                                +
                                +

                                + lokmane + · 5 juillet 2013 à 16 h 08 min +

                                +

                                merci j’avais un ecran rouge ! et c’etais la tresse qui relie mon ecran votre page m’a aider a l’ouvrir et a le reparer merci bien

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + ML + · 21 août 2013 à 19 h 11 min +

                                +

                                Merci ! Ecran réparé. Halte à l’obsolescence programmée.

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + raymond + · 31 octobre 2013 à 13 h 20 min +

                                +

                                ai vu votre vidéo et les explications pour la reparation de mon écran , apparemment le méme probléme l écran passe au noir apres quelque seconde , j ai vu un le condensateur en bas a gauche gonflé , je l ai fait changé (10€) les autre condensateur étant toujour bon d après la personne qui me l a changé , mais j ai toujour le méme probléme cela peut il venir de la carte video a gauche ?

                                + +
                                +
                                +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  +

                                  + HugoPoi + · 20 décembre 2013 à 12 h 27 min +

                                  +

                                  Si la led bleu du bouton power s’éteint aussi c’est un problème d’alimentation sinon c’est plus compliqué et ça peut provenir de condensateurs sur la partie vidéo. Changé tous les plus gros condensateurs sur la partie alimentation pourrait être un bon début même si ils ne paraissent pas endommagé.

                                  + +
                                  +
                                  + +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + damien + · 4 novembre 2013 à 0 h 29 min +

                                +

                                bonjour,

                                +

                                j’ai des crasses coincées entres l’écran et le truc juste derrière, est ce qu’on sais les enlever en démontant la dalle ?

                                + +
                                +
                                +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  +

                                  + HugoPoi + · 20 décembre 2013 à 12 h 28 min +

                                  +

                                  Je ne sais si cette partie de la dalle est démontable, je penses que c’est collé mais vous pouvez essayer.

                                  + +
                                  +
                                  + +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + mac + · 1 décembre 2013 à 17 h 30 min +

                                +

                                Merci HugoPoi, avec ces excellents conseils et tuto vidéo, mon écran est reparti pour une nouvelle vie.
                                +Pour les composants, si vous êtes sur Paris ou proche. La boutique RAM électroniques est une bonne adresse, 138 bd Diderot 75012 Paris (Place de la Nation).

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Bouddhid + · 16 janvier 2014 à 19 h 21 min +

                                +

                                Merci beaucoup pour ces conseils ! J’étais à 2 doigts de jeter mon écran, le voilà comme neuf pour moins de 5€ ! Vive la bricole !

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Vincent + · 17 mai 2014 à 16 h 45 min +

                                +

                                Alors là merci.

                                +

                                Pour ce post, les photos, la vidéo, tout y est.

                                +

                                J’ai démonté l’écran assez vite, enlevé la carte, regarder quel condensateurs étaient gonflés,(il y en avaient 4), un magasin d’électronique sur lyon et une heure de démontage, soudure, remontage plus tard, voilà, c’est tout beau.
                                +Ca ne clignote plus, ça s’allume comme avant, comme neuf.

                                +

                                Et dire que j’allais jeter cet écran et claquer 350 euros pour un neuf…

                                +

                                Coût de l’opération pour 4 condensateurs, du fil d’étain 7 euros.

                                +

                                Je précise que je n’avais jamais fais de soudure sur composant électronique auparavant.
                                +Comme quoi cette opération de réparation est à la portée de tous.

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Julot + · 6 juillet 2014 à 13 h 49 min +

                                +

                                Site vraiment détaillé et très claire. J’ai pu dépanner mon écran avec succès. Merci beaucoup pour ces précieuses explications.

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + PaniK31 + · 29 juillet 2014 à 9 h 21 min +

                                +

                                Pas besoin d’une grosse puissance pour le fer, il faut au préalable gratter le vernis sur l’étain afin de pouvoir le faire fondre plus facilement

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + R211_IP-45130B + · 20 août 2014 à 14 h 04 min +

                                +

                                Bonjour à tous,

                                +

                                Une âme charitable peut-elle me communiquer ce qui est gravé sur la résistance CMS R211 de la carte d’alimentation/inverter IP-45130B qui équipe le SAMSUNG 2232BW ? Cette résistance a pris un coup de tournevis et je n’arrive pas à déterminer sa valeur de résistance car son marquage est effacé et comme le composant est abimé la mesure à l’ohmmètre indique l’infinie.

                                +

                                Merci par avance.

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + roger + · 24 octobre 2014 à 17 h 21 min +

                                +

                                Ca refonctionne après échange de 4 condensateurs :
                                +-un 330uf25v remplacé à l’identique.
                                +-trois 820uf25v remplacés par 1000uf25v.
                                +Le tout pour quelques €. Le plus dur était le dessoudage, la tresse n’était pas très efficace contrairement à la pompe.
                                +Grand merci à HugoPoi.

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Max + · 26 février 2015 à 16 h 28 min +

                                +

                                ENORME MERCI!! J’ai réparé mon écran en 20mn pour 3,50€, il était à 2 doigts de partir à la déchetterie. Ca faisait des mois qu’il clignotait, et l’allumage mettait parfois plus d’une demi heure. J’ai changé 5 condos 820uf25v et 1 330uf25v, par exactement les mêmes en neuf, et là il démarre au quart de tour! Ca fait plaisir! :)

                                + +
                                +
                                +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  +

                                  + rocco michelle + · 7 octobre 2015 à 10 h 16 min +

                                  +

                                  Bonjour je ne sais si vous verrez mon message mais je tente…je cherche quelqu’un qui accepterait de changer mes condensateurs sur mon samsung, les réparateurs me demandent 70 à 80 euros et encore ils n’ont pss envie de le faire et me disent d’acheter un nouvel écran. j’aurais bien tenter mais je n’ai pas de matériel et j’ai lu que les condo pouvaient être très dangereux s’ils avaient de la charge alors j’ai la trouille de bidouiller pq je n’y connais rien. si vous êtes de lyon acccepteriez vous de changer mes condensateurs pour 45 euros? merci de votre réponse.

                                  + +
                                  +
                                  + +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + lecakeseb + · 27 juillet 2015 à 15 h 26 min +

                                +

                                Bonjour,

                                +

                                J’ai utilisé la vidéo pour démonter mon écran afin de le nettoyer de 4 bêtes d’orage infiltrés entre le premier écran (noir) et la dalle (blanche) de mon samsung SyncMaster 2232W

                                +

                                Petits conseils afin de modérer ce que j’ai pu voir dans cette vidéo :

                                +

                                0 : aspirez, nettoyez l’extérieur de l’écran avant de l’ouvrir et nettoyez la table qui vous servira d’atelier, pour éviter les poussières qui s’infiltreront forcément plus tard si vous ne le faites pas…
                                +1 : pour ouvrir, utilisez plutôt un couteau à enduire pour la première partie (le cadre). Vous n’abîmerez ainsi pas du tout l’écran. Soyez patients, ne forcez pas ! ça viendra doucement, mais ça viendra. Il m’a fallu à peine 10 minutes, sans détériorer l’écran, sans le griffer… Il est encore nickel !
                                +2 : attention à ne pas déconnecter les fils reliant le cadre à la carte. Inutile pour simplement nettoyer l’écran.
                                +3 : pour séparer les deux éléments de la dalle entre lesquels les bêtes se sont infiltrées, les doigts suffisent, pas besoin d’outils qui viendraient les endommager. La dalle blanche reste à l’horizontale, l’écran noir sera tenu à la verticale.
                                +4 : utiliser un chiffon doux ne peluchant pas pour enlever les bêtes (faites-vous aider de quelqu’un qui les enlèvera pendant que vous tenez l’écran extérieur en position verticale).
                                +5 : repositionnez la colle d’étanchéité qui aurait pu se déplacer, avant de repositionner les deux écrans.
                                +6 : commencer par refermer par le bas de l’écran (sinon les éléments de réglage situés au bas de l’écran – luminosité, contraste,…- ne se replaceront pas correctement).
                                +7 : Une fois l’écran refermé, j’ai appliqué un peu de « barrage aux insectes », avec un chiffon à l’arrière de mon écran en insistant surtout sur les bouches d’aération par lesquelles les maudites bestioles ont du s’infiltrer. En espérant ne pas avoir à ouvrir !

                                +

                                Bon courage à vous !

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Michel Jousserandot + · 20 janvier 2017 à 20 h 41 min +

                                +

                                Merci pour les conseils au démontage.
                                +J’avais un problème un peu différent :l’écran ne s’allumait plus du tout. Avec un copain beaucoup plus malin que moi, on a détecté 2 fusibles dont l’un était fichu. On l’a remplacé par un petit fil de cuivre. Et tout a remarché comme avant.
                                +Il faut surtout faire attention quand on teste la partie haute tension
                                +Michel.

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Crec + · 14 juillet 2017 à 10 h 20 min +

                                +

                                Bonjour. Très bons conseils avertis. Merci beaucoup.
                                +Peut-on avoir les mêmes conseils pour un écran BX2250.
                                +Merci par avance.
                                +Crec

                                + +
                                +
                                +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  +

                                  + HugoPoi + · 6 août 2017 à 14 h 03 min +

                                  +

                                  J’ai pas de BX2250 donc dans le détails non mais si c’est les même symptômes ça doit la même procédure.

                                  + +
                                  +
                                  + +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Ferronnier + · 10 août 2017 à 17 h 42 min +

                                +

                                Un grand merci !
                                +J’ai changé tous les condensateurs de la partie alimentation de la carte, en déportant certains qui n’avaient pas le même format qu’à l’origine, et ça tourne nickel !

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Nours + · 1 décembre 2017 à 15 h 17 min +

                                +

                                Ca fait des années que j’ai cet article enregistré dans un coin, en nourrissant l’espoir d’avoir un jour le courage de réparer ce foutu écran… Après plus de cinq ans c’est chose faite \o/
                                +Un giga, hypra, immense merci pour ce tutoriel tellement bien expliqué et facile d’accès (je n’avais pas touché à un fer à souder depuis… Oh boy 15 ans déjà).
                                +Après une longue pause, l’écran reprend du service… Jusqu’à la prochaine panne /o/

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Alex + · 11 août 2018 à 13 h 28 min +

                                +

                                Quelqu’un sait qui pourrait me le faire svp j ai le même problème mais aucun matériel

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + David + · 5 février 2019 à 21 h 06 min +

                                +

                                Merci Hugo pour ce tuto qui m’a déjà servi en 2013 et qui va me resservir aujourd’hui car mon 2ème 2232bw commence à avoir les mêmes symptômes.

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + yvan + · 23 novembre 2019 à 17 h 14 min +

                                +

                                Bonjour
                                +j’ai tenté de changer le condensateur qui avait l’air naze mais ça n’a pas marché … toujours le bouton bleu allumé, l’écran est reconnu par Windows 10 même si l’écran est éteint
                                +grâce au service manuel de l’écran fourni plus haut, j’ai vérifié les tensions jusque sur la carte de la dalle et elles sont correctes, ainsi que sur la carte elle-même, tout est ok, donc je pense que ce n’est plus un problème de condensateur
                                +pour les fusibles, ils ressemblent plutôt à des composants qu’à de simple fusibles, mais comme j’ai les bonnes tension, je ne pense pas que ça vienne de là
                                +j’ai bien peur que ce soit la dalle qui soit naze ? quelqu’un a t il des idées supplémentaires avant que je le jette avec grand regret (c’est un 2032bw, mais c’est la même chose, même si ma carte électronique est un peu différente car plus récente
                                +merci d’avance pour vos conseils

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + yvan + · 24 novembre 2019 à 17 h 26 min +

                                +

                                finalement j’ai trouvé, c’est un petit fusible vert qui ressemble à une résistance mais tout vert avec écrit 4A LF qui assure l’alimentation de la dalle.
                                +En le shuntant, mon écran a retrouvé l’image.
                                +après enquête il s’agit d’un fusible pico de 4ampères de chez little fuse, pas du tout évident à trouver
                                +Résolu !

                                + +
                                +
                                + +
                                +
                                +

                                + Reflow Dell 1546 | HugoPoi + · 22 août 2016 à 16 h 09 min +

                                +

                                […] « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable de marque Dell un 1546 pour être précis. Encore […]

                                + +
                                +
                                + +
                                +
                                +

                                + Reflow Dell Inspiron 1546 – HugoPoi + · 23 juin 2017 à 23 h 18 min +

                                +

                                […] d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un […]

                                + +
                                +
                                + +
                                +
                                +
                                +

                                Répondre à HugoPoi Annuler la réponse

                                Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                                +
                                +
                                +

                                + +

                                +
                                +
                                +
                                +
                                +
                                +
                                + +
                                +
                                +
                                +
                                +
                                +
                                + + +
                                + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/ed096bdf40078e218b67721a63b11235f2f010f0.00000652.css b/www/.content.EZtzwPjb/html/ed096bdf40078e218b67721a63b11235f2f010f0.00000652.css new file mode 100644 index 0000000..8043bbf --- /dev/null +++ b/www/.content.EZtzwPjb/html/ed096bdf40078e218b67721a63b11235f2f010f0.00000652.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;background:#fff;border:1px +solid #f00;font-size:10pt;width:280px;padding:2px}span.wpcf7-not-valid-tip-no-ajax{color:#f00;font-size:10pt;display:block}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/ed523de38ca681a433c03aed8854e13ec828ec4a.00000623.css b/www/.content.EZtzwPjb/html/ed523de38ca681a433c03aed8854e13ec828ec4a.00000623.css new file mode 100644 index 0000000..fe440fe --- /dev/null +++ b/www/.content.EZtzwPjb/html/ed523de38ca681a433c03aed8854e13ec828ec4a.00000623.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;background:#fff;border:1px +solid #f00;font-size:10pt;width:280px;padding:2px}span.wpcf7-not-valid-tip-no-ajax{color:#f00;font-size:10pt;display:block}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/ed5cabd2f0ee715392d5afc9f78f2b586b4ade9c.00000299.html b/www/.content.EZtzwPjb/html/ed5cabd2f0ee715392d5afc9f78f2b586b4ade9c.00000299.html new file mode 100644 index 0000000..7f5bc22 --- /dev/null +++ b/www/.content.EZtzwPjb/html/ed5cabd2f0ee715392d5afc9f78f2b586b4ade9c.00000299.html @@ -0,0 +1,388 @@ + + + + + + + Hadopi – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                                +
                                +
                                +
                                + +
                                +
                                +
                                +
                                +
                                +

                                SOPA, PIPA, pipeau et plein d’autre

                                Bonsoir à tous, En ce jour, nous marquons une journée de silence sur les Internets contre les lois liberticides qui entravent la liberté d’expression. Comme vous pouvez le savoir, moi, petit blogueur, je ne représente qu’un petit atome dans la marre au canard des Internets, donc j’ai décidé de ne Lire la suite…

                                +
                                Par HugoPoi, il y a

                                Stockage numérique pour tous

                                Ce blog parle très technique comme en témoigne mon dernier article mais aujourd’hui je vais faire un petit topo sur les disques-dur ou plutôt le stockage de vos données numériques en général. Dans cet article je vais m’adresser à tout le monde de papi-geek à tante-photo et pas uniquement à tous les geeks.

                                +

                                Je me suis aperçu, dans mon entourage proche mais aussi sur des forums ou je traîne parfois, que beaucoup n’ont aucune notion sur comment est stockée l’information sur nos ordinateurs et ce qu’il y a dans un disque USB que l’on achète à la Fnac pour ne citer que ces abrutis.

                                +

                                Retour en arrière, le fameux disque-dur que tout le monde utilise (peut-être sans le savoir) a été inventé en 1953 par IBM. Les premiers modèles avaient une capacité de quelques mégaoctets pour un prix de 10 000$. Aujourd’hui, il existe des modèles allant jusqu’à plus de 2 Téraoctets de capacité soit un million de fois plus.

                                +

                                Le disque-dur stocke les informations de façon magnétique sur des plateaux qui ressemblent à des CDs qui sont en rotation. Des petits bras viennent se positionner au dessus des disques pour écrire/lire les informations. ça ressemble à cela :

                                +

                                +

                                (suite…)

                                +

                                Download-Day

                                Bon voilà, je vais officialiser ma participation au D-Day organisé par LinuxManua, en date du 1er novembre 2010. Le but de l’opération étant de télécharger 20 Go et cela uniquement sur les réseaux Peer to Peer de préférence pas anonyme : Edonkey2000, Gnutella, Bitorrent, etc. Alors comme je suis joueur, je Lire la suite…

                                +

                                Hello World

                                Bienvenue sur mon blog, voila c’est fait, je voulais depuis un petit moment ouvrir un blog pour m’ exprimer sur l’ actualité geek et raconter ma vie parler technique. Alors j’annonce les couleurs ici je vais pas parler coupe de cheveux ni sous-vêtement mais des sujets orientés internet, réseaux, développement et politique #hadopi #fail.

                                +
                                +
                                + +
                                +
                                +
                                +
                                + +
                                +
                                + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/edcd54fdfacbd2a05852ee70571978d4fb711e4d.00000519.html b/www/.content.EZtzwPjb/html/edcd54fdfacbd2a05852ee70571978d4fb711e4d.00000519.html new file mode 100644 index 0000000..5c6625e --- /dev/null +++ b/www/.content.EZtzwPjb/html/edcd54fdfacbd2a05852ee70571978d4fb711e4d.00000519.html @@ -0,0 +1,372 @@ + + + + + + + stockage – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                                +
                                +
                                +
                                + +
                                +
                                +
                                +
                                +
                                +

                                Vos données sauvegardées

                                Dans le monde d’aujourd’hui, le numérique est omniprésent, tout ce que vous faites est ou peut être numérisé. Qu’il s’agisse de vos photos de vacances, de votre CV ou votre liste de course, vos contacts et tous les documents que vous utilisez pour travailler sont surement numériques. L’informatique est partout et aide à gérer votre comptabilité, vos contacts pro ou perso et même bientôt votre frigo. Quand je pense qu’il y a 10 ans, beaucoup de professions géraient leur base clients avec des fiches papiers, et que ça existe encore… Pourtant, c’est une perte de temps importante de gérer des clientèles de plus 100 personnes, trier les fiches à la main dans l’ordre alphabétique. Imaginez devoir sortir tous les clients que vous n’avez pas contacté depuis 2 mois, même avec uniquement 100 personnes vous allez y passer au moins une 1 heure avant que votre liste soit faite, avec une base de données, cela est fait en moins d’1 seconde. Tous ça pour dire que l’informatique facilite grandement votre vie jusqu’au jour où ça tombe en panne ! J’ai donc quelques propositions à vous faire concernant la protection de vos données. (suite…)

                                +
                                Par HugoPoi, il y a

                                Stockage numérique pour tous

                                Ce blog parle très technique comme en témoigne mon dernier article mais aujourd’hui je vais faire un petit topo sur les disques-dur ou plutôt le stockage de vos données numériques en général. Dans cet article je vais m’adresser à tout le monde de papi-geek à tante-photo et pas uniquement à tous les geeks.

                                +

                                Je me suis aperçu, dans mon entourage proche mais aussi sur des forums ou je traîne parfois, que beaucoup n’ont aucune notion sur comment est stockée l’information sur nos ordinateurs et ce qu’il y a dans un disque USB que l’on achète à la Fnac pour ne citer que ces abrutis.

                                +

                                Retour en arrière, le fameux disque-dur que tout le monde utilise (peut-être sans le savoir) a été inventé en 1953 par IBM. Les premiers modèles avaient une capacité de quelques mégaoctets pour un prix de 10 000$. Aujourd’hui, il existe des modèles allant jusqu’à plus de 2 Téraoctets de capacité soit un million de fois plus.

                                +

                                Le disque-dur stocke les informations de façon magnétique sur des plateaux qui ressemblent à des CDs qui sont en rotation. Des petits bras viennent se positionner au dessus des disques pour écrire/lire les informations. ça ressemble à cela :

                                +

                                +

                                (suite…)

                                +
                                +
                                + +
                                +
                                +
                                +
                                + +
                                +
                                + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/ee01dddeebce624740fee61d8b3530b566916d2f.00000654.css b/www/.content.EZtzwPjb/html/ee01dddeebce624740fee61d8b3530b566916d2f.00000654.css new file mode 100644 index 0000000..8043bbf --- /dev/null +++ b/www/.content.EZtzwPjb/html/ee01dddeebce624740fee61d8b3530b566916d2f.00000654.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;background:#fff;border:1px +solid #f00;font-size:10pt;width:280px;padding:2px}span.wpcf7-not-valid-tip-no-ajax{color:#f00;font-size:10pt;display:block}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/ee0616f6f19439cb3bd874c6b49b86663e8f1b3f.00000458.html b/www/.content.EZtzwPjb/html/ee0616f6f19439cb3bd874c6b49b86663e8f1b3f.00000458.html new file mode 100644 index 0000000..87547fb --- /dev/null +++ b/www/.content.EZtzwPjb/html/ee0616f6f19439cb3bd874c6b49b86663e8f1b3f.00000458.html @@ -0,0 +1,371 @@ + + + + + + + netgear – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + +
                                +
                                +
                                +
                                + +
                                +
                                +
                                +
                                +
                                +

                                L’homme du milieu avec DD-WRT

                                J’avais besoin de faire un MITM entre un ONT et la box SFR NB6 pour pouvoir capturer les identifiants PPP pour le tunnel ipv6. Je n’avais pas de hub ou de machine avec 2 interfaces Ethernet pour pouvoir le faire de façon passive sans faire du spoofing ARP. Et je n’avais pas envie d’envoyer des trames ARP sur l’infrastructure réseau SFR. J’avais un Netgear WNR3500Lv1 dans un coin, je me suis dit qu’il y avais moyen d’utiliser ce genre de routeur pour faire du tapping passif.

                                +

                                (suite…)

                                +
                                Par HugoPoi, il y a
                                +
                                + +
                                +
                                +
                                +
                                + +
                                +
                                + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/ee4bdb28eb15a9dc81de33608a38b3c6a5583471.00000280.html b/www/.content.EZtzwPjb/html/ee4bdb28eb15a9dc81de33608a38b3c6a5583471.00000280.html new file mode 100644 index 0000000..13fc5e0 --- /dev/null +++ b/www/.content.EZtzwPjb/html/ee4bdb28eb15a9dc81de33608a38b3c6a5583471.00000280.html @@ -0,0 +1,370 @@ + + + + + + + Développement – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                                +
                                +
                                +
                                + +
                                +
                                +
                                +
                                +
                                +
                                +
                                + +
                                +
                                +
                                +
                                + +
                                +
                                + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/ee7836b0a85ff3764aaf18e1e2acbe35247326be.00000188.html b/www/.content.EZtzwPjb/html/ee7836b0a85ff3764aaf18e1e2acbe35247326be.00000188.html new file mode 100644 index 0000000..a115f67 --- /dev/null +++ b/www/.content.EZtzwPjb/html/ee7836b0a85ff3764aaf18e1e2acbe35247326be.00000188.html @@ -0,0 +1,318 @@ + + + + + + + + SAMSUNG – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                +
                                +
                                +
                                +
                                +
                                +
                                +
                                + + + +

                                +
                                +
                                +
                                +
                                +

                                + 0 commentaire

                                +
                                +
                                +
                                +

                                Laisser un commentaire

                                Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                                +
                                +
                                +

                                + +

                                +
                                +
                                +
                                +
                                +
                                +
                                +
                                +
                                +
                                +
                                +
                                +
                                +
                                + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/ee78435770830af0ae7a8ce2b0723af27523676b.00001318.json b/www/.content.EZtzwPjb/html/ee78435770830af0ae7a8ce2b0723af27523676b.00001318.json new file mode 100644 index 0000000..4507170 --- /dev/null +++ b/www/.content.EZtzwPjb/html/ee78435770830af0ae7a8ce2b0723af27523676b.00001318.json @@ -0,0 +1 @@ +{"version":"1.0","provider_name":"HugoPoi","provider_url":"http:\/\/blog.hugopoi.net","author_name":"HugoPoi","author_url":"http:\/\/blog.hugopoi.net\/author\/hugopoi\/","title":"Live","type":"rich","width":600,"height":338,"html":"
                                Live<\/a><\/blockquote>\n + + + + + + + diff --git a/www/.content.EZtzwPjb/html/ef4354a3c7391df1be20afefbf594e4b390e6559.00001246.js b/www/.content.EZtzwPjb/html/ef4354a3c7391df1be20afefbf594e4b390e6559.00001246.js new file mode 100644 index 0000000..78f9c64 --- /dev/null +++ b/www/.content.EZtzwPjb/html/ef4354a3c7391df1be20afefbf594e4b390e6559.00001246.js @@ -0,0 +1 @@ +!function(a,b){"use strict";function c(){if(!e){e=!0;var a,c,d,f,g=-1!==navigator.appVersion.indexOf("MSIE 10"),h=!!navigator.userAgent.match(/Trident.*rv:11\./),i=b.querySelectorAll("iframe.wp-embedded-content");for(c=0;c1e3)g=1e3;else if(~~g<200)g=200;f.height=g}if("link"===d.message)if(h=b.createElement("a"),i=b.createElement("a"),h.href=f.getAttribute("src"),i.href=d.value,i.host===h.host)if(b.activeElement===f)a.top.location.href=d.value}else;}},d)a.addEventListener("message",a.wp.receiveEmbedMessage,!1),b.addEventListener("DOMContentLoaded",c,!1),a.addEventListener("load",c,!1)}(window,document); \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/ef47bbb7282c916946efa780cfc199b6684e8d46.00001309.xml b/www/.content.EZtzwPjb/html/ef47bbb7282c916946efa780cfc199b6684e8d46.00001309.xml new file mode 100644 index 0000000..d9b25df --- /dev/null +++ b/www/.content.EZtzwPjb/html/ef47bbb7282c916946efa780cfc199b6684e8d46.00001309.xml @@ -0,0 +1,7 @@ + +1.0HugoPoihttp://blog.hugopoi.netHugoPoihttp://blog.hugopoi.net/author/hugopoi/Écran miraculé d'un Asus N53SNrich600338<blockquote class="wp-embedded-content"><a href="/2014/08/02/ecran-miracule-dun-asus-n53sn/">Écran miraculé d’un Asus N53SN</a></blockquote> +<script type='text/javascript'> +<!--//--><![CDATA[//><!-- + !function(a,b){"use strict";function c(){if(!e){e=!0;var a,c,d,f,g=-1!==navigator.appVersion.indexOf("MSIE 10"),h=!!navigator.userAgent.match(/Trident.*rv:11\./),i=b.querySelectorAll("iframe.wp-embedded-content");for(c=0;c<i.length;c++){if(d=i[c],!d.getAttribute("data-secret"))f=Math.random().toString(36).substr(2,10),d.src+="#?secret="+f,d.setAttribute("data-secret",f);if(g||h)a=d.cloneNode(!0),a.removeAttribute("security"),d.parentNode.replaceChild(a,d)}}}var d=!1,e=!1;if(b.querySelector)if(a.addEventListener)d=!0;if(a.wp=a.wp||{},!a.wp.receiveEmbedMessage)if(a.wp.receiveEmbedMessage=function(c){var d=c.data;if(d.secret||d.message||d.value)if(!/[^a-zA-Z0-9]/.test(d.secret)){var e,f,g,h,i,j=b.querySelectorAll('iframe[data-secret="'+d.secret+'"]'),k=b.querySelectorAll('blockquote[data-secret="'+d.secret+'"]');for(e=0;e<k.length;e++)k[e].style.display="none";for(e=0;e<j.length;e++)if(f=j[e],c.source===f.contentWindow){if(f.removeAttribute("style"),"height"===d.message){if(g=parseInt(d.value,10),g>1e3)g=1e3;else if(~~g<200)g=200;f.height=g}if("link"===d.message)if(h=b.createElement("a"),i=b.createElement("a"),h.href=f.getAttribute("src"),i.href=d.value,i.host===h.host)if(b.activeElement===f)a.top.location.href=d.value}else;}},d)a.addEventListener("message",a.wp.receiveEmbedMessage,!1),b.addEventListener("DOMContentLoaded",c,!1),a.addEventListener("load",c,!1)}(window,document); +//--><!]]> +</script><iframe sandbox="allow-scripts" security="restricted" src="/2014/08/02/ecran-miracule-dun-asus-n53sn/embed/" width="600" height="338" title="« Écran miraculé d’un Asus N53SN » — HugoPoi" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" class="wp-embedded-content"></iframe> diff --git a/www/.content.EZtzwPjb/html/ef67df0f93bae8db01239ee6a11f4d70a673ab4d.00000217.html b/www/.content.EZtzwPjb/html/ef67df0f93bae8db01239ee6a11f4d70a673ab4d.00000217.html new file mode 100644 index 0000000..f209552 --- /dev/null +++ b/www/.content.EZtzwPjb/html/ef67df0f93bae8db01239ee6a11f4d70a673ab4d.00000217.html @@ -0,0 +1,586 @@ + + + + + + + + Reflow Dell Inspiron 1546 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                +
                                +
                                +
                                + +
                                +
                                +
                                +
                                +
                                +
                                +
                                +
                                Les choses n’ont pas beaucoup changé en terme d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un cadeau empoisonné de la belle-famille « Essaye de faire ce que tu peux pour récupérer mes photos, j’en rachèterais un ». Le pc portable en question était dans un état de mort certain.
                                +
                                +
                                Dell 1546

                                Dell Inspiron 1546

                                +

                                Après avoir récupérer le disque-dur encore en vie et les données sauvées, j’attaque le diagnostic déjà établie, une carte-mère hors service, mais le portable donnait encore des signes de vie. La DEL power s’allumait et l’initialisation de base se lançait car le lecteur de DVD faisait un bruit de démarrage classic. Par contre, aucune sorte d’affichage ne fonctionnait et il s’éteignait au bout de quelques secondes. J’ai enlever un à un les éléments pouvant poser problème : lecteur DVD, barrettes de RAM, carte wifi et disque-dur mais pas de changement à part le code d’erreur sans aucune barrette mémoire présente. En appuyant sur les touche de diagnostic ( TODO: Fn + Power) j’avais le code d’erreur 5 bip de fois de suite significatif d’une carte mère morte.J’avais découvert par hasard il y a quelques années les méthodes de « reflow » sans pour autant me renseigner plus que ça et sans vérifier la véracité des succès de cette méthode qui consiste à refondre les soudures cassées posant problèmes à l’aide d’un four.

                                +

                                La recette du Reflow

                                +

                                Ingrédients nécessaires

                                +
                                  +
                                • Une carte mère de pc en état de mort
                                • +
                                +
                                MOTHERBOARD

                                MOTHERBOARD

                                +

                                Outils nécessaires

                                +
                                  +
                                • Un four électrique avec thermostat électronique en °C, si possible avec réglage précis
                                • +
                                • Des tournevis pour mettre à nu la carte mère
                                • +
                                • De la feuille d’aluminium
                                • +
                                • Des supports pour maintenir la carte mère pendant la cuisson ( 1cm environ )
                                • +
                                • Un plat qui va au four.
                                • +
                                +
                                SAMSUNG

                                Four de reflow haut de gamme !

                                +

                                Préparation de la carte mère

                                +

                                Pré-requis générales : la carte mère fonctionne partiellement mais montre des signes de coma certain, dans mon cas un GPU sûrement dé-soudé. Aucunes brûlures n’étaient visibles et aucun composant n’étaient endommagés de façon visible. Si la carte mère présente des signes court-circuit visible le reflow n’a quasiment aucune chance de marcher.

                                +

                                Je commence par démonter le châssis pour en extraire la carte-mère, penser à aller voir sur un moteur de recherche les démontages vidéos correspondant à votre modèle. Vous pouvez également utiliser/rechercher le « service manual » de votre modèle pour aider au démontage. Une fois la carte-mère extraite, enlever la pile de sauvegarde ainsi que tous les éléments qui sont démontable (ex: support de connectiques, carte wifi, processeur). Enlever aussi les auto-collant plastique si c’est possible (Même si il y a peu de chance qu’ils fondent, ça évite d’imprégné la carte-mère de colle).

                                +

                                Prendre le plat et déposer une feuille d’aluminium au fond pour le protéger. Déposer des supports de façon à maintenir la carte mère par les trous prévu par votre châssis, elle devra reposer dessus. Votre carte est prête à être enfournée.

                                +

                                Le reflow

                                +
                                  +
                                1. Préchauffer votre four à 200°C.
                                2. +
                                3. Positionner une grille à mi-hauteur.
                                4. +
                                5. Une fois le four chaud enfourner votre carte mère.
                                6. +
                                7. Laisser cuire pendant 8 minutes.
                                8. +
                                9. Au bout de 8 minutes éteignez le four et ouvrir la porte.
                                10. +
                                11. Laisser refroidir porte ouverte pendant une bonne demi-heure sans toucher/bouger le gateau.
                                12. +
                                +

                                Le remontage

                                +

                                Remonter votre carte mère. Appuyer sur power et si vous avez de la chance le pc démarre comme si de rien n’était.

                                +

                                Retours

                                +

                                Le facteur « chance » ou degré de dommage impacte beaucoup le résultat d’un reflow. Ce reflow pour moi a été un succès, j’ai fait gagner 6 mois de répit mais le portable est retombé en panne :-(.

                                + + +
                                +
                                +
                                +
                                + +
                                +
                                +
                                +
                                +
                                +

                                + 0 commentaire

                                +
                                +
                                +
                                +

                                Laisser un commentaire

                                Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                                +
                                +
                                +

                                + +

                                +
                                +
                                +
                                +
                                +
                                +
                                + +
                                +
                                +
                                +
                                +
                                +
                                + + +
                                + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/efbed9e45ac1d2c6fc07b82c0d80628968a6dbc0.00000093.html b/www/.content.EZtzwPjb/html/efbed9e45ac1d2c6fc07b82c0d80628968a6dbc0.00000093.html new file mode 100644 index 0000000..08a5cb1 --- /dev/null +++ b/www/.content.EZtzwPjb/html/efbed9e45ac1d2c6fc07b82c0d80628968a6dbc0.00000093.html @@ -0,0 +1,492 @@ + + + + + + + + Vos données sauvegardées – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                +
                                +
                                +
                                + +
                                +
                                +
                                +
                                +
                                +
                                +

                                Dans le monde d’aujourd’hui, le numérique est omniprésent, tout ce que vous faites est ou peut être numérisé. Qu’il s’agisse de vos photos de vacances, de votre CV ou votre liste de course, vos contacts et tous les documents que vous utilisez pour travailler sont surement numériques. L’informatique est partout et aide à gérer votre comptabilité, vos contacts pro ou perso et même bientôt votre frigo. Quand je pense qu’il y a 10 ans, beaucoup de professions géraient leur base clients avec des fiches papiers, et que ça existe encore… Pourtant, c’est une perte de temps importante de gérer des clientèles de plus 100 personnes, trier les fiches à la main dans l’ordre alphabétique. Imaginez devoir sortir tous les clients que vous n’avez pas contacté depuis 2 mois, même avec uniquement 100 personnes vous allez y passer au moins une 1 heure avant que votre liste soit faite, avec une base de données, cela est fait en moins d’1 seconde. Tous ça pour dire que l’informatique facilite grandement votre vie jusqu’au jour où ça tombe en panne ! J’ai donc quelques propositions à vous faire concernant la protection de vos données.

                                +

                                Une seul règle à suivre : AUCUN SUPPORT DE STOCKAGE N’EST FIABLE A 100%

                                +

                                Déjà, premier point important, connaître l’endroit où sont stockées vos données. Le plus souvent, elles sont sur le disque dur de votre ou vos ordinateurs mais peuvent aussi être stockées en ligne comme c’est le cas pour vos emails ou votre Dropbox. Dans ces 2 derniers cas, il est plus dur de savoir où vos données sont réellement stockées, elles sont sur un ou plusieurs serveurs distants connectés à Internet. Pensez aussi à vos périphériques externes comme vos disques durs externes (je suis sûr que vous en avez …), vos baladeurs numériques, vos téléphones et clés USB, etc.

                                +

                                Une fois que vous avez identifié les différents endroits où sont stockées vos données, posez-vous 2 questions :

                                +
                                  +
                                1. Est-ce que vos données sont enregistrées à plusieurs endroits ? y a-t-il redondance ?
                                2. +
                                3. Qui peut accéder à vos données ?
                                4. +
                                +
                                Je vais prendre plusieurs exemples, le premier étant vos emails. Si vous utilisez un client mail, vérifiez que celui-ci n’efface pas vos emails quand vous les relevez, sinon le jour où votre ordinateur tombera en panne, vous perdrez tous vos emails. Utilisez plutôt le protocole IMAP qui permet de synchroniser votre client avec le serveur mail. Comme ça vos emails importants restent sur le serveur et même si le serveur tombe en panne, la majorité des prestataires sur Internet disposent d’une copie de sauvegarde de vos données (à vérifier dans les conditions d’utilisations de vos prestataires). Pour ce qui est de vos photos de vacances, si elles sont sur un disque dur externe, HONTE à vous si elles ne sont pas sauvegardées ailleurs.
                                +
                                Le disque dur externe est le truc le moins fiable que je connaisse car il est souvent déplacé, et cela augmente les risques de pannes et de chocs critiques. La solution la plus simple, c’est d’avoir 2 disques durs externes pour faire une copie, mais l’inconvénient est qu’ils ne sont pas synchronisés. La meilleur solution est un boitier contenant 2 disques durs avec une redondance automatique de type RAID (je n’en parlerais jamais assez !), une solution de ce type coûte aux alentours de deux fois le prix d’un disque externe. Cela fait assez cher, mais ce disque externe tombe généralement en panne au bout de 2 ans, à cause de ses transports répétitifs. Malheureusement, le prix du disque dur s’est envolé ces dernières semaines, dû aux inondations en Thaïlande, pays qui produit environ 30% du marché mondial. Cela va surement permettre aux SSD de s’imposer et ainsi en réduire le prix d’achat qui reste très élevé pour du stockage de données. Ce n’est donc pas trop le moment d’investir dans du disque dur ces temps-ci. Si vous comptez quand même le faire, vous pouvez récupérer les disques-dur que vous possédez déjà, vous pouvez démonter vos disques-dur externes et les placer dans un NAS.(Le Netgear Stora est trouvable pour 70€)
                                +
                                Moi, j’ai opté pour une solution plus conséquente au vu du nombre d’utilisateurs et de machines qui doivent faire des sauvegardes (voir Aventure Serveur). Si vous voulez en apprendre plus sur les NAS et à quoi ils peuvent servir chez vous, allez lire Pourquoi un NAS à la maison.
                                +
                                Pour ce qui est des supports optiques, type Blu-ray, DVD, CD c’est bien pour faire des sauvegardes supplémentaires de vos données les plus critiques en sachant que le prix au Go stocké est très cher comparé aux disques durs en plus d’être très lent. Ce type de support est moins fiable que des disques durs : rayures, détérioration des données dans le temps.
                                +
                                Une fois que vos données sont redondées, il reste deux problèmes à résoudre. Le premier est le lieu où sont stockées vos données, car si vous avez une redondance chez vous, imaginons vous vous faites cambrioler et que l’on vous vole votre NAS ou vos disques externes, vos données seront alors perdues et en plus dans la nature (c’est grave si vous avez votre sextape dessus, ou que vous travaillez à la DCRI). La solution pour ne pas perdre vos données c’est de les placer à deux endroits différents, les services de stockage en ligne peuvent être utilisés ou alors, vous pouvez placer une copie chez vos amis ou à votre bureau. Pour protéger les fuites en cas de vol, le chiffrement de vos données est la solution mais elle est complexe à mettre en œuvre, même pour un professionnel.
                                +
                                Enfin, le dernier point rejoint le fait de chiffrer les données, c’est le fait de gérer qui peut accéder à vos données. C’est ce que l’on appelle l’authentification, savoir qui accède à une ressource donnée. Le fait d’utiliser un NAS permet de créer des comptes utilisateurs, ce qui permet de gérer les documents de plusieurs personnes facilement. Si vos données sont accessibles via Internet, pensez à choisir vos mots de passe avec prudence.
                                +
                                J’espère vous avoir éclairé et vous avoir donné quelques pistes pour faire évoluer la façon dont vous stockez vos données.
                                +
                                @+ Sur les Internets
                                +
                                +
                                + +
                                +
                                +
                                +
                                +
                                +

                                + 0 commentaire

                                +
                                +
                                +
                                +

                                Laisser un commentaire

                                Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                                +
                                +
                                +

                                + +

                                +
                                +
                                +
                                +
                                +
                                +
                                + +
                                +
                                +
                                +
                                +
                                +
                                + + +
                                + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/efcb9ad54d58c979593db78e360c89caf9e85cf1.00000081.html b/www/.content.EZtzwPjb/html/efcb9ad54d58c979593db78e360c89caf9e85cf1.00000081.html new file mode 100644 index 0000000..6ac48a1 --- /dev/null +++ b/www/.content.EZtzwPjb/html/efcb9ad54d58c979593db78e360c89caf9e85cf1.00000081.html @@ -0,0 +1,497 @@ + + + + + + Démontage Asus U36 | HugoPoi + + + + + + + + + + + + + + + + + +
                                + +
                                +
                                +

                                Démontage Asus U36

                                + +
                                +
                                + +

                                J’ai acheté un petit SSD pour mettre dans mon U36 acheté il y a quelques mois, je n’ai pas trouvé de procédure de démontage sur Internet donc voici les photos de mon démontage.

                                +

                                1) Commencer par enlever toutes les vis et la trappe pour accéder à la RAM, puis déconnecter les deux connecteurs clavier et touchpad qui se situent juste à coté de la carte wifi.

                                +

                                2) Retourner le pc et à l’aide d’un petit tournevis plat, dé-clipser les petits clips sur tout le tour du pc. Vous pouvez maintenant enlever toute la partie supérieur.

                                +

                                +

                                3) Démontage Terminé :D

                                +

                                4) Galerie

                                + + +
                                +
                                +
                                + + +
                                + + +
                                  +
                                1. +
                                  + +
                                  +

                                  Salut Hugo,

                                  +

                                  Comment as tu fait pour déconnecter les deux connecteurs clavier et touchpad qui se situent juste à coté de la carte wifi ?

                                  +

                                  Merci d’avance,
                                  +John

                                  +
                                  + +
                                  +
                                    +
                                  • +
                                    + +
                                    +

                                    Désolé pour l’attente,

                                    +

                                    Il faut prendre un petit tournevis plat et relever les petites languettes au dessus des nappes de façon à la mettre à 90° par rapport à la carte mère.

                                    +
                                    + +
                                    +
                                  • +
                                  +
                                2. +
                                3. +
                                  +
                                  + leboulanger + +
                                  +
                                  +

                                  bonjour,
                                  +super ton tuto ! j’ai la m idée que toi à savoir mettre un ssd mais est ce que tu sais si çest du SATA 1 ou 2 ? concernant les connecteurs je ne l’ai situe pas du tout. est ce que tu pourrais ajoutait une photo stp ?
                                  +merci en ts cas pour la contribution

                                  +
                                  + +
                                  +
                                    +
                                  • +
                                    + +
                                    +

                                    Salut,
                                    +Pour le mode SATA c’est du 2. Après j’ai pas d’autre photo mais le connecteur il est situé juste au bout du disque sur la gauche.

                                    +
                                    + +
                                    +
                                  • +
                                  +
                                4. +
                                5. +
                                  +
                                  + Asus U36 et OCZ Vertex 3 la suite | HugoPoi - pingback on 15 mai 2012 at 3 h 39 min +
                                  +
                                  +
                                6. +
                                7. +
                                  + +
                                  +

                                  J’ai aussi démonté le mien pour mettre un ssd et il n’a plus jamais redémarré (même avec le disque dur initial) …
                                  +Un conseil, soyez très prudents !

                                  +
                                  + +
                                  + +
                                8. +
                                9. +
                                  + +
                                  +

                                  Emiso tu es un boulet

                                  +
                                  + +
                                  + +
                                10. +
                                11. +
                                  + +
                                  +

                                  Mon U36 avec un SSD Crucial M4 et une carte Intel Centrino n-6230 à la place de la n-100… que du bonheur.

                                  +

                                  Merci pour le tuto bien utile.

                                  +
                                  + +
                                  +
                                12. +
                                13. +
                                  + +
                                  +

                                  merci pour ce tuto; a noter un truc pour ne pas perdre les vis et savoir où les replacer:

                                  +

                                  http://fr.slideshare.net/stepmond/remplacement-ecran-sony-vaio?ref=http://www.pcsoleil.fr/ecran-pc-portable-sony-vaio-casse/

                                  +

                                  3eme diapo

                                  +
                                  + +
                                  +
                                14. +
                                15. +
                                  + +
                                  +

                                  Can you send me a close up picture of both sides of the U36JC I/O board? It would be nice if you could give me also the resistor/capacitor values. I need to connect my SATA hard drive, but the board itself is very expensive. Do you think I can solder the SATA wires to a cable and plug that to the hard drive?

                                  +
                                  + +
                                  +
                                    +
                                  • +
                                    + +
                                    +

                                    I don’t want to reopen my laptop just for take picture. I don’t know if there are any out pins to solder a SATA connector but in Intel driver menu on Windows a port with no-connection appear.

                                    +
                                    + +
                                    +
                                  • +
                                  +
                                16. +
                                17. +
                                  + +
                                  +

                                  Hello , j’ai également cet Asus et comme tout le monde je pense, bien tenté de remplacer le disque dur de base par un ssd ^^.
                                  + Sur la première image de ton petit tuto, tu sembles montrer des emplacements vis sous les antidérapants.. ca me semble étrange ;p. Je voulais savoir si ceux si ne risquaient pas de s’abîmer (et du coup s’ils se remettaient également facilement).
                                  + Si tu passe par là, merci de la réponse!

                                  +
                                  + +
                                  +
                                    +
                                  • +
                                    + +
                                    +

                                    J’ai pu décoller et recoller sans problème les patins antidérapants. Mais à la rigueur prévoir du double-face pour remplacement.

                                    +
                                    + +
                                    +
                                  • +
                                  +
                                18. +
                                19. +
                                  + +
                                  +

                                  Oh my goodness! Incredible article dude! Thank
                                  +you so much, However I am going through issues with your RSS.
                                  +I don’t know why I am unable to subscribe to it. Is there anyone else getting the same RSS problems? Anybody who knows the answer will you kindly respond? Thanks!!

                                  +
                                  + +
                                  + +
                                20. +
                                + +
                                +

                                Répondre à HugoPoi ¬
                                Annuler la réponse

                                +
                                +

                                + +

                                +

                                NOTE - Vous pouvez utiliser les éléments et attributs HTML tags and attributes:
                                <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

                                + + + +

                                +

                                +
                                +
                                +

                                Trackbacks and Pingbacks:

                                + +
                                +
                                +
                                +
                                + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/f05d67142e39368634bb3ca3d2dfe24c32e298d2.00000435.html b/www/.content.EZtzwPjb/html/f05d67142e39368634bb3ca3d2dfe24c32e298d2.00000435.html new file mode 100644 index 0000000..4a4d720 --- /dev/null +++ b/www/.content.EZtzwPjb/html/f05d67142e39368634bb3ca3d2dfe24c32e298d2.00000435.html @@ -0,0 +1,364 @@ + + + + + + + live – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                                +
                                +
                                +
                                + +
                                +
                                +
                                +
                                +
                                +
                                +
                                + +
                                +
                                +
                                +
                                + +
                                +
                                + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/f07a2d1ecbf4d48d7dc3aef65f8667c7e52a1c6a.00000150.html b/www/.content.EZtzwPjb/html/f07a2d1ecbf4d48d7dc3aef65f8667c7e52a1c6a.00000150.html new file mode 100644 index 0000000..366cb37 --- /dev/null +++ b/www/.content.EZtzwPjb/html/f07a2d1ecbf4d48d7dc3aef65f8667c7e52a1c6a.00000150.html @@ -0,0 +1,531 @@ + + + + + + + + Redimensionner une partition NTFS – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                +
                                +
                                +
                                + +
                                +
                                +
                                +
                                +
                                +
                                +

                                J’ai un serveur sous Debian et je dois redimensionner une partition NTFS sur un disque de 2 To. Je me suis inspiré de cet article http://ubuntuforums.org/showthread.php?t=1244058.

                                +

                                1) Ntfsprogs

                                +

                                Première étape installer ntfsprogs qui contient l’outil ntfsresize.

                                +
                                aptitude install ntfsprogs
                                +

                                2) Vérifier la partition et le système de fichier

                                +
                                ntfsresize -i /dev/sde1
                                +

                                Puis

                                +
                                ntfsresize --no-action --size 19000M /dev/sde1
                                +

                                3) Modifier votre système de fichier

                                +

                                Cette opération est dangereuse et consiste déplacer toutes les données au début de votre partition NTFS à la taille demandé. C’est une procédure de défragmentation mais plus poussé. Vous ne pourrez pas réduire plus que la taille des données présente sur la partition. La commande suivante compactera les données de la partition sur les 19 premiers Gigaoctets. Si vous travaillez à distance depuis un terminal SSH LANCER CETTE COMMANDE DANS UN SCREEN car elle prend environ 4 heures pour déplacer 600Go.

                                +
                                ntfsresize --size 19000M /dev/sde1
                                +

                                4) Redimensionner la partition avec fdisk

                                +
                                root# fdisk /dev/sde
                                +     Command (m for help): p
                                +     Disk /dev/sde: 255 heads, 63 sectors, 2480 cylinders
                                +     Units = cylinders of 16065 * 512 bytes
                                +     Device Boot    Start       End    Blocks   Id  System
                                +     /dev/sde1   *         1      2479  19912536    7  HPFS/NTFS
                                +     Command (m for help): d
                                +     Partition number (1-4): 1
                                +     Command (m for help): n
                                +     Command action
                                +     e   extended
                                +     p   primary partition (1-4)
                                +     p
                                +     Partition number (1-4): 1
                                +     First cylinder (1-2480, default 1): 1
                                +     Last cylinder or +size or +sizeM or +sizeK (1-2480, default 2480): +19000M
                                +     Command (m for help): t
                                +     Partition number (1-4): 1
                                +     Hex code (type L to list codes): 7
                                +     Changed system type of partition 1 to 7 (HPFS/NTFS)
                                +     Command (m for help): a
                                +     Partition number (1-4): 1
                                +     Command (m for help): p
                                +     Disk /dev/sde: 255 heads, 63 sectors, 2480 cylinders
                                +     Units = cylinders of 16065 * 512 bytes
                                +     Device Boot    Start       End    Blocks   Id  System
                                +     /dev/sde1   *         1      1403  11269566    7  HPFS/NTFS
                                +     Command (m for help): w
                                +     The partition table has been altered!
                                +     Calling ioctl() to re-read partition table.
                                +     Syncing disks.
                                +

                                (Sur la capture ce n’est pas les bonnes taille affiché)

                                +

                                Voilà vous avez fini normal si vous avez Windows dessus et que vous le relancez, il fera un checkdisk.

                                +

                                 

                                +

                                 

                                +
                                +
                                + +
                                +
                                +
                                +
                                +
                                +

                                + 0 commentaire

                                +
                                +
                                +
                                +

                                Laisser un commentaire

                                Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                                +
                                +
                                +

                                + +

                                +
                                +
                                +
                                +
                                +
                                +
                                + +
                                +
                                +
                                +
                                +
                                +
                                + + +
                                + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/f099a0b5b89934aa3fb6ac650c88ba0822357c04.00000391.xml b/www/.content.EZtzwPjb/html/f099a0b5b89934aa3fb6ac650c88ba0822357c04.00000391.xml new file mode 100644 index 0000000..2442ce7 --- /dev/null +++ b/www/.content.EZtzwPjb/html/f099a0b5b89934aa3fb6ac650c88ba0822357c04.00000391.xml @@ -0,0 +1,39 @@ + + + désimlocker – HugoPoi + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Mon, 22 Aug 2016 14:10:26 +0000 + fr-FR + hourly + 1 + https://wordpress.org/?v=4.6.1 + + Orange et consort, impossible d’obtenir le désimlockage + http://blog.hugopoi.net/2013/09/15/orange-et-consort-impossible-dobtenir-le-desimlockage/ + http://blog.hugopoi.net/2013/09/15/orange-et-consort-impossible-dobtenir-le-desimlockage/#comments + Sat, 14 Sep 2013 23:01:40 +0000 + + + + + + + + + + http://blog.hugopoi.net/?p=794 + Lire la suite »

                                ]]>
                                + http://blog.hugopoi.net/2013/09/15/orange-et-consort-impossible-dobtenir-le-desimlockage/feed/ + 1 +
                                +
                                +
                                diff --git a/www/.content.EZtzwPjb/html/f0b1ca2e5a8e9ed2cfc359158577b2cac616d0fd.00000484.html b/www/.content.EZtzwPjb/html/f0b1ca2e5a8e9ed2cfc359158577b2cac616d0fd.00000484.html new file mode 100644 index 0000000..743ba10 --- /dev/null +++ b/www/.content.EZtzwPjb/html/f0b1ca2e5a8e9ed2cfc359158577b2cac616d0fd.00000484.html @@ -0,0 +1,372 @@ + + + + + + + pc – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                                +
                                +
                                +
                                + +
                                +
                                +
                                +
                                +
                                +
                                +
                                + +
                                +
                                +
                                +
                                + +
                                +
                                + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/f0f8d9c3fea4d727efdd05d93c98609a65c36345.00000711.css b/www/.content.EZtzwPjb/html/f0f8d9c3fea4d727efdd05d93c98609a65c36345.00000711.css new file mode 100644 index 0000000..20df2bb --- /dev/null +++ b/www/.content.EZtzwPjb/html/f0f8d9c3fea4d727efdd05d93c98609a65c36345.00000711.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7 .screen-reader-response{position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);height:1px;width:1px;margin:0;padding:0;border:0}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{color:#f00;font-size:1em;display:block}.use-floating-validation-tip span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;border:1px +solid #f00;background:#fff;padding: .2em .8em}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/f11ef6d5cca6bc2f37303e8876ca3595aaef5c31.00001268.xml b/www/.content.EZtzwPjb/html/f11ef6d5cca6bc2f37303e8876ca3595aaef5c31.00001268.xml new file mode 100644 index 0000000..0f4c308 --- /dev/null +++ b/www/.content.EZtzwPjb/html/f11ef6d5cca6bc2f37303e8876ca3595aaef5c31.00001268.xml @@ -0,0 +1,7 @@ + +1.0HugoPoihttp://blog.hugopoi.netHugoPoihttp://blog.hugopoi.net/author/hugopoi/GET to POSTrich600338<blockquote class="wp-embedded-content"><a href="/2010/12/07/get-to-post/">GET to POST</a></blockquote> +<script type='text/javascript'> +<!--//--><![CDATA[//><!-- + !function(a,b){"use strict";function c(){if(!e){e=!0;var a,c,d,f,g=-1!==navigator.appVersion.indexOf("MSIE 10"),h=!!navigator.userAgent.match(/Trident.*rv:11\./),i=b.querySelectorAll("iframe.wp-embedded-content");for(c=0;c<i.length;c++)if(d=i[c],!d.getAttribute("data-secret")){if(f=Math.random().toString(36).substr(2,10),d.src+="#?secret="+f,d.setAttribute("data-secret",f),g||h)a=d.cloneNode(!0),a.removeAttribute("security"),d.parentNode.replaceChild(a,d)}else;}}var d=!1,e=!1;if(b.querySelector)if(a.addEventListener)d=!0;if(a.wp=a.wp||{},!a.wp.receiveEmbedMessage)if(a.wp.receiveEmbedMessage=function(c){var d=c.data;if(d.secret||d.message||d.value)if(!/[^a-zA-Z0-9]/.test(d.secret)){var e,f,g,h,i,j=b.querySelectorAll('iframe[data-secret="'+d.secret+'"]'),k=b.querySelectorAll('blockquote[data-secret="'+d.secret+'"]');for(e=0;e<k.length;e++)k[e].style.display="none";for(e=0;e<j.length;e++)if(f=j[e],c.source===f.contentWindow){if(f.removeAttribute("style"),"height"===d.message){if(g=parseInt(d.value,10),g>1e3)g=1e3;else if(~~g<200)g=200;f.height=g}if("link"===d.message)if(h=b.createElement("a"),i=b.createElement("a"),h.href=f.getAttribute("src"),i.href=d.value,i.host===h.host)if(b.activeElement===f)a.top.location.href=d.value}else;}},d)a.addEventListener("message",a.wp.receiveEmbedMessage,!1),b.addEventListener("DOMContentLoaded",c,!1),a.addEventListener("load",c,!1)}(window,document); +//--><!]]> +</script><iframe sandbox="allow-scripts" security="restricted" src="/2010/12/07/get-to-post/embed/" width="600" height="338" title="« GET to POST » — HugoPoi" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" class="wp-embedded-content"></iframe> diff --git a/www/.content.EZtzwPjb/html/f143f238e4c31ddfc0748d53a94835135edc1da3.00000579.css b/www/.content.EZtzwPjb/html/f143f238e4c31ddfc0748d53a94835135edc1da3.00000579.css new file mode 100644 index 0000000..8427eb0 --- /dev/null +++ b/www/.content.EZtzwPjb/html/f143f238e4c31ddfc0748d53a94835135edc1da3.00000579.css @@ -0,0 +1,105 @@ +div.wpcf7 .screen-reader-response { + position: absolute; + overflow: hidden; + clip: rect(1px, 1px, 1px, 1px); + height: 1px; + width: 1px; + margin: 0; + padding: 0; + border: 0; +} + +div.wpcf7-response-output { + margin: 2em 0.5em 1em; + padding: 0.2em 1em; + border: 2px solid #ff0000; +} + +div.wpcf7-mail-sent-ok { + border: 2px solid #398f14; +} + +div.wpcf7-mail-sent-ng, +div.wpcf7-aborted { + border: 2px solid #ff0000; +} + +div.wpcf7-spam-blocked { + border: 2px solid #ffa500; +} + +div.wpcf7-validation-errors, +div.wpcf7-acceptance-missing { + border: 2px solid #f7e700; +} + +.wpcf7-form-control-wrap { + position: relative; +} + +span.wpcf7-not-valid-tip { + color: #f00; + font-size: 1em; + font-weight: normal; + display: block; +} + +.use-floating-validation-tip span.wpcf7-not-valid-tip { + position: absolute; + top: 20%; + left: 20%; + z-index: 100; + border: 1px solid #ff0000; + background: #fff; + padding: .2em .8em; +} + +span.wpcf7-list-item { + display: inline-block; + margin: 0 0 0 1em; +} + +span.wpcf7-list-item-label::before, +span.wpcf7-list-item-label::after { + content: " "; +} + +.wpcf7-display-none { + display: none; +} + +div.wpcf7 .ajax-loader { + visibility: hidden; + display: inline-block; + background-image: url('../../images/ajax-loader.gif'); + width: 16px; + height: 16px; + border: none; + padding: 0; + margin: 0 0 0 4px; + vertical-align: middle; +} + +div.wpcf7 .ajax-loader.is-active { + visibility: visible; +} + +div.wpcf7 div.ajax-error { + display: none; +} + +div.wpcf7 .placeheld { + color: #888; +} + +div.wpcf7 input[type="file"] { + cursor: pointer; +} + +div.wpcf7 input[type="file"]:disabled { + cursor: default; +} + +div.wpcf7 .wpcf7-submit:disabled { + cursor: not-allowed; +} diff --git a/www/.content.EZtzwPjb/html/f19a1c861ec0cc7c5da1a1ad1131c0c34622a66c.00000675.css b/www/.content.EZtzwPjb/html/f19a1c861ec0cc7c5da1a1ad1131c0c34622a66c.00000675.css new file mode 100644 index 0000000..20df2bb --- /dev/null +++ b/www/.content.EZtzwPjb/html/f19a1c861ec0cc7c5da1a1ad1131c0c34622a66c.00000675.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7 .screen-reader-response{position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);height:1px;width:1px;margin:0;padding:0;border:0}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{color:#f00;font-size:1em;display:block}.use-floating-validation-tip span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;border:1px +solid #f00;background:#fff;padding: .2em .8em}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/f1e9a0ca6869b48788d903973b56582f635f0f1e.00000546.html b/www/.content.EZtzwPjb/html/f1e9a0ca6869b48788d903973b56582f635f0f1e.00000546.html new file mode 100644 index 0000000..edee79c --- /dev/null +++ b/www/.content.EZtzwPjb/html/f1e9a0ca6869b48788d903973b56582f635f0f1e.00000546.html @@ -0,0 +1,364 @@ + + + + + + + vidéo projecteur – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                                +
                                +
                                +
                                + +
                                +
                                +
                                +
                                +
                                +
                                +
                                + +
                                +
                                +
                                +
                                + +
                                +
                                + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/f29642e887f34d0a0885aa7a9213ef83afdf8fa4.00000050.xml b/www/.content.EZtzwPjb/html/f29642e887f34d0a0885aa7a9213ef83afdf8fa4.00000050.xml new file mode 100644 index 0000000..51b5747 --- /dev/null +++ b/www/.content.EZtzwPjb/html/f29642e887f34d0a0885aa7a9213ef83afdf8fa4.00000050.xml @@ -0,0 +1,17 @@ + + + Commentaires sur : Aventure PC + + http://blog.hugopoi.net/2011/01/08/aventure-pc/ + Internet, Hardware et Bidouille + Mon, 22 Aug 2016 14:09:10 +0000 + hourly + 1 + https://wordpress.org/?v=4.6.1 + + diff --git a/www/.content.EZtzwPjb/html/f2dd021a42437613d7d1b0c3fa47ce86743fce0a.00000102.html b/www/.content.EZtzwPjb/html/f2dd021a42437613d7d1b0c3fa47ce86743fce0a.00000102.html new file mode 100644 index 0000000..bbdce30 --- /dev/null +++ b/www/.content.EZtzwPjb/html/f2dd021a42437613d7d1b0c3fa47ce86743fce0a.00000102.html @@ -0,0 +1,1370 @@ + + + + + + + + Réparations Samsung SyncMaster 2232BW – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                +
                                +
                                +
                                + +
                                +
                                +
                                +
                                +
                                +
                                +

                                Allô docteur on a un problème,

                                +

                                En ce dimanche calme avant la fin de mes partiels, mon écran Samsung SyncMaster 2232BW commençait à faire des siennes. Celui-ci depuis un mois ou deux clignotait de façon systématique au démarrage, au début pendant seulement quelques secondes, puis au fur et à mesure, de plus en plus jusqu’à devoir attendre 10 minutes pour que je puisse l’utiliser. Après 3 ans et 4 mois de bons et loyaux services, il voulait me quitter. J’ai tenté le support Samsung par email avec peu d’espoir car l’écran a dépassé sa garantie de 4 mois (oui oui les bâtards -> obsolescence programmée). Et donc j’ai eu le droit à un joli mail automatique me disant de contacter un numéro non surtaxé (mais avec combien de temps d’attente ?), ce que je n’ai pas fait car je n’avais pas envie de passer 30min au téléphone pour au final avoir un « On est désolé mais on ne peut rien faire pour vous car la garantie est dépassée, mais on peut envoyer votre écran en SAV pour faire un devis pour seulement 50 boules ». Concernant le support email de Samsung France, je leur donne une note de 0/20 puisque ce n’est pas un support mais une redirection vers le téléphone.

                                +

                                +

                                Symptômes

                                +

                                Clignotements de l’écran et de la LED power systématiques à chaque démarrage de l’écran. Je me suis tout de suite douté d’un problème d’alimentation et après quelques recherches sur google, confirmation du problème sur beaucoup d’écrans et téléviseurs. Dans 99% des cas ce clignotement est dû à des condensateurs défectueux qu’il faut simplement changer :-D

                                +

                                Démontage

                                +

                                Donc après avoir cerné le problème, j’ai ouvert l’écran pour chercher les condos défectueux. J’ai trouvé une petite vidéo pour mon écran :

                                +

                                +

                                Voici quelques photos en plus pour vous aider :

                                +

                                Les outils que j’ai utilisé pour le démontage

                                +

                                Position des clips

                                +

                                Carte d’alimentation dans son emplacement

                                +

                                Et voici les condensateurs qui posent problèmes. Comme vous pouvez le voir sur la photo, ils sont très facilement identifiable car ils sont bombés sur le dessus.

                                +

                                Condensateurs défectueux

                                +

                                Vous devez donc acheter des condensateurs de remplacement, par exemple sur Conrad.

                                +

                                Mes condensateurs suivant étaient endommagés:

                                +
                                  +
                                • 1 de 330uF 25V remplacé par un 470uF 25V
                                • +
                                • 3 de 820uF 25V remplacé par des 1000uF 50V
                                • +
                                +

                                Pour la réparation, il vous faut un fer à souder avec une panne pas trop grosse mais d’une grosse puissance car les soudures sont très solides (j’ai galéré avec un fer pro qui monte jusqu’à 400°).

                                +

                                Tout remarche nickel après remontage, plus de clignotement pour seulement quelques euros.

                                +

                                edit du 19 aout 2014 : j’ai trouvé le service manuel de l’écran si besoin samsung_2232bw_chassis_lpe22bs_sm

                                + + +
                                +
                                + +
                                +
                                +
                                +
                                +
                                +

                                + 41 commentaires

                                +
                                + +
                                +
                                +
                                +
                                +

                                + c'est_moi + · 30 janvier 2012 à 18 h 57 min +

                                +

                                Mille mercis et mille félicitations pour cette fiche technique si pédagogue.

                                +

                                J’espère que le partiels se passent plus que parfait !!

                                +

                                J’ai gardé l’url de la page pour réparer mon écran dans un petit mois : j’espère que la page soit toujours là ;-)

                                +

                                Merci encore.

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Maxime + · 5 mai 2012 à 12 h 31 min +

                                +

                                Bonjour HugoPoi!

                                +

                                Merci pour toutes vos infos et votre topic, je voulais avoir quelques précisions sur les condos à changer pour samsung 2232bw, je veux passer commande mais j’ai un problème avec les dimensions des condos, si vous pouvez m’informer de ce que je pourrais acheter car il y a trop de références. En vous remerciant A+ Maxime

                                + +
                                +
                                +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  +

                                  + HugoPoi + · 14 juin 2012 à 22 h 56 min +

                                  +

                                  N’importe quel condensateur polarisé avec des caractéristiques proches devrait marché.

                                  + +
                                  +
                                  + +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + gaubjezj + · 14 juin 2012 à 22 h 32 min +

                                +

                                Merci pour le tuto qui m’a bien aidé.
                                +J’ai utilisé un fer de 40 W avec une panne fine et
                                +une pompe à dessouder et j’ai retiré les condensateurs sans problème.
                                +Merci encore (3€40 pour le dépannage).

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + DragonTribal + · 2 juillet 2012 à 12 h 02 min +

                                +

                                super merci pour manifique tuto.
                                +Est-il possible de changer les 5 condensateurs 820uF 25V par des 1000uF 50V? car moi mes 5 condensateurs sont presque HS ;-)

                                +

                                Cordialement

                                + +
                                +
                                +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  +

                                  + HugoPoi + · 2 juillet 2012 à 12 h 25 min +

                                  +

                                  Oui je penses que ça marchera étant donné que c’est des valeurs plus grandes.

                                  + +
                                  +
                                  + +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + FRED + · 11 juillet 2012 à 19 h 11 min +

                                +

                                Bravo, MERCI.
                                +Je n’ai encore rien fait…mais j’ai le même problème, et tu me donnes la solution.
                                +Super.

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + daninpet + · 31 août 2012 à 10 h 10 min +

                                +

                                Merci mille fois!

                                +

                                J’avais ce problème, et j’ai emmener la photo des trucs a remplacer chez le réparateur du coin et voila!! Ça m’a coûté 7 Euros (mais j’habite en Thaïlande)

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + moi + · 15 novembre 2012 à 15 h 25 min +

                                +

                                super mon 2232bw vient de lâcher, les 3 + 1 condos sont gonflés j ai trouvé un 330 en 35v qui traîné sur un écran mort et j’ai commander 5 1000uf 35v sur ebay pour moins de 3 dollars, ca devrait le faire j’espere j’attend d’être livré merci! par contre j’ai qu’un gros pistolet a soudure et un gros fil d’étain, c’est pas évident mais bon ca le fait quand même =)

                                + +
                                +
                                +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  +

                                  + moi + · 7 décembre 2012 à 9 h 33 min +

                                  +

                                  parfait je vient de recevoir les condos; j ai meuler la panne du fer a souder pour la tailler en mine de crayon et j ai reussi a les souder facilement ils étaient un peu plus gros mais ca passe tout juste, mais attention ne pas prendre des plus gros! l écran fonctionne nickel maintenant.

                                  + +
                                  +
                                  + +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Croco + · 19 janvier 2013 à 18 h 39 min +

                                +

                                Je souhaiterai savoir si tu as utilisé un fer à souder bien précis étant donné que la carte est une multi couche.
                                +Merci

                                + +
                                +
                                + + +
                                + +
                                +
                                +
                                +
                                +

                                + momo + · 10 juin 2013 à 13 h 15 min +

                                +

                                slut je voudrai savoir ou trouvé les condansateur a changer sur mon ecran qui clignote

                                + +
                                +
                                + + +
                                + +
                                +
                                +
                                +
                                +

                                + lokmane + · 5 juillet 2013 à 16 h 08 min +

                                +

                                merci j’avais un ecran rouge ! et c’etais la tresse qui relie mon ecran votre page m’a aider a l’ouvrir et a le reparer merci bien

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + ML + · 21 août 2013 à 19 h 11 min +

                                +

                                Merci ! Ecran réparé. Halte à l’obsolescence programmée.

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + raymond + · 31 octobre 2013 à 13 h 20 min +

                                +

                                ai vu votre vidéo et les explications pour la reparation de mon écran , apparemment le méme probléme l écran passe au noir apres quelque seconde , j ai vu un le condensateur en bas a gauche gonflé , je l ai fait changé (10€) les autre condensateur étant toujour bon d après la personne qui me l a changé , mais j ai toujour le méme probléme cela peut il venir de la carte video a gauche ?

                                + +
                                +
                                +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  +

                                  + HugoPoi + · 20 décembre 2013 à 12 h 27 min +

                                  +

                                  Si la led bleu du bouton power s’éteint aussi c’est un problème d’alimentation sinon c’est plus compliqué et ça peut provenir de condensateurs sur la partie vidéo. Changé tous les plus gros condensateurs sur la partie alimentation pourrait être un bon début même si ils ne paraissent pas endommagé.

                                  + +
                                  +
                                  + +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + damien + · 4 novembre 2013 à 0 h 29 min +

                                +

                                bonjour,

                                +

                                j’ai des crasses coincées entres l’écran et le truc juste derrière, est ce qu’on sais les enlever en démontant la dalle ?

                                + +
                                +
                                +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  +

                                  + HugoPoi + · 20 décembre 2013 à 12 h 28 min +

                                  +

                                  Je ne sais si cette partie de la dalle est démontable, je penses que c’est collé mais vous pouvez essayer.

                                  + +
                                  +
                                  + +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + mac + · 1 décembre 2013 à 17 h 30 min +

                                +

                                Merci HugoPoi, avec ces excellents conseils et tuto vidéo, mon écran est reparti pour une nouvelle vie.
                                +Pour les composants, si vous êtes sur Paris ou proche. La boutique RAM électroniques est une bonne adresse, 138 bd Diderot 75012 Paris (Place de la Nation).

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Bouddhid + · 16 janvier 2014 à 19 h 21 min +

                                +

                                Merci beaucoup pour ces conseils ! J’étais à 2 doigts de jeter mon écran, le voilà comme neuf pour moins de 5€ ! Vive la bricole !

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Vincent + · 17 mai 2014 à 16 h 45 min +

                                +

                                Alors là merci.

                                +

                                Pour ce post, les photos, la vidéo, tout y est.

                                +

                                J’ai démonté l’écran assez vite, enlevé la carte, regarder quel condensateurs étaient gonflés,(il y en avaient 4), un magasin d’électronique sur lyon et une heure de démontage, soudure, remontage plus tard, voilà, c’est tout beau.
                                +Ca ne clignote plus, ça s’allume comme avant, comme neuf.

                                +

                                Et dire que j’allais jeter cet écran et claquer 350 euros pour un neuf…

                                +

                                Coût de l’opération pour 4 condensateurs, du fil d’étain 7 euros.

                                +

                                Je précise que je n’avais jamais fais de soudure sur composant électronique auparavant.
                                +Comme quoi cette opération de réparation est à la portée de tous.

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Julot + · 6 juillet 2014 à 13 h 49 min +

                                +

                                Site vraiment détaillé et très claire. J’ai pu dépanner mon écran avec succès. Merci beaucoup pour ces précieuses explications.

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + PaniK31 + · 29 juillet 2014 à 9 h 21 min +

                                +

                                Pas besoin d’une grosse puissance pour le fer, il faut au préalable gratter le vernis sur l’étain afin de pouvoir le faire fondre plus facilement

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + R211_IP-45130B + · 20 août 2014 à 14 h 04 min +

                                +

                                Bonjour à tous,

                                +

                                Une âme charitable peut-elle me communiquer ce qui est gravé sur la résistance CMS R211 de la carte d’alimentation/inverter IP-45130B qui équipe le SAMSUNG 2232BW ? Cette résistance a pris un coup de tournevis et je n’arrive pas à déterminer sa valeur de résistance car son marquage est effacé et comme le composant est abimé la mesure à l’ohmmètre indique l’infinie.

                                +

                                Merci par avance.

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + roger + · 24 octobre 2014 à 17 h 21 min +

                                +

                                Ca refonctionne après échange de 4 condensateurs :
                                +-un 330uf25v remplacé à l’identique.
                                +-trois 820uf25v remplacés par 1000uf25v.
                                +Le tout pour quelques €. Le plus dur était le dessoudage, la tresse n’était pas très efficace contrairement à la pompe.
                                +Grand merci à HugoPoi.

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Max + · 26 février 2015 à 16 h 28 min +

                                +

                                ENORME MERCI!! J’ai réparé mon écran en 20mn pour 3,50€, il était à 2 doigts de partir à la déchetterie. Ca faisait des mois qu’il clignotait, et l’allumage mettait parfois plus d’une demi heure. J’ai changé 5 condos 820uf25v et 1 330uf25v, par exactement les mêmes en neuf, et là il démarre au quart de tour! Ca fait plaisir! :)

                                + +
                                +
                                +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  +

                                  + rocco michelle + · 7 octobre 2015 à 10 h 16 min +

                                  +

                                  Bonjour je ne sais si vous verrez mon message mais je tente…je cherche quelqu’un qui accepterait de changer mes condensateurs sur mon samsung, les réparateurs me demandent 70 à 80 euros et encore ils n’ont pss envie de le faire et me disent d’acheter un nouvel écran. j’aurais bien tenter mais je n’ai pas de matériel et j’ai lu que les condo pouvaient être très dangereux s’ils avaient de la charge alors j’ai la trouille de bidouiller pq je n’y connais rien. si vous êtes de lyon acccepteriez vous de changer mes condensateurs pour 45 euros? merci de votre réponse.

                                  + +
                                  +
                                  + +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + lecakeseb + · 27 juillet 2015 à 15 h 26 min +

                                +

                                Bonjour,

                                +

                                J’ai utilisé la vidéo pour démonter mon écran afin de le nettoyer de 4 bêtes d’orage infiltrés entre le premier écran (noir) et la dalle (blanche) de mon samsung SyncMaster 2232W

                                +

                                Petits conseils afin de modérer ce que j’ai pu voir dans cette vidéo :

                                +

                                0 : aspirez, nettoyez l’extérieur de l’écran avant de l’ouvrir et nettoyez la table qui vous servira d’atelier, pour éviter les poussières qui s’infiltreront forcément plus tard si vous ne le faites pas…
                                +1 : pour ouvrir, utilisez plutôt un couteau à enduire pour la première partie (le cadre). Vous n’abîmerez ainsi pas du tout l’écran. Soyez patients, ne forcez pas ! ça viendra doucement, mais ça viendra. Il m’a fallu à peine 10 minutes, sans détériorer l’écran, sans le griffer… Il est encore nickel !
                                +2 : attention à ne pas déconnecter les fils reliant le cadre à la carte. Inutile pour simplement nettoyer l’écran.
                                +3 : pour séparer les deux éléments de la dalle entre lesquels les bêtes se sont infiltrées, les doigts suffisent, pas besoin d’outils qui viendraient les endommager. La dalle blanche reste à l’horizontale, l’écran noir sera tenu à la verticale.
                                +4 : utiliser un chiffon doux ne peluchant pas pour enlever les bêtes (faites-vous aider de quelqu’un qui les enlèvera pendant que vous tenez l’écran extérieur en position verticale).
                                +5 : repositionnez la colle d’étanchéité qui aurait pu se déplacer, avant de repositionner les deux écrans.
                                +6 : commencer par refermer par le bas de l’écran (sinon les éléments de réglage situés au bas de l’écran – luminosité, contraste,…- ne se replaceront pas correctement).
                                +7 : Une fois l’écran refermé, j’ai appliqué un peu de « barrage aux insectes », avec un chiffon à l’arrière de mon écran en insistant surtout sur les bouches d’aération par lesquelles les maudites bestioles ont du s’infiltrer. En espérant ne pas avoir à ouvrir !

                                +

                                Bon courage à vous !

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Michel Jousserandot + · 20 janvier 2017 à 20 h 41 min +

                                +

                                Merci pour les conseils au démontage.
                                +J’avais un problème un peu différent :l’écran ne s’allumait plus du tout. Avec un copain beaucoup plus malin que moi, on a détecté 2 fusibles dont l’un était fichu. On l’a remplacé par un petit fil de cuivre. Et tout a remarché comme avant.
                                +Il faut surtout faire attention quand on teste la partie haute tension
                                +Michel.

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Crec + · 14 juillet 2017 à 10 h 20 min +

                                +

                                Bonjour. Très bons conseils avertis. Merci beaucoup.
                                +Peut-on avoir les mêmes conseils pour un écran BX2250.
                                +Merci par avance.
                                +Crec

                                + +
                                +
                                +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  +

                                  + HugoPoi + · 6 août 2017 à 14 h 03 min +

                                  +

                                  J’ai pas de BX2250 donc dans le détails non mais si c’est les même symptômes ça doit la même procédure.

                                  + +
                                  +
                                  + +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Ferronnier + · 10 août 2017 à 17 h 42 min +

                                +

                                Un grand merci !
                                +J’ai changé tous les condensateurs de la partie alimentation de la carte, en déportant certains qui n’avaient pas le même format qu’à l’origine, et ça tourne nickel !

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Nours + · 1 décembre 2017 à 15 h 17 min +

                                +

                                Ca fait des années que j’ai cet article enregistré dans un coin, en nourrissant l’espoir d’avoir un jour le courage de réparer ce foutu écran… Après plus de cinq ans c’est chose faite \o/
                                +Un giga, hypra, immense merci pour ce tutoriel tellement bien expliqué et facile d’accès (je n’avais pas touché à un fer à souder depuis… Oh boy 15 ans déjà).
                                +Après une longue pause, l’écran reprend du service… Jusqu’à la prochaine panne /o/

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Alex + · 11 août 2018 à 13 h 28 min +

                                +

                                Quelqu’un sait qui pourrait me le faire svp j ai le même problème mais aucun matériel

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + David + · 5 février 2019 à 21 h 06 min +

                                +

                                Merci Hugo pour ce tuto qui m’a déjà servi en 2013 et qui va me resservir aujourd’hui car mon 2ème 2232bw commence à avoir les mêmes symptômes.

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + yvan + · 23 novembre 2019 à 17 h 14 min +

                                +

                                Bonjour
                                +j’ai tenté de changer le condensateur qui avait l’air naze mais ça n’a pas marché … toujours le bouton bleu allumé, l’écran est reconnu par Windows 10 même si l’écran est éteint
                                +grâce au service manuel de l’écran fourni plus haut, j’ai vérifié les tensions jusque sur la carte de la dalle et elles sont correctes, ainsi que sur la carte elle-même, tout est ok, donc je pense que ce n’est plus un problème de condensateur
                                +pour les fusibles, ils ressemblent plutôt à des composants qu’à de simple fusibles, mais comme j’ai les bonnes tension, je ne pense pas que ça vienne de là
                                +j’ai bien peur que ce soit la dalle qui soit naze ? quelqu’un a t il des idées supplémentaires avant que je le jette avec grand regret (c’est un 2032bw, mais c’est la même chose, même si ma carte électronique est un peu différente car plus récente
                                +merci d’avance pour vos conseils

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + yvan + · 24 novembre 2019 à 17 h 26 min +

                                +

                                finalement j’ai trouvé, c’est un petit fusible vert qui ressemble à une résistance mais tout vert avec écrit 4A LF qui assure l’alimentation de la dalle.
                                +En le shuntant, mon écran a retrouvé l’image.
                                +après enquête il s’agit d’un fusible pico de 4ampères de chez little fuse, pas du tout évident à trouver
                                +Résolu !

                                + +
                                +
                                + +
                                +
                                +

                                + Reflow Dell 1546 | HugoPoi + · 22 août 2016 à 16 h 09 min +

                                +

                                […] « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable de marque Dell un 1546 pour être précis. Encore […]

                                + +
                                +
                                + +
                                +
                                +

                                + Reflow Dell Inspiron 1546 – HugoPoi + · 23 juin 2017 à 23 h 18 min +

                                +

                                […] d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un […]

                                + +
                                +
                                + +
                                +
                                +
                                +

                                Répondre à gaubjezj Annuler la réponse

                                Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                                +
                                +
                                +

                                + +

                                +
                                +
                                +
                                +
                                +
                                +
                                + +
                                +
                                +
                                +
                                +
                                +
                                + + +
                                + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/f384031049a6a6eb0e31fc5b9f4689053b6ef048.00000018.xml b/www/.content.EZtzwPjb/html/f384031049a6a6eb0e31fc5b9f4689053b6ef048.00000018.xml new file mode 100644 index 0000000..54df0b8 --- /dev/null +++ b/www/.content.EZtzwPjb/html/f384031049a6a6eb0e31fc5b9f4689053b6ef048.00000018.xml @@ -0,0 +1,29 @@ + + + Commentaires sur : Cloud Computing + + http://blog.hugopoi.net/2010/11/15/cloud-computing/ + Internet, Hardware et Bidouille + Mon, 22 Aug 2016 14:09:10 +0000 + hourly + 1 + https://wordpress.org/?v=4.6.1 + + Par : HugoPoi + http://blog.hugopoi.net/2010/11/15/cloud-computing/#comment-12 + + Wed, 24 Nov 2010 14:15:23 +0000 + http://blog.hugopoi.net/?p=135#comment-12 + + Voici une autre utilisation du cloud computing dans toute sa puissance : http://www.developpez.com/actu/23970/Les-pirates-ont-ils-compris-avant-les-autres-les-avantages-du-Cloud-Un-hacker-exploite-AmazonEC2-pour-casser-l-algorithme-SHA-1
                                +Je vous laisse lire …

                                +]]>
                                +
                                +
                                +
                                diff --git a/www/.content.EZtzwPjb/html/f39365f0e1ac167b8b29769f997cc6ebb09ea336.00000796.css b/www/.content.EZtzwPjb/html/f39365f0e1ac167b8b29769f997cc6ebb09ea336.00000796.css new file mode 100644 index 0000000..7428c59 --- /dev/null +++ b/www/.content.EZtzwPjb/html/f39365f0e1ac167b8b29769f997cc6ebb09ea336.00000796.css @@ -0,0 +1 @@ +a,.btn.btn-border,.form-group.label-static label.control-label,.form-group.label-placeholder label.control-label,.form-group.label-floating label.control-label,.pagination a,.pagination span,.card-background:after,.authors-on-blog .footer a,.hestia-top-bar .widget.widget_search form:not(.form-group),.hestia-top-bar .widget.widget_product_search form:not(.form-group),.hestia-top-bar .widget.widget_shopping_cart .cart_list,.hestia-top-bar li a[href*="facebook.com"]:before,.hestia-top-bar li a[href*="twitter.com"]:before,.hestia-top-bar li a[href*="pinterest.com"]:before,.hestia-top-bar li a[href*="google.com"]:before,.hestia-top-bar li a[href*="linkedin.com"]:before,.hestia-top-bar li a[href*="dribbble.com"]:before,.hestia-top-bar li a[href*="github.com"]:before,.hestia-top-bar li a[href*="youtube.com"]:before,.hestia-top-bar li a[href*="instagram.com"]:before,.hestia-top-bar li a[href*="reddit.com"]:before,.hestia-top-bar li a[href*="tumblr.com"]:before,.hestia-top-bar li a[href*="behance.com"]:before,.hestia-top-bar li a[href*="snapchat.com"]:before,.hestia-top-bar li a[href*="deviantart.com"]:before,.hestia-top-bar li a[href*="vimeo.com"]:before{-webkit-transition:all 0.3s ease;-moz-transition:all 0.3s ease;-ms-transition:all 0.3s ease;-o-transition:all 0.3s ease;transition:all 0.3s ease}button,input[type="submit"],input[type="button"],.btn{-webkit-transition:background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1),-webkit-box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1);transition:background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1),-webkit-box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1);transition:box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1),background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);transition:box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1),background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1),-webkit-box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1)}.form-control,.form-group .form-control,.woocommerce form .form-row input.input-text,.woocommerce form .form-row textarea,div.wpforms-container .wpforms-form input[type=date],div.wpforms-container .wpforms-form input[type=datetime],div.wpforms-container .wpforms-form input[type=datetime-local],div.wpforms-container .wpforms-form input[type=email],div.wpforms-container .wpforms-form input[type=month],div.wpforms-container .wpforms-form input[type=number],div.wpforms-container .wpforms-form input[type=password],div.wpforms-container .wpforms-form input[type=range],div.wpforms-container .wpforms-form input[type=search],div.wpforms-container .wpforms-form input[type=tel],div.wpforms-container .wpforms-form input[type=text],div.wpforms-container .wpforms-form input[type=time],div.wpforms-container .wpforms-form input[type=url],div.wpforms-container .wpforms-form input[type=week],div.wpforms-container .wpforms-form select,div.wpforms-container .wpforms-form textarea,.form-group.is-focused .form-control,div.wpforms-container .wpforms-form .form-group.is-focused .form-control,.btn.disabled,.btn.disabled:hover,.btn.disabled:focus,.btn.disabled.focus,.btn.disabled:active,.btn.disabled.active,.btn:disabled,.btn:disabled:hover,.btn:disabled:focus,.btn.focus:disabled,.btn:disabled:active,.btn.active:disabled,.btn[disabled],.btn[disabled]:hover,.btn[disabled]:focus,.btn[disabled].focus,.btn[disabled]:active,.btn[disabled].active,fieldset[disabled] .btn,fieldset[disabled] .btn:hover,fieldset[disabled] .btn:focus,fieldset[disabled] .btn.focus,fieldset[disabled] .btn:active,fieldset[disabled] .btn.active,.btn.btn-simple,.btn.btn-default.btn-simple,.btn.btn-primary.btn-simple,.btn.btn-white.btn-simple,.btn.btn-border,.btn.btn-border:hover,.btn.btn-border:focus,.navbar button.navbar-toggle,.navbar button.navbar-toggle:hover,.btn.btn-facebook.btn-simple,.navbar .navbar-nav>li>a.btn.btn-facebook.btn-simple,.btn.btn-twitter.btn-simple,.navbar .navbar-nav>li>a.btn.btn-twitter.btn-simple,.btn.btn-pinterest.btn-simple,.navbar .navbar-nav>li>a.btn.btn-pinterest.btn-simple,.btn.btn-google.btn-simple,.navbar .navbar-nav>li>a.btn.btn-google.btn-simple,.btn.btn-linkedin.btn-simple,.navbar .navbar-nav>li>a.btn.btn-linkedin.btn-simple,.btn.btn-dribbble.btn-simple,.navbar .navbar-nav>li>a.btn.btn-dribbble.btn-simple,.btn.btn-github.btn-simple,.navbar .navbar-nav>li>a.btn.btn-github.btn-simple,.btn.btn-youtube.btn-simple,.navbar .navbar-nav>li>a.btn.btn-youtube.btn-simple,.btn.btn-instagram.btn-simple,.navbar .navbar-nav>li>a.btn.btn-instagram.btn-simple,.btn.btn-reddit.btn-simple,.navbar .navbar-nav>li>a.btn.btn-reddit.btn-simple,.btn.btn-tumblr.btn-simple,.navbar .navbar-nav>li>a.btn.btn-tumblr.btn-simple,.btn.btn-behance.btn-simple,.navbar .navbar-nav>li>a.btn.btn-behance.btn-simple,.btn.btn-snapchat.btn-simple,.navbar .navbar-nav>li>a.btn.btn-snapchat.btn-simple,.btn.btn-deviantart.btn-simple,.navbar .navbar-nav>li>a.btn.btn-deviantart.btn-simple,.btn.btn-vimeo.btn-simple,.navbar .navbar-nav>li>a.btn.btn-vimeo.btn-simple,.form-group.is-focused select.form-control,.form-group.has-warning .form-control,.form-group.has-error .form-control,.form-group.has-success .form-control,.form-group.has-info .form-control,select.form-control{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.form-control,.form-group .form-control,.woocommerce form .form-row input.input-text,.woocommerce form .form-row textarea,div.wpforms-container .wpforms-form input[type=date],div.wpforms-container .wpforms-form input[type=datetime],div.wpforms-container .wpforms-form input[type=datetime-local],div.wpforms-container .wpforms-form input[type=email],div.wpforms-container .wpforms-form input[type=month],div.wpforms-container .wpforms-form input[type=number],div.wpforms-container .wpforms-form input[type=password],div.wpforms-container .wpforms-form input[type=range],div.wpforms-container .wpforms-form input[type=search],div.wpforms-container .wpforms-form input[type=tel],div.wpforms-container .wpforms-form input[type=text],div.wpforms-container .wpforms-form input[type=time],div.wpforms-container .wpforms-form input[type=url],div.wpforms-container .wpforms-form input[type=week],div.wpforms-container .wpforms-form select,div.wpforms-container .wpforms-form textarea{background-image:-webkit-gradient(linear, left top, left bottom, from(#9c27b0), to(#9c27b0)),-webkit-gradient(linear, left top, left bottom, from(#d2d2d2), to(#d2d2d2));background-image:-webkit-linear-gradient(#9c27b0, #9c27b0),-webkit-linear-gradient(#d2d2d2, #d2d2d2);background-image:linear-gradient(#9c27b0, #9c27b0),linear-gradient(#d2d2d2, #d2d2d2);float:none;border:0;border-radius:0;background-color:transparent;background-repeat:no-repeat;background-position:center bottom,center -webkit-calc(100% - 1px);background-position:center bottom,center calc(100% - 1px);background-size:0 2px, 100% 1px;font-weight:400;-webkit-transition:background 0s ease-out;transition:background 0s ease-out}.form-group.is-focused .form-control,div.wpforms-container .wpforms-form .form-group.is-focused .form-control{background-image:-webkit-gradient(linear, left top, left bottom, from(#9c27b0), to(#9c27b0)),-webkit-gradient(linear, left top, left bottom, from(#d2d2d2), to(#d2d2d2));background-image:-webkit-linear-gradient(#9c27b0, #9c27b0),-webkit-linear-gradient(#d2d2d2, #d2d2d2);background-image:linear-gradient(#9c27b0, #9c27b0),linear-gradient(#d2d2d2, #d2d2d2);outline:none;background-size:100% 2px,100% 1px;-webkit-transition-duration:0.3s;transition-duration:0.3s}.navbar .navbar-brand,.carousel .sub-title,h4.author,.hestia-about p,.card-product .price,.card-product .price h4,.blog-sidebar .widget h5,.shop-sidebar .widget h5,blockquote,.media .media-heading,.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta{font-size:18px}a:not(.btn){transition:.3s ease}a:not(.btn):not(.button):not(.added_to_cart):hover{opacity:.75}.media p,h3#ship-to-different-address{font-size:16px}body,.btn,.form-control,.woocommerce #reviews #comments label{font-size:14px}.navbar,.navbar a,.label,.footer .footer-menu a,.media-footer a,.hestia-top-bar{font-size:12px}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-weight:300;line-height:1.618}ul,ol,.blog-post .section-text p,output{line-height:1.618}h1,h2,h3,h4,h5,h6{font-weight:500;line-height:1.618}h5.description,h5.subscribe-description,.card-product .price h4,h4.author{font-weight:300}h6.category{font-weight:500}.hestia-title,.title,.card-title,.info-title,.footer-brand,.footer-big h4,.footer-big h5,.media .media-heading,.woocommerce ul.products[class*="columns-"] li.product-category h2{font-weight:700}.hestia-title{word-break:break-word}button,input[type="submit"],input[type="button"],.btn{font-size:12px;font-weight:400}.btn:not(.btn-just-icon):not(.btn-fab) i{font-size:18px}.btn.btn-just-icon{font-size:20px;line-height:20px}.btn.btn-just-icon.btn-lg{font-size:22px}.btn i{font-size:17px}legend{font-size:21px}output{font-size:14px}button,input,select,textarea{font-size:inherit;line-height:inherit}.form-control{font-size:14px;line-height:1.42857}.form-control::-moz-placeholder,.form-group .form-control::-moz-placeholder,.form-control:-ms-input-placeholder,.form-group .form-control:-ms-input-placeholder,.form-control::-webkit-input-placeholder,.form-group .form-control::-webkit-input-placeholder,.checkbox label,.form-group .checkbox label,.radio label,.form-group .radio label,label,.form-group label{font-size:14px;font-weight:400;line-height:1.42857}.form-control::-moz-placeholder,.form-control:-ms-input-placeholder,.form-control::-webkit-input-placeholder,.form-group .form-control::-moz-placeholder,.form-group .form-control:-ms-input-placeholder,.form-group .form-control::-webkit-input-placeholder{font-weight:400}.form-group label.control-label{font-size:11px;font-weight:400;line-height:1.07143}.form-group.label-floating label.control-label,.form-group.label-placeholder label.control-label{font-size:14px;line-height:1.42857}.form-group.label-static label.control-label,.form-group.label-floating.is-focused label.control-label,.form-group.label-floating:not(.is-empty) label.control-label{font-size:11px;line-height:1.07143}label.control-label{font-size:11px;font-weight:400;line-height:1.07143}label.subscribe-label{font-weight:300}table>thead>tr>th{font-size:17px;font-weight:300}.help-block{font-size:11px}.hestia-info .icon>i,.info .icon>i{font-size:61.6px}.info-horizontal .icon>i{font-size:36.4px}.media .media-heading{font-size:18.2px}.media p{font-size:16px}.wp-caption-text{font-size:14px;font-weight:700}.blog-post .comment-reply-link{font-size:12px;font-weight:400}.blog-post .section-blog-info .card-profile .description{font-size:14px}.carousel .carousel-control i{font-size:50px}.card .footer .stats{line-height:30px}.card .footer .stats i{font-size:18px}.card .category i{line-height:0}.card-product .footer h4{line-height:1.2}.card-title,.card-product .category{line-height:1.4}.card-pricing .card-title{font-size:60px;line-height:35px}.card-pricing .card-title small{font-size:18px}.card-pricing .card-title small:first-child{font-size:26px}.navbar .navbar-brand{line-height:30px}.navbar .navbar-nav>li>a{font-weight:400}.navbar .navbar-nav>li>a i{font-size:20px}.navbar .dropdown-menu li>a{font-size:13px}.navbar .dropdown-menu li>a>i{font-size:20px}.navbar .dropdown-menu li>a i{font-size:20px}.navbar .hestia-mm-heading>span{font-size:14px;font-weight:600}.hestia-mm-description{font-size:12px;font-weight:400}.hestia-top-bar{line-height:40px}.hestia-top-bar .widget,.hestia-top-bar .widget h5,.hestia-top-bar .widget .textwidget{line-height:inherit}.hestia-top-bar .widget.widget_search .label-floating,.hestia-top-bar .widget.widget_product_search .label-floating{font-size:inherit}.hestia-top-bar .widget.widget_search .label-floating.is-empty,.hestia-top-bar .widget.widget_product_search .label-floating.is-empty{font-size:inherit;font-weight:300}.hestia-top-bar .widget.widget_search .label-floating.is-focused .control-label,.hestia-top-bar .widget.widget_product_search .label-floating.is-focused .control-label{font-size:inherit;line-height:20px}.hestia-top-bar .widget.widget_search form.form-group input[type=search],.hestia-top-bar .widget.widget_product_search form.form-group input[type=search]{font-size:inherit;font-weight:300}.hestia-top-bar .widget.widget_search form.form-group:before,.hestia-top-bar .widget.widget_product_search form.form-group:before{font-size:18px}.hestia-top-bar .widget.widget_shopping_cart:before{font-size:18px}.hestia-top-bar .widget.widget_shopping_cart .cart_list li.empty{font-size:inherit;line-height:1.2}.hestia-top-bar ul{line-height:inherit}.hestia-top-bar ul li a{font-size:inherit;line-height:inherit}.hestia-top-bar ul li a:before{font-size:16px}.pagination a,.pagination span{font-size:12px;font-weight:400;line-height:30px}.footer .widget h5{line-height:1.4}.footer-big .footer-menu li a[href*="mailto:"],.footer-big .footer-menu li a[href*="tel:"]{font-size:0}.footer-big .footer-menu li a[href*="mailto:"]:before,.footer-big .footer-menu li a[href*="tel:"]:before{font-size:16px}.footer-big ul li a{font-weight:500}h5.description{line-height:1.5}.hestia-about{font-weight:300}.hestia-about h1,.hestia-about h2,.hestia-about h3,.hestia-about h4,.hestia-about h5{font-weight:700}.widget h5{font-weight:700}.searchform:after,.search-form:after,.woocommerce-product-search:after{font-size:18px}.header-widgets-wrapper .widget,.header-widgets-wrapper .widget h5,.header-widgets-wrapper .widget .textwidget{line-height:inherit}.header-widgets-wrapper .widget.widget_shopping_cart:before{font-size:18px}.header-widgets-wrapper .widget.widget_shopping_cart .cart_list li.empty{font-size:inherit;line-height:1.2}.header-widgets-wrapper ul{line-height:inherit}.header-widgets-wrapper ul li a{font-size:inherit;line-height:inherit}.header-widgets-wrapper ul li a:before{font-size:16px}.woocommerce ul.product_list_widget li,.footer ul.product_list_widget li,ul.product_list_widget li{font-size:14px}.woocommerce ul.product_list_widget li a,.footer ul.product_list_widget li a,ul.product_list_widget li a{line-height:normal;font-weight:400}#secondary div[id^=woocommerce_rating_filter] li a,.footer div[id^=woocommerce_rating_filter] li a{font-weight:300}#secondary div[id^=woocommerce_layered_nav] ul li a,#secondary div[id^=woocommerce_product_categories] ul li a,.footer div[id^=woocommerce_layered_nav] ul li a,.footer div[id^=woocommerce_product_categories] ul li a{font-weight:400;font-size:14px}#secondary div[id^=woocommerce_layered_nav] ul .count,#secondary div[id^=woocommerce_product_categories] ul .count,.footer div[id^=woocommerce_layered_nav] ul .count,.footer div[id^=woocommerce_product_categories] ul .count{font-size:14px}#secondary div[id^=woocommerce_recent_reviews] .reviewer,.footer div[id^=woocommerce_recent_reviews] .reviewer{font-size:15px}#secondary div[id^=woocommerce_price_filter] .button,.footer div[id^=woocommerce_price_filter] .button{font-size:12px}#secondary div[id^=woocommerce_price_filter] .price_slider,.footer div[id^=woocommerce_price_filter] .price_slider{font-size:inherit;line-height:inherit}#secondary div[id^=woocommerce_price_filter] .price_label,.footer div[id^=woocommerce_price_filter] .price_label{font-size:14px}div[id^=woocommerce_product_tag_cloud].widget a{font-weight:600;line-height:27px;font-size:10px !important}div[id^=woocommerce_layered_nav_filters].widget li a{font-weight:100}.widget_shopping_cart.widget .remove{font-size:18px;line-height:18px;font-weight:600}.widget_shopping_cart.widget .variation dt,.widget_shopping_cart.widget .variation dd{font-size:12px;line-height:14px}.widget_shopping_cart.widget .variation dd p{font-size:12px;line-height:14px}aside .widget a{font-weight:500}.star-rating{line-height:1;font-size:12px}.woocommerce.single-product .product_title{font-weight:700}.woocommerce.single-product .summary .price,.woocommerce.single-product .woocommerce-variation-price .price{font-weight:300}.woocommerce.single-product .summary .price del,.woocommerce.single-product .summary .price ins,.woocommerce.single-product .summary .price span,.woocommerce.single-product .woocommerce-variation-price .price del,.woocommerce.single-product .woocommerce-variation-price .price ins,.woocommerce.single-product .woocommerce-variation-price .price span{font-weight:300}.woocommerce.single-product .summary .price ins{font-weight:400}.woocommerce.single-product .summary .price.price-unit{font-size:16px}.woocommerce.single-product div.product form.cart table.variations td.value:before{font-size:12px}.woocommerce.single-product div.product form.cart table.variations td label{font-weight:400}.woocommerce.single-product div.product form.cart .reset_variations{font-size:14px}.woocommerce.single-product div.product .woocommerce-tabs ul.tabs.wc-tabs li a{font-size:14px;font-weight:400;line-height:24px}.woocommerce.single-product .product .woocommerce-product-rating .star-rating{font-size:12px}.woocommerce.single-product .product .woocommerce-review-link{font-size:14px}.woocommerce.single-product .section-text{font-size:14px}.woocommerce .shop-item p{font-size:14px}.woocommerce ul.products li.product .onsale,.woocommerce span.onsale{font-size:12px;font-weight:300;line-height:50px}.woocommerce .single-product div.product form.cart .button,.woocommerce #respond input#submit,.woocommerce a.button,.woocommerce button.button,.woocommerce input.button,.woocommerce #respond input#submit.alt,.woocommerce a.button.alt,.woocommerce button.button.alt{font-size:12px;font-weight:400}.woocommerce input.button.alt{font-size:12px;font-weight:400}.woocommerce input.button:disabled{font-size:12px;font-weight:400}.woocommerce input.button[disabled]{font-size:12px;font-weight:400}.woocommerce .cart-collaterals .cart_totals th{font-weight:300}.woocommerce .cart-collaterals .cart_totals td{font-weight:700}.woocommerce .cart-collaterals .cart_totals .checkout-button{font-size:14px}.woocommerce .product .card-product .card-description p{font-weight:300}.woocommerce ul.products li.product .price ins{font-weight:300}.woocommerce .hestia-features p{font-weight:300}.woocommerce .related.products h2{font-weight:700}.woocommerce ul.products li.product .price{font-weight:300}.woocommerce ul.products li.product .price.price-unit{font-size:12px}.woocommerce nav.woocommerce-pagination ul li a{font-size:14px;font-weight:400;line-height:30px}.woocommerce nav.woocommerce-pagination ul li span{line-height:30px}.woocommerce dl.variation dd p{font-size:14px}.woocommerce .col2-set .woocommerce-account-fields label.checkbox span{font-weight:300}.woocommerce .woocommerce-breadcrumb{font-size:12px}.woocommerce .section-text{font-size:14px}.woocommerce .woocommerce-result-count{font-size:14px}.woocommerce ul.products li.product .onsale,.woocommerce span.onsale{font-size:12px;font-weight:300;line-height:35px;border-radius:3px;width:auto;height:auto}.woocommerce .woocommerce-ordering:before{font-size:12px}.woocommerce .product .wc-gzd-additional-info{font-size:12px;line-height:1.5}.woocommerce .comment-reply-title{font-weight:700}.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta .woocommerce-review__dash,.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta .woocommerce-review__published-date{font-size:75%}.woocommerce.archive .blog-post .products li.product-category a h2{line-height:1.5}.woocommerce.archive .blog-post .products li.product-category a h2 .count{font-weight:300}.products .shop-item .added_to_cart{font-size:10px}.woocommerce-cart .shop_table .actions .coupon .input-text{font-size:14px}.woocommerce-cart table.shop_table th{font-size:13px;font-weight:300}.woocommerce-cart table.shop_table .product-name a{font-size:16px;font-weight:500;line-height:30px}.woocommerce-cart table.shop_table td.actions input[type=submit],.woocommerce-cart table.shop_table td.actions button[type=submit]{font-size:14px}.woocommerce-cart p.units-info{line-height:1.5;font-size:14px}.woocommerce-cart .wc-gzd-additional-wrapper p{font-size:14px;font-weight:700}.woocommerce-checkout .form-row label{font-weight:300}.woocommerce-checkout .woocommerce-checkout-payment .form-row .woocommerce-form__label-for-checkbox,.woocommerce-checkout .woocommerce-checkout-payment li>label{font-weight:400}.woocommerce-checkout .woocommerce-shipping-fields h3 label{line-height:1}.woocommerce-checkout .woocommerce-shipping-fields h3 label span{font-weight:300}.woocommerce-checkout .col-md-12 #customer_details label{font-weight:500}.woocommerce-checkout .shop_table tr td p.units-info{font-size:12px}.woocommerce-checkout .shop_table .wc-gzd-additional-info{font-size:14px}#add_payment_method .wc-proceed-to-checkout a.checkout-button,.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button{font-size:12px;font-weight:400}.woocommerce-account .woocommerce-button,.woocommerce-account .woocommerce-Button,.woocommerce-account a.button{line-height:20px !important}.woocommerce-account .woocommerce-MyAccount-content h2{font-weight:600}.added_to_cart.wc-forward{font-weight:400;font-size:10px;line-height:30px}.variations tr .label{font-size:14px}.woocommerce-info,.woocommerce-error,.woocommerce-message{line-height:20px}.woocommerce-info li,.woocommerce-error li,.woocommerce-message li{line-height:1.5}.woocommerce-info>a.button,.woocommerce-error>a.button,.woocommerce-message>a.button{font-size:12px;font-weight:bold}.woocommerce-info a{font-weight:700}.woocommerce-message a:not(.button){font-weight:800}@media (max-width: 991px){.woocommerce-account input.woocommerce-Button.button{font-size:11px}.woocommerce-breadcrumb{line-height:33px}}@media (min-width: 769px){.navbar.full-screen-menu .navbar-nav>li a{font-size:17px}}@media (max-width: 768px){h4.author{font-size:16px}.woocommerce-cart table.shop_table dl.variation dd,.woocommerce-cart table.shop_table dl.variation dt{font-size:16px;line-height:30px}.woocommerce-cart table.shop_table dl.variation dd p{font-size:16px}.woocommerce-cart table.shop_table td.product-name{line-height:30px}.woocommerce-checkout td.product-name dl.variation dt,.woocommerce-checkout td.product-name dl.variation dd{font-size:16px}.woocommerce-checkout td.product-name dl.variation dd p{font-size:16px}.navbar .navbar-nav li>a>i,.navbar .navbar-nav li>a i{font-size:22px}.navbar .navbar-nav li .caret{font-size:20px}.navbar .navbar-nav li .dropdown>i,.navbar .navbar-nav li .dropdown i{font-size:20px}.navbar .navbar-nav .dropdown .dropdown-menu li a{line-height:20px}.navbar .navbar-nav .dropdown .dropdown-menu li a .caret{line-height:1}}@media (max-width: 480px){.woocommerce .woocommerce-ordering select,.woocommerce-page .woocommerce-ordering select{font-size:12px}}body{direction:ltr;color:#3C4858;font-family:"Roboto","Helvetica","Arial",sans-serif}h1,h2,h3,h4,h5,h6{font-family:"Roboto","Helvetica","Arial",sans-serif}a{color:#9c27b0}a:hover,a:focus{color:#89229b;text-decoration:none}blockquote p{font-style:italic}h3{margin:20px 0 10px}h5{margin-bottom:15px}h6.category{text-transform:uppercase}.hestia-title,.title,.card-title,.info-title,.footer-brand,.footer-big h4,.footer-big h5,.media .media-heading,.woocommerce ul.products[class*="columns-"] li.product-category h2{font-family:"Roboto Slab","Times New Roman",serif}.hestia-title,.hestia-title a,.hestia-title a:hover,.title,.title a,.title a:hover,.card-title,.card-title a,.card-title a:hover,.info-title,.info-title a,.info-title a:hover,.footer-brand,.footer-brand a,.footer-brand a:hover,.footer-big h4,.footer-big h4 a,.footer-big h4 a:hover,.footer-big h5,.footer-big h5 a,.footer-big h5 a:hover,.media .media-heading,.media .media-heading a,.media .media-heading a:hover,.woocommerce ul.products[class*="columns-"] li.product-category h2,.woocommerce ul.products[class*="columns-"] li.product-category h2 a,.woocommerce ul.products[class*="columns-"] li.product-category h2 a:hover{color:#3C4858;text-decoration:none;word-wrap:break-word}.page-header .hestia-title{line-height:1.4}.title-in-content{line-height:1.3}h1.title,h1.hestia-title,.pricing h2.title,.pricing h2.hestia-title,.contactus h2.title,.contactus h2.hestia-title{margin-bottom:30px}h2.title,h2.hestia-title{margin-bottom:10px}.carousel h1.hestia-title,.carousel h2.title{font-family:"Roboto","Helvetica","Arial",sans-serif}.carousel span.sub-title{display:block;margin:10px 0 0;font-family:"Roboto Slab","Times New Roman",serif}.carousel .buttons{margin-top:60px}.description,.card-description,.footer-big{color:#999}.card-description.entry-content{color:#3C4858}.subscribe-line-image .subscribe-description{color:#efefef}.text-warning{color:#ff9800}.text-primary{color:#9c27b0}.text-danger{color:#f44336}.text-success{color:#4caf50}.text-info{color:#00bcd4}.text-rose{color:#e91e63}.text-gray{color:#999}.has-black-color{color:#000}.has-white-color{color:#fff}.has-background.has-black-background-color{background-color:#000}.has-background.has-white-background-color{background-color:#fff}.single-post .blog-post .section-text h1,.single-post .blog-post .section-text h2,.single-post .blog-post .section-text h3,.single-post .blog-post .section-text h4,.single-post .blog-post .section-text h5,.single-post .blog-post .section-text h6,.single-post .blog-post .section-text p,.page:not(.woocommerce-page) .blog-post .section-text h1,.page:not(.woocommerce-page) .blog-post .section-text h2,.page:not(.woocommerce-page) .blog-post .section-text h3,.page:not(.woocommerce-page) .blog-post .section-text h4,.page:not(.woocommerce-page) .blog-post .section-text h5,.page:not(.woocommerce-page) .blog-post .section-text h6,.page:not(.woocommerce-page) .blog-post .section-text p{margin:0 0 15px}.single-post .blog-post .section-text h1.form-submit,.single-post .blog-post .section-text h2.form-submit,.single-post .blog-post .section-text h3.form-submit,.single-post .blog-post .section-text h4.form-submit,.single-post .blog-post .section-text h5.form-submit,.single-post .blog-post .section-text h6.form-submit,.single-post .blog-post .section-text p.form-submit,.page:not(.woocommerce-page) .blog-post .section-text h1.form-submit,.page:not(.woocommerce-page) .blog-post .section-text h2.form-submit,.page:not(.woocommerce-page) .blog-post .section-text h3.form-submit,.page:not(.woocommerce-page) .blog-post .section-text h4.form-submit,.page:not(.woocommerce-page) .blog-post .section-text h5.form-submit,.page:not(.woocommerce-page) .blog-post .section-text h6.form-submit,.page:not(.woocommerce-page) .blog-post .section-text p.form-submit{margin:0 0 10px}.tooltip{opacity:0;-webkit-transition:opacity, -webkit-transform 0.2s ease;transition:opacity, -webkit-transform 0.2s ease;transition:opacity, transform 0.2s ease;transition:opacity, transform 0.2s ease, -webkit-transform 0.2s ease;-webkit-transform:translate3d(0, 5px, 0);-ms-transform:translate3d(0, 5px, 0);transform:translate3d(0, 5px, 0)}.tooltip.in{opacity:1;-webkit-transform:translate3d(0, 0px, 0);-ms-transform:translate3d(0, 0px, 0);transform:translate3d(0, 0px, 0)}.tooltip.left .tooltip-arrow{border-left-color:#fff}.tooltip.right .tooltip-arrow{border-right-color:#fff}.tooltip.top .tooltip-arrow{border-top-color:#fff}.tooltip.bottom .tooltip-arrow{border-bottom-color:#fff}.tooltip-inner{min-width:130px;padding:10px 15px;border:none;border-radius:3px;color:#555;background:#fff;-webkit-box-shadow:0 8px 10px 1px rgba(0,0,0,0.14),0 3px 14px 2px rgba(0,0,0,0.12),0 5px 5px -3px rgba(0,0,0,0.2);box-shadow:0 8px 10px 1px rgba(0,0,0,0.14),0 3px 14px 2px rgba(0,0,0,0.12),0 5px 5px -3px rgba(0,0,0,0.2);font-size:12px;line-height:1.5;text-transform:none}.screen-reader-text{clip:rect(1px, 1px, 1px, 1px);position:absolute !important;height:1px;width:1px;overflow:hidden}.screen-reader-text:focus{background-color:#f1f1f1;border-radius:3px;-webkit-box-shadow:0 0 2px 2px rgba(0,0,0,0.6);box-shadow:0 0 2px 2px rgba(0,0,0,0.6);clip:auto !important;color:#21759b;display:block;font-size:14px;font-weight:bold;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}.container{max-width:100%}@media (min-width: 749px){.container{max-width:748px}}@media (min-width: 768px){.container{max-width:750px}}@media (min-width: 992px){.container{max-width:970px}}@media (min-width: 1200px){.container{max-width:2000px}}body{direction:ltr;background-color:#e5e5e5;overflow-x:hidden}*{-webkit-tap-highlight-color:rgba(255,255,255,0);-webkit-tap-highlight-color:transparent}embed,iframe,img,object,video,button,input,select,textarea,.wp-caption{max-width:100%}img{height:auto}ul,ol{margin-bottom:30px}legend{border-bottom:0}.container{max-width:100%}.margin-left-auto{margin-left:auto}.margin-right-auto{margin-right:auto}.animation-transition-fast,.navbar,.panel .panel-heading i,.section-cards .card{-webkit-transition:all 150ms ease;transition:all 150ms ease}.thumbnail{padding:0;border:0 none;border-radius:0}.section-image .description .default-link,.section-image .default-link,.hestia-title .default-link,.title .default-link,.default-link:hover,.default-link{color:#fff}.description .default-link{color:#999}body.menu-open{overflow:hidden}@media (min-width: 992px){.row.hestia-like-table{display:table;width:100%}.row.hestia-like-table>div{display:table-cell;vertical-align:middle;float:none}}@media (max-width: 991px){.hestia-xs-text-center{text-align:center}}.hestia-blogs article:nth-of-type(6n) .category a,.related.products ul li:nth-of-type(6n) .category a,.woocommerce.archive .blog-post .products li:nth-of-type(6n) .category a,.woocommerce .products li:nth-of-type(6n) .category a,.shop-item:nth-of-type(6n) .category a,.related-posts div:nth-of-type(6n) .category a{color:#4caf50}.hestia-blogs article:nth-of-type(6n+1) .category a,.related.products ul li:nth-of-type(6n+1) .category a,.woocommerce.archive .blog-post .products li:nth-of-type(6n+1) .category a,.woocommerce .products li:nth-of-type(6n+1) .category a,.shop-item:nth-of-type(6n+1) .category a,.related-posts div:nth-of-type(6n+1) .category a{color:#89229b}.hestia-blogs article:nth-of-type(6n+2) .category a,.related.products ul li:nth-of-type(6n+2) .category a,.woocommerce.archive .blog-post .products li:nth-of-type(6n+2) .category a,.woocommerce .products li:nth-of-type(6n+2) .category a,.shop-item:nth-of-type(6n+2) .category a,.related-posts div:nth-of-type(6n+2) .category a{color:#00bcd4}.hestia-blogs article:nth-of-type(6n+3) .category a,.related.products ul li:nth-of-type(6n+3) .category a,.woocommerce.archive .blog-post .products li:nth-of-type(6n+3) .category a,.woocommerce .products li:nth-of-type(6n+3) .category a,.shop-item:nth-of-type(6n+3) .category a,.related-posts div:nth-of-type(6n+3) .category a{color:#f44336}.hestia-blogs article:nth-of-type(6n+4) .category a,.related.products ul li:nth-of-type(6n+4) .category a,.woocommerce.archive .blog-post .products li:nth-of-type(6n+4) .category a,.woocommerce .products li:nth-of-type(6n+4) .category a,.shop-item:nth-of-type(6n+4) .category a,.related-posts div:nth-of-type(6n+4) .category a{color:#ff9800}.hestia-blogs article:nth-of-type(6n+5) .category a,.related.products ul li:nth-of-type(6n+5) .category a,.woocommerce.archive .blog-post .products li:nth-of-type(6n+5) .category a,.woocommerce .products li:nth-of-type(6n+5) .category a,.shop-item:nth-of-type(6n+5) .category a,.related-posts div:nth-of-type(6n+5) .category a{color:#e91e63}.hestia-blogs article:nth-of-type(6n) .card-body .btn{background-color:#4caf50}.hestia-blogs article:nth-of-type(6n+1) .card-body .btn{background-color:#89229b}.hestia-blogs article:nth-of-type(6n+2) .card-body .btn{background-color:#00bcd4}.hestia-blogs article:nth-of-type(6n+3) .card-body .btn{background-color:#f44336}.hestia-blogs article:nth-of-type(6n+4) .card-body .btn{background-color:#ff9800}.hestia-blogs article:nth-of-type(6n+5) .card-body .btn{background-color:#e91e63}.wp-audio-shortcode{margin-bottom:20px}.wp-video-shortcode{margin-bottom:20px}input[type="radio"]+label,input[type="checkbox"]+label{font-weight:400}blockquote cite{font-size:.8em;color:#777;font-style:normal;font-weight:400}:focus,:active,::-moz-focus-inner{outline:0 !important}button,input[type="submit"]::-moz-focus-inner,input[type="button"]::-moz-focus-inner,.btn::-moz-focus-inner{border:0}button,input,select,textarea{font-family:inherit;padding:7px}button:focus,input:focus,select:focus,textarea:focus{outline:0 !important}button,input[type="submit"],input[type="button"],.btn{position:relative;margin:10px 1px;padding:12px 30px;border:none;border-radius:3px;white-space:normal;letter-spacing:0;text-transform:uppercase}input[type="number"]{padding:0}button,input[type="submit"],input[type="button"],.btn,.btn.btn-default{-webkit-box-shadow:0 2px 2px 0 rgba(153,153,153,0.14),0 3px 1px -2px rgba(153,153,153,0.2),0 1px 5px 0 rgba(153,153,153,0.12);-moz-box-shadow:0 2px 2px 0 rgba(153,153,153,0.14),0 3px 1px -2px rgba(153,153,153,0.2),0 1px 5px 0 rgba(153,153,153,0.12);box-shadow:0 2px 2px 0 rgba(153,153,153,0.14),0 3px 1px -2px rgba(153,153,153,0.2),0 1px 5px 0 rgba(153,153,153,0.12)}button:hover,button:focus,button:active,input[type="submit"]:hover,input[type="submit"]:focus,input[type="submit"]:active,input[type="button"]:hover,input[type="button"]:focus,input[type="button"]:active,.btn:hover,.btn:focus,.btn:active,.btn.btn-default:hover,.btn.btn-default:focus,.btn.btn-default:active{-webkit-box-shadow:0 14px 26px -12px rgba(153,153,153,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(153,153,153,0.2);-moz-box-shadow:0 14px 26px -12px rgba(153,153,153,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(153,153,153,0.2);box-shadow:0 14px 26px -12px rgba(153,153,153,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(153,153,153,0.2)}button:hover,button:focus,input[type="submit"]:hover,input[type="submit"]:focus,input[type="submit"]:active,input[type="button"]:hover,input[type="button"]:focus,input[type="button"]:active,.btn,.btn:hover,.btn:focus,.btn:active,.btn.active,.btn:active:focus,.btn:active:hover,.btn.active:focus,.btn.active:hover,.open>.btn.dropdown-toggle,.open>.btn.dropdown-toggle:focus,.open>.btn.dropdown-toggle:hover,.btn.btn-default,.btn.btn-default:hover,.btn.btn-default:focus,.btn.btn-default:active,.btn.btn-default.active,.btn.btn-default:active:focus,.btn.btn-default:active:hover,.btn.btn-default.active:focus,.btn.btn-default.active:hover,.open>.btn.btn-default.dropdown-toggle,.open>.btn.btn-default.dropdown-toggle:focus,.open>.btn.btn-default.dropdown-toggle:hover{color:#fff;background-color:#999;outline:none}.btn>a:hover,.btn>a:focus,.btn>a:active,.btn:hover>a,.btn:focus>a,.btn:active>a{color:#fff}.btn.btn-simple,.btn.btn-simple:hover,.btn.btn-simple:focus,.btn.btn-simple:active,.btn.btn-default.btn-simple,.btn.btn-default.btn-simple:hover,.btn.btn-default.btn-simple:focus,.btn.btn-default.btn-simple:active{color:#999;background-color:transparent}button,input[type="submit"],input[type="button"],.btn.btn-primary{-webkit-box-shadow:0 2px 2px 0 rgba(156,39,176,0.14),0 3px 1px -2px rgba(156,39,176,0.2),0 1px 5px 0 rgba(156,39,176,0.12);-moz-box-shadow:0 2px 2px 0 rgba(156,39,176,0.14),0 3px 1px -2px rgba(156,39,176,0.2),0 1px 5px 0 rgba(156,39,176,0.12);box-shadow:0 2px 2px 0 rgba(156,39,176,0.14),0 3px 1px -2px rgba(156,39,176,0.2),0 1px 5px 0 rgba(156,39,176,0.12)}button:hover,button:focus,button:active,input[type="submit"]:hover,input[type="submit"]:focus,input[type="submit"]:active,input[type="button"]:hover,input[type="button"]:focus,input[type="button"]:active,.btn.btn-primary:hover,.btn.btn-primary:focus,.btn.btn-primary:active{-webkit-box-shadow:0 14px 26px -12px rgba(156,39,176,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(156,39,176,0.2);-moz-box-shadow:0 14px 26px -12px rgba(156,39,176,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(156,39,176,0.2);box-shadow:0 14px 26px -12px rgba(156,39,176,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(156,39,176,0.2)}.btn.btn-primary.btn-simple,.btn.btn-primary.btn-simple:hover,.btn.btn-primary.btn-simple:focus,.btn.btn-primary.btn-simple:active{color:#9c27b0;background-color:transparent}button,button:hover,input[type="submit"],input[type="submit"]:hover,input[type="button"],input[type="button"]:hover,input#searchsubmit,.btn.btn-primary,.btn.btn-primary:hover,.btn.btn-primary:focus,.btn.btn-primary:active,.btn.btn-primary.active,.btn.btn-primary:active:focus,.btn.btn-primary:active:hover,.btn.btn-primary.active:focus,.btn.btn-primary.active:hover,.open>.btn.btn-primary.dropdown-toggle,.open>.btn.btn-primary.dropdown-toggle:focus,.open>.btn.btn-primary.dropdown-toggle:hover{color:#fff;background-color:#9c27b0}.btn.btn-white{box-shadow:0 2px 2px 0 rgba(153,153,153,0.14),0 3px 1px -2px rgba(153,153,153,0.2),0 1px 5px 0 rgba(153,153,153,0.12);color:#999999;background-color:#fff}.btn.btn-white.btn-white:focus,.btn.btn-white.btn-white:hover{color:#fff;background-color:rgba(153,153,153,0.6)}.btn.btn-white.btn-simple{color:#fff;background:transparent}.btn.btn-round{border-radius:30px}.btn:not(.btn-just-icon):not(.btn-fab) i{position:relative}.btn.btn-just-icon{padding:12px}.btn.btn-just-icon:hover{box-shadow:none}.btn.btn-just-icon i{width:20px}.btn.btn-just-icon.btn-lg{padding:13px 18px}.btn.btn-border{background:transparent;border:1px solid #d2d2d2;color:#999}.btn.btn-border:hover,.btn.btn-border:focus{background:transparent;color:#3C4858}.btn i{position:relative;top:-1px;vertical-align:middle}.navbar button.navbar-toggle,.navbar button.navbar-toggle:hover{color:#555}.navbar .button:hover{box-shadow:none !important;color:#e91e63}.navbar .dropdown-menu li.btn:hover>a,.navbar .dropdown-menu li.btn:focus>a,.navbar .dropdown-menu li.btn:active>a{color:#ffffff !important}.btn.btn-facebook,.btn.btn-facebook:hover,.btn.btn-facebook:focus,.btn.btn-facebook:active,.navbar .navbar-nav>li>a.btn.btn-facebook,.navbar .navbar-nav>li>a.btn.btn-facebook:hover,.navbar .navbar-nav>li>a.btn.btn-facebook:focus,.navbar .navbar-nav>li>a.btn.btn-facebook:active{color:#fff;background-color:#3b5998}.btn.btn-facebook,.navbar .navbar-nav>li>a.btn.btn-facebook{-webkit-box-shadow:0 2px 2px 0 rgba(59,89,152,0.14),0 3px 1px -2px rgba(59,89,152,0.2),0 1px 5px 0 rgba(59,89,152,0.12);-moz-box-shadow:0 2px 2px 0 rgba(59,89,152,0.14),0 3px 1px -2px rgba(59,89,152,0.2),0 1px 5px 0 rgba(59,89,152,0.12);box-shadow:0 2px 2px 0 rgba(59,89,152,0.14),0 3px 1px -2px rgba(59,89,152,0.2),0 1px 5px 0 rgba(59,89,152,0.12)}.btn.btn-facebook:hover,.btn.btn-facebook:focus,.btn.btn-facebook:active,.navbar .navbar-nav>li>a.btn.btn-facebook:hover,.navbar .navbar-nav>li>a.btn.btn-facebook:focus,.navbar .navbar-nav>li>a.btn.btn-facebook:active{-webkit-box-shadow:0 14px 26px -12px rgba(59,89,152,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(59,89,152,0.2);-moz-box-shadow:0 14px 26px -12px rgba(59,89,152,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(59,89,152,0.2);box-shadow:0 14px 26px -12px rgba(59,89,152,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(59,89,152,0.2)}.btn.btn-facebook.btn-simple,.navbar .navbar-nav>li>a.btn.btn-facebook.btn-simple{color:#3b5998;background-color:transparent}.btn.btn-twitter,.btn.btn-twitter:hover,.btn.btn-twitter:focus,.btn.btn-twitter:active,.navbar .navbar-nav>li>a.btn.btn-twitter,.navbar .navbar-nav>li>a.btn.btn-twitter:hover,.navbar .navbar-nav>li>a.btn.btn-twitter:focus,.navbar .navbar-nav>li>a.btn.btn-twitter:active{color:#fff;background-color:#55acee}.btn.btn-twitter,.navbar .navbar-nav>li>a.btn.btn-twitter{-webkit-box-shadow:0 2px 2px 0 rgba(85,172,238,0.14),0 3px 1px -2px rgba(85,172,238,0.2),0 1px 5px 0 rgba(85,172,238,0.12);-moz-box-shadow:0 2px 2px 0 rgba(85,172,238,0.14),0 3px 1px -2px rgba(85,172,238,0.2),0 1px 5px 0 rgba(85,172,238,0.12);box-shadow:0 2px 2px 0 rgba(85,172,238,0.14),0 3px 1px -2px rgba(85,172,238,0.2),0 1px 5px 0 rgba(85,172,238,0.12)}.btn.btn-twitter:hover,.btn.btn-twitter:focus,.btn.btn-twitter:active,.navbar .navbar-nav>li>a.btn.btn-twitter:hover,.navbar .navbar-nav>li>a.btn.btn-twitter:focus,.navbar .navbar-nav>li>a.btn.btn-twitter:active{-webkit-box-shadow:0 14px 26px -12px rgba(85,172,238,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(85,172,238,0.2);-moz-box-shadow:0 14px 26px -12px rgba(85,172,238,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(85,172,238,0.2);box-shadow:0 14px 26px -12px rgba(85,172,238,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(85,172,238,0.2)}.btn.btn-twitter.btn-simple,.navbar .navbar-nav>li>a.btn.btn-twitter.btn-simple{color:#55acee;background-color:transparent}.btn.btn-pinterest,.btn.btn-pinterest:hover,.btn.btn-pinterest:focus,.btn.btn-pinterest:active,.navbar .navbar-nav>li>a.btn.btn-pinterest,.navbar .navbar-nav>li>a.btn.btn-pinterest:hover,.navbar .navbar-nav>li>a.btn.btn-pinterest:focus,.navbar .navbar-nav>li>a.btn.btn-pinterest:active{color:#fff;background-color:#cc2127}.btn.btn-pinterest,.navbar .navbar-nav>li>a.btn.btn-pinterest{-webkit-box-shadow:0 2px 2px 0 rgba(204,33,39,0.14),0 3px 1px -2px rgba(204,33,39,0.2),0 1px 5px 0 rgba(204,33,39,0.12);-moz-box-shadow:0 2px 2px 0 rgba(204,33,39,0.14),0 3px 1px -2px rgba(204,33,39,0.2),0 1px 5px 0 rgba(204,33,39,0.12);box-shadow:0 2px 2px 0 rgba(204,33,39,0.14),0 3px 1px -2px rgba(204,33,39,0.2),0 1px 5px 0 rgba(204,33,39,0.12)}.btn.btn-pinterest:hover,.btn.btn-pinterest:focus,.btn.btn-pinterest:active,.navbar .navbar-nav>li>a.btn.btn-pinterest:hover,.navbar .navbar-nav>li>a.btn.btn-pinterest:focus,.navbar .navbar-nav>li>a.btn.btn-pinterest:active{-webkit-box-shadow:0 14px 26px -12px rgba(204,33,39,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(204,33,39,0.2);-moz-box-shadow:0 14px 26px -12px rgba(204,33,39,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(204,33,39,0.2);box-shadow:0 14px 26px -12px rgba(204,33,39,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(204,33,39,0.2)}.btn.btn-pinterest.btn-simple,.navbar .navbar-nav>li>a.btn.btn-pinterest.btn-simple{color:#cc2127;background-color:transparent}.btn.btn-google,.btn.btn-google:hover,.btn.btn-google:focus,.btn.btn-google:active,.navbar .navbar-nav>li>a.btn.btn-google,.navbar .navbar-nav>li>a.btn.btn-google:hover,.navbar .navbar-nav>li>a.btn.btn-google:focus,.navbar .navbar-nav>li>a.btn.btn-google:active{color:#fff;background-color:#dd4b39}.btn.btn-google,.navbar .navbar-nav>li>a.btn.btn-google{-webkit-box-shadow:0 2px 2px 0 rgba(221,75,57,0.14),0 3px 1px -2px rgba(221,75,57,0.2),0 1px 5px 0 rgba(221,75,57,0.12);-moz-box-shadow:0 2px 2px 0 rgba(221,75,57,0.14),0 3px 1px -2px rgba(221,75,57,0.2),0 1px 5px 0 rgba(221,75,57,0.12);box-shadow:0 2px 2px 0 rgba(221,75,57,0.14),0 3px 1px -2px rgba(221,75,57,0.2),0 1px 5px 0 rgba(221,75,57,0.12)}.btn.btn-google:hover,.btn.btn-google:focus,.btn.btn-google:active,.navbar .navbar-nav>li>a.btn.btn-google:hover,.navbar .navbar-nav>li>a.btn.btn-google:focus,.navbar .navbar-nav>li>a.btn.btn-google:active{-webkit-box-shadow:0 14px 26px -12px rgba(221,75,57,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(221,75,57,0.2);-moz-box-shadow:0 14px 26px -12px rgba(221,75,57,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(221,75,57,0.2);box-shadow:0 14px 26px -12px rgba(221,75,57,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(221,75,57,0.2)}.btn.btn-google.btn-simple,.navbar .navbar-nav>li>a.btn.btn-google.btn-simple{color:#dd4b39;background-color:transparent}.btn.btn-linkedin,.btn.btn-linkedin:hover,.btn.btn-linkedin:focus,.btn.btn-linkedin:active,.navbar .navbar-nav>li>a.btn.btn-linkedin,.navbar .navbar-nav>li>a.btn.btn-linkedin:hover,.navbar .navbar-nav>li>a.btn.btn-linkedin:focus,.navbar .navbar-nav>li>a.btn.btn-linkedin:active{color:#fff;background-color:#0976b4}.btn.btn-linkedin,.navbar .navbar-nav>li>a.btn.btn-linkedin{-webkit-box-shadow:0 2px 2px 0 rgba(9,118,180,0.14),0 3px 1px -2px rgba(9,118,180,0.2),0 1px 5px 0 rgba(9,118,180,0.12);-moz-box-shadow:0 2px 2px 0 rgba(9,118,180,0.14),0 3px 1px -2px rgba(9,118,180,0.2),0 1px 5px 0 rgba(9,118,180,0.12);box-shadow:0 2px 2px 0 rgba(9,118,180,0.14),0 3px 1px -2px rgba(9,118,180,0.2),0 1px 5px 0 rgba(9,118,180,0.12)}.btn.btn-linkedin:hover,.btn.btn-linkedin:focus,.btn.btn-linkedin:active,.navbar .navbar-nav>li>a.btn.btn-linkedin:hover,.navbar .navbar-nav>li>a.btn.btn-linkedin:focus,.navbar .navbar-nav>li>a.btn.btn-linkedin:active{-webkit-box-shadow:0 14px 26px -12px rgba(9,118,180,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(9,118,180,0.2);-moz-box-shadow:0 14px 26px -12px rgba(9,118,180,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(9,118,180,0.2);box-shadow:0 14px 26px -12px rgba(9,118,180,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(9,118,180,0.2)}.btn.btn-linkedin.btn-simple,.navbar .navbar-nav>li>a.btn.btn-linkedin.btn-simple{color:#0976b4;background-color:transparent}.btn.btn-dribbble,.btn.btn-dribbble:hover,.btn.btn-dribbble:focus,.btn.btn-dribbble:active,.navbar .navbar-nav>li>a.btn.btn-dribbble,.navbar .navbar-nav>li>a.btn.btn-dribbble:hover,.navbar .navbar-nav>li>a.btn.btn-dribbble:focus,.navbar .navbar-nav>li>a.btn.btn-dribbble:active{color:#fff;background-color:#ea4c89}.btn.btn-dribbble,.navbar .navbar-nav>li>a.btn.btn-dribbble{-webkit-box-shadow:0 2px 2px 0 rgba(234,76,137,0.14),0 3px 1px -2px rgba(234,76,137,0.2),0 1px 5px 0 rgba(234,76,137,0.12);-moz-box-shadow:0 2px 2px 0 rgba(234,76,137,0.14),0 3px 1px -2px rgba(234,76,137,0.2),0 1px 5px 0 rgba(234,76,137,0.12);box-shadow:0 2px 2px 0 rgba(234,76,137,0.14),0 3px 1px -2px rgba(234,76,137,0.2),0 1px 5px 0 rgba(234,76,137,0.12)}.btn.btn-dribbble:hover,.btn.btn-dribbble:focus,.btn.btn-dribbble:active,.navbar .navbar-nav>li>a.btn.btn-dribbble:hover,.navbar .navbar-nav>li>a.btn.btn-dribbble:focus,.navbar .navbar-nav>li>a.btn.btn-dribbble:active{-webkit-box-shadow:0 14px 26px -12px rgba(234,76,137,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(234,76,137,0.2);-moz-box-shadow:0 14px 26px -12px rgba(234,76,137,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(234,76,137,0.2);box-shadow:0 14px 26px -12px rgba(234,76,137,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(234,76,137,0.2)}.btn.btn-dribbble.btn-simple,.navbar .navbar-nav>li>a.btn.btn-dribbble.btn-simple{color:#ea4c89;background-color:transparent}.btn.btn-github,.btn.btn-github:hover,.btn.btn-github:focus,.btn.btn-github:active,.navbar .navbar-nav>li>a.btn.btn-github,.navbar .navbar-nav>li>a.btn.btn-github:hover,.navbar .navbar-nav>li>a.btn.btn-github:focus,.navbar .navbar-nav>li>a.btn.btn-github:active{color:#fff;background-color:#000}.btn.btn-github,.navbar .navbar-nav>li>a.btn.btn-github{-webkit-box-shadow:0 2px 2px 0 rgba(0,0,0,0.14),0 3px 1px -2px rgba(0,0,0,0.2),0 1px 5px 0 rgba(0,0,0,0.12);-moz-box-shadow:0 2px 2px 0 rgba(0,0,0,0.14),0 3px 1px -2px rgba(0,0,0,0.2),0 1px 5px 0 rgba(0,0,0,0.12);box-shadow:0 2px 2px 0 rgba(0,0,0,0.14),0 3px 1px -2px rgba(0,0,0,0.2),0 1px 5px 0 rgba(0,0,0,0.12)}.btn.btn-github:hover,.btn.btn-github:focus,.btn.btn-github:active,.navbar .navbar-nav>li>a.btn.btn-github:hover,.navbar .navbar-nav>li>a.btn.btn-github:focus,.navbar .navbar-nav>li>a.btn.btn-github:active{-webkit-box-shadow:0 14px 26px -12px rgba(0,0,0,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(0,0,0,0.2);-moz-box-shadow:0 14px 26px -12px rgba(0,0,0,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(0,0,0,0.2);box-shadow:0 14px 26px -12px rgba(0,0,0,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(0,0,0,0.2)}.btn.btn-github.btn-simple,.navbar .navbar-nav>li>a.btn.btn-github.btn-simple{color:#000;background-color:transparent}.btn.btn-youtube,.btn.btn-youtube:hover,.btn.btn-youtube:focus,.btn.btn-youtube:active,.navbar .navbar-nav>li>a.btn.btn-youtube,.navbar .navbar-nav>li>a.btn.btn-youtube:hover,.navbar .navbar-nav>li>a.btn.btn-youtube:focus,.navbar .navbar-nav>li>a.btn.btn-youtube:active{color:#fff;background-color:#e52d27}.btn.btn-youtube,.navbar .navbar-nav>li>a.btn.btn-youtube{-webkit-box-shadow:0 2px 2px 0 rgba(229,45,39,0.14),0 3px 1px -2px rgba(229,45,39,0.2),0 1px 5px 0 rgba(229,45,39,0.12);-moz-box-shadow:0 2px 2px 0 rgba(229,45,39,0.14),0 3px 1px -2px rgba(229,45,39,0.2),0 1px 5px 0 rgba(229,45,39,0.12);box-shadow:0 2px 2px 0 rgba(229,45,39,0.14),0 3px 1px -2px rgba(229,45,39,0.2),0 1px 5px 0 rgba(229,45,39,0.12)}.btn.btn-youtube:hover,.btn.btn-youtube:focus,.btn.btn-youtube:active,.navbar .navbar-nav>li>a.btn.btn-youtube:hover,.navbar .navbar-nav>li>a.btn.btn-youtube:focus,.navbar .navbar-nav>li>a.btn.btn-youtube:active{-webkit-box-shadow:0 14px 26px -12px rgba(229,45,39,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(229,45,39,0.2);-moz-box-shadow:0 14px 26px -12px rgba(229,45,39,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(229,45,39,0.2);box-shadow:0 14px 26px -12px rgba(229,45,39,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(229,45,39,0.2)}.btn.btn-youtube.btn-simple,.navbar .navbar-nav>li>a.btn.btn-youtube.btn-simple{color:#e52d27;background-color:transparent}.btn.btn-instagram,.btn.btn-instagram:hover,.btn.btn-instagram:focus,.btn.btn-instagram:active,.navbar .navbar-nav>li>a.btn.btn-instagram,.navbar .navbar-nav>li>a.btn.btn-instagram:hover,.navbar .navbar-nav>li>a.btn.btn-instagram:focus,.navbar .navbar-nav>li>a.btn.btn-instagram:active{color:#fff;background-color:#125688}.btn.btn-instagram,.navbar .navbar-nav>li>a.btn.btn-instagram{-webkit-box-shadow:0 2px 2px 0 rgba(18,86,136,0.14),0 3px 1px -2px rgba(18,86,136,0.2),0 1px 5px 0 rgba(18,86,136,0.12);-moz-box-shadow:0 2px 2px 0 rgba(18,86,136,0.14),0 3px 1px -2px rgba(18,86,136,0.2),0 1px 5px 0 rgba(18,86,136,0.12);box-shadow:0 2px 2px 0 rgba(18,86,136,0.14),0 3px 1px -2px rgba(18,86,136,0.2),0 1px 5px 0 rgba(18,86,136,0.12)}.btn.btn-instagram:hover,.btn.btn-instagram:focus,.btn.btn-instagram:active,.navbar .navbar-nav>li>a.btn.btn-instagram:hover,.navbar .navbar-nav>li>a.btn.btn-instagram:focus,.navbar .navbar-nav>li>a.btn.btn-instagram:active{-webkit-box-shadow:0 14px 26px -12px rgba(18,86,136,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(18,86,136,0.2);-moz-box-shadow:0 14px 26px -12px rgba(18,86,136,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(18,86,136,0.2);box-shadow:0 14px 26px -12px rgba(18,86,136,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(18,86,136,0.2)}.btn.btn-instagram.btn-simple,.navbar .navbar-nav>li>a.btn.btn-instagram.btn-simple{color:#125688;background-color:transparent}.btn.btn-reddit,.btn.btn-reddit:hover,.btn.btn-reddit:focus,.btn.btn-reddit:active,.navbar .navbar-nav>li>a.btn.btn-reddit,.navbar .navbar-nav>li>a.btn.btn-reddit:hover,.navbar .navbar-nav>li>a.btn.btn-reddit:focus,.navbar .navbar-nav>li>a.btn.btn-reddit:active{color:#fff;background-color:#ff4500}.btn.btn-reddit,.navbar .navbar-nav>li>a.btn.btn-reddit{-webkit-box-shadow:0 2px 2px 0 rgba(255,69,0,0.14),0 3px 1px -2px rgba(255,69,0,0.2),0 1px 5px 0 rgba(255,69,0,0.12);-moz-box-shadow:0 2px 2px 0 rgba(255,69,0,0.14),0 3px 1px -2px rgba(255,69,0,0.2),0 1px 5px 0 rgba(255,69,0,0.12);box-shadow:0 2px 2px 0 rgba(255,69,0,0.14),0 3px 1px -2px rgba(255,69,0,0.2),0 1px 5px 0 rgba(255,69,0,0.12)}.btn.btn-reddit:hover,.btn.btn-reddit:focus,.btn.btn-reddit:active,.navbar .navbar-nav>li>a.btn.btn-reddit:hover,.navbar .navbar-nav>li>a.btn.btn-reddit:focus,.navbar .navbar-nav>li>a.btn.btn-reddit:active{-webkit-box-shadow:0 14px 26px -12px rgba(255,69,0,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(255,69,0,0.2);-moz-box-shadow:0 14px 26px -12px rgba(255,69,0,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(255,69,0,0.2);box-shadow:0 14px 26px -12px rgba(255,69,0,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(255,69,0,0.2)}.btn.btn-reddit.btn-simple,.navbar .navbar-nav>li>a.btn.btn-reddit.btn-simple{color:#ff4500;background-color:transparent}.btn.btn-tumblr,.btn.btn-tumblr:hover,.btn.btn-tumblr:focus,.btn.btn-tumblr:active,.navbar .navbar-nav>li>a.btn.btn-tumblr,.navbar .navbar-nav>li>a.btn.btn-tumblr:hover,.navbar .navbar-nav>li>a.btn.btn-tumblr:focus,.navbar .navbar-nav>li>a.btn.btn-tumblr:active{color:#fff;background-color:#35465c}.btn.btn-tumblr,.navbar .navbar-nav>li>a.btn.btn-tumblr{-webkit-box-shadow:0 2px 2px 0 rgba(53,70,92,0.14),0 3px 1px -2px rgba(53,70,92,0.2),0 1px 5px 0 rgba(53,70,92,0.12);-moz-box-shadow:0 2px 2px 0 rgba(53,70,92,0.14),0 3px 1px -2px rgba(53,70,92,0.2),0 1px 5px 0 rgba(53,70,92,0.12);box-shadow:0 2px 2px 0 rgba(53,70,92,0.14),0 3px 1px -2px rgba(53,70,92,0.2),0 1px 5px 0 rgba(53,70,92,0.12)}.btn.btn-tumblr:hover,.btn.btn-tumblr:focus,.btn.btn-tumblr:active,.navbar .navbar-nav>li>a.btn.btn-tumblr:hover,.navbar .navbar-nav>li>a.btn.btn-tumblr:focus,.navbar .navbar-nav>li>a.btn.btn-tumblr:active{-webkit-box-shadow:0 14px 26px -12px rgba(53,70,92,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(53,70,92,0.2);-moz-box-shadow:0 14px 26px -12px rgba(53,70,92,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(53,70,92,0.2);box-shadow:0 14px 26px -12px rgba(53,70,92,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(53,70,92,0.2)}.btn.btn-tumblr.btn-simple,.navbar .navbar-nav>li>a.btn.btn-tumblr.btn-simple{color:#35465c;background-color:transparent}.btn.btn-behance,.btn.btn-behance:hover,.btn.btn-behance:focus,.btn.btn-behance:active,.navbar .navbar-nav>li>a.btn.btn-behance,.navbar .navbar-nav>li>a.btn.btn-behance:hover,.navbar .navbar-nav>li>a.btn.btn-behance:focus,.navbar .navbar-nav>li>a.btn.btn-behance:active{color:#fff;background-color:#1769ff}.btn.btn-behance,.navbar .navbar-nav>li>a.btn.btn-behance{-webkit-box-shadow:0 2px 2px 0 rgba(23,105,255,0.14),0 3px 1px -2px rgba(23,105,255,0.2),0 1px 5px 0 rgba(23,105,255,0.12);-moz-box-shadow:0 2px 2px 0 rgba(23,105,255,0.14),0 3px 1px -2px rgba(23,105,255,0.2),0 1px 5px 0 rgba(23,105,255,0.12);box-shadow:0 2px 2px 0 rgba(23,105,255,0.14),0 3px 1px -2px rgba(23,105,255,0.2),0 1px 5px 0 rgba(23,105,255,0.12)}.btn.btn-behance:hover,.btn.btn-behance:focus,.btn.btn-behance:active,.navbar .navbar-nav>li>a.btn.btn-behance:hover,.navbar .navbar-nav>li>a.btn.btn-behance:focus,.navbar .navbar-nav>li>a.btn.btn-behance:active{-webkit-box-shadow:0 14px 26px -12px rgba(23,105,255,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(23,105,255,0.2);-moz-box-shadow:0 14px 26px -12px rgba(23,105,255,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(23,105,255,0.2);box-shadow:0 14px 26px -12px rgba(23,105,255,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(23,105,255,0.2)}.btn.btn-behance.btn-simple,.navbar .navbar-nav>li>a.btn.btn-behance.btn-simple{color:#1769ff;background-color:transparent}.btn.btn-snapchat,.btn.btn-snapchat:hover,.btn.btn-snapchat:focus,.btn.btn-snapchat:active,.navbar .navbar-nav>li>a.btn.btn-snapchat,.navbar .navbar-nav>li>a.btn.btn-snapchat:hover,.navbar .navbar-nav>li>a.btn.btn-snapchat:focus,.navbar .navbar-nav>li>a.btn.btn-snapchat:active{color:#fff;background-color:#fffc00}.btn.btn-snapchat,.navbar .navbar-nav>li>a.btn.btn-snapchat{-webkit-box-shadow:0 2px 2px 0 rgba(255,252,0,0.14),0 3px 1px -2px rgba(255,252,0,0.2),0 1px 5px 0 rgba(255,252,0,0.12);-moz-box-shadow:0 2px 2px 0 rgba(255,252,0,0.14),0 3px 1px -2px rgba(255,252,0,0.2),0 1px 5px 0 rgba(255,252,0,0.12);box-shadow:0 2px 2px 0 rgba(255,252,0,0.14),0 3px 1px -2px rgba(255,252,0,0.2),0 1px 5px 0 rgba(255,252,0,0.12)}.btn.btn-snapchat:hover,.btn.btn-snapchat:focus,.btn.btn-snapchat:active,.navbar .navbar-nav>li>a.btn.btn-snapchat:hover,.navbar .navbar-nav>li>a.btn.btn-snapchat:focus,.navbar .navbar-nav>li>a.btn.btn-snapchat:active{-webkit-box-shadow:0 14px 26px -12px rgba(255,252,0,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(255,252,0,0.2);-moz-box-shadow:0 14px 26px -12px rgba(255,252,0,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(255,252,0,0.2);box-shadow:0 14px 26px -12px rgba(255,252,0,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(255,252,0,0.2)}.btn.btn-snapchat.btn-simple,.navbar .navbar-nav>li>a.btn.btn-snapchat.btn-simple{color:#fffc00;background-color:transparent}.btn.btn-deviantart,.btn.btn-deviantart:hover,.btn.btn-deviantart:focus,.btn.btn-deviantart:active,.navbar .navbar-nav>li>a.btn.btn-deviantart,.navbar .navbar-nav>li>a.btn.btn-deviantart:hover,.navbar .navbar-nav>li>a.btn.btn-deviantart:focus,.navbar .navbar-nav>li>a.btn.btn-deviantart:active{color:#fff;background-color:#05cc47}.btn.btn-deviantart,.navbar .navbar-nav>li>a.btn.btn-deviantart{-webkit-box-shadow:0 2px 2px 0 rgba(5,204,71,0.14),0 3px 1px -2px rgba(5,204,71,0.2),0 1px 5px 0 rgba(5,204,71,0.12);-moz-box-shadow:0 2px 2px 0 rgba(5,204,71,0.14),0 3px 1px -2px rgba(5,204,71,0.2),0 1px 5px 0 rgba(5,204,71,0.12);box-shadow:0 2px 2px 0 rgba(5,204,71,0.14),0 3px 1px -2px rgba(5,204,71,0.2),0 1px 5px 0 rgba(5,204,71,0.12)}.btn.btn-deviantart:hover,.btn.btn-deviantart:focus,.btn.btn-deviantart:active,.navbar .navbar-nav>li>a.btn.btn-deviantart:hover,.navbar .navbar-nav>li>a.btn.btn-deviantart:focus,.navbar .navbar-nav>li>a.btn.btn-deviantart:active{-webkit-box-shadow:0 14px 26px -12px rgba(5,204,71,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(5,204,71,0.2);-moz-box-shadow:0 14px 26px -12px rgba(5,204,71,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(5,204,71,0.2);box-shadow:0 14px 26px -12px rgba(5,204,71,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(5,204,71,0.2)}.btn.btn-deviantart.btn-simple,.navbar .navbar-nav>li>a.btn.btn-deviantart.btn-simple{color:#05cc47;background-color:transparent}.btn.btn-vimeo,.btn.btn-vimeo:hover,.btn.btn-vimeo:focus,.btn.btn-vimeo:active,.navbar .navbar-nav>li>a.btn.btn-vimeo,.navbar .navbar-nav>li>a.btn.btn-vimeo:hover,.navbar .navbar-nav>li>a.btn.btn-vimeo:focus,.navbar .navbar-nav>li>a.btn.btn-vimeo:active{color:#fff;background-color:#1ab7ea}.btn.btn-vimeo,.navbar .navbar-nav>li>a.btn.btn-vimeo{-webkit-box-shadow:0 2px 2px 0 rgba(26,183,234,0.14),0 3px 1px -2px rgba(26,183,234,0.2),0 1px 5px 0 rgba(26,183,234,0.12);-moz-box-shadow:0 2px 2px 0 rgba(26,183,234,0.14),0 3px 1px -2px rgba(26,183,234,0.2),0 1px 5px 0 rgba(26,183,234,0.12);box-shadow:0 2px 2px 0 rgba(26,183,234,0.14),0 3px 1px -2px rgba(26,183,234,0.2),0 1px 5px 0 rgba(26,183,234,0.12)}.btn.btn-vimeo:hover,.btn.btn-vimeo:focus,.btn.btn-vimeo:active,.navbar .navbar-nav>li>a.btn.btn-vimeo:hover,.navbar .navbar-nav>li>a.btn.btn-vimeo:focus,.navbar .navbar-nav>li>a.btn.btn-vimeo:active{-webkit-box-shadow:0 14px 26px -12px rgba(26,183,234,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(26,183,234,0.2);-moz-box-shadow:0 14px 26px -12px rgba(26,183,234,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(26,183,234,0.2);box-shadow:0 14px 26px -12px rgba(26,183,234,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(26,183,234,0.2)}.btn.btn-vimeo.btn-simple,.navbar .navbar-nav>li>a.btn.btn-vimeo.btn-simple{color:#1ab7ea;background-color:transparent}body [class*="fl-builder"] button,body [class*="fl-builder"] button:hover,button.customize-partial-edit-shortcut-button,button.customize-partial-edit-shortcut-button:hover{box-shadow:none !important}legend{margin-bottom:20px}output{padding-top:8px}.radio label,.checkbox label{min-height:20px}select{-webkit-appearance:none;-moz-appearance:none;appearance:none}.label{background-color:#fff;border-radius:2px}.label.label-default{background-color:#fff}.label.label-primary{background-color:#9c27b0}.label.label-success{background-color:#4caf50}.label.label-danger{background-color:#f44336}.label.label-rose{background-color:#e91e63}.form-control{height:36px;padding:7px 0;vertical-align:middle}.form-control-static{min-height:34px;padding-top:8px;padding-bottom:8px}.form-control::-moz-placeholder,.form-control:-ms-input-placeholder,.form-control::-webkit-input-placeholder,.form-group .form-control::-moz-placeholder,.form-group .form-control:-ms-input-placeholder,.form-group .form-control::-webkit-input-placeholder{color:#aaa}.form-control[readonly],.form-control[disabled],fieldset[disabled] .form-control,.form-group .form-control[readonly],.form-group .form-control[disabled],fieldset[disabled] .form-group .form-control{background-color:transparent}.form-control[disabled],fieldset[disabled] .form-control,.form-group .form-control[disabled],fieldset[disabled] .form-group .form-control{border-bottom:1px dotted #d2d2d2;background-image:none}.form-control{margin-bottom:7px}.form-control::-moz-placeholder,.form-group .form-control::-moz-placeholder,.form-control:-ms-input-placeholder,.form-group .form-control:-ms-input-placeholder,.form-control::-webkit-input-placeholder,.form-group .form-control::-webkit-input-placeholder,.checkbox label,.form-group .checkbox label,.radio label,.form-group .radio label,label,.form-group label{color:#aaa}label.control-label{margin:16px 0 0;color:#aaa}.help-block{margin-top:0}.form-group{padding-bottom:7px;position:relative}.form-group .form-control{margin-bottom:7px}.form-group label.control-label{margin:16px 0 0;color:#aaa}.form-group input[type=file]{position:relative;z-index:100;top:0;right:0;bottom:0;left:0;width:100%;height:100%;opacity:1}.form-group textarea{resize:none}.form-group textarea ~ .form-control-highlight{margin-top:-11px}.form-group .help-block{margin-top:0;display:none;position:absolute}.form-group.label-static label.control-label,.form-group.label-placeholder label.control-label,.form-group.label-floating label.control-label{position:absolute;pointer-events:none}.form-group.label-floating label.control-label{will-change:left,top,contents}.form-group.label-placeholder:not(.is-empty) label.control-label{display:none}.form-group.label-floating label.control-label,.form-group.label-placeholder label.control-label{top:-7px;left:0}.form-group.label-static label.control-label,.form-group.label-floating.is-focused label.control-label,.form-group.label-floating:not(.is-empty) label.control-label{top:-28px;left:0}.form-group.is-focused .form-control .material-input:after{background-color:#9c27b0}.form-group.is-focused.label-placeholder label,.form-group.is-focused.label-placeholder label.control-label{color:#aaa}.form-group.is-focused select.form-control{border-color:#d2d2d2}.form-group.has-warning.is-focused .form-control{background-image:-webkit-gradient(linear, left top, left bottom, from(#ff9800), to(#ff9800)),-webkit-gradient(linear, left top, left bottom, from(#d2d2d2), to(#d2d2d2));background-image:-webkit-linear-gradient(#ff9800, #ff9800),-webkit-linear-gradient(#d2d2d2, #d2d2d2);background-image:linear-gradient(#ff9800, #ff9800),linear-gradient(#d2d2d2, #d2d2d2)}.form-group.has-warning label.control-label{color:#ff9800}.form-group.has-error.is-focused .form-control{background-image:-webkit-gradient(linear, left top, left bottom, from(#f44336), to(#f44336)),-webkit-gradient(linear, left top, left bottom, from(#d2d2d2), to(#d2d2d2));background-image:-webkit-linear-gradient(#f44336, #f44336),-webkit-linear-gradient(#d2d2d2, #d2d2d2);background-image:linear-gradient(#f44336, #f44336),linear-gradient(#d2d2d2, #d2d2d2)}.form-group.has-error label.control-label{color:#f44336}.form-group.has-success.is-focused .form-control{background-image:-webkit-gradient(linear, left top, left bottom, from(#4caf50), to(#4caf50)),-webkit-gradient(linear, left top, left bottom, from(#d2d2d2), to(#d2d2d2));background-image:-webkit-linear-gradient(#4caf50, #4caf50),-webkit-linear-gradient(#d2d2d2, #d2d2d2);background-image:linear-gradient(#4caf50, #4caf50),linear-gradient(#d2d2d2, #d2d2d2)}.form-group.has-success label.control-label{color:#4caf50}.form-group.has-info.is-focused .form-control{background-image:-webkit-gradient(linear, left top, left bottom, from(#00bcd4), to(#00bcd4)),-webkit-gradient(linear, left top, left bottom, from(#d2d2d2), to(#d2d2d2));background-image:-webkit-linear-gradient(#00bcd4, #00bcd4),-webkit-linear-gradient(#d2d2d2, #d2d2d2);background-image:linear-gradient(#00bcd4, #00bcd4),linear-gradient(#d2d2d2, #d2d2d2)}.form-group.has-info label.control-label,.form-group.has-info .help-block{color:#00bcd4}select.form-control{border:0;border-radius:0}select.form-control[multiple],select .form-group.is-focused select.form-control[multiple]{height:85px}.input-group-btn .btn{margin:0 0 7px}.input-group .input-group-btn{padding:0 12px}.input-group .input-group-addon{padding:6px 15px 0;border:0;background:transparent}.form-control-feedback{opacity:0}.has-success .form-control-feedback{opacity:1;color:#4caf50}.has-error .form-control-feedback{opacity:1;color:#f44336}.searchform label,.search-form label{display:table-cell;vertical-align:top;padding-right:25px;width:100%}.searchform:not(.media-toolbar-primary),.search-form:not(.media-toolbar-primary),.woocommerce-product-search{display:table;position:relative}.searchform:not(.media-toolbar-primary) input[type=submit],.searchform:not(.media-toolbar-primary) button,.search-form:not(.media-toolbar-primary) input[type=submit],.search-form:not(.media-toolbar-primary) button,.woocommerce-product-search input[type=submit],.woocommerce-product-search button{display:table-cell;vertical-align:top;padding-left:0;padding-right:0;text-align:center;text-indent:-9999px;top:-19px;width:45px}.searchform:not(.media-toolbar-primary) input[type=search],.search-form:not(.media-toolbar-primary) input[type=search],.woocommerce-product-search input[type=search]{height:36px}.searchform:not(.media-toolbar-primary):after,.search-form:not(.media-toolbar-primary):after,.woocommerce-product-search:after{color:#fff;content:"\f002";font-family:"Font Awesome 5 Free";font-weight:900;pointer-events:none;position:absolute;right:15px;top:0}.woocommerce-product-search{width:100%}.woocommerce-product-search input[type=submit]{float:right}.woocommerce-product-search input[type=search]{display:table-cell;vertical-align:top;float:left;width:70%}.blog-sidebar-wrapper .widget:nth-of-type(1).widget_search,.blog-sidebar-wrapper .widget:nth-of-type(1).widget_product_search{padding-top:11px}.comment-form-cookies-consent #wp-comment-cookies-consent{margin:0 10px 0 0}.comment-form-cookies-consent label{display:inline}body:not(.home) .navbar-default .navbar-nav>.active>a,body:not(.home) .navbar-default .navbar-nav>.active>a:hover,body:not(.home) .navbar-default .navbar-nav>.active>a:focus{background:transparent}body.admin-bar .navbar{margin-top:32px}.navbar-color-on-scroll .dashicons{transition:initial}.navbar.navbar-transparent{color:#fff;background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.navbar.navbar-transparent>.container{padding-top:25px}.navbar.navbar-transparent .hestia-hide-if-transparent{display:none}.navbar.navbar-not-transparent .hestia-transparent-logo{display:none}.navbar{background-color:#fff;color:#555;border-radius:0;position:fixed;border:none;padding:0;transition:none;-webkit-box-shadow:0 1px 10px -6px rgba(0,0,0,0.42),0 1px 10px 0 rgba(0,0,0,0.12),0 4px 5px -2px rgba(0,0,0,0.1);box-shadow:0 1px 10px -6px rgba(0,0,0,0.42),0 1px 10px 0 rgba(0,0,0,0.12),0 4px 5px -2px rgba(0,0,0,0.1)}.navbar .navbar-collapse{border:none}.navbar .title-logo-wrapper{max-width:250px;display:flex;align-items:center}.navbar>.container{display:flex;transition:padding 0.1s ease;padding:10px 15px;vertical-align:middle;align-items:center}.navbar.hestia_left .navbar-collapse{margin-left:auto}.navbar.hestia_left>.container{flex-direction:row}.navbar.hestia_left .navbar-nav{display:flex;flex-wrap:wrap;justify-content:flex-end}.navbar.hestia_center>.container{flex-direction:column}.navbar.hestia_center .navbar-nav{display:flex;flex-wrap:wrap;justify-content:center}.navbar.hestia_right>.container{flex-wrap:wrap;flex-direction:row-reverse}.navbar.hestia_right .navbar-header{max-width:250px}.navbar.hestia_right .navbar-header,.navbar.hestia_right .header-sidebar-wrapper{flex:1}.navbar.hestia_right .navbar-nav{display:flex;flex-wrap:wrap;width:100%}.navbar .navbar-header .navbar-brand{padding:0 15px;position:relative;color:inherit;height:auto}.navbar .navbar-header .navbar-brand img{width:auto;max-height:50px}.navbar .navbar-header .navbar-brand p{margin-bottom:0;padding:10px 0}.navbar-toggle-wrapper{margin-left:auto;display:flex;align-items:center;flex-direction:row}.navbar .navbar-toggle{float:none;border:0;margin-right:0}.navbar .navbar-toggle:hover,.navbar .navbar-toggle:focus{background:transparent}.navbar .navbar-toggle .icon-bar{border:1px solid;transition:0.3s ease;position:relative}.navbar .navbar-toggle[aria-expanded=true] .icon-bar:nth-child(1){-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg);top:6px}.navbar .navbar-toggle[aria-expanded=true] .icon-bar:nth-child(2){width:0;opacity:0}.navbar .navbar-toggle[aria-expanded=true] .icon-bar:nth-child(3){-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-o-transform:rotate(-45deg);transform:rotate(-45deg);top:-6px}.navbar .navbar-toggle[aria-expanded=false] .icon-bar:nth-child(1){top:0;-webkit-transform-origin:left center;-moz-transform-origin:left center;-o-transform-origin:left center;transform-origin:left center}.navbar .navbar-toggle[aria-expanded=false] .icon-bar:nth-child(2){top:0;-webkit-transform-origin:left center;-moz-transform-origin:left center;-o-transform-origin:left center;transform-origin:left center}.navbar .navbar-toggle[aria-expanded=false] .icon-bar:nth-child(3){top:0;-webkit-transform-origin:left center;-moz-transform-origin:left center;-o-transform-origin:left center;transform-origin:left center}.navbar .navbar-nav>li{margin:0}.navbar .navbar-nav>li>a{text-transform:uppercase}.navbar .navbar-nav>li a{padding-top:15px;padding-bottom:15px;border-radius:3px;color:inherit}.navbar .navbar-nav>li a:hover,.navbar .navbar-nav>li a:focus{color:inherit;opacity:1}.navbar .navbar-nav>li a i{min-width:20px;text-align:center;position:relative;top:2px;margin-top:-4px;margin-right:4px}.navbar .navbar-nav>li.btn{padding:0 10px}.navbar .navbar-nav>li.btn a{color:#fff}.navbar .navbar-nav>li.btn li a{text-transform:none}.navbar .navbar-nav>li .dropdown-menu{margin-top:-5px;border:none}.navbar .navbar-nav>li .dropdown-menu>.active>a{background-color:transparent}.navbar .navbar-nav>li .dropdown-menu li{color:#333;position:relative}.navbar .navbar-nav>li .dropdown-menu li.active>a{color:#333}.navbar .navbar-nav>li .dropdown-menu li:hover>a{color:#e91e63}.navbar .navbar-nav>li .dropdown-menu li:hover>a>i{opacity:0.7}.navbar .navbar-nav>li .dropdown-menu li>a{background-color:transparent;margin:0 5px;padding:10px;border-radius:2px;-webkit-transition:all 150ms linear;transition:all 150ms linear}.navbar .navbar-nav>li .dropdown-menu li>a>i{position:relative;top:1px;margin-right:12px;opacity:0.5;text-align:center}.navbar .navbar-nav>li .dropdown-menu li>a i{position:relative;top:1px;margin-top:-4px;margin-right:12px;vertical-align:middle}.navbar .navbar-nav>li:hover .dropdown-menu{margin-top:0;z-index:10}.navbar .navbar-nav>li:not(.btn)>a:before,.navbar .navbar-nav>li:not(.btn) .hestia-toggle-search:before{position:absolute;z-index:-1;top:0;right:0;bottom:0;left:0;border-radius:3px;background-color:rgba(255,255,255,0.1);content:"";transition:all 300ms cubic-bezier(0.34, 0.9, 0.7, 1);-webkit-transform:scaleX(0);-ms-transform:scaleX(0);transform:scaleX(0);-webkit-transform-origin:50%;-ms-transform-origin:50%;transform-origin:50%}.navbar .navbar-nav>li:not(.btn):hover a:before,.navbar .navbar-nav>li:not(.btn):hover .hestia-toggle-search:before{color:inherit;-webkit-transform:scaleX(1);-ms-transform:scaleX(1);transform:scaleX(1)}.dropdown-submenu{position:relative}.dropdown-submenu .dropdown-menu{display:none;top:0;left:100%;margin-top:-6px;margin-left:-1px}.dropdown-submenu.open>.dropdown-menu{display:table;visibility:visible;opacity:1}.dropdown-submenu:hover>.dropdown-toggle .caret,.dropdown-submenu.open>.dropdown-toggle .caret{border-left:4px dashed;border-top:4px solid transparent;border-bottom:4px solid transparent}.dropdown-submenu:hover .dropdown-menu,.dropdown-submenu.open .dropdown-menu{display:table}.navbar.header-with-topbar{position:absolute;top:40px}.navbar.navbar-scroll-point{position:fixed;top:0}.navbar.full-screen-menu.navbar-scroll-point .header-sidebar-wrapper{display:none}.dropdown-helper-overlay{position:fixed;top:0;left:0;right:0;height:100vh;z-index:-1}#main-navigation ul.nav>li{opacity:1;transition:opacity .25s ease-in-out;-moz-transition:opacity .25s ease-in-out;-webkit-transition:opacity .25s ease-in-out;visibility:visible}@media (max-width: 768px){.hestia-nav-search{margin-top:25px}.hestia-nav-search .search-submit{display:block;pointer-events:all}.hestia-nav-search form{width:100%;margin-bottom:0}.hestia-nav-search form:after{font-size:16px;display:block}.hestia-nav-search label{padding-right:25px}.navbar .navbar-nav>li.hestia-search-in-menu a.hestia-toggle-search{display:none}}.full-screen-menu .hestia-toggle-search{display:none}.full-screen-menu .hestia-nav-search{margin-top:25px;text-align:left}@media (min-width: 769px){.navbar:not(.full-screen-menu) .hestia-toggle-search{display:block;width:55px}.navbar:not(.full-screen-menu) .hestia-toggle-search i{font-size:16px}.navbar:not(.full-screen-menu) .hestia-search-in-menu{cursor:pointer;position:relative;vertical-align:middle;display:inline-block}.navbar:not(.full-screen-menu).nav-searching .hestia-nav-search form{max-width:200px;opacity:1;pointer-events:all}.navbar:not(.full-screen-menu).nav-searching #main-navigation ul.nav li:not(.hestia-search-in-menu){opacity:0;visibility:hidden}.navbar:not(.full-screen-menu) .hestia-nav-search{padding:0 15px;text-align:left}.navbar:not(.full-screen-menu) .hestia-nav-search .search-submit{display:none;pointer-events:none}.navbar:not(.full-screen-menu) .hestia-nav-search form{width:200px;max-width:0;padding:5px;transition:all .5s ease;position:absolute;right:40px;box-sizing:border-box;opacity:0;pointer-events:none}.navbar:not(.full-screen-menu) .hestia-nav-search form:after{display:none}.navbar:not(.full-screen-menu) .hestia-nav-search label{padding:0}.navbar:not(.full-screen-menu).navbar-transparent .hestia-nav-search form .search-field{color:#ffffff}.navbar:not(.full-screen-menu).navbar-transparent .hestia-nav-search form .search-field::-webkit-input-placeholder{color:#ffffff}.navbar:not(.full-screen-menu).navbar-transparent .hestia-nav-search form .search-field::-moz-placeholder{color:#ffffff}.navbar:not(.full-screen-menu).navbar-transparent .hestia-nav-search form .search-field:-ms-input-placeholder{color:#ffffff}.navbar:not(.full-screen-menu).navbar-transparent .hestia-nav-search form .search-field:-moz-placeholder{color:#ffffff}.navbar:not(.full-screen-menu).navbar-transparent .hestia-nav-search form .control-label{color:#fff}}.navbar.navbar-default .navbar-nav>.btn.open>a,.navbar.navbar-default .navbar-nav>.btn.active>a,.navbar.navbar-default .navbar-nav>.btn>a{color:#fff;background:transparent}.navbar.navbar-not-transparent .navbar-nav>.active:not(.btn)>a,.navbar.navbar-not-transparent .navbar-nav>.active:not(.btn)>a:hover,.navbar.navbar-not-transparent .navbar-nav>.active:not(.btn)>a:focus{background:transparent}.hestia_right .blog-sidebar-wrapper,.hestia_right .header-sidebar-wrapper{float:none;display:table-cell;width:100%;vertical-align:middle}.hestia_right .blog-sidebar-wrapper .header-widgets-wrapper,.hestia_right .header-sidebar-wrapper .header-widgets-wrapper{align-items:center;display:flex;flex-direction:row;justify-content:flex-end}.hestia_right .blog-sidebar-wrapper .header-widgets-wrapper .searchform label,.hestia_right .blog-sidebar-wrapper .header-widgets-wrapper .search-form label,.hestia_right .header-sidebar-wrapper .header-widgets-wrapper .searchform label,.hestia_right .header-sidebar-wrapper .header-widgets-wrapper .search-form label{width:inherit}.header-widgets-wrapper .widget{margin:0 10px 0 0}.header-widgets-wrapper .widget:last-of-type{margin-right:0}.header-widgets-wrapper .widget,.header-widgets-wrapper .widget h5,.header-widgets-wrapper .widget .textwidget{display:inline-block}.header-widgets-wrapper .widget h5{margin:0 5px 0 0}.header-widgets-wrapper .widget .btn{padding:3px 10px}.header-widgets-wrapper .widget .btn a{color:#fff}.header-widgets-wrapper .widget.widget_nav_menu h5,.header-widgets-wrapper .widget.widget_categories h5,.header-widgets-wrapper .widget.widget_product_categories h5,.header-widgets-wrapper .widget.widget_search h5,.header-widgets-wrapper .widget.widget_product_search h5,.header-widgets-wrapper .widget.widget_meta h5{display:none}.header-widgets-wrapper .widget.widget_nav_menu *[type=submit],.header-widgets-wrapper .widget.widget_categories *[type=submit],.header-widgets-wrapper .widget.widget_product_categories *[type=submit],.header-widgets-wrapper .widget.widget_search *[type=submit],.header-widgets-wrapper .widget.widget_product_search *[type=submit],.header-widgets-wrapper .widget.widget_meta *[type=submit]{opacity:0;left:-15px}.header-widgets-wrapper .widget .searchform:after,.header-widgets-wrapper .widget .search-form:after,.header-widgets-wrapper .widget .woocommerce-product-search:after{right:30px}.header-widgets-wrapper .widget.widget_product_search form,.header-widgets-wrapper .widget.widget_search form{top:15px}.header-widgets-wrapper .widget.widget_product_search form:after,.header-widgets-wrapper .widget.widget_search form:after{color:#333}.header-widgets-wrapper .widget.widget_product_search form .control-label,.header-widgets-wrapper .widget.widget_search form .control-label{color:#333}.header-widgets-wrapper .widget.widget_shopping_cart{margin-top:7px;cursor:pointer;position:relative}.header-widgets-wrapper .widget.widget_shopping_cart .button.checkout{display:none}.header-widgets-wrapper .widget.widget_shopping_cart .wc-forward:not(.checkout){opacity:0;position:absolute;top:-5px;left:-4px;padding:0}.header-widgets-wrapper .widget.widget_shopping_cart:before{color:#333;content:"\f07a";font-family:"Font Awesome 5 Free";font-weight:900;margin-right:5px}.header-widgets-wrapper .widget.widget_shopping_cart:hover .cart_list{opacity:1;display:block;visibility:visible;margin-top:10px}.header-widgets-wrapper .widget.widget_shopping_cart h5{display:none}.header-widgets-wrapper .widget.widget_shopping_cart .widget_shopping_cart_content{display:inline-block}.header-widgets-wrapper .widget.widget_shopping_cart .cart_list{margin-top:0;display:block;visibility:hidden;transition:all .3s ease;opacity:0;padding:0 15px 15px;position:absolute;right:0;top:15px;z-index:10;border:0;-webkit-box-shadow:0 2px 5px 0 rgba(0,0,0,0.26);box-shadow:0 2px 5px 0 rgba(0,0,0,0.26);border-radius:3px !important;background:#fff}.header-widgets-wrapper .widget.widget_shopping_cart .cart_list li{color:#333;display:block;margin-top:15px;padding-bottom:0;white-space:nowrap}.header-widgets-wrapper .widget.widget_shopping_cart .cart_list li a:not(.remove){color:#333;margin:0;padding-right:65px;text-align:left}.header-widgets-wrapper .widget.widget_shopping_cart .cart_list li img{float:left;width:50px;margin-left:0;margin-right:15px}.header-widgets-wrapper .widget.widget_shopping_cart .cart_list li .quantity{float:left}.header-widgets-wrapper .widget.widget_shopping_cart .cart_list li .variation{display:none}.header-widgets-wrapper .widget.widget_shopping_cart .cart_list li.empty{padding:0}.header-widgets-wrapper .widget.widget_shopping_cart .total{border:none;margin:0;padding:0}.header-widgets-wrapper .widget.widget_shopping_cart .total strong{display:none}.header-widgets-wrapper .widget.widget_shopping_cart .total .amount{float:none}.header-widgets-wrapper ul li{cursor:auto;display:inline-block;margin:0 5px}.header-widgets-wrapper ul li:first-child{margin-left:0}.header-widgets-wrapper ul li:last-child{margin-right:0}.header-widgets-wrapper ul li a{padding:0;text-transform:inherit}.header-widgets-wrapper ul li a:before{background-color:transparent;position:static;font-family:"Font Awesome 5 Free"}.header-widgets-wrapper ul li a:hover,.header-widgets-wrapper ul li a:focus{background-color:transparent;outline:none}.header-widgets-wrapper ul li a[href*="tel:"]:before,.header-widgets-wrapper ul li a[href*="mailto:"]:before{margin-right:7px}.header-widgets-wrapper ul li a[href*="tel:"]:before{content:'\f095'}.header-widgets-wrapper ul li a[href*="mailto:"]:before{content:'\f0e0'}.header-widgets-wrapper ul li.dropdown .caret{display:none}.navbar-transparent .widget .btn:hover a{color:#fff}.navbar-transparent .widget.widget_shopping_cart:before{color:#fff}.navbar-transparent .widget.widget_search form:after,.navbar-transparent .widget.widget_search form.form-group:before,.navbar-transparent .widget.widget_search form .control-label,.navbar-transparent .widget.widget_product_search form:after,.navbar-transparent .widget.widget_product_search form.form-group:before,.navbar-transparent .widget.widget_product_search form .control-label{color:#fff}.woocommerce-product-search input[type=submit],.woocommerce-product-search button{float:right}.pagination{width:100%;text-align:center}.pagination>li>a{border:0}.pagination a,.pagination span{min-width:30px;height:30px;margin:0 3px;padding:0 11px;border-radius:30px !important;color:#999;background:transparent;text-transform:uppercase;display:inline-block}.pagination a:hover,.pagination a:focus{color:#999;background-color:#eee}.pagination span:not(.dots):hover,.pagination span:not(.dots):focus{color:#999;background-color:#eee}.pagination span.current,.pagination span.current:focus,.pagination span.current:hover{border-color:#9c27b0;color:#fff;background-color:#9c27b0;-webkit-box-shadow:0 4px 5px 0 rgba(156,39,176,0.14),0 1px 10px 0 rgba(156,39,176,0.12),0 2px 4px -1px rgba(156,39,176,0.2);box-shadow:0 4px 5px 0 rgba(156,39,176,0.14),0 1px 10px 0 rgba(156,39,176,0.12),0 2px 4px -1px rgba(156,39,176,0.2)}.pagination .next.page-numbers:after{content:" \00bb"}.pagination .prev.page-numbers:before{content:"\00ab "}.label{padding:5px 12px;border-radius:12px;text-transform:uppercase}.label.label-default{background-color:#999}.card,.card-no-width{display:inline-block;position:relative;margin-bottom:30px;border-radius:6px;color:rgba(0,0,0,0.87);background:#fff;max-width:100%;-webkit-box-shadow:0 2px 2px 0 rgba(0,0,0,0.14),0 3px 1px -2px rgba(0,0,0,0.2),0 1px 5px 0 rgba(0,0,0,0.12);-moz-box-shadow:0 2px 2px 0 rgba(0,0,0,0.14),0 3px 1px -2px rgba(0,0,0,0.2),0 1px 5px 0 rgba(0,0,0,0.12);box-shadow:0 2px 2px 0 rgba(0,0,0,0.14),0 3px 1px -2px rgba(0,0,0,0.2),0 1px 5px 0 rgba(0,0,0,0.12)}.card .card-image,.card-no-width .card-image{overflow:hidden;position:relative;height:60%;margin-top:-30px;margin-right:15px;margin-left:15px;border-radius:6px;-webkit-transition:all 300ms cubic-bezier(0.34, 1.61, 0.7, 1);-moz-transition:all 300ms cubic-bezier(0.34, 1.61, 0.7, 1);-o-transition:all 300ms cubic-bezier(0.34, 1.61, 0.7, 1);-ms-transition:all 300ms cubic-bezier(0.34, 1.61, 0.7, 1);transition:all 300ms cubic-bezier(0.34, 1.61, 0.7, 1);-webkit-transform:translate(0, 0);-ms-transform:translate(0, 0);transform:translate(0, 0)}.card .card-image img,.card-no-width .card-image img{width:100%;height:100%;margin:0 !important;border-radius:6px}.card .category:not([class*="text-"]),.card-no-width .category:not([class*="text-"]){color:#999}.card .content,.card-no-width .content{padding:15px 30px}.card .header,.card-no-width .header{margin:15px;padding:15px 0;border-radius:3px;background-color:#fff}.card .header-primary,.card .content-primary,.card-no-width .header-primary,.card-no-width .content-primary{background:-webkit-linear-gradient(30deg, #ab47bc, #7b1fa2);background:linear-gradient(60deg, #ab47bc, #7b1fa2)}.card [class*="header-"],.card [class*="content-"],.card [class*="header-"] .card-title a,.card [class*="header-"] .card-title,.card [class*="header-"] .icon i,.card [class*="content-"] .card-title a,.card [class*="content-"] .card-title,.card [class*="content-"] .icon i,.card [class*="header-"] .author a:hover,.card [class*="header-"] .author a:focus,.card [class*="header-"] .author a:active,.card [class*="content-"] .author a:hover,.card [class*="content-"] .author a:focus,.card [class*="content-"] .author a:active,.card-no-width [class*="header-"],.card-no-width [class*="content-"],.card-no-width [class*="header-"] .card-title a,.card-no-width [class*="header-"] .card-title,.card-no-width [class*="header-"] .icon i,.card-no-width [class*="content-"] .card-title a,.card-no-width [class*="content-"] .card-title,.card-no-width [class*="content-"] .icon i,.card-no-width [class*="header-"] .author a:hover,.card-no-width [class*="header-"] .author a:focus,.card-no-width [class*="header-"] .author a:active,.card-no-width [class*="content-"] .author a:hover,.card-no-width [class*="content-"] .author a:focus,.card-no-width [class*="content-"] .author a:active{color:#fff}.card [class*="header-"] .icon i,.card [class*="content-"] .icon i,.card-no-width [class*="header-"] .icon i,.card-no-width [class*="content-"] .icon i{border-color:rgba(255,255,255,0.25)}.card [class*="header-"] .author a,.card [class*="header-"] .footer .stats,.card [class*="header-"] .category,.card [class*="header-"] .card-description,.card [class*="content-"] .author a,.card [class*="content-"] .footer .stats,.card [class*="content-"] .category,.card [class*="content-"] .card-description,.card [class*="content-"] h1 small,.card [class*="content-"] h2 small,.card [class*="content-"] h3 small,.card-no-width [class*="header-"] .author a,.card-no-width [class*="header-"] .footer .stats,.card-no-width [class*="header-"] .category,.card-no-width [class*="header-"] .card-description,.card-no-width [class*="content-"] .author a,.card-no-width [class*="content-"] .footer .stats,.card-no-width [class*="content-"] .category,.card-no-width [class*="content-"] .card-description,.card-no-width [class*="content-"] h1 small,.card-no-width [class*="content-"] h2 small,.card-no-width [class*="content-"] h3 small{color:rgba(255,255,255,0.8)}.card [class*="content-"],.card-no-width [class*="content-"]{border-radius:6px}.card img,.card-no-width img{width:100%;height:auto}.card .category i,.card-no-width .category i{position:relative;top:6px}.card .author .avatar,.card-no-width .author .avatar{overflow:hidden;width:30px;height:30px;margin-right:5px;border-radius:50%}.card .author a,.card-no-width .author a{color:#3C4858;text-decoration:none}.card .author .date,.card-no-width .author .date{display:none}.card .footer,.card-no-width .footer{margin-top:15px}.card .footer div,.card-no-width .footer div{display:inline-block !important}.card .footer .author,.card .footer .stats,.card-no-width .footer .author,.card-no-width .footer .stats{color:#999}.card .footer .stats,.card-no-width .footer .stats{float:right}.card .footer .stats i,.card-no-width .footer .stats i{position:relative;top:4px}.card .checkbox,.card-no-width .checkbox{margin-top:16px}.card{width:100%}@media (max-width: 768px){.card-no-width{width:100%}}.card-contact .header{margin-top:-20px;padding:17px 10px}.card-plain{background:transparent;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.card-plain .content{padding-right:5px;padding-left:5px}.card-plain .card-image{margin:0;border-radius:3px}.card-plain .card-image a{display:block}.card-plain .card-image img{border-radius:3px}.card-form-horizontal .content{padding-right:15px;padding-left:15px}.card-form-horizontal .form-group{margin:3px 0 0;padding-bottom:0}.card-form-horizontal .form-group .form-control{margin-bottom:0}.card-form-horizontal .btn{margin:0}.card-form-horizontal .input-group .input-group-addon{padding-left:0}.card-profile{margin-top:30px;text-align:center}.card-profile .card-avatar{overflow:hidden;max-width:130px;max-height:130px;margin:-50px auto 0;border-radius:50%}.card-profile.card-plain .card-avatar{margin-top:0}.card-testimonial{margin-top:30px;text-align:center}.card-testimonial .card-avatar{max-width:100px;max-height:100px;margin:30px auto 0}.card-testimonial .card-avatar img{overflow:hidden;max-width:130px;max-height:130px;margin:-50px auto 0;border-radius:50%}.card-testimonial .card-avatar+.content{margin-top:15px}.card-blog{margin-top:30px}.card-blog.sticky{padding:20px}.card-blog.sticky.layout-alternative2{padding:0 20px;margin-top:50px}.card-blog.sticky.layout-alternative2 .card-header-image{margin-top:-20px}.card-blog.sticky .card-image{margin-left:0;margin-right:0}.card-blog.sticky .featured-alt-2{padding-bottom:15px}.card-blog .row .category{margin-bottom:0}.card-blog .row .category a{color:#00bcd4}.card-blog .card-title{margin-top:5px}.card-blog a.moretag,.card-blog a.more-link{display:inline-block;margin-left:5px;color:#23527c}.card-blog a.moretag:hover,.card-blog a.more-link:hover{color:#89229b}.card-background{background-position:center center;background-size:cover;text-align:center}.card-background .content{position:relative;z-index:2;max-width:440px;min-height:280px;margin:0 auto;padding-top:40px;padding-bottom:40px}.card-background .card-title{margin-top:10px;color:#fff}.card-background:after{display:block;position:absolute;z-index:1;top:0;left:0;width:100%;height:100%;border-radius:6px;opacity:0;background-color:rgba(0,0,0,0.56);content:""}.card-background:hover:after{opacity:1}.card-product{vertical-align:top;margin-top:30px}.card-product .btn-simple.btn-just-icon{padding:0}.card-product .footer{display:table;margin-top:5px;width:100%}.card-product .footer .price{display:table-cell !important;vertical-align:top;text-align:left}.card-product .footer .price h4{color:#3C4858;margin-bottom:0}.card-product .footer .stats{display:table-cell !important;padding-left:10px;vertical-align:bottom;float:none;text-align:right}.card-product .footer .stats a{margin:10px 0 !important}.card-product .footer .stats a.button,.card-product .footer .stats a.button:hover{box-shadow:none !important;color:inherit !important}.card-product .footer .stats i{top:0;margin-bottom:2px}.card-product .card-description ul{list-style:none outside;padding:0;margin-bottom:10px}.card-product .card-title,.card-product .category,.card-product .card-description{text-align:center}.product-category.product h2.woocommerce-loop-category__title{font-size:18px !important}.card-product.card-hover-style-pop-and-glow .card-image a img:nth-of-type(2),.card-product.card-hover-style-swap-images .card-image a img:nth-of-type(2){display:none}.card-product.card-hover-style-swap-images:hover .card-image{transform:none}.card-product.card-hover-style-swap-images:hover .card-image a img:nth-of-type(2){display:block;position:absolute;top:0}.card-product.card-plain .card-image{margin-top:-30px}.img-thumbnail{border-radius:16px}.iframe-container iframe{width:100%}.card .card-image,.card-no-width .card-image,.card .header,.card-no-width .header,.card-profile .card-avatar,.card-testimonial .card-avatar img,.card-raised,.img-raised,.iframe-container iframe{-webkit-box-shadow:0 16px 38px -12px rgba(0,0,0,0.56),0 4px 25px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(0,0,0,0.2);-moz-box-shadow:0 16px 38px -12px rgba(0,0,0,0.56),0 4px 25px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(0,0,0,0.2);box-shadow:0 16px 38px -12px rgba(0,0,0,0.56),0 4px 25px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(0,0,0,0.2)}table,.table{width:100%}table>thead>tr>th,.table>thead>tr>th{border-bottom-width:1px;padding:12px 8px;vertical-align:middle}table>tbody>tr>th,table>tfoot>tr>th,table>thead>tr>td,table>tbody>tr>td,table>tfoot>tr>td,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:12px 8px;vertical-align:middle}table>tbody>tr,.table>tbody>tr{border-bottom:1px solid #eee}table>tbody>tr:last-child,.table>tbody>tr:last-child{border-bottom:0}.woocommerce ul.products:before{display:none !important}.woocommerce ul.products.columns-6,.woocommerce ul.products.columns-5,.woocommerce ul.products.columns-4,.woocommerce ul.products.columns-3,.woocommerce ul.products.columns-2,.woocommerce ul.products.columns-1{display:grid}.woocommerce ul.products.columns-6 li.product,.woocommerce ul.products.columns-5 li.product,.woocommerce ul.products.columns-4 li.product,.woocommerce ul.products.columns-3 li.product,.woocommerce ul.products.columns-2 li.product,.woocommerce ul.products.columns-1 li.product{width:auto;min-width:0;margin:0}.woocommerce ul.products.columns-6 li.product-category,.woocommerce ul.products.columns-5 li.product-category,.woocommerce ul.products.columns-4 li.product-category,.woocommerce ul.products.columns-3 li.product-category,.woocommerce ul.products.columns-2 li.product-category,.woocommerce ul.products.columns-1 li.product-category{text-align:center}@media (min-width: 992px){.woocommerce .products.columns-6{grid-template-columns:repeat(6, 1fr)}.woocommerce .products.columns-5{grid-template-columns:repeat(5, 1fr)}.woocommerce .products.columns-4{grid-template-columns:repeat(4, 1fr)}.woocommerce .products.columns-3{grid-template-columns:repeat(3, 1fr)}.woocommerce .products.columns-2{grid-template-columns:repeat(2, 1fr)}.woocommerce .products.columns-1{grid-template-columns:1fr}.woocommerce .products.columns-1 li.product-category{margin:30px auto 0 !important}.woocommerce .products.columns-2 li.product-category>a>img,.woocommerce .products.columns-1 li.product-category>a>img{max-width:230px}.woocommerce .products.columns-2 li.product,.woocommerce .products.columns-1 li.product{text-align:center}.woocommerce .products.columns-2 li.product .card-product,.woocommerce .products.columns-1 li.product .card-product{width:auto}.woocommerce .products.columns-2 li.product .card-product .card-image>a>img,.woocommerce .products.columns-1 li.product .card-product .card-image>a>img{max-width:230px}.woocommerce .products.columns-2 li.product .card-product .content,.woocommerce .products.columns-1 li.product .card-product .content{max-width:230px;margin-left:auto;margin-right:auto;padding:15px}.woocommerce .content-sidebar-left .products.columns-6,.woocommerce .content-sidebar-left .products.columns-5,.woocommerce .content-sidebar-right .products.columns-6,.woocommerce .content-sidebar-right .products.columns-5{grid-template-columns:repeat(4, 1fr)}}@media (max-width: 991px){.woocommerce .products.columns-6,.woocommerce .products.columns-5,.woocommerce .products.columns-4,.woocommerce .products.columns-3,.woocommerce .products.columns-2{grid-template-columns:repeat(2, 1fr)}.woocommerce .products.columns-2 li.product-category{margin:30px auto 30px}.woocommerce .products.columns-1{grid-template-columns:1fr}.woocommerce .products.columns-1 li{margin:25px auto}.woocommerce .products.columns-1 li.product-category{margin:55px auto 25px}.woocommerce .products.columns-6 li.product-category>a>img,.woocommerce .products.columns-5 li.product-category>a>img,.woocommerce .products.columns-4 li.product-category>a>img,.woocommerce .products.columns-3 li.product-category>a>img,.woocommerce .products.columns-2 li.product-category>a>img,.woocommerce .products.columns-1 li.product-category>a>img{max-width:230px}.woocommerce .products.columns-6 li.product,.woocommerce .products.columns-5 li.product,.woocommerce .products.columns-4 li.product,.woocommerce .products.columns-3 li.product,.woocommerce .products.columns-2 li.product,.woocommerce .products.columns-1 li.product{text-align:center}.woocommerce .products.columns-6 li.product .card-product,.woocommerce .products.columns-5 li.product .card-product,.woocommerce .products.columns-4 li.product .card-product,.woocommerce .products.columns-3 li.product .card-product,.woocommerce .products.columns-2 li.product .card-product,.woocommerce .products.columns-1 li.product .card-product{width:auto}.woocommerce .products.columns-6 li.product .card-product .card-image>a>img,.woocommerce .products.columns-5 li.product .card-product .card-image>a>img,.woocommerce .products.columns-4 li.product .card-product .card-image>a>img,.woocommerce .products.columns-3 li.product .card-product .card-image>a>img,.woocommerce .products.columns-2 li.product .card-product .card-image>a>img,.woocommerce .products.columns-1 li.product .card-product .card-image>a>img{max-width:230px}.woocommerce .products.columns-6 li.product .card-product .content,.woocommerce .products.columns-5 li.product .card-product .content,.woocommerce .products.columns-4 li.product .card-product .content,.woocommerce .products.columns-3 li.product .card-product .content,.woocommerce .products.columns-2 li.product .card-product .content,.woocommerce .products.columns-1 li.product .card-product .content{max-width:230px;margin-left:auto;margin-right:auto;padding:15px}.woocommerce .content-sidebar-left .products.columns-6,.woocommerce .content-sidebar-left .products.columns-5,.woocommerce .content-sidebar-right .products.columns-6,.woocommerce .content-sidebar-right .products.columns-5{grid-template-columns:repeat(2, 1fr)}}@media (max-width: 767px){.woocommerce .products[class*="columns-"]{grid-template-columns:1fr}.woocommerce .products[class*="columns-"] li{margin:20px auto 1px !important}.woocommerce .products[class*="columns-"] li.product-category{margin:50px auto 1px !important}.woocommerce .content-sidebar-left .products.columns-6,.woocommerce .content-sidebar-left .products.columns-5,.woocommerce .content-sidebar-right .products.columns-6,.woocommerce .content-sidebar-right .products.columns-5{grid-template-columns:1fr}}@supports not (display: grid){@media (min-width: 992px){.woocommerce ul.products.columns-6,.woocommerce ul.products.columns-5,.woocommerce ul.products.columns-4,.woocommerce ul.products.columns-3,.woocommerce ul.products.columns-2,.woocommerce ul.products.columns-1{display:block;-ms-grid-columns:none}.woocommerce .content-full ul.products.columns-4 li.product,.woocommerce .content-sidebar-left ul.products.columns-4 li.product,.woocommerce .content-sidebar-right ul.products.columns-4 li.product{width:25%}.woocommerce .content-full ul.products.columns-3 li.product,.woocommerce .content-sidebar-left ul.products.columns-3 li.product,.woocommerce .content-sidebar-right ul.products.columns-3 li.product{width:33.33%}.woocommerce .content-full ul.products.columns-2 li.product,.woocommerce .content-sidebar-left ul.products.columns-2 li.product,.woocommerce .content-sidebar-right ul.products.columns-2 li.product{width:50%}.woocommerce .content-full ul.products.columns-1 li.product,.woocommerce .content-sidebar-left ul.products.columns-1 li.product,.woocommerce .content-sidebar-right ul.products.columns-1 li.product{width:100%}.woocommerce .content-full ul.products.columns-6 li.product{width:16.66%}.woocommerce .content-full ul.products.columns-5 li.product{width:20%}.woocommerce .content-sidebar-left ul.products.columns-6 li.product,.woocommerce .content-sidebar-left ul.products.columns-5 li.product,.woocommerce .content-sidebar-right ul.products.columns-6 li.product,.woocommerce .content-sidebar-right ul.products.columns-5 li.product{width:25%}.woocommerce .content-sidebar-left ul.products.columns-6 li.first,.woocommerce .content-sidebar-left ul.products.columns-5 li.first,.woocommerce .content-sidebar-right ul.products.columns-6 li.first,.woocommerce .content-sidebar-right ul.products.columns-5 li.first{clear:none}.woocommerce.single-product ul.products{display:block}.woocommerce.single-product ul.products li.product{width:25%}.woocommerce-cart ul.products{display:block}.woocommerce-cart ul.products li.product{width:50%}}@media (max-width: 991px){.woocommerce ul.products.columns-6,.woocommerce ul.products.columns-5,.woocommerce ul.products.columns-4,.woocommerce ul.products.columns-3,.woocommerce ul.products.columns-2,.woocommerce ul.products.columns-1{display:block}.woocommerce ul.products.columns-6 li.first,.woocommerce ul.products.columns-6 li.last,.woocommerce ul.products.columns-5 li.first,.woocommerce ul.products.columns-5 li.last,.woocommerce ul.products.columns-4 li.first,.woocommerce ul.products.columns-4 li.last,.woocommerce ul.products.columns-3 li.first,.woocommerce ul.products.columns-3 li.last,.woocommerce ul.products.columns-2 li.first,.woocommerce ul.products.columns-2 li.last,.woocommerce ul.products.columns-1 li.first,.woocommerce ul.products.columns-1 li.last{clear:none}.woocommerce ul.products.columns-6 li.product,.woocommerce ul.products.columns-5 li.product,.woocommerce ul.products.columns-4 li.product,.woocommerce ul.products.columns-3 li.product,.woocommerce ul.products.columns-2 li.product{width:50%}.woocommerce ul.products.columns-1 li.product{width:100%}.woocommerce-cart ul.products,.woocommerce.single-product ul.products{display:block}.woocommerce-cart ul.products li.product,.woocommerce.single-product ul.products li.product{width:50%}}@media (max-width: 767px){.woocommerce ul.products.columns-6 li.product,.woocommerce ul.products.columns-5 li.product,.woocommerce ul.products.columns-4 li.product,.woocommerce ul.products.columns-3 li.product,.woocommerce ul.products.columns-2 li.product,.woocommerce ul.products.columns-1 li.product{width:100%}.woocommerce-cart ul.products,.woocommerce.single-product ul.products{display:block}.woocommerce-cart ul.products li.product,.woocommerce.single-product ul.products li.product{width:100%}}}@media (min-width: 992px) and (-ms-high-contrast: active), (min-width: 992px) and (-ms-high-contrast: none){.woocommerce ul.products.columns-6,.woocommerce ul.products.columns-5,.woocommerce ul.products.columns-4,.woocommerce ul.products.columns-3,.woocommerce ul.products.columns-2,.woocommerce ul.products.columns-1{display:block;-ms-grid-columns:none}.woocommerce .content-full ul.products.columns-4 li.product,.woocommerce .content-sidebar-left ul.products.columns-4 li.product,.woocommerce .content-sidebar-right ul.products.columns-4 li.product{width:25%}.woocommerce .content-full ul.products.columns-3 li.product,.woocommerce .content-sidebar-left ul.products.columns-3 li.product,.woocommerce .content-sidebar-right ul.products.columns-3 li.product{width:33.33%}.woocommerce .content-full ul.products.columns-2 li.product,.woocommerce .content-sidebar-left ul.products.columns-2 li.product,.woocommerce .content-sidebar-right ul.products.columns-2 li.product{width:50%}.woocommerce .content-full ul.products.columns-1 li.product,.woocommerce .content-sidebar-left ul.products.columns-1 li.product,.woocommerce .content-sidebar-right ul.products.columns-1 li.product{width:100%}.woocommerce .content-full ul.products.columns-6 li.product{width:16.66%}.woocommerce .content-full ul.products.columns-5 li.product{width:20%}.woocommerce .content-sidebar-left ul.products.columns-6 li.product,.woocommerce .content-sidebar-left ul.products.columns-5 li.product,.woocommerce .content-sidebar-right ul.products.columns-6 li.product,.woocommerce .content-sidebar-right ul.products.columns-5 li.product{width:25%}.woocommerce .content-sidebar-left ul.products.columns-6 li.first,.woocommerce .content-sidebar-left ul.products.columns-5 li.first,.woocommerce .content-sidebar-right ul.products.columns-6 li.first,.woocommerce .content-sidebar-right ul.products.columns-5 li.first{clear:none}.woocommerce.single-product ul.products{display:block}.woocommerce.single-product ul.products li.product{width:25%}.woocommerce-cart ul.products{display:block}.woocommerce-cart ul.products li.product{width:50%}}@media (max-width: 991px) and (-ms-high-contrast: active), (max-width: 991px) and (-ms-high-contrast: none){.woocommerce ul.products.columns-6,.woocommerce ul.products.columns-5,.woocommerce ul.products.columns-4,.woocommerce ul.products.columns-3,.woocommerce ul.products.columns-2,.woocommerce ul.products.columns-1{display:block}.woocommerce ul.products.columns-6 li.first,.woocommerce ul.products.columns-6 li.last,.woocommerce ul.products.columns-5 li.first,.woocommerce ul.products.columns-5 li.last,.woocommerce ul.products.columns-4 li.first,.woocommerce ul.products.columns-4 li.last,.woocommerce ul.products.columns-3 li.first,.woocommerce ul.products.columns-3 li.last,.woocommerce ul.products.columns-2 li.first,.woocommerce ul.products.columns-2 li.last,.woocommerce ul.products.columns-1 li.first,.woocommerce ul.products.columns-1 li.last{clear:none}.woocommerce ul.products.columns-6 li.product,.woocommerce ul.products.columns-5 li.product,.woocommerce ul.products.columns-4 li.product,.woocommerce ul.products.columns-3 li.product,.woocommerce ul.products.columns-2 li.product{width:50%}.woocommerce ul.products.columns-1 li.product{width:100%}.woocommerce-cart ul.products,.woocommerce.single-product ul.products{display:block}.woocommerce-cart ul.products li.product,.woocommerce.single-product ul.products li.product{width:50%}}@media (max-width: 767px) and (-ms-high-contrast: active), (max-width: 767px) and (-ms-high-contrast: none){.woocommerce ul.products.columns-6 li.product,.woocommerce ul.products.columns-5 li.product,.woocommerce ul.products.columns-4 li.product,.woocommerce ul.products.columns-3 li.product,.woocommerce ul.products.columns-2 li.product,.woocommerce ul.products.columns-1 li.product{width:100%}.woocommerce-cart ul.products,.woocommerce.single-product ul.products{display:block}.woocommerce-cart ul.products li.product,.woocommerce.single-product ul.products li.product{width:100%}}.header-layout-classic-blog.page:not(.home):not(.archive) .main-raised{border-radius:0}.header-layout-classic-blog:not(.page-template-default):not(.home):not(.archive).woocommerce.archive .main-raised,.header-layout-classic-blog:not(.page-template-default):not(.home):not(.archive).single .main-raised,.header-layout-classic-blog:not(.page-template-default):not(.home):not(.archive) .main-raised{margin-top:0}.carousel #parallax_move{width:100%;height:100%;position:absolute}.carousel #parallax_move .layer{background-size:cover;width:100%;height:100%;background-position:top center}.carousel #parallax_move .layer2{position:absolute;top:0}.carousel .btn{margin:0}.carousel .page-header{display:flex;z-index:-2}.carousel .page-header .row{display:flex;align-items:center;padding:0 15px;margin:0;flex:1;max-width:100%}.carousel .carousel-control.left,.carousel .carousel-control.right{z-index:0;background-image:none}.carousel .item{text-align:center}.carousel .item .container{display:flex;position:relative;padding:100px 0}.carousel .carousel-control{text-shadow:none;display:flex;align-items:center;justify-content:center}.carousel .carousel-control.left{right:auto;left:0}.carousel .carousel-control.right{right:0}.carousel .carousel-control i{display:inline-block;position:absolute;z-index:5}.carousel .buttons .btn-left+.btn-right{margin-left:30px}.wp-custom-header img,.wp-custom-header video,.wp-custom-header iframe{width:100%;position:absolute;left:50%;top:50%;max-width:100%;-ms-transform:translateX(-50%) translateY(-50%);-moz-transform:translateX(-50%) translateY(-50%);-webkit-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%);z-index:-1}.wp-custom-header img{-o-object-fit:cover;object-fit:cover;height:100%}.wp-custom-header .wp-custom-header-video-button{display:none}#carousel-hestia-generic .carousel{overflow:hidden}.big-title-sidebar-wrapper .widget{padding:30px 0}.big-title-sidebar-wrapper .pirate-forms-contact-widget{background:#Fff;color:#3C4858;padding:10px;border-radius:6px;-webkit-box-shadow:0 2px 2px 0 rgba(0,0,0,0.14),0 3px 1px -2px rgba(0,0,0,0.2),0 1px 5px 0 rgba(0,0,0,0.12);-moz-box-shadow:0 2px 2px 0 rgba(0,0,0,0.14),0 3px 1px -2px rgba(0,0,0,0.2),0 1px 5px 0 rgba(0,0,0,0.12);box-shadow:0 2px 2px 0 rgba(0,0,0,0.14),0 3px 1px -2px rgba(0,0,0,0.2),0 1px 5px 0 rgba(0,0,0,0.12)}.hestia-slider-alignment-left .pirate-forms-contact-widget{margin-left:auto}.hestia-slider-alignment-left .widget_media_image img{display:block;margin-left:auto}.hestia-slider-alignment-right .pirate-forms-contact-widget{margin-right:auto}.hestia-slider-alignment-right .widget_media_image img{display:block;margin-right:auto}@media (max-width: 1600px){.carousel-control.left{width:50px}.carousel-control.left i{left:10px}.carousel-control.right{width:50px}.carousel-control.right i{right:10px}}@media all and (-ms-high-contrast: none), (-ms-high-contrast: active){.carousel .page-header .container{display:table;min-height:inherit}.carousel .page-header .container .row{display:table-row}.carousel .page-header .container .row .big-title-slider-content{display:table-cell;vertical-align:middle;float:none;margin:auto}.carousel .page-header .container .row .big-title-slider-content.col-md-7{display:table-cell;vertical-align:middle;float:none;margin:auto}.carousel .page-header .container .row .big-title-sidebar-wrapper.col-md-5{display:table-cell;vertical-align:middle;float:none;margin:auto}.carousel .carousel-control i{left:50%}}.section-gray{background:#f0f0f0}.section{padding:70px 0}.section-dark,.section-image{background:#232323;background:-webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #585858), color-stop(100%, #232323));background:-webkit-radial-gradient(center, ellipse cover, #585858 0%, #232323 100%);background:-webkit-radial-gradient(center ellipse, #585858 0%, #232323 100%);background:radial-gradient(ellipse at center, #585858 0%, #232323 100%);background-color:#343434;background-size:200% 240%;background-size:550% 450%}.section-dark .hestia-title,.section-dark .title,.section-dark .card-plain .card-title,.section-dark .card-plain .icon i,.section-dark .card-plain [class*="text-"],.section-dark .card-plain ul li b,.section-image .hestia-title,.section-image .title,.section-image .card-plain .card-title,.section-image .card-plain .icon i,.section-image .card-plain [class*="text-"],.section-image .card-plain ul li b{color:#fff}.section-dark .description,.section-dark .card-plain .card-description,.section-dark .card-plain .icon,.section-image .description,.section-image .card-plain .card-description,.section-image .card-plain .icon{color:#eaeaea}.section-dark .card-plain .category,.section-image .card-plain .category{color:rgba(255,255,255,0.5)}.section-image{position:relative;-webkit-backface-visibility:hidden;-webkit-transform:translate3d(0, 0, 0);-moz-transform:unset}.section-image:after{display:block;position:absolute;z-index:1;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,0.7);content:""}.section-image .container{position:relative;z-index:2}.section,.section-image{background-position:center center;background-size:cover}.hestia-features,.features,.products,.hestia-work,.hestia-testimonials,.hestia-blogs,.subscribe-line{padding:65px 0 70px}.wrapper.classic-blog .title-in-content,.wrapper.no-content .title-in-content{margin-top:0;margin-bottom:15px}.wrapper.classic-blog .hestia-blogs,.wrapper.no-content .hestia-blogs{padding-top:40px}@media (max-width: 768px){.wrapper.classic-blog .hestia-blogs,.wrapper.no-content .hestia-blogs{padding-top:30px}}.wrapper.classic-blog .section,.wrapper.no-content .section{padding-top:40px}@media (max-width: 768px){.wrapper.classic-blog .section,.wrapper.no-content .section{padding-top:30px}}.wrapper.classic-blog .before-shop-main,.wrapper.no-content .before-shop-main{margin-top:0;padding-top:40px}@media (max-width: 768px){.wrapper.classic-blog .before-shop-main,.wrapper.no-content .before-shop-main{padding-top:30px}}.image-in-page-wrapper{margin-bottom:20px}.image-in-page{margin-bottom:30px}.about,.hestia-about{padding:65px 0 30px}.team,.hestia-team{padding:65px 0 20px}.testimonials,.hestia-testimonials{padding:65px 0 40px}.contactus{padding:90px 0 70px}.pricing{padding:100px 0 70px}.hestia-shop-content .shop-item.col-ms-6.col-sm-6{text-align:center}.hestia-shop-content .shop-item.col-ms-6.col-sm-6 .card-product{width:auto}.hestia-shop-content .shop-item.col-ms-6.col-sm-6 .card-product .card-image>a>img{max-width:230px}.hestia-shop-content .shop-item.col-ms-6.col-sm-6 .card-product .content{max-width:230px;margin-left:auto;margin-right:auto}body.product-card-style-plain .hestia-shop{background-color:#ffffff}@media (min-width: 992px){.home .hestia-features .row,.home .hestia-work .row,.home .hestia-team .row,.home .hestia-testimonials .row,.home #blog.hestia-blogs .row,.home .hestia-clients-bar .row{text-align:center}.home .feature-box,.home .hestia-work .col-md-4,.home .hestia-testimonials .col-md-4,.home .hestia-work .col-md-6,.home .hestia-team .col-sm-6,.home #blog.hestia-blogs .hestia-blog-item,.home .hestia-clients-bar .col-md-3{display:inline-block;float:none !important;margin-right:-4px;margin-left:-4px;vertical-align:top}.home .hestia-blog-item{text-align:left}}@media (min-width: 768px){.home section.products .col-md-3.shop-item{display:inline-block;float:none !important;margin-right:-3px;margin-left:-2px}.home section.products .row{text-align:center}}@media (min-width: 480px){.home .hestia-features .row,.home .hestia-work .row,.home .hestia-team .row,.home .hestia-testimonials .row,.home #blog.hestia-blogs .row,.home .hestia-clients-bar .row{text-align:center}.home .feature-box,.home .hestia-work .portfolio-item,.home .hestia-testimonials .col-sm-6,.home .hestia-team .col-sm-6,.home #blog.hestia-blogs .hestia-blog-item,.home .hestia-clients-bar .col-md-3{display:inline-block;float:none !important;margin-right:-4px;margin-left:-4px;vertical-align:top}}@media (min-width: 481px) and (max-width: 991px){.hestia-shop-content .shop-item.col-sm-6.col-ms-6{text-align:right}.hestia-shop-content .shop-item.col-sm-6.col-ms-6:nth-of-type(2n){text-align:left}}.hestia-about{background-attachment:fixed;color:#999}.hestia-about h1,.hestia-about h2,.hestia-about h3,.hestia-about h4,.hestia-about h5{color:#3C4858;text-decoration:none;word-wrap:break-word;font-family:"Roboto Slab","Times New Roman",serif}.hestia-about.section-image{color:#fefefe}.hestia-about.section-image h1,.hestia-about.section-image h2,.hestia-about.section-image h3,.hestia-about.section-image h4,.hestia-about.section-image h5{color:#fff}.hestia-about.section-image h6{color:rgba(255,255,255,0.76)}.hestia-about .customizer-hidden{display:none}.products .shop-item{margin-top:30px}.is-ios .hestia-about,.is-ios .hestia-ribbon{background-attachment:scroll}.hestia-work .portfolio-item{margin-top:30px;cursor:pointer}.hestia-work .card-background .content{padding-bottom:50px;opacity:0}.hestia-work .col-md-4 .card-background .content{padding-top:30%}.hestia-work .col-md-6 .card-background .content{padding-top:20%}.hestia-work .card-background:hover a:hover{opacity:1}.hestia-work .card-background:hover .content{opacity:1;-webkit-transition:all ease 0.5s;transition:all ease 0.5s}.hestia-work .portfolio-item:nth-child(6n) .label{background-color:#4caf50}.hestia-work .portfolio-item:nth-child(6n+1) .label{background-color:#89229b}.hestia-work .portfolio-item:nth-child(6n+2) .label{background-color:#00bcd4}.hestia-work .portfolio-item:nth-child(6n+3) .label{background-color:#f44336}.hestia-work .portfolio-item:nth-child(6n+4) .label{background-color:#ff9800}.hestia-work .portfolio-item:nth-child(6n+5) .label{background-color:#e91e63}.hestia-portfolio-modal .header-filter-gradient{border-radius:6px 6px 0 0;background-size:cover;background-repeat:no-repeat;background-position:center;z-index:1}.hestia-portfolio-modal{background:rgba(0,0,0,0.7)}.hestia-portfolio-modal .modal-header{position:relative;border-radius:6px 6px 0 0}.hestia-portfolio-modal .modal-header h3{margin:0;padding:104px 0;color:#fff}.hestia-portfolio-modal .modal-header:before{border-radius:6px 6px 0 0}.hestia-portfolio-modal .modal-header a{color:#ffffff;z-index:2}.hestia-portfolio-modal .modal-header a:hover{color:#ffffff}.hestia-portfolio-modal .modal-header:after{background-color:rgba(0,0,0,0.5);border-radius:6px 6px 0 0}.hestia-portfolio-modal .modal-header .close{z-index:3;font-size:30px;background:none;float:right;box-shadow:none;line-height:16px;margin:0;padding:10px}.hestia-portfolio-modal .modal-header .portfolio-title-container{position:relative;z-index:2}.hestia-portfolio-modal .modal-content{border-radius:6px}.hestia-portfolio-modal .modal-content .modal-body{padding:40px}.hestia-portfolio-modal .modal-content .portfolio-loading{padding:20px 0}.contactus .content .row{padding:0}.contactus .col-md-offset-2{padding:0 20px}.contactus .form-group{margin:0;padding-bottom:24px}.contactus .pirate-forms-footer .form-group{padding-bottom:0}.contactus .card .content{padding:30px 30px 0}.contactus .pirate_forms_wrap{float:none}.contactus .pirate_forms_wrap #pirate-forms-contact-message{height:130px}.contactus .pirate_forms_wrap .form_field_wrap{margin-bottom:17px}.contactus .pirate_forms_wrap .btn{margin:0}.contactus .pirate_forms_wrap .pirateform_wrap_classes_spam_wrap{color:#aaa;font-weight:400}.contactus .contact_message_wrap{margin-bottom:0}.contactus .contact_submit_wrap{text-align:right;margin-bottom:0}.contactus .hestia-info,.contactus .info{margin:0;padding:0}.contactus .hestia-info,.contactus .hestia-info p,.contactus .hestia-info a:not(.btn),.contactus .info,.contactus .info p,.contactus .info a:not(.btn){color:#ccc}.contactus .hestia-info a:not(.btn):hover,.contactus .info a:not(.btn):hover{text-decoration:underline}.contactus .hestia-info:first-child,.contactus .info:first-child{margin-top:30px}.contactus .hestia-info .info-title,.contactus .info .info-title{margin-top:20px;color:#fff}.contactus .hestia-info .icon,.contactus .info .icon{margin-top:14px;color:#fff}.contactus h5.description{color:#ccc}.contactus .card-contact{margin-top:30px}.contactus .pirate_forms_wrap .pirate-forms-footer{display:block}.contactus .pirate_forms_wrap .pirate-forms-footer .form_captcha_wrap{display:block}.contactus .pirate_forms_wrap .pirate-forms-footer .form_captcha_wrap>div>div{margin:0 auto 20px}.contactus .pirate_forms_wrap .pirate-forms-footer .form_captcha_wrap+.contact_submit_wrap{text-align:center;display:block}.pirate_forms_wrap .pirate-forms-footer .form_field_wrap.contact_submit_wrap{width:100%;text-align:right}.pirate-forms-maps-custom span:before,.pirate-forms-maps-custom span:after{content:'';position:absolute;top:0;bottom:0;margin:auto}.pirate-forms-maps-custom span:before{background:transparent;border:1px solid #aaa;border-radius:3px;left:0;height:18px;width:18px}.pirate-forms-maps-custom span:after{content:'\f00c';font-family:"Font Awesome 5 Free";font-weight:900;left:2px;top:1px;color:transparent}.pirate-forms-maps-custom input[type="checkbox"]{display:none}.pirate-forms-maps-custom label{color:#aaa;cursor:pointer;font-weight:100;margin:8px 0;padding-left:20px;position:relative}.pirate-forms-maps-custom input[type="checkbox"]:checked+label span:after{color:#787878}.pirate-forms-file-upload-input,.pirate_forms_three_inputs_wrap .form_field_wrap input.pirate-forms-file-upload-input{height:50px;padding:0 15px;margin:10px 0 0}div.wpforms-container .wpforms-form input[type=date].form-control,div.wpforms-container .wpforms-form input[type=datetime].form-control,div.wpforms-container .wpforms-form input[type=datetime-local].form-control,div.wpforms-container .wpforms-form input[type=email].form-control,div.wpforms-container .wpforms-form input[type=month].form-control,div.wpforms-container .wpforms-form input[type=number].form-control,div.wpforms-container .wpforms-form input[type=password].form-control,div.wpforms-container .wpforms-form input[type=range].form-control,div.wpforms-container .wpforms-form input[type=search].form-control,div.wpforms-container .wpforms-form input[type=tel].form-control,div.wpforms-container .wpforms-form input[type=text].form-control,div.wpforms-container .wpforms-form input[type=time].form-control,div.wpforms-container .wpforms-form input[type=url].form-control,div.wpforms-container .wpforms-form input[type=week].form-control,div.wpforms-container .wpforms-form select.form-control,div.wpforms-container .wpforms-form textarea.form-control{border:none;padding:7px 0;font-size:14px}div.wpforms-container .wpforms-form .wpforms-field-select select{border-radius:3px}div.wpforms-container .wpforms-form .wpforms-field-number input[type=number]{background-image:none;border-radius:3px}div.wpforms-container .wpforms-form button[type=submit].wpforms-submit,div.wpforms-container .wpforms-form button[type=submit].wpforms-submit:hover{color:#ffffff;border:none}.home div.wpforms-container-full .wpforms-form{margin-left:15px;margin-right:15px}div.wpforms-container-full .wpforms-form .wpforms-field{padding:0 0 24px 0 !important;margin-bottom:17px}div.wpforms-container-full .wpforms-form .wpforms-submit-container{text-align:right}div.wpforms-container-full .wpforms-form .wpforms-submit-container button{text-transform:uppercase}div.wpforms-container-full .wpforms-form textarea{border:none !important}div.wpforms-container-full .wpforms-form textarea:focus{border-width:0 0 0 0 !important}.home div.wpforms-container .wpforms-form textarea{background-image:linear-gradient(#9c27b0, #9c27b0),linear-gradient(#d2d2d2, #d2d2d2);background-color:transparent;background-repeat:no-repeat;background-position:center bottom,center calc(100% - 1px);background-size:0 2px, 100% 1px}@media only screen and (max-width: 768px){.wpforms-container-full .wpforms-form .wpforms-one-half,.wpforms-container-full .wpforms-form button{width:100% !important;margin-left:0 !important}.wpforms-container-full .wpforms-form .wpforms-submit-container{text-align:center}}.hestia-features,.features{padding:75px 0 55px;text-align:center}.hestia-features .hestia-title,.hestia-features .title,.features .hestia-title,.features .title{margin-top:10px}.hestia-features .hestia-info,.hestia-features .info,.features .hestia-info,.features .info{padding:70px 0 30px;margin:0 auto}.hestia-features .feature-box .card,.features .feature-box .card{width:auto;overflow:hidden;margin-bottom:0}.hestia-features .feature-box img,.features .feature-box img{max-width:150px}.hestia-info,.info{max-width:360px}.hestia-info a:hover .info-title,.hestia-info a:hover .icon,.info a:hover .info-title,.info a:hover .icon{opacity:.75}.hestia-info a:hover .icon,.info a:hover .icon{transform:scale(1.05) translateY(-5px)}.hestia-info .icon,.info .icon{transition:.3s ease;color:#999}.hestia-info .info-title,.info .info-title{transition:.3s ease;margin:30px 0 15px;color:#3C4858}.hestia-info p,.info p{color:#999}.info-horizontal .icon{float:left;margin-top:24px;margin-right:10px}.info-horizontal .description{overflow:hidden}.icon.icon-primary{color:#9c27b0}.icon.icon-success{color:#4caf50}.icon.icon-danger{color:#f44336}.icon.icon-rose{color:#e91e63}.single-product .hestia-features,.single-product .features{padding:50px 0 0}.single-product .hestia-features .hestia-info>p,.single-product .hestia-features .info>p,.single-product .features .hestia-info>p,.single-product .features .info>p{margin-bottom:10px}.hestia-team .col-xs-6,.team .col-xs-6{padding-left:0;padding-right:0}.hestia-team .btn-just-icon,.team .btn-just-icon{transition:.3s ease}.hestia-team .btn-just-icon:hover,.team .btn-just-icon:hover{opacity:.75}.hestia-team .card,.team .card{text-align:left}.hestia-team .card .content,.team .card .content{padding-top:0}.hestia-team .card .content a:hover>.card-title,.team .card .content a:hover>.card-title{opacity:.75}.hestia-team .card .footer,.team .card .footer{margin-left:-12px;margin-top:0}.hestia-team h5.description,.team h5.description{margin-bottom:70px}.hestia-team img,.team img{transition:1s ease-in}.hestia-team .card-image a:hover,.team .card-image a:hover{opacity:1}.hestia-team .card-image a:hover img,.team .card-image a:hover img{-webkit-transform:scale3d(1.1, 1.1, 1);transform:scale3d(1.1, 1.1, 1)}.authors-on-blog{background:#121417;background:-moz-linear-gradient(top, #121417 0%, #323437 100%);background:-webkit-gradient(left top, left bottom, color-stop(0%, #121417), color-stop(100%, #323437));background:-webkit-linear-gradient(top, #121417 0%, #323437 100%);background:-o-linear-gradient(top, #121417 0%, #323437 100%);background:-ms-linear-gradient(top, #121417 0%, #323437 100%);background:linear-gradient(to bottom, #121417 0%, #323437 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#121417', endColorstr='#323437', GradientType=0 );background-position:center center;background-size:cover}.authors-on-blog .card-title{color:#fff}.authors-on-blog .footer a:hover{color:#fff}.hestia-team .footer a[href*="facebook.com"],.team .footer a[href*="facebook.com"],.footer-menu a[href*="facebook.com"]{color:#3b5998}.hestia-team .footer a[href*="twitter.com"],.team .footer a[href*="twitter.com"],.footer-menu a[href*="twitter.com"]{color:#55acee}.hestia-team .footer a[href*="pinterest.com"],.team .footer a[href*="pinterest.com"],.footer-menu a[href*="pinterest.com"]{color:#cc2127}.hestia-team .footer a[href*="google.com"],.team .footer a[href*="google.com"],.footer-menu a[href*="google.com"]{color:#dd4b39}.hestia-team .footer a[href*="linkedin.com"],.team .footer a[href*="linkedin.com"],.footer-menu a[href*="linkedin.com"]{color:#0976b4}.hestia-team .footer a[href*="dribbble.com"],.team .footer a[href*="dribbble.com"],.footer-menu a[href*="dribbble.com"]{color:#ea4c89}.hestia-team .footer a[href*="github.com"],.team .footer a[href*="github.com"],.footer-menu a[href*="github.com"]{color:#000}.hestia-team .footer a[href*="youtube.com"],.team .footer a[href*="youtube.com"],.footer-menu a[href*="youtube.com"]{color:#e52d27}.hestia-team .footer a[href*="instagram.com"],.team .footer a[href*="instagram.com"],.footer-menu a[href*="instagram.com"]{color:#125688}.hestia-team .footer a[href*="reddit.com"],.team .footer a[href*="reddit.com"],.footer-menu a[href*="reddit.com"]{color:#ff4500}.hestia-team .footer a[href*="tumblr.com"],.team .footer a[href*="tumblr.com"],.footer-menu a[href*="tumblr.com"]{color:#35465c}.hestia-team .footer a[href*="behance.com"],.team .footer a[href*="behance.com"],.footer-menu a[href*="behance.com"]{color:#1769ff}.hestia-team .footer a[href*="snapchat.com"],.team .footer a[href*="snapchat.com"],.footer-menu a[href*="snapchat.com"]{color:#fffc00}.hestia-team .footer a[href*="deviantart.com"],.team .footer a[href*="deviantart.com"],.footer-menu a[href*="deviantart.com"]{color:#05cc47}.hestia-team .footer a[href*="vimeo.com"],.team .footer a[href*="vimeo.com"],.footer-menu a[href*="vimeo.com"]{color:#1ab7ea}.card-pricing{text-align:center}.card-pricing .card-title{margin-top:30px}.card-pricing .content{padding:15px !important}.card-pricing small:first-child{position:relative;top:-17px}.card-pricing ul{max-width:240px;margin:10px auto;padding:0;list-style:none}.card-pricing ul li{padding:12px 0;border-bottom:1px solid rgba(153,153,153,0.3);color:#999;text-align:center}.card-pricing ul li:last-child{border:0}.card-pricing ul li b{color:#3C4858}.card-pricing .hestia-pricing-icon-wrapper{border-radius:50%;border:1px solid #e5e5e5;width:80px;height:80px;margin:10px auto 0}.card-pricing .hestia-pricing-icon-wrapper i{color:inherit;font-size:30px;line-height:80px}.card-pricing .hestia-pricing-icon-wrapper.pricing-has-icon+.card-title{font-size:25px;margin-top:20px}.card-pricing .hestia-pricing-icon-wrapper.pricing-has-icon+.card-title small{color:inherit;top:0;font-size:inherit;font-weight:inherit;line-height:inherit}.card-pricing .card-pricing.card-plain .hestia-pricing-icon-wrapper{border-color:#d6d1d1}.hestia-ribbon{background-attachment:fixed;padding:100px 0}@media (max-width: 991px){.hestia-subscribe-button{margin-top:40px}}.subscribe-line{padding:65px 0}.subscribe-line .card{margin-top:30px}.subscribe-line .card .content .row{margin:0}.subscribe-line .card .input-group{display:table}.subscribe-line .card .input-group .input-group-addon{display:table-cell;padding:0 15px 0 0;width:1%}.subscribe-line .card .input-group .form-group{display:table-cell;padding-bottom:0}.subscribe-line .card input[type=submit],.subscribe-line .card input[type=button],.subscribe-line .card .btn{white-space:nowrap}.subscribe-line.subscribe-line-image{position:relative;background-position:top center;background-size:cover}.subscribe-line.subscribe-line-image .title,.subscribe-line.subscribe-line-image .hestia-title{color:#fff}.subscribe-line.subscribe-line-image:after{display:block;position:absolute;z-index:1;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,0.66);content:""}.subscribe-line.subscribe-line-image .container{position:relative;z-index:2}.subscribe-line .card h5,.subscribe-line .sib_loader{display:none !important}#sib_signup_form_1{text-align:center}#sib_signup_form_1 .input-group-addon{width:20px;display:inline-block;vertical-align:bottom;text-align:center;margin-right:10px;font-size:16px;margin-bottom:15px}#sib_signup_form_1 p.form-group{display:inline-block;width:calc(100% - 30px);margin-bottom:15px;text-align:left;position:relative;z-index:0}#sib_signup_form_1 p.form-group label{z-index:-1;top:10px;position:absolute;font-weight:400;color:#909090}#sib_signup_form_1 p.form-group:not(.is-empty) label{display:none}.hestia-blogs article .card-image img{transition:1s ease-out}.hestia-blogs article .card-image a:hover{opacity:1}.hestia-blogs article .card-image a:hover img{-webkit-transform:scale3d(1.1, 1.1, 1);transform:scale3d(1.1, 1.1, 1)}.hestia-blogs article .category a:not(:last-child):after{content:", "}.footer .widget h5{margin-bottom:20px}.footer a{color:#3C4858}.footer-big{color:#999;padding:30px 0 18px;text-align:center}.footer-big ul{margin-bottom:0;padding:0;list-style:none}.footer-big ul li a{display:inline-block;position:relative;padding:5px 0;border-radius:3px;text-decoration:none;text-transform:uppercase}.footer-big ul li a:hover{text-decoration:none}.footer-big ul li .btn{margin:0}.footer-big p{color:#999}.footer-big .footer-menu li{display:inline-block}.footer-big .footer-menu li a{padding:15px}.footer-big .copyright{padding:15px 0}.footer-big .content{text-align:left}.footer-big hr{margin-top:10px}footer.footer{background:#fff}footer.footer.footer-black{background:#323437}footer.footer.footer-black a{opacity:0.86;color:#fff}footer.footer.footer-black a:hover,footer.footer.footer-black a:focus{opacity:1}footer.footer.footer-black h5,footer.footer.footer-black h4,footer.footer.footer-black i,footer.footer.footer-black .copyright{color:#fff}footer.footer.footer-black hr{border-color:rgba(255,255,255,0.2)}.hestia-bottom-footer-content{position:relative}.hestia-center{width:100%;text-align:center}.footer-big .footer-menu li a[href*="mailto:"],.footer-big .footer-menu li a[href*="tel:"]{color:transparent;padding:10px}.footer-big .footer-menu li a[href*="mailto:"]:before,.footer-big .footer-menu li a[href*="tel:"]:before{color:#fff;font-family:"Font Awesome 5 Brands";font-weight:900}.footer-big .footer-menu li a[href*="mailto:"]:hover:before,.footer-big .footer-menu li a[href*="tel:"]:hover:before{color:#999}.footer-big .footer-menu li a[href*="tel:"]:before,.footer-big .footer-menu li a[href*="mailto:"]:before{font-family:"Font Awesome 5 Free"}.footer-big .footer-menu li a[href*="mailto:"]:before{content:'\f0e0'}.footer-big .footer-menu li a[href*="tel:"]:before{content:'\f879'}.footer-big .footer-menu li a[href*="facebook.com"]{color:transparent;font-size:0;padding:10px}.footer-big .footer-menu li a[href*="facebook.com"]:before{content:"";font-family:"Font Awesome 5 Brands";font-weight:900;color:#3c4858;font-size:16px}.footer-big .footer-menu li a[href*="facebook.com"]:hover{opacity:1 !important}.footer-big .footer-menu li a[href*="facebook.com"]:hover:before{color:#3b5998}.footer-black .footer-menu li a[href*="facebook.com"]:before{color:#fff}.footer-big .footer-menu li a[href*="twitter.com"]{color:transparent;font-size:0;padding:10px}.footer-big .footer-menu li a[href*="twitter.com"]:before{content:"";font-family:"Font Awesome 5 Brands";font-weight:900;color:#3c4858;font-size:16px}.footer-big .footer-menu li a[href*="twitter.com"]:hover{opacity:1 !important}.footer-big .footer-menu li a[href*="twitter.com"]:hover:before{color:#55acee}.footer-black .footer-menu li a[href*="twitter.com"]:before{color:#fff}.footer-big .footer-menu li a[href*="pinterest.com"]{color:transparent;font-size:0;padding:10px}.footer-big .footer-menu li a[href*="pinterest.com"]:before{content:"";font-family:"Font Awesome 5 Brands";font-weight:900;color:#3c4858;font-size:16px}.footer-big .footer-menu li a[href*="pinterest.com"]:hover{opacity:1 !important}.footer-big .footer-menu li a[href*="pinterest.com"]:hover:before{color:#cc2127}.footer-black .footer-menu li a[href*="pinterest.com"]:before{color:#fff}.footer-big .footer-menu li a[href*="google.com"]{color:transparent;font-size:0;padding:10px}.footer-big .footer-menu li a[href*="google.com"]:before{content:"";font-family:"Font Awesome 5 Brands";font-weight:900;color:#3c4858;font-size:16px}.footer-big .footer-menu li a[href*="google.com"]:hover{opacity:1 !important}.footer-big .footer-menu li a[href*="google.com"]:hover:before{color:#dd4b39}.footer-black .footer-menu li a[href*="google.com"]:before{color:#fff}.footer-big .footer-menu li a[href*="linkedin.com"]{color:transparent;font-size:0;padding:10px}.footer-big .footer-menu li a[href*="linkedin.com"]:before{content:"";font-family:"Font Awesome 5 Brands";font-weight:900;color:#3c4858;font-size:16px}.footer-big .footer-menu li a[href*="linkedin.com"]:hover{opacity:1 !important}.footer-big .footer-menu li a[href*="linkedin.com"]:hover:before{color:#0976b4}.footer-black .footer-menu li a[href*="linkedin.com"]:before{color:#fff}.footer-big .footer-menu li a[href*="dribbble.com"]{color:transparent;font-size:0;padding:10px}.footer-big .footer-menu li a[href*="dribbble.com"]:before{content:"";font-family:"Font Awesome 5 Brands";font-weight:900;color:#3c4858;font-size:16px}.footer-big .footer-menu li a[href*="dribbble.com"]:hover{opacity:1 !important}.footer-big .footer-menu li a[href*="dribbble.com"]:hover:before{color:#ea4c89}.footer-black .footer-menu li a[href*="dribbble.com"]:before{color:#fff}.footer-big .footer-menu li a[href*="github.com"]{color:transparent;font-size:0;padding:10px}.footer-big .footer-menu li a[href*="github.com"]:before{content:"";font-family:"Font Awesome 5 Brands";font-weight:900;color:#3c4858;font-size:16px}.footer-big .footer-menu li a[href*="github.com"]:hover{opacity:1 !important}.footer-big .footer-menu li a[href*="github.com"]:hover:before{color:#000}.footer-black .footer-menu li a[href*="github.com"]:before{color:#fff}.footer-big .footer-menu li a[href*="youtube.com"]{color:transparent;font-size:0;padding:10px}.footer-big .footer-menu li a[href*="youtube.com"]:before{content:"";font-family:"Font Awesome 5 Brands";font-weight:900;color:#3c4858;font-size:16px}.footer-big .footer-menu li a[href*="youtube.com"]:hover{opacity:1 !important}.footer-big .footer-menu li a[href*="youtube.com"]:hover:before{color:#e52d27}.footer-black .footer-menu li a[href*="youtube.com"]:before{color:#fff}.footer-big .footer-menu li a[href*="instagram.com"]{color:transparent;font-size:0;padding:10px}.footer-big .footer-menu li a[href*="instagram.com"]:before{content:"";font-family:"Font Awesome 5 Brands";font-weight:900;color:#3c4858;font-size:16px}.footer-big .footer-menu li a[href*="instagram.com"]:hover{opacity:1 !important}.footer-big .footer-menu li a[href*="instagram.com"]:hover:before{color:#125688}.footer-black .footer-menu li a[href*="instagram.com"]:before{color:#fff}.footer-big .footer-menu li a[href*="reddit.com"]{color:transparent;font-size:0;padding:10px}.footer-big .footer-menu li a[href*="reddit.com"]:before{content:"";font-family:"Font Awesome 5 Brands";font-weight:900;color:#3c4858;font-size:16px}.footer-big .footer-menu li a[href*="reddit.com"]:hover{opacity:1 !important}.footer-big .footer-menu li a[href*="reddit.com"]:hover:before{color:#ff4500}.footer-black .footer-menu li a[href*="reddit.com"]:before{color:#fff}.footer-big .footer-menu li a[href*="tumblr.com"]{color:transparent;font-size:0;padding:10px}.footer-big .footer-menu li a[href*="tumblr.com"]:before{content:"";font-family:"Font Awesome 5 Brands";font-weight:900;color:#3c4858;font-size:16px}.footer-big .footer-menu li a[href*="tumblr.com"]:hover{opacity:1 !important}.footer-big .footer-menu li a[href*="tumblr.com"]:hover:before{color:#35465c}.footer-black .footer-menu li a[href*="tumblr.com"]:before{color:#fff}.footer-big .footer-menu li a[href*="behance.com"]{color:transparent;font-size:0;padding:10px}.footer-big .footer-menu li a[href*="behance.com"]:before{content:"";font-family:"Font Awesome 5 Brands";font-weight:900;color:#3c4858;font-size:16px}.footer-big .footer-menu li a[href*="behance.com"]:hover{opacity:1 !important}.footer-big .footer-menu li a[href*="behance.com"]:hover:before{color:#1769ff}.footer-black .footer-menu li a[href*="behance.com"]:before{color:#fff}.footer-big .footer-menu li a[href*="snapchat.com"]{color:transparent;font-size:0;padding:10px}.footer-big .footer-menu li a[href*="snapchat.com"]:before{content:"";font-family:"Font Awesome 5 Brands";font-weight:900;color:#3c4858;font-size:16px}.footer-big .footer-menu li a[href*="snapchat.com"]:hover{opacity:1 !important}.footer-big .footer-menu li a[href*="snapchat.com"]:hover:before{color:#fffc00}.footer-black .footer-menu li a[href*="snapchat.com"]:before{color:#fff}.footer-big .footer-menu li a[href*="deviantart.com"]{color:transparent;font-size:0;padding:10px}.footer-big .footer-menu li a[href*="deviantart.com"]:before{content:"";font-family:"Font Awesome 5 Brands";font-weight:900;color:#3c4858;font-size:16px}.footer-big .footer-menu li a[href*="deviantart.com"]:hover{opacity:1 !important}.footer-big .footer-menu li a[href*="deviantart.com"]:hover:before{color:#05cc47}.footer-black .footer-menu li a[href*="deviantart.com"]:before{color:#fff}.footer-big .footer-menu li a[href*="vimeo.com"]{color:transparent;font-size:0;padding:10px}.footer-big .footer-menu li a[href*="vimeo.com"]:before{content:"";font-family:"Font Awesome 5 Brands";font-weight:900;color:#3c4858;font-size:16px}.footer-big .footer-menu li a[href*="vimeo.com"]:hover{opacity:1 !important}.footer-big .footer-menu li a[href*="vimeo.com"]:hover:before{color:#1ab7ea}.footer-black .footer-menu li a[href*="vimeo.com"]:before{color:#fff}.hestia-scroll-to-top{position:fixed;bottom:15px;right:15px;z-index:999;opacity:0;transition:opacity .25s ease-in-out;-moz-transition:opacity .25s ease-in-out;-webkit-transition:opacity .25s ease-in-out;padding:0;margin:0;border-radius:50%;width:50px;height:50px;text-align:center;line-height:50px;font-size:20px;background-color:#999999;-webkit-box-shadow:none;box-shadow:none}.hestia-scroll-to-top:hover{background-color:#999999;-webkit-box-shadow:0 14px 26px -12px rgba(49,49,49,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(49,49,49,0.42);box-shadow:0 14px 26px -12px rgba(49,49,49,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(49,49,49,0.2)}.hestia-scroll-to-top:focus{background-color:#999999;-webkit-box-shadow:0 14px 26px -12px rgba(49,49,49,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(49,49,49,0.42);box-shadow:0 14px 26px -12px rgba(49,49,49,0.42),0 4px 23px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(49,49,49,0.2)}.hestia-fade{opacity:1}.hestia-top-bar{height:40px;max-height:40px}.hestia-top-bar .col-md-6,.hestia-top-bar .col-md-12{max-height:40px}.hestia-top-bar .col-md-6.pull-right,.hestia-top-bar .col-md-12.pull-right{text-align:right}.hestia-top-bar .col-md-6.pull-right .widget.widget_shopping_cart .cart_list,.hestia-top-bar .col-md-12.pull-right .widget.widget_shopping_cart .cart_list{left:auto;right:0}.hestia-top-bar .col-md-6 li a:before,.hestia-top-bar .col-md-12 li a:before{font-family:"Font Awesome 5 Brands"}.hestia-top-bar .widget{margin:0 10px 0 0}.hestia-top-bar .widget:last-of-type{margin-right:0}.hestia-top-bar .widget,.hestia-top-bar .widget h5,.hestia-top-bar .widget .textwidget{display:inline-block}.hestia-top-bar .widget h5{margin:0 5px 0 0}.hestia-top-bar .widget .btn{padding:3px 10px}.hestia-top-bar .widget.widget_nav_menu h5,.hestia-top-bar .widget.widget_categories h5,.hestia-top-bar .widget.widget_product_categories h5{display:none}.hestia-top-bar .widget.widget_search button[type=submit],.hestia-top-bar .widget.widget_search h5,.hestia-top-bar .widget.widget_product_search button[type=submit],.hestia-top-bar .widget.widget_product_search h5{display:none}.hestia-top-bar .widget.widget_search .label-floating,.hestia-top-bar .widget.widget_product_search .label-floating{display:inline-block;margin:0;padding:0;width:auto}.hestia-top-bar .widget.widget_search .label-floating .control-label,.hestia-top-bar .widget.widget_product_search .label-floating .control-label{padding:0}.hestia-top-bar .widget.widget_search .label-floating.is-empty .control-label,.hestia-top-bar .widget.widget_product_search .label-floating.is-empty .control-label{position:absolute;left:25px;top:12px;right:-25px;margin-top:0;text-align:left;opacity:1}.hestia-top-bar .widget.widget_search .label-floating.is-focused .control-label,.hestia-top-bar .widget.widget_product_search .label-floating.is-focused .control-label{opacity:0}.hestia-top-bar .widget.widget_search .label-floating:not(.is-empty) .control-label,.hestia-top-bar .widget.widget_product_search .label-floating:not(.is-empty) .control-label{opacity:0;left:25px;top:12px}.hestia-top-bar .widget.widget_search form:not(.form-group),.hestia-top-bar .widget.widget_product_search form:not(.form-group){opacity:0}.hestia-top-bar .widget.widget_search form.form-group,.hestia-top-bar .widget.widget_product_search form.form-group{opacity:1}.hestia-top-bar .widget.widget_search form.form-group input[type=search],.hestia-top-bar .widget.widget_product_search form.form-group input[type=search]{background:none;border:none;float:none;margin:2px 25px 0 25px;width:auto}.hestia-top-bar .widget.widget_search form.form-group input[type=submit],.hestia-top-bar .widget.widget_product_search form.form-group input[type=submit]{display:none}.hestia-top-bar .widget.widget_search form.form-group:after,.hestia-top-bar .widget.widget_product_search form.form-group:after{display:none}.hestia-top-bar .widget.widget_search form.form-group:before,.hestia-top-bar .widget.widget_product_search form.form-group:before{color:#fff;content:"\f002";font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;left:0;top:0}.hestia-top-bar .widget.widget_search .search-form{display:inline-block}.hestia-top-bar .widget.widget_shopping_cart{cursor:pointer;padding-left:25px;position:relative;vertical-align:top}.hestia-top-bar .widget.widget_shopping_cart:before{color:#fff;content:"\f07a";font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;left:0;top:0;z-index:50}.hestia-top-bar .widget.widget_shopping_cart:hover .cart_list{display:inline-block;opacity:1;visibility:visible;margin-top:0}.hestia-top-bar .widget.widget_shopping_cart .button.checkout{display:none}.hestia-top-bar .widget.widget_shopping_cart .wc-forward:not(.checkout){opacity:0;position:absolute;top:-5px;left:-4px}.hestia-top-bar .widget.widget_shopping_cart h5{display:none}.hestia-top-bar .widget.widget_shopping_cart .widget_shopping_cart_content{display:inline-block}.hestia-top-bar .widget.widget_shopping_cart .cart_list{border-radius:0 0 6px 6px;opacity:0;visibility:hidden;margin-top:-10px;padding:0 15px 15px;position:absolute;left:0;top:40px;z-index:1050}.hestia-top-bar .widget.widget_shopping_cart .cart_list li{display:block;margin-top:15px;padding-bottom:0;white-space:nowrap}.hestia-top-bar .widget.widget_shopping_cart .cart_list li a:not(.remove){margin:0;padding-right:65px;text-align:left}.hestia-top-bar .widget.widget_shopping_cart .cart_list li img{float:left;width:50px;margin-left:0;margin-right:15px}.hestia-top-bar .widget.widget_shopping_cart .cart_list li .quantity{padding-right:65px}.hestia-top-bar .widget.widget_shopping_cart .cart_list li .variation{display:none}.hestia-top-bar .widget.widget_shopping_cart .cart_list li.empty{padding:0}.hestia-top-bar .widget.widget_shopping_cart .total{border:none;margin:0;padding:0}.hestia-top-bar .widget.widget_shopping_cart .total strong{display:none}.hestia-top-bar .widget.widget_shopping_cart .total .amount{float:none}.hestia-top-bar ul li{cursor:auto;display:inline-block;margin:0 5px}.hestia-top-bar ul li:first-child{margin-left:0}.hestia-top-bar ul li:last-child{margin-right:0}.hestia-top-bar ul li a{padding:0;text-transform:inherit}.hestia-top-bar ul li a:before{background-color:transparent;position:static;font-family:"Font Awesome 5 Brands";font-weight:900}.hestia-top-bar ul li a:hover,.hestia-top-bar ul li a:focus{background-color:transparent;outline:none}.hestia-top-bar ul li a[href*="tel:"]:before,.hestia-top-bar ul li a[href*="mailto:"]:before{margin-right:7px;font-family:"Font Awesome 5 Free"}.hestia-top-bar ul li a[href*="tel:"]:before{content:'\f879'}.hestia-top-bar ul li a[href*="mailto:"]:before{content:'\f0e0'}.hestia-top-bar ul li.dropdown .caret{display:none}.hestia-top-bar.placeholder{box-sizing:content-box;border:2px dashed}.hestia-top-bar.placeholder .top-widgets-placeholder{display:inline-block;cursor:pointer;position:relative;vertical-align:top}.hestia-top-bar li a[href*="facebook.com"]{font-size:0}.hestia-top-bar li a[href*="facebook.com"]:before{content:""}.hestia-top-bar li a[href*="facebook.com"]:hover:before{color:#3b5998}.hestia-top-bar li a[href*="twitter.com"]{font-size:0}.hestia-top-bar li a[href*="twitter.com"]:before{content:""}.hestia-top-bar li a[href*="twitter.com"]:hover:before{color:#55acee}.hestia-top-bar li a[href*="pinterest.com"]{font-size:0}.hestia-top-bar li a[href*="pinterest.com"]:before{content:""}.hestia-top-bar li a[href*="pinterest.com"]:hover:before{color:#cc2127}.hestia-top-bar li a[href*="google.com"]{font-size:0}.hestia-top-bar li a[href*="google.com"]:before{content:""}.hestia-top-bar li a[href*="google.com"]:hover:before{color:#dd4b39}.hestia-top-bar li a[href*="linkedin.com"]{font-size:0}.hestia-top-bar li a[href*="linkedin.com"]:before{content:""}.hestia-top-bar li a[href*="linkedin.com"]:hover:before{color:#0976b4}.hestia-top-bar li a[href*="dribbble.com"]{font-size:0}.hestia-top-bar li a[href*="dribbble.com"]:before{content:""}.hestia-top-bar li a[href*="dribbble.com"]:hover:before{color:#ea4c89}.hestia-top-bar li a[href*="github.com"]{font-size:0}.hestia-top-bar li a[href*="github.com"]:before{content:""}.hestia-top-bar li a[href*="github.com"]:hover:before{color:#000}.hestia-top-bar li a[href*="youtube.com"]{font-size:0}.hestia-top-bar li a[href*="youtube.com"]:before{content:""}.hestia-top-bar li a[href*="youtube.com"]:hover:before{color:#e52d27}.hestia-top-bar li a[href*="instagram.com"]{font-size:0}.hestia-top-bar li a[href*="instagram.com"]:before{content:""}.hestia-top-bar li a[href*="instagram.com"]:hover:before{color:#125688}.hestia-top-bar li a[href*="reddit.com"]{font-size:0}.hestia-top-bar li a[href*="reddit.com"]:before{content:""}.hestia-top-bar li a[href*="reddit.com"]:hover:before{color:#ff4500}.hestia-top-bar li a[href*="tumblr.com"]{font-size:0}.hestia-top-bar li a[href*="tumblr.com"]:before{content:""}.hestia-top-bar li a[href*="tumblr.com"]:hover:before{color:#35465c}.hestia-top-bar li a[href*="behance.com"]{font-size:0}.hestia-top-bar li a[href*="behance.com"]:before{content:""}.hestia-top-bar li a[href*="behance.com"]:hover:before{color:#1769ff}.hestia-top-bar li a[href*="snapchat.com"]{font-size:0}.hestia-top-bar li a[href*="snapchat.com"]:before{content:""}.hestia-top-bar li a[href*="snapchat.com"]:hover:before{color:#fffc00}.hestia-top-bar li a[href*="deviantart.com"]{font-size:0}.hestia-top-bar li a[href*="deviantart.com"]:before{content:""}.hestia-top-bar li a[href*="deviantart.com"]:hover:before{color:#05cc47}.hestia-top-bar li a[href*="vimeo.com"]{font-size:0}.hestia-top-bar li a[href*="vimeo.com"]:before{content:""}.hestia-top-bar li a[href*="vimeo.com"]:hover:before{color:#1ab7ea}.hestia-clients-bar{padding:70px 0}.hestia-clients-bar .clients-bar-wrapper{list-style-type:none;margin:0;padding:0}.hestia-clients-bar .clients-bar-wrapper li{display:inline-block;margin:25px;vertical-align:middle}.hestia-clients-bar .clients-bar-wrapper li a{display:block;padding:5px}.hestia-clients-bar .clients-bar-wrapper li img{max-width:100%;height:auto}.hestia-clients-bar .row>div{padding:30px}.search-no-results .search-form,.error404 .search-form{margin-top:40px}#authors-on-blog{padding:80px 0}#authors-on-blog .card-profile{text-align:left}#authors-on-blog .col-ms-6:nth-child(2n+1){clear:both}.blog-post{word-wrap:break-word}.blog-post .section-text{padding-bottom:0}.blog-post .section-text p{margin-bottom:30px}.blog-post .section-blog-info{padding-top:15px}.blog-post .section-blog-info .entry-categories span{font-size:10px}.blog-post .section-blog-info .entry-categories,.blog-post .section-blog-info .entry-tags{word-break:break-all}.blog-post .section-blog-info .entry-categories span,.blog-post .section-blog-info .entry-tags span{display:inline-block;margin:5px}.blog-post .section-blog-info .entry-categories a{display:inline-block;padding:2px 2px;color:#fff}.blog-post .section-blog-info .card-profile{margin-top:0;text-align:left}dl dd,pre{margin-bottom:30px}.alignleft .avatar{margin-right:24px}.alignright .avatar{margin-left:24px}img.centered,.aligncenter{display:block;margin:0 auto 24px}img.alignnone{margin-bottom:12px}.alignleft{float:left;text-align:left}.alignright{float:right;text-align:right}img.alignleft,.wp-caption.alignleft{margin:0 24px 24px 0;margin:0 2.4rem 2.4rem 0}img.alignright,.wp-caption.alignright{margin:0 0 24px 24px}.wp-caption-text{padding-top:10px;text-align:center}.gallery-caption{padding-top:10px}.gallery .gallery-item{padding:5px}.gallery img{border:none !important;border-radius:6px;-webkit-box-shadow:0 16px 38px -12px rgba(0,0,0,0.56),0 4px 25px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(0,0,0,0.2);box-shadow:0 16px 38px -12px rgba(0,0,0,0.56),0 4px 25px 0 rgba(0,0,0,0.12),0 8px 10px -5px rgba(0,0,0,0.2)}.bypostauthor{display:block}.related-posts .hestia-title{margin-bottom:50px}.related-posts .category a:not(:last-child):after{content:", "}.single-post .blog-post .section-text .title-in-content{margin-bottom:0}.blog-post .section-text .author.meta-in-content{opacity:.9;margin-bottom:20px;font-size:15px}.flex-row{display:flex;flex-wrap:wrap;flex-direction:row}.layout-alternative2 .category{padding-top:10px}.alignfull,.alignwide{width:unset;max-width:unset}.hestia-hidden{display:none}.media .avatar,.media-body .avatar,.media-area .avatar{overflow:hidden;width:64px;height:64px;margin:0 auto;margin-right:15px;border-radius:50%;-webkit-box-shadow:0 6px 10px 0 rgba(0,0,0,0.14),0 1px 18px 0 rgba(0,0,0,0.12),0 3px 5px -1px rgba(0,0,0,0.2);box-shadow:0 6px 10px 0 rgba(0,0,0,0.14),0 1px 18px 0 rgba(0,0,0,0.12),0 3px 5px -1px rgba(0,0,0,0.2)}.media-area .hestia-title,.comment-respond .hestia-title{margin-bottom:30px}.single-post .blog-post .section-comments .hestia-title{margin-bottom:30px;margin-top:20px}.comment .pull-left{padding-right:10px}.media-body div.avatar{margin:0 10px}.media{overflow:visible}.media .avatar img{width:100%}.media .media-heading{margin-top:0;margin-bottom:10px}.media .media-heading small{font-family:"Roboto","Helvetica","Arial",sans-serif}.media .media-body{padding-right:10px}.media .media-body .media .media-body{padding-right:0}.media .media-footer .btn{margin-bottom:20px}.media .media-footer:after{display:table;clear:both;content:" "}.media p{color:#999}#comments .comment-notes{display:none}.section-comments ul.children .comment-author.avatar,.section-comments ul.children .avatar img{width:40px;height:40px}.blog-post .media p{color:#555}.blog-post .section-comments .title{margin-bottom:30px}.blog-post .section-comments .comment-respond .author{margin:15px 20px 0 0}.blog-post .section-comments .comment-respond .author img{border-radius:100%}.blog-post .comment-reply-link{text-transform:uppercase;float:right}.media-body{width:10000px;display:table-cell;overflow:visible}.widget{margin-bottom:30px;word-break:break-word}.widget ul{padding:0 0 0 10px;margin:0;list-style:none}.widget ul li{line-height:2.4;padding-top:5px}.widget ul li:first-child{padding-top:0}aside .widget .btn a{color:#fff}aside .widget a{color:#23527c}.widget a:hover{color:#89229b}.widget #searchform{margin-bottom:0;padding-bottom:0}.widget h5{font-family:"Roboto Slab","Times New Roman",serif;margin-bottom:10px}.widget select{width:100%}.hestia-widget-placeholder{border:1px dashed #b4b9be;padding:25px;text-align:center}.hestia-widget-placeholder .widget{margin:0}.single .hestia_right aside.blog-sidebar{padding:0}.hestia_right .hestia-widget-placeholder{padding:5px}.widget_calendar th,.widget_calendar tr,.widget_calendar td{padding:7px 0;text-align:center}.hestia-sidebar-close,.hestia-sidebar-open{display:none}.attachment .main-raised .blog-post{padding-bottom:130px}.attachment .sizes{margin-top:20px}.hestia-blog-featured-posts{padding:0}.hestia-blog-featured-posts article:nth-of-type(1) .card{margin-top:0}.hestia-blog-featured-posts article:nth-child(6n) .btn{background-color:#4caf50}.hestia-blog-featured-posts article:nth-child(6n+1) .btn{background-color:#89229b}.hestia-blog-featured-posts article:nth-child(6n+2) .btn{background-color:#00bcd4}.hestia-blog-featured-posts article:nth-child(6n+3) .btn{background-color:#f44336}.hestia-blog-featured-posts article:nth-child(6n+4) .btn{background-color:#ff9800}.hestia-blog-featured-posts article:nth-child(6n+5) .btn{background-color:#e91e63}.hestia-blog-featured-card .card-background{text-align:center}.hestia-blog-featured-card .card-background:after{position:absolute;z-index:1;width:100%;height:100%;display:block;left:0;top:0;content:"";background-color:rgba(0,0,0,0.56);border-radius:6px;opacity:1}.hestia-blog-featured-card .card-background .card-body{position:relative;z-index:2;min-height:280px;padding-top:40px;padding-bottom:40px;max-width:440px;margin:0 auto}.hestia-blog-featured-card .card-background .card-body .card-description{color:rgba(255,255,255,0.7)}.hestia-blog-featured-card .card-background .card-body .category a{color:rgba(255,255,255,0.7)}.hestia-blog-featured-card .card-body{padding:15px 30px}.hestia-blog-featured-card.col-md-12 .card-body{max-width:750px}figure.wp-block-pullquote{border-left:none;border-top:4px solid;border-bottom:4px solid;margin:20px 0;padding:3em 0}figure.wp-block-pullquote p{font-size:28px;font-style:normal;margin-bottom:20px}figure.wp-block-pullquote blockquote{margin:1em;border:none}figure.wp-block-pullquote cite{text-transform:uppercase;font-size:13px;font-weight:300}.single-post-wrap .has-small-font-size,.page-content-wrap .has-small-font-size{font-size:13px}.single-post-wrap .has-medium-font-size,.page-content-wrap .has-medium-font-size{font-size:20px}.single-post-wrap .has-large-font-size,.page-content-wrap .has-large-font-size{font-size:36px}.single-post-wrap .has-huge-font-size,.page-content-wrap .has-huge-font-size{font-size:48px}.wp-block-separator{color:#eee;background-color:#eee;border:none}.wp-block-separator:not(.is-style-wide):not(.is-style-dots){height:2px;max-width:150px}.wp-block-separator .is-style-default{height:1px}.wp-block-separator.is-style-wide{max-width:100%;height:1px}.page-header .container,.page-header .author,.page-header .author a,.page-header .hestia-title,.page-header .title,.page-header .description{color:#fff}.page-content-wrap:after,.single-post-wrap:after{content:"";display:table;clear:both}#parallax_move ~ .item .page-header,#wp-custom-header ~ .item .page-header{overflow:inherit}.page-header{will-change:transform;overflow:hidden;margin:0;padding:0;border:0;background-position:center center;background-size:cover}.page-header .container{padding-top:30vh;color:#fff}.page-header .container .hestia-title,.page-header .container .title{margin:0 0 20px}.page-header.header-small .container .hestia-title,.page-header.header-small .container .title{margin:20px 0 10px}.page-header.header-small{min-height:300px;position:relative;height:auto}.page-header.header-small .container{padding-top:180px;padding-bottom:110px}.page-header.header-small .hestia-title,.page-header.header-small .title{font-family:"Roboto","Helvetica","Arial",sans-serif}.boxed-layout-header{padding-bottom:60px}.header-filter-gradient{background:linear-gradient(45deg, #a81d84 0%, #ea396f 100%)}.header-filter.header-filter-gradient:before{background-color:transparent}.header-filter{position:absolute;top:0;bottom:0;left:0;right:0;z-index:-1;background-position:center center;background-size:cover}.header-filter:before,.header-filter:after{display:block;position:absolute;top:0;left:0;width:100%;height:100%;content:""}.header-filter::before{background-color:rgba(0,0,0,0.5)}.header-filter .container{position:relative}.woocommerce.single-product .header-filter{background-position:top center}.carousel .header-filter:before,.carousel .header-filter:after{z-index:-1}.clear-filter:before{display:none}.header .wrapper{background:#ccc}.header .btn{margin:0}.header h6{margin-bottom:0}.phone-container img{width:100%}.main{position:relative;background:#fff}.main-raised{margin:-60px 30px 0;border-radius:6px 6px 0 0;-webkit-box-shadow:0 16px 24px 2px rgba(0,0,0,0.14),0 6px 30px 5px rgba(0,0,0,0.12),0 8px 10px -5px rgba(0,0,0,0.2);box-shadow:0 16px 24px 2px rgba(0,0,0,0.14),0 6px 30px 5px rgba(0,0,0,0.12),0 8px 10px -5px rgba(0,0,0,0.2)}.home .main-raised section:first-of-type{border-radius:6px 6px 0 0;overflow:hidden}.page-template-template-pagebuilder-blank .section{padding:0}.woocommerce.archive .main-raised,.single .main-raised{margin-top:-60px;margin-bottom:30px}.single .main-raised.classic-blog{margin-top:0}.woocommerce.archive .main-raised{background-color:#e5e5e5}.content-sidebar-left{padding-left:30px;padding-right:0}.content-sidebar-right{padding-right:30px;padding-left:0}.shop-sidebar-wrapper{padding:0}.content-full.col-md-12{padding:0}.page:not(.home) .wrapper{display:flex;flex-direction:column;min-height:100vh}.page:not(.home) .wrapper .main{display:flex;flex-direction:column;flex:1 0 auto}.page:not(.home) .wrapper .main .blog-post{flex:1 0 auto}body:not(.home) .wrapper{display:flex;flex-direction:column;min-height:100vh}body:not(.home) .wrapper .main{display:flex;flex-direction:column;flex:1 0 auto}body:not(.home) .wrapper .main .hestia-blogs{flex:1 0 auto}body:not(.home) .wrapper .content-area{display:flex;flex-direction:column;flex:1 0 auto}@media (max-width: 1199px){.hestia-features .row,.hestia-about .row,.products .row,.hestia-work .row,.hestia-team .row,.pricing .row,.hestia-testimonials .row,section.hestia-blogs .row,.contactus .row{padding:0 15px}.products .container{width:100%}.main-raised{margin:-60px 15px 0}}@media (max-width: 991px){.navbar .navbar-nav>li{margin-right:10px;margin-left:10px}.page-header{height:auto;min-height:0}.card.card-raised .card-image{margin-top:-30px;display:block;margin-left:0;margin-right:0}.card.card-raised{padding:20px}.woocommerce-checkout .page-header{height:auto}.hestia-about .text-area{margin:0 0 10px}.blog .page-header.header-small h2{margin:0}.blog .page-header.header-small{height:auto;min-height:0}.page-header .iframe-container{padding:30px 0}.card-form-horizontal .form-group{padding-bottom:20px}.carousel .page-header{padding:0 30px}.btn.btn-simple{padding-right:0;padding-left:0;text-align:left}.hestia-work .col-md-6 .card-background .content,.hestia-work .col-md-4 .card-background .content{padding-top:15%}.hestia-features .row,.features .row,.hestia-about .row,.about .row,.products .row,.hestia-work .row,.work .row,.hestia-team .row,.team .row,.pricing .row,.hestia-testimonials .row,.testimonials .row,section.hestia-blogs .row,.contactus .row{padding:0 10px}.single aside.blog-sidebar{padding:40px 30px}.shop-sidebar.card{width:100%;text-align:initial}.shop-sidebar-wrapper{text-align:center}.products .shop-item:nth-of-type(2n+1){clear:both}.subscribe-line .card .content{padding:0}.subscribe-line .card .form-group{padding-bottom:0}.blog .hestia-blogs,.archive .hestia-blogs{padding-top:0}.blog .hestia-blogs .card-blog .card-image,.archive .hestia-blogs .card-blog .card-image{margin-bottom:30px}.blog #authors-on-blog,.archive #authors-on-blog{padding-bottom:40px}.home section.hestia-blogs{padding:30px 0 65px}.single.single-post .section-blog-info .card-profile .card-title,.single.single-post .section-blog-info .card-profile .description{text-align:center}.single.single-post .section-blog-info .card-profile .card-avatar{margin-bottom:20px}.hestia-sidebar-open,.hestia-sidebar-close{cursor:pointer;display:inline-block;margin:0;padding:12px 15px}.row-sidebar-toggle{margin:30px 15px 0;text-align:right}.page .row-sidebar-toggle{margin-top:0;margin-bottom:30px}.shop-sidebar-wrapper{float:none;overflow-x:hidden;position:fixed;z-index:9999;top:0;left:-100%;width:100%;height:100%;padding:15px 0;background:#fff;-webkit-transition:0.5s ease;-moz-transition:0.5s ease;-ms-transition:0.5s ease;-o-transition:0.5s ease;transition:0.5s ease}.shop-sidebar-wrapper .row-sidebar-toggle{margin:0 15px 30px}.archive.woocommerce .hestia-sidebar-open{margin-bottom:30px}.archive.woocommerce .shop-sidebar-active{margin-top:10px}.archive.woocommerce .row-sidebar-toggle.col-sm-3{margin:0;text-align:left}.archive.woocommerce .row-sidebar-toggle.col-sm-3 .hestia-sidebar-open{margin:15px 0 0}.shop-sidebar.card.card-raised{box-shadow:none;margin:0;padding:0 15px}.hestia-top-bar .container{width:100%}.hestia-top-bar .col-md-6{width:50%}.hestia-team .card .content,.team .card .content{padding-top:15px}.hestia-team .card .content .footer .btn.btn-just-icon,.team .card .content .footer .btn.btn-just-icon{padding:12px;text-align:center}.pricing p.text-gray{margin-bottom:40px}.related-posts .hestia-title{margin-bottom:60px}.hestia-blog-featured-posts{padding-top:30px}.hestia-blog-featured-posts .card-raised{margin:30px 0}.hestia-blog-featured-posts .card-background .card-body{padding-top:20px;padding-bottom:20px;max-width:100%}.hestia-blog-featured-posts .card-body{padding:20px 15px}}@media (min-width: 992px){.navbar .navbar-collapse{text-align:center}.card.card-raised .card-image{margin-left:0;margin-right:0}.navbar .navbar-center{display:inline-block;float:none}.navbar .navbar-nav>li{margin:0}.navbar .navbar-nav>li.btn{margin:0 10px}.navbar .navbar-nav>li.btn:last-child{margin-right:0}.entry-social{text-align:right}.footer .content{margin-left:-15px;margin-right:-15px}.footer .row{margin-left:-15px;margin-right:-15px}.footer .col-md-4{padding:0 30px}.blog-sidebar-wrapper,.shop-sidebar-wrapper{float:left;position:static;background:transparent;left:0 !important}.big-title-sidebar-wrapper .pirate-forms-contact-widget{max-width:370px}}@media (min-width: 783px) and (min-width: 601px){body.admin-bar .navbar-default:not(.navbar-transparent){margin-top:32px}}@media (min-width: 769px){.form-horizontal .control-label{padding-top:8px}.nav-cart.responsive-nav-cart{display:none}.navbar.hestia_left .title-logo-wrapper{min-width:250px}.navbar.hestia_right.navbar-scroll-point .title-logo-wrapper,.navbar.hestia_right.navbar-scroll-point .header-sidebar-wrapper{display:none}.navbar.hestia_right .title-logo-wrapper{min-width:250px}.navbar.hestia_right .navbar-collapse{min-width:100%}.navbar.hestia_center .navbar-brand{margin:0 auto}.navbar.hestia_center.navbar-scroll-point .title-logo-wrapper{display:none}.navbar.full-screen-menu .navbar-brand{float:none;margin:0;padding:0}.navbar.full-screen-menu .navbar-header{width:100%;display:flex}.navbar.full-screen-menu .navbar-toggle{z-index:999999}.navbar.full-screen-menu.navbar-scroll-point .title-logo-wrapper{display:block}.navbar.full-screen-menu .navbar-toggle,.navbar.full-screen-menu .nav-cart:not(.responsive-nav-cart){display:inline-block}.navbar.full-screen-menu .nav-cart .nav-cart-icon span{top:10px;left:15px}.navbar.full-screen-menu .navbar-nav{background-color:rgba(255,255,255,0.9)}.navbar.full-screen-menu.hestia_center .navbar-header .title-logo-wrapper{left:50%;transform:translateX(-50%);position:relative}.navbar.full-screen-menu.hestia_right .navbar-header{max-width:100%}.navbar.full-screen-menu .navbar-nav.nav{opacity:0;display:flex;flex-direction:column;flex-wrap:inherit;justify-content:flex-start;transition:all .3s ease;visibility:hidden;pointer-events:none;z-index:9999;overflow-x:scroll;position:fixed;width:100%;background-color:rgba(255,255,255,0.9);left:0;top:0;bottom:0;padding-top:100px}.navbar.full-screen-menu .navbar-nav.nav>li,.navbar.full-screen-menu .navbar-nav.nav>li.btn:last-child{display:table;margin:20px auto}.navbar.full-screen-menu .in .navbar-nav.nav{opacity:1;visibility:visible;pointer-events:inherit}.dropdown .dropdown-menu{display:block;visibility:hidden;margin-top:-20px;opacity:0;-webkit-transition:all 150ms linear;transition:all 150ms linear}.dropdown.open,.dropdown:hover{z-index:1}.dropdown.open>.dropdown-menu,.dropdown:hover>.dropdown-menu{visibility:visible;margin-top:1px;opacity:1;z-index:100}}@media (max-width: 768px){li.nav-cart{display:none}li.nav-cart.responsive-nav-cart{display:block;margin-left:5px}.container .navbar-header{width:100%;display:flex;margin:0 auto}.navbar>.container{transition:padding 0.1s ease;padding:10px 15px;align-items:center;display:block}.navbar.navbar-transparent{background:#fff;color:#555}.navbar.navbar-transparent>.container{padding-top:10px}.navbar .nav.navbar-nav{display:block}.hestia-sidebar-header{display:none}.navbar.hestia_right .navbar-header{max-width:inherit}.navbar.navbar-default .dropdown.btn a .caret{border-color:#fff !important;color:#fff !important}.navbar.navbar-default li.btn a,.navbar.navbar-default li.btn a i,.navbar.navbar-default .navbar-nav .menu-item.btn.active a,.navbar.navbar-default .navbar-nav .menu-item.btn.active a i{color:#fff}.navbar.navbar-default li.btn:hover a,.navbar.navbar-default li.btn:hover i{color:#fff}.navbar.navbar-default li.btn:hover ul li i{color:#fff}.navbar.navbar-default li.btn ul li a,.navbar.navbar-default li.btn ul li i{opacity:1;color:#fff !important}.navbar.navbar-default li.btn ul li:hover a,.navbar.navbar-default li.btn ul li i{color:#fff !important}.navbar.navbar-fixed-top .navbar-collapse{max-height:calc(100% - 70px);margin-top:70px;overflow-y:auto;position:fixed;z-index:9999;background:#fff;width:100%;left:0;top:0;margin-left:0;margin-right:0;-webkit-overflow-scrolling:auto}.navbar.navbar-fixed-top.header-with-topbar:not(.navbar-scroll-point) .navbar-collapse{margin-top:110px}.navbar .navbar-nav{margin:7.5px 0}.navbar .navbar-nav li{box-sizing:border-box;float:left;margin:0;padding:0;width:100%;text-align:left}.navbar .navbar-nav li.btn{margin-top:10px}.navbar .navbar-nav .dropdown a .caret{border:1px solid #555;border-radius:2px;box-sizing:content-box;color:#555;cursor:pointer;display:inline-block;font-family:"Font Awesome 5 Free";font-weight:900;height:30px;margin-left:0;position:absolute;right:15px;text-align:center;top:10px;width:30px;z-index:100}.navbar .navbar-nav .dropdown a .caret:before{content:"\f107";top:5px;position:relative;display:inline-block;transition:all 0.3s ease}.navbar .navbar-nav .dropdown a .caret-open .caret:before{transform:rotate(-180deg)}.navbar .navbar-nav .dropdown a>i{margin-right:12px}.navbar .navbar-nav .dropdown.open a>.caret:before{-webkit-transform:rotate(-180deg);-moz-transform:rotate(-180deg);-ms-transform:rotate(-180deg);-o-transform:rotate(-180deg);transform:rotate(-180deg)}.navbar .navbar-nav .dropdown.open .dropdown-menu{display:block !important}.navbar .navbar-nav .dropdown .dropdown-menu{background:transparent;box-shadow:none;position:static;margin-top:0;padding:0;width:100%}.navbar .navbar-nav .dropdown .dropdown-menu.open{display:block !important}.navbar .navbar-nav .dropdown .dropdown-menu li a{margin:0;padding:15px 0 15px 30px}.navbar .navbar-nav .dropdown .dropdown-menu li a:hover,.navbar .navbar-nav .dropdown .dropdown-menu li a:focus{background-color:transparent;color:#e91e63}.navbar .navbar-nav .dropdown .dropdown-menu li li a{padding:15px 0 15px 45px}.navbar .navbar-header .navbar-brand{padding-left:0}.navbar .navbar-brand h1,.navbar .navbar-brand p{padding:10px 0}.navbar .dropdown-submenu:hover .dropdown-menu{display:none !important}.navbar .dropdown-submenu.open>a{background:transparent !important;color:inherit;-webkit-box-shadow:none;box-shadow:none}.navbar.navbar-transparent .open .dropdown-menu>li>a:hover,.navbar.navbar-transparent .open .dropdown-menu>li>a:focus,.navbar.navbar-transparent .open .dropdown-menu>.active>a,.navbar.navbar-transparent .open .dropdown-menu>.active>a:hover,.navbar.navbar-transparent .open .dropdown-menu>.active>a:focus{color:inherit;background-color:transparent}.navbar.navbar-transparent .navbar-nav>.active>a{color:#555}.navbar .open .dropdown-menu>li>a:hover,.navbar .open .dropdown-menu>li>a:focus,.navbar .open .dropdown-menu>.active>a,.navbar .open .dropdown-menu>.active>a:hover,.navbar .open .dropdown-menu>.active>a:focus{color:#e91e63;background-color:transparent}.navbar .dropdown-menu li>a>i{opacity:1}.hestia_right .header-sidebar-wrapper{display:none}body.admin-bar .navbar{margin-top:45px}body.admin-bar .navbar.navbar-default .navbar-collapse{max-height:calc(100% - 115px);margin-top:115px}body.admin-bar .navbar.header-with-topbar{margin-top:0;top:85px}body.admin-bar .navbar.header-with-topbar.navbar-fixed-top .navbar-collapse{max-height:calc(100% - 155px);margin-top:155px}body.admin-bar .navbar.header-with-topbar.navbar-fixed-top.navbar-scroll-point .navbar-collapse{margin-top:115px}body.admin-bar .navbar.navbar-scroll-point.header-with-topbar{top:45px}body.admin-bar .navbar.navbar-scroll-point.navbar-fixed-top .navbar-collapse{max-height:calc(100% - 115px)}.big-title-sidebar-wrapper{width:100%;padding:0}.big-title-sidebar-wrapper .pirate-forms-contact-widget{max-width:370px;margin:0 auto}.single .section{padding:30px 0 0}.single .section.section-blog-info{padding:15px 0 30px}.media .avatar,.media-body .avatar,.media-area .avatar{margin:0;width:35px;height:35px}.subscribe-line .btn{margin-top:15px}ul.children{padding-left:5px;border-left:1px #cfcfcf solid}.blog-post .section-comments .comment-respond .author{display:none}.hestia-about .text-area{margin-bottom:20px}.home .main-raised section:first-of-type{border-radius:0}.footer.footer-big{padding:30px 0 26px}.footer .footer-menu{width:100%}.footer .copyright{display:inline-block;float:none !important;width:100%;padding:10px 0;text-align:center}.main-raised{margin-right:0;margin-left:0;border-radius:0}hr{margin-top:0}.hestia-about{padding-top:30px}.hestia-about h2{margin-top:0}.hestia-about .widget_sow-image .panel-widget-style{margin-top:-60px;padding:0 0 60px 0 !important}.hestia-team .card-image,.team .card-image,.authors-on-blog .card-image{height:100px;margin:0 auto;width:100px}.hestia-team .card-image img,.team .card-image img,.authors-on-blog .card-image img{object-fit:cover}.hestia-team .card .content,.team .card .content,.authors-on-blog .card .content{text-align:center}.hestia-team .card .content .card-description,.team .card .content .card-description,.authors-on-blog .card .content .card-description{display:none}.hestia-team .card .content .footer,.team .card .content .footer,.authors-on-blog .card .content .footer{margin-left:0;margin-top:0}.hestia-team .card .content .footer .btn.btn-just-icon,.team .card .content .footer .btn.btn-just-icon,.authors-on-blog .card .content .footer .btn.btn-just-icon{margin:0 5px;padding:0}.hestia-team .card .content .footer .btn.btn-just-icon i,.team .card .content .footer .btn.btn-just-icon i,.authors-on-blog .card .content .footer .btn.btn-just-icon i{width:auto}.hestia-work .card{cursor:pointer}.pricing{padding:60px 0 40px}.contactus .card-contact{margin-top:90px}.contactus .form_captcha_wrap .pirate-forms-google-recaptcha>div{margin:0 auto}.contactus .contact_submit_wrap{text-align:center}.single.single-post .section-blog-info .entry-social{margin:15px 0 30px}.single.single-post .section-blog-info .card-profile{margin-top:20px}.page .section.section-text{padding:30px 0}.single-post .page-header.header-small,.page .page-header.header-small,.blog .page-header.header-small,.archive .page-header.header-small,.category .page-header.header-small{min-height:0}.single-post .page-header.header-small .container,.page .page-header.header-small .container,.blog .page-header.header-small .container,.archive .page-header.header-small .container,.category .page-header.header-small .container{padding:120px 15px 50px}.single-post .page-header.header-small .container .hestia-title,.page .page-header.header-small .container .hestia-title,.blog .page-header.header-small .container .hestia-title,.archive .page-header.header-small .container .hestia-title,.category .page-header.header-small .container .hestia-title{margin-top:0}.hestia-top-bar{overflow:hidden}.hestia-top-bar .col-md-6{text-align:center;width:100%}.hestia-top-bar .col-md-6.pull-right{display:none}.hestia-top-bar .col-md-12,.hestia-top-bar .col-md-12.pull-right{float:none !important;text-align:center}.hestia-top-bar .widget.widget_shopping_cart{display:none}.home:not(.blog) .main-raised{margin-top:0}.home:not(.blog) .page-header{min-height:0}.header .carousel .item .container{padding-top:170px;padding-bottom:100px}.header .buttons>.btn-right ~ .btn-left{margin-top:40px}.header.header-with-topbar .carousel .item .container{padding-top:210px}.header .carousel .carousel-control{margin-top:35px}.header.header-with-topbar .carousel .carousel-control{margin-top:55px}.obfx-sharing-bottom{left:0}.carousel .buttons .btn-left+.btn-right,.carousel .buttons .btn-left,.carousel .buttons .btn-right{margin:0 15px 15px}}@media (max-width: 767px){.carousel .page-header .row{flex-direction:column;justify-content:center;padding:0;text-align:center}.carousel .page-header .row .margin-right-auto,.carousel .page-header .row .margin-left-auto{margin:inherit}.carousel .page-header .row .big-title-slider-content{text-align:center}.carousel .item .container.container-height-auto{top:0;transform:none}.carousel .carousel-control.left i{left:10px}.carousel .carousel-control.right i{right:10px}}@media (max-width: 600px){body.admin-bar .navbar{margin-top:0}}@media (max-width: 600px){body.admin-bar .navbar.navbar-scroll-point{top:0}body.admin-bar .navbar.navbar-scroll-point.header-with-topbar{top:0}body.admin-bar .navbar.navbar-scroll-point.navbar-transparent{margin-top:0;top:46px}body.admin-bar .navbar.navbar-not-transparent{margin-top:0}body.admin-bar .navbar.navbar-scroll-point.navbar-fixed-top .navbar-collapse,body.admin-bar .navbar.navbar-scroll-point.header-with-topbar.navbar-fixed-top .navbar-collapse{max-height:calc(100% - 70px);margin-top:70px}body.admin-bar .navbar.navbar-scroll-point.navbar-fixed-top.navbar-transparent .navbar-collapse,body.admin-bar .navbar.navbar-scroll-point.header-with-topbar.navbar-fixed-top.navbar-transparent .navbar-collapse{max-height:calc(100% - 70px);margin-top:115px}}@media (max-width: 480px){.single .main-raised{margin:-60px 0 30px}.comment-respond .form-submit input{display:block;float:none !important;margin:0 auto}.hestia-features{padding:40px 0 55px}.alternative-blog-row{display:table;width:100%;margin:0 auto;table-layout:fixed}.alternative-blog-row div:first-child{display:table-footer-group}.alternative-blog-row div:last-child{padding:0;display:block}.contactus .hestia-contact-form-col{padding:0 5px}.contactus .card-contact{margin-top:30px}.contactus .card-contact .content{padding:30px 15px 0}.contactus .pirate_forms_wrap .pirate-forms-footer .form_captcha_wrap{margin-bottom:0;padding:0}.contactus .pirate_forms_wrap .form_captcha_wrap>div>div{transform:scale(0.8);overflow:visible}}.elementor-page .hestia-about>.container{width:100%}.elementor-page .pagebuilder-section{padding:0}.elementor-page .title-in-content,.elementor-page .image-in-page{display:none}.home.elementor-page .main-raised>section.hestia-about{overflow:visible}.elementor-editor-active .navbar{pointer-events:none}.elementor-editor-active #elementor.elementor-edit-mode .elementor-element-overlay{z-index:1000000}.elementor-page.page-template-template-fullwidth .blog-post-wrapper>.container{width:100%}.elementor-page.page-template-template-fullwidth .blog-post-wrapper>.container .col-md-12{padding:0}.elementor-page.page-template-template-fullwidth article.section{padding:0}form.form-group[id^=sib] input[type=text],form.form-group[id^=sib] input[type=email],form.form-group[id^=sib] select{border:none !important}footer .wpml-ls-item-legacy-dropdown a,footer .wpml-ls-item-legacy-dropdown-click a{color:#000000}.wpml-ls-statics-footer{margin:0 auto}.bbp-template-notice.info{max-width:inherit}#bbpress-forums p.bbp-topic-meta img.avatar,#bbpress-forums ul.bbp-reply-revision-log img.avatar,#bbpress-forums ul.bbp-topic-revision-log img.avatar,#bbpress-forums div.bbp-template-notice img.avatar,#bbpress-forums .widget_display_topics img.avatar,#bbpress-forums .widget_display_replies img.avatar{margin-bottom:0}.bbpress.blog-post .section-text p{font-size:15px;margin-bottom:20px}#wp-link-close{box-shadow:none}.elementor-editor-preview .hestia-pagebuilder-frontpage-controls{display:none}.elementor-editor-active .main>section,.fl-builder-edit .main>section{position:relative}.elementor-editor-active .main>section .hestia-pagebuilder-frontpage-controls,.fl-builder-edit .main>section .hestia-pagebuilder-frontpage-controls{position:absolute;top:35px;bottom:20px;left:20px;right:20px;border:2px solid #76cfe8;text-align:center;display:none;z-index:100}.elementor-editor-active .main>section .hestia-pagebuilder-frontpage-controls>a,.fl-builder-edit .main>section .hestia-pagebuilder-frontpage-controls>a{cursor:pointer;position:relative;background:#71d7f7;border-radius:3px 3px 0 0;top:-30px;line-height:30px;min-width:30px;text-align:center;color:#fff;font-weight:800;padding:0 10px;display:inline-block}.elementor-editor-active .main>section .hestia-pagebuilder-frontpage-controls>a:hover,.fl-builder-edit .main>section .hestia-pagebuilder-frontpage-controls>a:hover{color:#f00}.elementor-editor-active .main>section .hestia-pagebuilder-frontpage-controls>a>.dashicons,.fl-builder-edit .main>section .hestia-pagebuilder-frontpage-controls>a>.dashicons{height:30px;width:auto;margin-right:5px;line-height:27px}.elementor-editor-active .main>section:hover .hestia-pagebuilder-frontpage-controls,.fl-builder-edit .main>section:hover .hestia-pagebuilder-frontpage-controls{display:block}#checkout_paypal_message{background-color:#f0f0f0;color:#515151;max-width:100%;padding:20px !important}#checkout_paypal_message:before{content:'';display:none}#checkout_paypal_message p{font-size:14px;line-height:1.5;margin:0}#checkout_paypal_message .checkoutStatus{width:100%}#checkout_paypal_message #paypal_box_button{text-align:center}#checkout_paypal_message #paypal_ec_button,#checkout_paypal_message #paypal_ec_paypal_credit_button{display:inline-block;float:none;margin:0 10px}#checkout_paypal_message .woocommerce_paypal_ec_checkout_message{margin-top:10px}.woocommerce-cart .angelleye_cart_button a.paypal_checkout_button,.woocommerce-cart a.paypal_checkout_button{clear:none}.woocommerce-cart article .woocommerce{display:inline-block;width:100%}@media (max-width: 480px){#checkout_paypal_message #paypal_ec_paypal_credit_button{margin-top:10px}}.hestia-top-bar .widget a.paypal_checkout_button,.nav-cart .widget a.paypal_checkout_button{display:none}.woocommerce-checkout .mc4wp-checkbox,.woocommerce-checkout .mc4wp-checkbox-woocommerce{margin-bottom:0 !important;padding-left:3px}.woocommerce-checkout .mc4wp-checkbox span,.woocommerce-checkout .mc4wp-checkbox-woocommerce span{color:#999999;font-size:16px;font-weight:300;margin-left:7px}.col-ms-1,.col-ms-2,.col-ms-3,.col-ms-4,.col-ms-5,.col-ms-6,.col-ms-7,.col-ms-8,.col-ms-9,.col-ms-10,.col-ms-11,.col-ms-12{position:relative;min-height:1px;padding-left:15px;padding-right:15px}@media (min-width: 481px) and (max-width: 767px){.col-ms-1,.col-ms-2,.col-ms-3,.col-ms-4,.col-ms-5,.col-ms-6,.col-ms-7,.col-ms-8,.col-ms-9,.col-ms-10,.col-ms-11{float:left}.col-ms-1{width:8.33333%}.col-ms-2{width:16.66667%}.col-ms-3{width:25%}.col-ms-4{width:33.33333%}.col-ms-5{width:41.66667%}.col-ms-6{width:50%}.col-ms-7{width:58.33333%}.col-ms-8{width:66.66667%}.col-ms-9{width:75%}.col-ms-10{width:83.33333%}.col-ms-11{width:91.66667%}.col-ms-12{width:100%}.col-ms-push-1{left:8.33333%}.col-ms-push-2{left:16.66667%}.col-ms-push-3{left:25%}.col-ms-push-4{left:33.33333%}.col-ms-push-5{left:41.66667%}.col-ms-push-6{left:50%}.col-ms-push-7{left:58.33333%}.col-ms-push-8{left:66.66667%}.col-ms-push-9{left:75%}.col-ms-push-10{left:83.33333%}.col-ms-push-11{left:91.66667%}.col-ms-pull-1{right:8.33333%}.col-ms-pull-2{right:16.66667%}.col-ms-pull-3{right:25%}.col-ms-pull-4{right:33.33333%}.col-ms-pull-5{right:41.66667%}.col-ms-pull-6{right:50%}.col-ms-pull-7{right:58.33333%}.col-ms-pull-8{right:66.66667%}.col-ms-pull-9{right:75%}.col-ms-pull-10{right:83.33333%}.col-ms-pull-11{right:91.66667%}.col-ms-offset-1{margin-left:8.33333%}.col-ms-offset-2{margin-left:16.66667%}.col-ms-offset-3{margin-left:25%}.col-ms-offset-4{margin-left:33.33333%}.col-ms-offset-5{margin-left:41.66667%}.col-ms-offset-6{margin-left:50%}.col-ms-offset-7{margin-left:58.33333%}.col-ms-offset-8{margin-left:66.66667%}.col-ms-offset-9{margin-left:75%}.col-ms-offset-10{margin-left:83.33333%}.col-ms-offset-11{margin-left:91.66667%}}@media (min-width: 480px) and (max-width: 767px){.form-horizontal .form-group .control-label{text-align:right}}.elementor-text-editor p,.elementor-text-editor h1,.elementor-text-editor h2,.elementor-text-editor h3,.elementor-text-editor h4,.elementor-text-editor h5,.elementor-text-editor h6{font-size:inherit}div.wpforms-container .wpforms-form input:focus,div.wpforms-container .wpforms-form select:focus{border:none}.sbi_photo{border-radius:6px;overflow:hidden;box-shadow:0 10px 15px -8px rgba(0,0,0,0.24),0 8px 10px -5px rgba(0,0,0,0.2)}#mega-menu-wrap-primary{display:table-cell;width:100%;text-align:right;vertical-align:middle}#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link{text-transform:uppercase}.navbar-transparent #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link{color:#fff}.navbar-transparent #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link:hover{color:#fff}.mega-menu-primary .navbar-toggle-wrapper{display:none}.mega-menu-primary .obfx-menu-icon{margin-right:5px;vertical-align:middle}@media (max-width: 768px){.mega-menu-primary .container .navbar-header{width:auto;float:left}#mega-menu-wrap-primary{width:auto;display:inline;top:5px}#mega-menu-wrap-primary #mega-menu-primary{width:100%}.navbar-transparent #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link,.navbar-transparent #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link:hover{color:inherit}}@media (min-width: 769px){.mega-menu-primary .navbar.full-screen-menu .navbar-header{width:auto}.mega-menu-primary .hestia_center #mega-menu-wrap-primary #mega-menu-primary{text-align:center}.mega-menu-primary .hestia_right #mega-menu-wrap-primary #mega-menu-primary{text-align:left}}.fl-builder-bar-actions button,.fl-builder-bar-actions input[type="submit"],.fl-builder-bar-actions input[type="button"],.fl-builder-panel button,.fl-builder-panel input[type="submit"],.fl-builder-panel input[type="button"],.fl-builder--main-menu-panel-views button,.fl-builder--main-menu-panel-views input[type="submit"],.fl-builder--main-menu-panel-views input[type="button"],.fl-lightbox-footer button,.fl-lightbox-footer input[type="submit"],.fl-lightbox-footer input[type="button"]{-webkit-box-shadow:inherit;-moz-box-shadow:inherit;box-shadow:inherit}.fl-builder-bar-actions button:hover,.fl-builder-bar-actions input[type="submit"]:hover,.fl-builder-bar-actions input[type="button"]:hover,.fl-builder-panel button:hover,.fl-builder-panel input[type="submit"]:hover,.fl-builder-panel input[type="button"]:hover,.fl-builder--main-menu-panel-views button:hover,.fl-builder--main-menu-panel-views input[type="submit"]:hover,.fl-builder--main-menu-panel-views input[type="button"]:hover,.fl-lightbox-footer button:hover,.fl-lightbox-footer input[type="submit"]:hover,.fl-lightbox-footer input[type="button"]:hover{-webkit-box-shadow:inherit;-moz-box-shadow:inherit;box-shadow:inherit}.media-modal.wp-core-ui .media-modal-close{background-color:inherit}.media-modal.wp-core-ui select{-webkit-appearance:menulist-button;-moz-appearance:menulist-button;appearance:menulist-button}body.fl-builder-edit .navbar.header-with-topbar.navbar-default:not(.navbar-transparent){margin-top:40px}.everest-forms .evf-field-container .evf-frontend-row input,.everest-forms .evf-field-container .evf-frontend-row select,.everest-forms .evf-field-container .evf-frontend-row textarea,.everest-forms .evf-field-container .evf-frontend-row input:focus,.everest-forms .evf-field-container .evf-frontend-row select:focus,.everest-forms .evf-field-container .evf-frontend-row textarea:focus{border:none;border-radius:0}.everest-forms .everest-forms-part-button,.everest-forms button[type=submit],.everest-forms input[type=submit]{padding:12px 30px;border:none;border-radius:3px;color:#fff}.hestia-mm-description{display:none;opacity:.75}.hestia-mega-menu .hestia-mm-description{display:block}.navbar .hestia-mega-menu>.dropdown-menu{margin:auto;left:0;right:0}@media (min-width: 769px){.navbar .hestia-mega-menu>.dropdown-menu{width:750px;left:50%;transform:translateX(-50%)}.hestia-mega-menu>.dropdown-menu .hestia-mm-col:first-child:nth-last-child(1){width:100%}.hestia-mega-menu>.dropdown-menu .hestia-mm-col:first-child:nth-last-child(2),.hestia-mega-menu>.dropdown-menu .hestia-mm-col:first-child:nth-last-child(2) ~ li{width:50%}.hestia-mega-menu>.dropdown-menu .hestia-mm-col:first-child:nth-last-child(3),.hestia-mega-menu>.dropdown-menu .hestia-mm-col:first-child:nth-last-child(3) ~ li{width:33.3333%}.hestia-mega-menu>.dropdown-menu .hestia-mm-col:first-child:nth-last-child(4),.hestia-mega-menu>.dropdown-menu .hestia-mm-col:first-child:nth-last-child(4) ~ li{width:25%}.hestia-mega-menu>.dropdown-menu .hestia-mm-col:first-child:nth-last-child(5),.hestia-mega-menu>.dropdown-menu .hestia-mm-col:first-child:nth-last-child(5) ~ li{width:20%}.hestia-mega-menu>.dropdown-menu .hestia-mm-col:first-child:nth-last-child(5),.hestia-mega-menu>.dropdown-menu .hestia-mm-col:first-child:nth-last-child(5) ~ li{width:16.66666666666667%}}@media (min-width: 992px){.navbar .hestia-mega-menu>.dropdown-menu{width:970px}}@media (min-width: 1200px){.navbar .hestia-mega-menu>.dropdown-menu{width:1170px}}.navbar .navbar-nav>li.hestia-mega-menu{position:static}.navbar .hestia-mega-menu>.dropdown-menu>li>a{margin:0}.hestia-mega-menu>.dropdown-menu{padding:5px;color:#333 !important;right:auto;width:100%;left:0;display:table;top:inherit}.hestia-mega-menu>.dropdown-menu .divider{height:1px;margin:9px auto;width:75%}.hestia-mega-menu:hover .hestia-mm-col>.dropdown-menu,.hestia-mega-menu.open .hestia-mm-col>.dropdown-menu{visibility:visible}.hestia-mega-menu .hestia-mm-col{text-align:center;vertical-align:top;display:table-cell;position:relative;padding:5px}.hestia-mega-menu .hestia-mm-col>a{display:none}.hestia-mega-menu .hestia-mm-col>.dropdown-menu{float:none;background:none;box-shadow:none;opacity:1;display:inline-block !important;position:static;left:inherit}.navbar .hestia-mm-heading{margin:10px 5px 10px 0}.navbar .hestia-mm-heading>span{text-transform:uppercase;padding:7px 10px 5px 10px;margin:0 5px}.navbar .hestia-mm-heading>.mm-heading-wrapper a:hover{text-decoration:underline}.mm-heading-wrapper a{color:#333;padding:0}.hestia-mm-description{color:#333;padding:7px 10px 5px 10px;margin:0 5px}.hestia_right .dropdown-menu>.hestia-mega-menu>.dropdown-menu{display:block;width:auto;left:100%}.hestia_left .dropdown-menu>.hestia-mega-menu>.dropdown-menu{display:block;width:auto;right:100%;left:auto;top:0}@media (max-width: 768px){.navbar .hestia-mm-col.dropdown-submenu:hover>.dropdown-menu{display:inline-block !important}.navbar .navbar-nav .dropdown .dropdown-menu li li .mm-heading-wrapper a{padding:0}.hestia-mega-menu>.dropdown-menu{display:none}.hestia-mega-menu>.dropdown-menu .divider{width:100%;margin:15px auto}.navbar .navbar-nav .dropdown li.hestia-mm-heading{padding:15px 0}} diff --git a/www/.content.EZtzwPjb/html/f39c299db9c9d9a2eb250fd40d5b2925b147dcd6.00000288.xml b/www/.content.EZtzwPjb/html/f39c299db9c9d9a2eb250fd40d5b2925b147dcd6.00000288.xml new file mode 100644 index 0000000..582e24f --- /dev/null +++ b/www/.content.EZtzwPjb/html/f39c299db9c9d9a2eb250fd40d5b2925b147dcd6.00000288.xml @@ -0,0 +1,78 @@ + + + Aventure Serveur – HugoPoi + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Wed, 28 Oct 2015 19:01:08 +0000 + fr-FR + hourly + 1 + https://wordpress.org/?v=4.4.2 + + Redimensionner une partition NTFS + http://blog.hugopoi.net/2012/12/23/redimensionner-une-partition-ntfs/ + http://blog.hugopoi.net/2012/12/23/redimensionner-une-partition-ntfs/#respond + Sun, 23 Dec 2012 17:56:48 +0000 + + + + + + + + + + + http://blog.hugopoi.net/?p=685 + Lire la suite »

                                ]]>
                                + http://blog.hugopoi.net/2012/12/23/redimensionner-une-partition-ntfs/feed/ + 0 +
                                + + Vos données sauvegardées + http://blog.hugopoi.net/2011/12/09/vos-donnees-sauvegardees/ + http://blog.hugopoi.net/2011/12/09/vos-donnees-sauvegardees/#respond + Fri, 09 Dec 2011 14:40:50 +0000 + + + + + + + + + + + + http://blog.hugopoi.net/?p=528 + Lire la suite »

                                ]]>
                                + http://blog.hugopoi.net/2011/12/09/vos-donnees-sauvegardees/feed/ + 0 +
                                + + Préparation Migration + http://blog.hugopoi.net/2011/02/16/preparation-migration/ + http://blog.hugopoi.net/2011/02/16/preparation-migration/#respond + Wed, 16 Feb 2011 17:38:39 +0000 + + + + + + + + http://blog.hugopoi.net/?p=321 + Lire la suite »

                                ]]>
                                + http://blog.hugopoi.net/2011/02/16/preparation-migration/feed/ + 0 +
                                +
                                +
                                diff --git a/www/.content.EZtzwPjb/html/f3f48655208ad9a3858376f299b2c3b1d713fd4f.00001210.js b/www/.content.EZtzwPjb/html/f3f48655208ad9a3858376f299b2c3b1d713fd4f.00001210.js new file mode 100644 index 0000000..c2cd155 --- /dev/null +++ b/www/.content.EZtzwPjb/html/f3f48655208ad9a3858376f299b2c3b1d713fd4f.00001210.js @@ -0,0 +1,2 @@ +/*! This file is auto-generated */ +window.addComment=function(s){var u,f,v,y=s.document,p={commentReplyClass:"comment-reply-link",cancelReplyId:"cancel-comment-reply-link",commentFormId:"commentform",temporaryFormId:"wp-temp-form-div",parentIdFieldId:"comment_parent",postIdFieldId:"comment_post_ID"},e=s.MutationObserver||s.WebKitMutationObserver||s.MozMutationObserver,i="querySelector"in y&&"addEventListener"in s,n=!!y.documentElement.dataset;function t(){r(),function(){if(!e)return;new e(d).observe(y.body,{childList:!0,subtree:!0})}()}function r(e){if(i&&(u=I(p.cancelReplyId),f=I(p.commentFormId),u)){u.addEventListener("touchstart",a),u.addEventListener("click",a);var t=function(e){if((e.metaKey||e.ctrlKey)&&13===e.keyCode)return f.removeEventListener("keydown",t),e.preventDefault(),f.submit.click(),!1};f&&f.addEventListener("keydown",t);for(var n,r=function(e){var t,n=p.commentReplyClass;e&&e.childNodes||(e=y);t=y.getElementsByClassName?e.getElementsByClassName(n):e.querySelectorAll("."+n);return t}(e),d=0,o=r.length;d + + + + + + Noël 2.0 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                                +
                                +
                                +
                                + +
                                +
                                +
                                +
                                +
                                +

                                Liste de Noël

                                Bonjour cher Père Noël des Internets 2.0,

                                +

                                Alors je me permets de te déposer ma liste de noël sur mon blog car je suis sûr que tu as demandé à Google et Facebook de t’aider pour satisfaire tout le monde sur la terre(N’oublie pas les petits africains qui crèvent la dalle). Comme je suis égoïste un minimum humain et que je ne saurais dire ce que représente noël pour moi à part manger, boire, dormir, du sexe, avoir des cadeaux et en offrir, cela fait de bonnes raisons pour faire une liste de noël. (suite…)

                                +
                                Par HugoPoi, il y a
                                +
                                + +
                                +
                                +
                                +
                                + +
                                +
                                + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/f46179f80575500746b7431bca2fa2f384a67890.00000162.html b/www/.content.EZtzwPjb/html/f46179f80575500746b7431bca2fa2f384a67890.00000162.html new file mode 100644 index 0000000..64f683a --- /dev/null +++ b/www/.content.EZtzwPjb/html/f46179f80575500746b7431bca2fa2f384a67890.00000162.html @@ -0,0 +1,869 @@ + + + + + + + + Réparer un Vidéoprojecteur Sony VPL-CX5 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                +
                                +
                                +
                                + +
                                +
                                +
                                +
                                +
                                +
                                +

                                Bon les cocos, j’ai récupéré un vidéo projecteur Sony VPL-CX5 en état décédé. Comme je sais que c’est encore et toujours ce problème d’obsolescence programmée j’ai donc décidé de le réparer.

                                +

                                Sony VPL-CX5

                                +

                                Première étape, identifier la panne

                                +

                                Le vidéoprojecteur ne donnait aucun signe de vie, aucune led ne s’allume quand je l’ai branché rien du tout même pas un petit crépitement d’alimentation. Je pense a un problème d’alimentation mais rien est sur tant que je ne l’ai pas démonté. Mais avant le dévissage je vais quand même faire une recherche Google car le Internet il est grand et il est beau. J’ai trouvé un truc qui m’a mis la puce à l’oreille sans même avoir enlever la première visse, sur un forum quelconque que je n’arrive plus à retrouver, un mec dit qu’il a changé un composant (un certain MCZ3001) sur une des cartes d’alimentation, et le vidéoprojecteur remarchait.

                                +

                                Démontage

                                +

                                Sony VPL-CX5

                                +

                                J’ai donc commencé par enlever les quelques visses, puis démonter toutes les cartes une par une, une vrai galère. Pour m’aider j’ai trouvé le « manuel de service » (or Service Manual) que je mets a disposition ici même : sony_vpl-cx5_cs5_servicemanual. J’ai mis dans la suite les références des connecteurs pour les mesures.

                                +

                                1) Premier test vérifier le fusible sur la première carte d’alimentation GA, faire le test avec la carte débranché, j’ai utilisé un voltmètre sur la position test de résistance : test OK.

                                +

                                2) Deuxième test, vérifier la tension continu fournie par cette carte GA sur le connecteur de sortie CN2001 environ 380V DC, DONC FAIRE CECI AVEC PRÉCAUTION (je l’ai fait avec un voltmètre de merde à 5€) : test OK j’ai 380 Volt en sortie. Sur cette carte il y un gros condensateur de 400V donc faire TRÈS ATTENTION MÊME QUAND LA CARTE EST DÉBRANCHÉ DU SECTEUR.(j’ai vérifier le condensateur se décharge assez vite j’ai mesuré 4V 10 secondes après avoir débranché)

                                +

                                3) Maintenant test de la carte GB qui transforme le 400V continu en basse tension continu ici du 24V d’après le SM. Donc j’ai le point de mesure parfait, c’est le connecteur CN3201.

                                +
                                N'oubliez d'ouvrir le manuel de service ça donne des infos précieuses pour le dépannage

                                N’oubliez d’ouvrir le manuel de service ça donne des infos précieuses pour le dépannage

                                +

                                Plusieurs points pour tester le plus pratique étant le petit connecteur blanc de 3 broches qui fournit la masse et VCC 24V. Après mesure sur ce connecteur j’ai une tension stable mais pas du 24VDC, les composants n’ont pas l’air endommagés donc je vérifie à l’entrée du fameux MCZ3001 il est bien alimenté correctement mais ne sort pas 24VDC. Pas de condensateurs chimiques endommagés.

                                +

                                Donc la panne est certainement dû à ce composant, achetons-le !

                                +

                                Trouver le composant de rechange

                                +

                                Au début j’ai cherché chez des e-commerçant d’électronique comme Farnell,Conrad, etc pas trouvé en france, puis j’ai fait les marchants Anglais et je l’ai trouvé mais à 30€ frais de port inclus. Et comme un con j’avais oublié de faire Ebay : encore un coup des chinois 4.27€ avec le support DIP et les frais de port inclus OMFG j’adore la mondialisation. J’en ai pris 2 pour mois de 10€ et comme les chinois ils sont trop fort j’ai tout reçu en moins de 2 semaines.

                                +

                                Capture-ebay-mcz3001

                                +

                                Dés-soudage

                                +

                                Bon j’avais des fer à souder de merde et du coup c’est le #FAIL, j’ai pas réussi à dés-souder proprement, j’ai donc été obligé d’investir dans une merde à 10€ :

                                +

                                Fer à souderEnsuite j’ai finalement réussi à dés-souder :

                                +

                                Carte GB MCZ3001 dés-soudéEt il me semble que sur cette photo j’avais nettoyer avec du dissolvant.

                                +

                                Remontage

                                +

                                Alors je suis désolé mais je n’ai pas de photos pour le MCZ soudé car j’avais déjà remonté le projecteur. Les étapes :

                                +
                                  +
                                1. Souder un support fourni (au cas ou ce fameux MCZ rendrais encore l’âme)
                                2. +
                                3. Placer un MCZ neuf dans le support
                                4. +
                                5. Relier la carte GA et GB ensemble
                                6. +
                                7. Brancher sur le 220V
                                8. +
                                9. Tester le 24VDC sur le connecteur CN3201
                                10. +
                                11. #WIN
                                12. +
                                13. Remonter le projecteur
                                14. +
                                15. Tester en vrai
                                16. +
                                17. #WIN2
                                18. +
                                +

                                Conclusion

                                +

                                Oui c’est un WIN d’une valeur 4€ mais je tiens à préciser que ça représente environ 10 heures de travail continu. Entre les recherches Google et la lecture de la documentation, les heures passés au démontage, les quelques fois ou je me suis arraché les cheveux et risquer ma vie avec un voltmètre à 5€.

                                +

                                Mon banc de test

                                +

                                Banc de test chez HugoLa table du salon 2Les Tofs

                                + + +
                                +
                                +
                                + +
                                +
                                + + + + + + + + + +
                                +
                                +
                                +
                                +
                                +
                                +
                                +

                                + 16 commentaires

                                +
                                + +
                                +
                                +
                                +
                                +

                                + Georg + · 30 janvier 2014 à 12 h 22 min +

                                +

                                Hello,
                                +dear Hugo, at first: HAVE MANY THANKS FOR YOUR VERY INTERESTING BLOG!!!

                                +

                                I also have a cx5 and try to repair it.

                                +

                                It has the same problems like your projector…

                                +

                                I’ve measured the CN2001 but in my power supply there are only 320 V (stable).
                                +Are you sure, that there have to be 380V?
                                +In the service manual, I didn’t find a value (either 320V nor 380V)

                                +

                                Best Regards
                                +Your Georg

                                + +
                                +
                                +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  +

                                  + HugoPoi + · 21 février 2014 à 17 h 36 min +

                                  +

                                  Sorry to be so long to answer,
                                  +320V seems to be OK, I have extrapolated the value from the schema ~ 220Vxrootsquare(2) but this depends of the quality of your current source. I think 320 will not impact the power for the next card.

                                  +

                                  Good repair !
                                  +Thanks for the comment :-D

                                  + +
                                  +
                                  + +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + henri moine + · 2 février 2014 à 20 h 43 min +

                                +

                                Bonsoir,
                                +Merci beaucoup pour l’explication détaillée et les photos.
                                +Je vais pas tarder de m’attaquer à mon SONY VPL CS7 bizarrement inerte depuis quelques semaines…
                                +Bonne continuation !

                                + +
                                +
                                +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  +

                                  + florian + · 21 avril 2014 à 9 h 09 min +

                                  +

                                  Bonjour,
                                  +Je possède également un sony VPL CS7, et depuis plusieurs mois il a quelques signes de faiblesses.

                                  +

                                  1) lorsque je le débranche du secteur et que je le rebranche, il faut que j’attende 24 à 48 h pour que le voyant on/off se mette à éclairer, donc je ne peux pas l’allumer pendant ce temps.

                                  +

                                  2) aujourd’hui j’ai beau le laisser brancher, aucun signe de vie plus rien ne s’allume.

                                  +

                                  As tu attaqué ton VPL, As tu trouvé quelque chose ?

                                  +

                                  Merci

                                  + +
                                  +
                                  +
                                    +
                                    + +
                                    +
                                    +
                                    +
                                    +

                                    + HugoPoi + · 9 mai 2014 à 17 h 50 min +

                                    +

                                    Le VPL que j’avais était en panne je l’ai réparé jusqu’à il y a 2 mois ou il retombé en panne. Ton problème d’allumage ressemble à un problème de condensateur cramé. tu peux regarder si tu en vois des gonflés en démontant.

                                    + +
                                    +
                                    + +
                                  + +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Ghent + · 21 septembre 2014 à 12 h 48 min +

                                +

                                Bonjour,

                                +

                                Déjà, super tuto.
                                +Je rencontre un problème à priori similaire avec mon CX5: le bouton de mise sous tension n’est plus éclairé et il ne se passe rien quand j’appuie dessus.

                                +

                                Je me suis donc lancé, et j’ai démonté jusqu’à atteindre les cartes d’alimentation.
                                +J’ai mesuré donc au niveau du CN3201, et là j’ai 22V continu stable.
                                +D’où ma première question, ai-je le même problème que toi avec le MCZ3001, ou dois-je chercher autre part ?
                                +Faut-il 24V exactement ?

                                +

                                Ensuite, j’ai essayé de me rapprocher du composant lui-même, mais je ne sais pas où mesurer. Le diagramme indique le VC1 sur la patte 8, mais je ne sais pas où prendre la masse.
                                +Saurais-tu m’aider ?

                                +

                                J’ai enfin voulu tester la tension en sortie de la carte GB, le point 17V, mais même question, si je teste la patte 1 du connecteur, où prendre la masse pour vérifier qu’il y a bien 17V ?
                                +Cette partie est-elle alimentée malgré que l’appareil soit éteint ?

                                +

                                Dans tous les cas, j’ai commandé le MCZ3001D, mais je voudrais m’assurer qu’il est bien le responsable avant de le changer.

                                +

                                Merci d’avance pour tes réponses, et encore une fois, merci de partager ton travail !

                                + +
                                +
                                +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  +

                                  + HugoPoi + · 26 septembre 2014 à 15 h 01 min +

                                  +

                                  Je penses que si tu as 22V sur CN3201 le problème est sûrement ailleurs. Même si cela ne coûte rien de changer le MCZ3001D si tu as de quoi dessouder proprement. Regarde sur le service manuel pour tester les autres tensions qui sortent de la carte après les partie d’isolement, de mémoire il y a 3,3 V et du 5V.

                                  + +
                                  +
                                  +
                                    +
                                    + +
                                    +
                                    +
                                    +
                                    +

                                    + Neckron + · 12 décembre 2014 à 21 h 32 min +

                                    +

                                    Bonsoir, je déterre un peu ce vpl-cx5 que je possède et que je vends !!!
                                    +Je voie qu’il y a encore des personnes qui s’y intéresse.
                                    +Je précise juste que le mien est en excellent état de marche, il y a la télécommande et qu’il n’a servi QUE 220 Heures. Lampe d’origine. Je cherchais pendant un temps un moyen de l’upgrader pour l’image, mais finalement…. je change…

                                    + +
                                    +
                                    + +
                                  + +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Jean-Marie + · 31 décembre 2014 à 14 h 43 min +

                                +

                                Bonjour Hugo.
                                +Merci pour ton partage d’expérience.
                                +Moi aussi, j’ai un VPL-CS7 inerte comme tu dis. Pas la moindre led s’allume ou clignote quand je le branche.
                                +Je l’ai complètement démonté. Je soupçonne un composant sur le bloc d’alim.
                                +As-tu réparé le tien ?
                                +Merci.
                                +JM.

                                + +
                                +
                                +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  +

                                  + HugoPoi + · 31 janvier 2015 à 15 h 13 min +

                                  +

                                  Moi j’ai bien réparé mon CX5 mais celui-ci est retombé en panne 6 mois plus tard. Cette fois-ci avec plus de composants endommagés :-(
                                  +Bon courage pour les réparations.

                                  + +
                                  +
                                  + +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Sorce + · 14 mars 2015 à 16 h 05 min +

                                +

                                Bonjour ,j’ai un vpl cs6 ,qui ne s’allume pas rien du tous j’ai suivi tes étape et sur le connecteur con 2001 et la 325v bizarre bon je relie la carte gb pour tester au borne du con 3201 et la 15v et sa retombe et sa remonte a 15v peut tu m aider cdt richard (pense tu que je doi changer le mcz)

                                + +
                                +
                                +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  +

                                  + HugoPoi + · 29 avril 2015 à 16 h 18 min +

                                  +

                                  Vérifiez les autres tensions en sortie de la carte GB, de mémoire il doit y avoir 3,3 V du 5 V et du 15V. Si tout est OK, la carte-mère principale est peut-être endommagé et pas moyen de réparer sans changement.

                                  + +
                                  +
                                  + +
                                  + +
                                  +
                                  +
                                  +
                                  +

                                  + Gilles + · 16 juin 2018 à 13 h 44 min +

                                  +

                                  Même chose que vous ?
                                  +Avez-vous trouvé une solution ?
                                  +Est-ce que c’est normal cette tension non stable ?

                                  + +
                                  +
                                  + +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Daoud Yacoub + · 20 octobre 2015 à 9 h 54 min +

                                +

                                Je remercie beaucoup l’equipe

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Daoud Yacoub + · 20 octobre 2015 à 10 h 02 min +

                                +

                                Aidez moi à depanner mon vidéo projecteur le tout ne s’allume pas ;jai démonté et nettoyer toutes les plaques alimentation et logique me rien ne se passe mais en toute sincérité si je peux avoir le document technique de réparation m’est indispensable

                                + +
                                +
                                +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  +

                                  + HugoPoi + · 24 octobre 2015 à 13 h 39 min +

                                  +

                                  Les commentaires n’ont pas pour vocation d’être un forum :-)

                                  + +
                                  +
                                  + +
                                + +
                                +
                                +
                                +

                                Répondre à Georg Annuler la réponse

                                Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                                +
                                +
                                +

                                + +

                                +
                                +
                                +
                                +
                                +
                                +
                                + +
                                +
                                +
                                +
                                +
                                +
                                + + +
                                + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/f47ae8844076b67341ef43d06e4f05beb557ac83.00000218.xml b/www/.content.EZtzwPjb/html/f47ae8844076b67341ef43d06e4f05beb557ac83.00000218.xml new file mode 100644 index 0000000..678cb58 --- /dev/null +++ b/www/.content.EZtzwPjb/html/f47ae8844076b67341ef43d06e4f05beb557ac83.00000218.xml @@ -0,0 +1,17 @@ + + + Commentaires sur : Reflow Dell Inspiron 1546 + + http://blog.hugopoi.net/2016/08/22/reflow-dell-1546/ + Internet, Hardware et Bidouille + Fri, 20 Jan 2017 19:41:43 +0000 + hourly + 1 + https://wordpress.org/?v=4.7.2 + + diff --git a/www/.content.EZtzwPjb/html/f500abe251a1dc5185f29d2e2d3de32c265bfaa7.00000578.css b/www/.content.EZtzwPjb/html/f500abe251a1dc5185f29d2e2d3de32c265bfaa7.00000578.css new file mode 100644 index 0000000..6d7f2f3 --- /dev/null +++ b/www/.content.EZtzwPjb/html/f500abe251a1dc5185f29d2e2d3de32c265bfaa7.00000578.css @@ -0,0 +1,110 @@ +div.wpcf7 { + margin: 0; + padding: 0; +} + +div.wpcf7 .screen-reader-response { + position: absolute; + overflow: hidden; + clip: rect(1px, 1px, 1px, 1px); + height: 1px; + width: 1px; + margin: 0; + padding: 0; + border: 0; +} + +div.wpcf7-response-output { + margin: 2em 0.5em 1em; + padding: 0.2em 1em; + border: 2px solid #ff0000; +} + +div.wpcf7-mail-sent-ok { + border: 2px solid #398f14; +} + +div.wpcf7-mail-sent-ng, +div.wpcf7-aborted { + border: 2px solid #ff0000; +} + +div.wpcf7-spam-blocked { + border: 2px solid #ffa500; +} + +div.wpcf7-validation-errors, +div.wpcf7-acceptance-missing { + border: 2px solid #f7e700; +} + +.wpcf7-form-control-wrap { + position: relative; +} + +span.wpcf7-not-valid-tip { + color: #f00; + font-size: 1em; + font-weight: normal; + display: block; +} + +.use-floating-validation-tip span.wpcf7-not-valid-tip { + position: absolute; + top: 20%; + left: 20%; + z-index: 100; + border: 1px solid #ff0000; + background: #fff; + padding: .2em .8em; +} + +span.wpcf7-list-item { + display: inline-block; + margin: 0 0 0 1em; +} + +span.wpcf7-list-item-label::before, +span.wpcf7-list-item-label::after { + content: " "; +} + +.wpcf7-display-none { + display: none; +} + +div.wpcf7 .ajax-loader { + visibility: hidden; + display: inline-block; + background-image: url('../../images/ajax-loader.gif'); + width: 16px; + height: 16px; + border: none; + padding: 0; + margin: 0 0 0 4px; + vertical-align: middle; +} + +div.wpcf7 .ajax-loader.is-active { + visibility: visible; +} + +div.wpcf7 div.ajax-error { + display: none; +} + +div.wpcf7 .placeheld { + color: #888; +} + +div.wpcf7 .wpcf7-recaptcha iframe { + margin-bottom: 0; +} + +div.wpcf7 input[type="file"] { + cursor: pointer; +} + +div.wpcf7 input[type="file"]:disabled { + cursor: default; +} diff --git a/www/.content.EZtzwPjb/html/f56c296442b7b405291770a4d9786115777dd740.00000161.html b/www/.content.EZtzwPjb/html/f56c296442b7b405291770a4d9786115777dd740.00000161.html new file mode 100644 index 0000000..0cc3ef4 --- /dev/null +++ b/www/.content.EZtzwPjb/html/f56c296442b7b405291770a4d9786115777dd740.00000161.html @@ -0,0 +1,869 @@ + + + + + + + + Réparer un Vidéoprojecteur Sony VPL-CX5 – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                +
                                +
                                +
                                + +
                                +
                                +
                                +
                                +
                                +
                                +

                                Bon les cocos, j’ai récupéré un vidéo projecteur Sony VPL-CX5 en état décédé. Comme je sais que c’est encore et toujours ce problème d’obsolescence programmée j’ai donc décidé de le réparer.

                                +

                                Sony VPL-CX5

                                +

                                Première étape, identifier la panne

                                +

                                Le vidéoprojecteur ne donnait aucun signe de vie, aucune led ne s’allume quand je l’ai branché rien du tout même pas un petit crépitement d’alimentation. Je pense a un problème d’alimentation mais rien est sur tant que je ne l’ai pas démonté. Mais avant le dévissage je vais quand même faire une recherche Google car le Internet il est grand et il est beau. J’ai trouvé un truc qui m’a mis la puce à l’oreille sans même avoir enlever la première visse, sur un forum quelconque que je n’arrive plus à retrouver, un mec dit qu’il a changé un composant (un certain MCZ3001) sur une des cartes d’alimentation, et le vidéoprojecteur remarchait.

                                +

                                Démontage

                                +

                                Sony VPL-CX5

                                +

                                J’ai donc commencé par enlever les quelques visses, puis démonter toutes les cartes une par une, une vrai galère. Pour m’aider j’ai trouvé le « manuel de service » (or Service Manual) que je mets a disposition ici même : sony_vpl-cx5_cs5_servicemanual. J’ai mis dans la suite les références des connecteurs pour les mesures.

                                +

                                1) Premier test vérifier le fusible sur la première carte d’alimentation GA, faire le test avec la carte débranché, j’ai utilisé un voltmètre sur la position test de résistance : test OK.

                                +

                                2) Deuxième test, vérifier la tension continu fournie par cette carte GA sur le connecteur de sortie CN2001 environ 380V DC, DONC FAIRE CECI AVEC PRÉCAUTION (je l’ai fait avec un voltmètre de merde à 5€) : test OK j’ai 380 Volt en sortie. Sur cette carte il y un gros condensateur de 400V donc faire TRÈS ATTENTION MÊME QUAND LA CARTE EST DÉBRANCHÉ DU SECTEUR.(j’ai vérifier le condensateur se décharge assez vite j’ai mesuré 4V 10 secondes après avoir débranché)

                                +

                                3) Maintenant test de la carte GB qui transforme le 400V continu en basse tension continu ici du 24V d’après le SM. Donc j’ai le point de mesure parfait, c’est le connecteur CN3201.

                                +
                                N'oubliez d'ouvrir le manuel de service ça donne des infos précieuses pour le dépannage

                                N’oubliez d’ouvrir le manuel de service ça donne des infos précieuses pour le dépannage

                                +

                                Plusieurs points pour tester le plus pratique étant le petit connecteur blanc de 3 broches qui fournit la masse et VCC 24V. Après mesure sur ce connecteur j’ai une tension stable mais pas du 24VDC, les composants n’ont pas l’air endommagés donc je vérifie à l’entrée du fameux MCZ3001 il est bien alimenté correctement mais ne sort pas 24VDC. Pas de condensateurs chimiques endommagés.

                                +

                                Donc la panne est certainement dû à ce composant, achetons-le !

                                +

                                Trouver le composant de rechange

                                +

                                Au début j’ai cherché chez des e-commerçant d’électronique comme Farnell,Conrad, etc pas trouvé en france, puis j’ai fait les marchants Anglais et je l’ai trouvé mais à 30€ frais de port inclus. Et comme un con j’avais oublié de faire Ebay : encore un coup des chinois 4.27€ avec le support DIP et les frais de port inclus OMFG j’adore la mondialisation. J’en ai pris 2 pour mois de 10€ et comme les chinois ils sont trop fort j’ai tout reçu en moins de 2 semaines.

                                +

                                Capture-ebay-mcz3001

                                +

                                Dés-soudage

                                +

                                Bon j’avais des fer à souder de merde et du coup c’est le #FAIL, j’ai pas réussi à dés-souder proprement, j’ai donc été obligé d’investir dans une merde à 10€ :

                                +

                                Fer à souderEnsuite j’ai finalement réussi à dés-souder :

                                +

                                Carte GB MCZ3001 dés-soudéEt il me semble que sur cette photo j’avais nettoyer avec du dissolvant.

                                +

                                Remontage

                                +

                                Alors je suis désolé mais je n’ai pas de photos pour le MCZ soudé car j’avais déjà remonté le projecteur. Les étapes :

                                +
                                  +
                                1. Souder un support fourni (au cas ou ce fameux MCZ rendrais encore l’âme)
                                2. +
                                3. Placer un MCZ neuf dans le support
                                4. +
                                5. Relier la carte GA et GB ensemble
                                6. +
                                7. Brancher sur le 220V
                                8. +
                                9. Tester le 24VDC sur le connecteur CN3201
                                10. +
                                11. #WIN
                                12. +
                                13. Remonter le projecteur
                                14. +
                                15. Tester en vrai
                                16. +
                                17. #WIN2
                                18. +
                                +

                                Conclusion

                                +

                                Oui c’est un WIN d’une valeur 4€ mais je tiens à préciser que ça représente environ 10 heures de travail continu. Entre les recherches Google et la lecture de la documentation, les heures passés au démontage, les quelques fois ou je me suis arraché les cheveux et risquer ma vie avec un voltmètre à 5€.

                                +

                                Mon banc de test

                                +

                                Banc de test chez HugoLa table du salon 2Les Tofs

                                + + +
                                +
                                +
                                + +
                                +
                                + + + + + + + + + +
                                +
                                +
                                +
                                +
                                +
                                +
                                +

                                + 16 commentaires

                                +
                                + +
                                +
                                +
                                +
                                +

                                + Georg + · 30 janvier 2014 à 12 h 22 min +

                                +

                                Hello,
                                +dear Hugo, at first: HAVE MANY THANKS FOR YOUR VERY INTERESTING BLOG!!!

                                +

                                I also have a cx5 and try to repair it.

                                +

                                It has the same problems like your projector…

                                +

                                I’ve measured the CN2001 but in my power supply there are only 320 V (stable).
                                +Are you sure, that there have to be 380V?
                                +In the service manual, I didn’t find a value (either 320V nor 380V)

                                +

                                Best Regards
                                +Your Georg

                                + +
                                +
                                +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  +

                                  + HugoPoi + · 21 février 2014 à 17 h 36 min +

                                  +

                                  Sorry to be so long to answer,
                                  +320V seems to be OK, I have extrapolated the value from the schema ~ 220Vxrootsquare(2) but this depends of the quality of your current source. I think 320 will not impact the power for the next card.

                                  +

                                  Good repair !
                                  +Thanks for the comment :-D

                                  + +
                                  +
                                  + +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + henri moine + · 2 février 2014 à 20 h 43 min +

                                +

                                Bonsoir,
                                +Merci beaucoup pour l’explication détaillée et les photos.
                                +Je vais pas tarder de m’attaquer à mon SONY VPL CS7 bizarrement inerte depuis quelques semaines…
                                +Bonne continuation !

                                + +
                                +
                                +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  +

                                  + florian + · 21 avril 2014 à 9 h 09 min +

                                  +

                                  Bonjour,
                                  +Je possède également un sony VPL CS7, et depuis plusieurs mois il a quelques signes de faiblesses.

                                  +

                                  1) lorsque je le débranche du secteur et que je le rebranche, il faut que j’attende 24 à 48 h pour que le voyant on/off se mette à éclairer, donc je ne peux pas l’allumer pendant ce temps.

                                  +

                                  2) aujourd’hui j’ai beau le laisser brancher, aucun signe de vie plus rien ne s’allume.

                                  +

                                  As tu attaqué ton VPL, As tu trouvé quelque chose ?

                                  +

                                  Merci

                                  + +
                                  +
                                  +
                                    +
                                    + +
                                    +
                                    +
                                    +
                                    +

                                    + HugoPoi + · 9 mai 2014 à 17 h 50 min +

                                    +

                                    Le VPL que j’avais était en panne je l’ai réparé jusqu’à il y a 2 mois ou il retombé en panne. Ton problème d’allumage ressemble à un problème de condensateur cramé. tu peux regarder si tu en vois des gonflés en démontant.

                                    + +
                                    +
                                    + +
                                  + +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Ghent + · 21 septembre 2014 à 12 h 48 min +

                                +

                                Bonjour,

                                +

                                Déjà, super tuto.
                                +Je rencontre un problème à priori similaire avec mon CX5: le bouton de mise sous tension n’est plus éclairé et il ne se passe rien quand j’appuie dessus.

                                +

                                Je me suis donc lancé, et j’ai démonté jusqu’à atteindre les cartes d’alimentation.
                                +J’ai mesuré donc au niveau du CN3201, et là j’ai 22V continu stable.
                                +D’où ma première question, ai-je le même problème que toi avec le MCZ3001, ou dois-je chercher autre part ?
                                +Faut-il 24V exactement ?

                                +

                                Ensuite, j’ai essayé de me rapprocher du composant lui-même, mais je ne sais pas où mesurer. Le diagramme indique le VC1 sur la patte 8, mais je ne sais pas où prendre la masse.
                                +Saurais-tu m’aider ?

                                +

                                J’ai enfin voulu tester la tension en sortie de la carte GB, le point 17V, mais même question, si je teste la patte 1 du connecteur, où prendre la masse pour vérifier qu’il y a bien 17V ?
                                +Cette partie est-elle alimentée malgré que l’appareil soit éteint ?

                                +

                                Dans tous les cas, j’ai commandé le MCZ3001D, mais je voudrais m’assurer qu’il est bien le responsable avant de le changer.

                                +

                                Merci d’avance pour tes réponses, et encore une fois, merci de partager ton travail !

                                + +
                                +
                                +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  +

                                  + HugoPoi + · 26 septembre 2014 à 15 h 01 min +

                                  +

                                  Je penses que si tu as 22V sur CN3201 le problème est sûrement ailleurs. Même si cela ne coûte rien de changer le MCZ3001D si tu as de quoi dessouder proprement. Regarde sur le service manuel pour tester les autres tensions qui sortent de la carte après les partie d’isolement, de mémoire il y a 3,3 V et du 5V.

                                  + +
                                  +
                                  +
                                    +
                                    + +
                                    +
                                    +
                                    +
                                    +

                                    + Neckron + · 12 décembre 2014 à 21 h 32 min +

                                    +

                                    Bonsoir, je déterre un peu ce vpl-cx5 que je possède et que je vends !!!
                                    +Je voie qu’il y a encore des personnes qui s’y intéresse.
                                    +Je précise juste que le mien est en excellent état de marche, il y a la télécommande et qu’il n’a servi QUE 220 Heures. Lampe d’origine. Je cherchais pendant un temps un moyen de l’upgrader pour l’image, mais finalement…. je change…

                                    + +
                                    +
                                    + +
                                  + +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Jean-Marie + · 31 décembre 2014 à 14 h 43 min +

                                +

                                Bonjour Hugo.
                                +Merci pour ton partage d’expérience.
                                +Moi aussi, j’ai un VPL-CS7 inerte comme tu dis. Pas la moindre led s’allume ou clignote quand je le branche.
                                +Je l’ai complètement démonté. Je soupçonne un composant sur le bloc d’alim.
                                +As-tu réparé le tien ?
                                +Merci.
                                +JM.

                                + +
                                +
                                +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  +

                                  + HugoPoi + · 31 janvier 2015 à 15 h 13 min +

                                  +

                                  Moi j’ai bien réparé mon CX5 mais celui-ci est retombé en panne 6 mois plus tard. Cette fois-ci avec plus de composants endommagés :-(
                                  +Bon courage pour les réparations.

                                  + +
                                  +
                                  + +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Sorce + · 14 mars 2015 à 16 h 05 min +

                                +

                                Bonjour ,j’ai un vpl cs6 ,qui ne s’allume pas rien du tous j’ai suivi tes étape et sur le connecteur con 2001 et la 325v bizarre bon je relie la carte gb pour tester au borne du con 3201 et la 15v et sa retombe et sa remonte a 15v peut tu m aider cdt richard (pense tu que je doi changer le mcz)

                                + +
                                +
                                +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  +

                                  + HugoPoi + · 29 avril 2015 à 16 h 18 min +

                                  +

                                  Vérifiez les autres tensions en sortie de la carte GB, de mémoire il doit y avoir 3,3 V du 5 V et du 15V. Si tout est OK, la carte-mère principale est peut-être endommagé et pas moyen de réparer sans changement.

                                  + +
                                  +
                                  + +
                                  + +
                                  +
                                  +
                                  +
                                  +

                                  + Gilles + · 16 juin 2018 à 13 h 44 min +

                                  +

                                  Même chose que vous ?
                                  +Avez-vous trouvé une solution ?
                                  +Est-ce que c’est normal cette tension non stable ?

                                  + +
                                  +
                                  + +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Daoud Yacoub + · 20 octobre 2015 à 9 h 54 min +

                                +

                                Je remercie beaucoup l’equipe

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Daoud Yacoub + · 20 octobre 2015 à 10 h 02 min +

                                +

                                Aidez moi à depanner mon vidéo projecteur le tout ne s’allume pas ;jai démonté et nettoyer toutes les plaques alimentation et logique me rien ne se passe mais en toute sincérité si je peux avoir le document technique de réparation m’est indispensable

                                + +
                                +
                                +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  +

                                  + HugoPoi + · 24 octobre 2015 à 13 h 39 min +

                                  +

                                  Les commentaires n’ont pas pour vocation d’être un forum :-)

                                  + +
                                  +
                                  + +
                                + +
                                +
                                +
                                +

                                Répondre à HugoPoi Annuler la réponse

                                Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                                +
                                +
                                +

                                + +

                                +
                                +
                                +
                                +
                                +
                                +
                                + +
                                +
                                +
                                +
                                +
                                +
                                + + +
                                + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/f56d213b5530262d978c911e167a5941af514ec8.00001287.json b/www/.content.EZtzwPjb/html/f56d213b5530262d978c911e167a5941af514ec8.00001287.json new file mode 100644 index 0000000..7832df9 --- /dev/null +++ b/www/.content.EZtzwPjb/html/f56d213b5530262d978c911e167a5941af514ec8.00001287.json @@ -0,0 +1 @@ +{"version":"1.0","provider_name":"HugoPoi","provider_url":"http:\/\/blog.hugopoi.net","author_name":"HugoPoi","author_url":"http:\/\/blog.hugopoi.net\/author\/hugopoi\/","title":"D\u00e9montage Asus U36","type":"rich","width":600,"height":338,"html":"
                                D\u00e9montage Asus U36<\/a><\/blockquote>\n + + + + + + + + + + + + + + + + + + + + + + + + +
                                +
                                +
                                +
                                + +
                                +
                                +
                                +
                                +
                                +
                                +

                                Allô docteur on a un problème,

                                +

                                En ce dimanche calme avant la fin de mes partiels, mon écran Samsung SyncMaster 2232BW commençait à faire des siennes. Celui-ci depuis un mois ou deux clignotait de façon systématique au démarrage, au début pendant seulement quelques secondes, puis au fur et à mesure, de plus en plus jusqu’à devoir attendre 10 minutes pour que je puisse l’utiliser. Après 3 ans et 4 mois de bons et loyaux services, il voulait me quitter. J’ai tenté le support Samsung par email avec peu d’espoir car l’écran a dépassé sa garantie de 4 mois (oui oui les bâtards -> obsolescence programmée). Et donc j’ai eu le droit à un joli mail automatique me disant de contacter un numéro non surtaxé (mais avec combien de temps d’attente ?), ce que je n’ai pas fait car je n’avais pas envie de passer 30min au téléphone pour au final avoir un « On est désolé mais on ne peut rien faire pour vous car la garantie est dépassée, mais on peut envoyer votre écran en SAV pour faire un devis pour seulement 50 boules ». Concernant le support email de Samsung France, je leur donne une note de 0/20 puisque ce n’est pas un support mais une redirection vers le téléphone.

                                +

                                +

                                Symptômes

                                +

                                Clignotements de l’écran et de la LED power systématiques à chaque démarrage de l’écran. Je me suis tout de suite douté d’un problème d’alimentation et après quelques recherches sur google, confirmation du problème sur beaucoup d’écrans et téléviseurs. Dans 99% des cas ce clignotement est dû à des condensateurs défectueux qu’il faut simplement changer :-D

                                +

                                Démontage

                                +

                                Donc après avoir cerné le problème, j’ai ouvert l’écran pour chercher les condos défectueux. J’ai trouvé une petite vidéo pour mon écran :

                                +

                                +

                                Voici quelques photos en plus pour vous aider :

                                +

                                Les outils que j’ai utilisé pour le démontage

                                +

                                Position des clips

                                +

                                Carte d’alimentation dans son emplacement

                                +

                                Et voici les condensateurs qui posent problèmes. Comme vous pouvez le voir sur la photo, ils sont très facilement identifiable car ils sont bombés sur le dessus.

                                +

                                Condensateurs défectueux

                                +

                                Vous devez donc acheter des condensateurs de remplacement, par exemple sur Conrad.

                                +

                                Mes condensateurs suivant étaient endommagés:

                                +
                                  +
                                • 1 de 330uF 25V remplacé par un 470uF 25V
                                • +
                                • 3 de 820uF 25V remplacé par des 1000uF 50V
                                • +
                                +

                                Pour la réparation, il vous faut un fer à souder avec une panne pas trop grosse mais d’une grosse puissance car les soudures sont très solides (j’ai galéré avec un fer pro qui monte jusqu’à 400°).

                                +

                                Tout remarche nickel après remontage, plus de clignotement pour seulement quelques euros.

                                +

                                edit du 19 aout 2014 : j’ai trouvé le service manuel de l’écran si besoin samsung_2232bw_chassis_lpe22bs_sm

                                + + +
                                +
                                + +
                                +
                                +
                                +
                                +
                                +

                                + 41 commentaires

                                +
                                + +
                                +
                                +
                                +
                                +

                                + c'est_moi + · 30 janvier 2012 à 18 h 57 min +

                                +

                                Mille mercis et mille félicitations pour cette fiche technique si pédagogue.

                                +

                                J’espère que le partiels se passent plus que parfait !!

                                +

                                J’ai gardé l’url de la page pour réparer mon écran dans un petit mois : j’espère que la page soit toujours là ;-)

                                +

                                Merci encore.

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Maxime + · 5 mai 2012 à 12 h 31 min +

                                +

                                Bonjour HugoPoi!

                                +

                                Merci pour toutes vos infos et votre topic, je voulais avoir quelques précisions sur les condos à changer pour samsung 2232bw, je veux passer commande mais j’ai un problème avec les dimensions des condos, si vous pouvez m’informer de ce que je pourrais acheter car il y a trop de références. En vous remerciant A+ Maxime

                                + +
                                +
                                +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  +

                                  + HugoPoi + · 14 juin 2012 à 22 h 56 min +

                                  +

                                  N’importe quel condensateur polarisé avec des caractéristiques proches devrait marché.

                                  + +
                                  +
                                  + +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + gaubjezj + · 14 juin 2012 à 22 h 32 min +

                                +

                                Merci pour le tuto qui m’a bien aidé.
                                +J’ai utilisé un fer de 40 W avec une panne fine et
                                +une pompe à dessouder et j’ai retiré les condensateurs sans problème.
                                +Merci encore (3€40 pour le dépannage).

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + DragonTribal + · 2 juillet 2012 à 12 h 02 min +

                                +

                                super merci pour manifique tuto.
                                +Est-il possible de changer les 5 condensateurs 820uF 25V par des 1000uF 50V? car moi mes 5 condensateurs sont presque HS ;-)

                                +

                                Cordialement

                                + +
                                +
                                +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  +

                                  + HugoPoi + · 2 juillet 2012 à 12 h 25 min +

                                  +

                                  Oui je penses que ça marchera étant donné que c’est des valeurs plus grandes.

                                  + +
                                  +
                                  + +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + FRED + · 11 juillet 2012 à 19 h 11 min +

                                +

                                Bravo, MERCI.
                                +Je n’ai encore rien fait…mais j’ai le même problème, et tu me donnes la solution.
                                +Super.

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + daninpet + · 31 août 2012 à 10 h 10 min +

                                +

                                Merci mille fois!

                                +

                                J’avais ce problème, et j’ai emmener la photo des trucs a remplacer chez le réparateur du coin et voila!! Ça m’a coûté 7 Euros (mais j’habite en Thaïlande)

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + moi + · 15 novembre 2012 à 15 h 25 min +

                                +

                                super mon 2232bw vient de lâcher, les 3 + 1 condos sont gonflés j ai trouvé un 330 en 35v qui traîné sur un écran mort et j’ai commander 5 1000uf 35v sur ebay pour moins de 3 dollars, ca devrait le faire j’espere j’attend d’être livré merci! par contre j’ai qu’un gros pistolet a soudure et un gros fil d’étain, c’est pas évident mais bon ca le fait quand même =)

                                + +
                                +
                                +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  +

                                  + moi + · 7 décembre 2012 à 9 h 33 min +

                                  +

                                  parfait je vient de recevoir les condos; j ai meuler la panne du fer a souder pour la tailler en mine de crayon et j ai reussi a les souder facilement ils étaient un peu plus gros mais ca passe tout juste, mais attention ne pas prendre des plus gros! l écran fonctionne nickel maintenant.

                                  + +
                                  +
                                  + +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Croco + · 19 janvier 2013 à 18 h 39 min +

                                +

                                Je souhaiterai savoir si tu as utilisé un fer à souder bien précis étant donné que la carte est une multi couche.
                                +Merci

                                + +
                                +
                                + + +
                                + +
                                +
                                +
                                +
                                +

                                + momo + · 10 juin 2013 à 13 h 15 min +

                                +

                                slut je voudrai savoir ou trouvé les condansateur a changer sur mon ecran qui clignote

                                + +
                                +
                                + + +
                                + +
                                +
                                +
                                +
                                +

                                + lokmane + · 5 juillet 2013 à 16 h 08 min +

                                +

                                merci j’avais un ecran rouge ! et c’etais la tresse qui relie mon ecran votre page m’a aider a l’ouvrir et a le reparer merci bien

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + ML + · 21 août 2013 à 19 h 11 min +

                                +

                                Merci ! Ecran réparé. Halte à l’obsolescence programmée.

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + raymond + · 31 octobre 2013 à 13 h 20 min +

                                +

                                ai vu votre vidéo et les explications pour la reparation de mon écran , apparemment le méme probléme l écran passe au noir apres quelque seconde , j ai vu un le condensateur en bas a gauche gonflé , je l ai fait changé (10€) les autre condensateur étant toujour bon d après la personne qui me l a changé , mais j ai toujour le méme probléme cela peut il venir de la carte video a gauche ?

                                + +
                                +
                                +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  +

                                  + HugoPoi + · 20 décembre 2013 à 12 h 27 min +

                                  +

                                  Si la led bleu du bouton power s’éteint aussi c’est un problème d’alimentation sinon c’est plus compliqué et ça peut provenir de condensateurs sur la partie vidéo. Changé tous les plus gros condensateurs sur la partie alimentation pourrait être un bon début même si ils ne paraissent pas endommagé.

                                  + +
                                  +
                                  + +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + damien + · 4 novembre 2013 à 0 h 29 min +

                                +

                                bonjour,

                                +

                                j’ai des crasses coincées entres l’écran et le truc juste derrière, est ce qu’on sais les enlever en démontant la dalle ?

                                + +
                                +
                                +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  +

                                  + HugoPoi + · 20 décembre 2013 à 12 h 28 min +

                                  +

                                  Je ne sais si cette partie de la dalle est démontable, je penses que c’est collé mais vous pouvez essayer.

                                  + +
                                  +
                                  + +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + mac + · 1 décembre 2013 à 17 h 30 min +

                                +

                                Merci HugoPoi, avec ces excellents conseils et tuto vidéo, mon écran est reparti pour une nouvelle vie.
                                +Pour les composants, si vous êtes sur Paris ou proche. La boutique RAM électroniques est une bonne adresse, 138 bd Diderot 75012 Paris (Place de la Nation).

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Bouddhid + · 16 janvier 2014 à 19 h 21 min +

                                +

                                Merci beaucoup pour ces conseils ! J’étais à 2 doigts de jeter mon écran, le voilà comme neuf pour moins de 5€ ! Vive la bricole !

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Vincent + · 17 mai 2014 à 16 h 45 min +

                                +

                                Alors là merci.

                                +

                                Pour ce post, les photos, la vidéo, tout y est.

                                +

                                J’ai démonté l’écran assez vite, enlevé la carte, regarder quel condensateurs étaient gonflés,(il y en avaient 4), un magasin d’électronique sur lyon et une heure de démontage, soudure, remontage plus tard, voilà, c’est tout beau.
                                +Ca ne clignote plus, ça s’allume comme avant, comme neuf.

                                +

                                Et dire que j’allais jeter cet écran et claquer 350 euros pour un neuf…

                                +

                                Coût de l’opération pour 4 condensateurs, du fil d’étain 7 euros.

                                +

                                Je précise que je n’avais jamais fais de soudure sur composant électronique auparavant.
                                +Comme quoi cette opération de réparation est à la portée de tous.

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Julot + · 6 juillet 2014 à 13 h 49 min +

                                +

                                Site vraiment détaillé et très claire. J’ai pu dépanner mon écran avec succès. Merci beaucoup pour ces précieuses explications.

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + PaniK31 + · 29 juillet 2014 à 9 h 21 min +

                                +

                                Pas besoin d’une grosse puissance pour le fer, il faut au préalable gratter le vernis sur l’étain afin de pouvoir le faire fondre plus facilement

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + R211_IP-45130B + · 20 août 2014 à 14 h 04 min +

                                +

                                Bonjour à tous,

                                +

                                Une âme charitable peut-elle me communiquer ce qui est gravé sur la résistance CMS R211 de la carte d’alimentation/inverter IP-45130B qui équipe le SAMSUNG 2232BW ? Cette résistance a pris un coup de tournevis et je n’arrive pas à déterminer sa valeur de résistance car son marquage est effacé et comme le composant est abimé la mesure à l’ohmmètre indique l’infinie.

                                +

                                Merci par avance.

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + roger + · 24 octobre 2014 à 17 h 21 min +

                                +

                                Ca refonctionne après échange de 4 condensateurs :
                                +-un 330uf25v remplacé à l’identique.
                                +-trois 820uf25v remplacés par 1000uf25v.
                                +Le tout pour quelques €. Le plus dur était le dessoudage, la tresse n’était pas très efficace contrairement à la pompe.
                                +Grand merci à HugoPoi.

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Max + · 26 février 2015 à 16 h 28 min +

                                +

                                ENORME MERCI!! J’ai réparé mon écran en 20mn pour 3,50€, il était à 2 doigts de partir à la déchetterie. Ca faisait des mois qu’il clignotait, et l’allumage mettait parfois plus d’une demi heure. J’ai changé 5 condos 820uf25v et 1 330uf25v, par exactement les mêmes en neuf, et là il démarre au quart de tour! Ca fait plaisir! :)

                                + +
                                +
                                +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  +

                                  + rocco michelle + · 7 octobre 2015 à 10 h 16 min +

                                  +

                                  Bonjour je ne sais si vous verrez mon message mais je tente…je cherche quelqu’un qui accepterait de changer mes condensateurs sur mon samsung, les réparateurs me demandent 70 à 80 euros et encore ils n’ont pss envie de le faire et me disent d’acheter un nouvel écran. j’aurais bien tenter mais je n’ai pas de matériel et j’ai lu que les condo pouvaient être très dangereux s’ils avaient de la charge alors j’ai la trouille de bidouiller pq je n’y connais rien. si vous êtes de lyon acccepteriez vous de changer mes condensateurs pour 45 euros? merci de votre réponse.

                                  + +
                                  +
                                  + +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + lecakeseb + · 27 juillet 2015 à 15 h 26 min +

                                +

                                Bonjour,

                                +

                                J’ai utilisé la vidéo pour démonter mon écran afin de le nettoyer de 4 bêtes d’orage infiltrés entre le premier écran (noir) et la dalle (blanche) de mon samsung SyncMaster 2232W

                                +

                                Petits conseils afin de modérer ce que j’ai pu voir dans cette vidéo :

                                +

                                0 : aspirez, nettoyez l’extérieur de l’écran avant de l’ouvrir et nettoyez la table qui vous servira d’atelier, pour éviter les poussières qui s’infiltreront forcément plus tard si vous ne le faites pas…
                                +1 : pour ouvrir, utilisez plutôt un couteau à enduire pour la première partie (le cadre). Vous n’abîmerez ainsi pas du tout l’écran. Soyez patients, ne forcez pas ! ça viendra doucement, mais ça viendra. Il m’a fallu à peine 10 minutes, sans détériorer l’écran, sans le griffer… Il est encore nickel !
                                +2 : attention à ne pas déconnecter les fils reliant le cadre à la carte. Inutile pour simplement nettoyer l’écran.
                                +3 : pour séparer les deux éléments de la dalle entre lesquels les bêtes se sont infiltrées, les doigts suffisent, pas besoin d’outils qui viendraient les endommager. La dalle blanche reste à l’horizontale, l’écran noir sera tenu à la verticale.
                                +4 : utiliser un chiffon doux ne peluchant pas pour enlever les bêtes (faites-vous aider de quelqu’un qui les enlèvera pendant que vous tenez l’écran extérieur en position verticale).
                                +5 : repositionnez la colle d’étanchéité qui aurait pu se déplacer, avant de repositionner les deux écrans.
                                +6 : commencer par refermer par le bas de l’écran (sinon les éléments de réglage situés au bas de l’écran – luminosité, contraste,…- ne se replaceront pas correctement).
                                +7 : Une fois l’écran refermé, j’ai appliqué un peu de « barrage aux insectes », avec un chiffon à l’arrière de mon écran en insistant surtout sur les bouches d’aération par lesquelles les maudites bestioles ont du s’infiltrer. En espérant ne pas avoir à ouvrir !

                                +

                                Bon courage à vous !

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Michel Jousserandot + · 20 janvier 2017 à 20 h 41 min +

                                +

                                Merci pour les conseils au démontage.
                                +J’avais un problème un peu différent :l’écran ne s’allumait plus du tout. Avec un copain beaucoup plus malin que moi, on a détecté 2 fusibles dont l’un était fichu. On l’a remplacé par un petit fil de cuivre. Et tout a remarché comme avant.
                                +Il faut surtout faire attention quand on teste la partie haute tension
                                +Michel.

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Crec + · 14 juillet 2017 à 10 h 20 min +

                                +

                                Bonjour. Très bons conseils avertis. Merci beaucoup.
                                +Peut-on avoir les mêmes conseils pour un écran BX2250.
                                +Merci par avance.
                                +Crec

                                + +
                                +
                                +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  +

                                  + HugoPoi + · 6 août 2017 à 14 h 03 min +

                                  +

                                  J’ai pas de BX2250 donc dans le détails non mais si c’est les même symptômes ça doit la même procédure.

                                  + +
                                  +
                                  + +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Ferronnier + · 10 août 2017 à 17 h 42 min +

                                +

                                Un grand merci !
                                +J’ai changé tous les condensateurs de la partie alimentation de la carte, en déportant certains qui n’avaient pas le même format qu’à l’origine, et ça tourne nickel !

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Nours + · 1 décembre 2017 à 15 h 17 min +

                                +

                                Ca fait des années que j’ai cet article enregistré dans un coin, en nourrissant l’espoir d’avoir un jour le courage de réparer ce foutu écran… Après plus de cinq ans c’est chose faite \o/
                                +Un giga, hypra, immense merci pour ce tutoriel tellement bien expliqué et facile d’accès (je n’avais pas touché à un fer à souder depuis… Oh boy 15 ans déjà).
                                +Après une longue pause, l’écran reprend du service… Jusqu’à la prochaine panne /o/

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Alex + · 11 août 2018 à 13 h 28 min +

                                +

                                Quelqu’un sait qui pourrait me le faire svp j ai le même problème mais aucun matériel

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + David + · 5 février 2019 à 21 h 06 min +

                                +

                                Merci Hugo pour ce tuto qui m’a déjà servi en 2013 et qui va me resservir aujourd’hui car mon 2ème 2232bw commence à avoir les mêmes symptômes.

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + yvan + · 23 novembre 2019 à 17 h 14 min +

                                +

                                Bonjour
                                +j’ai tenté de changer le condensateur qui avait l’air naze mais ça n’a pas marché … toujours le bouton bleu allumé, l’écran est reconnu par Windows 10 même si l’écran est éteint
                                +grâce au service manuel de l’écran fourni plus haut, j’ai vérifié les tensions jusque sur la carte de la dalle et elles sont correctes, ainsi que sur la carte elle-même, tout est ok, donc je pense que ce n’est plus un problème de condensateur
                                +pour les fusibles, ils ressemblent plutôt à des composants qu’à de simple fusibles, mais comme j’ai les bonnes tension, je ne pense pas que ça vienne de là
                                +j’ai bien peur que ce soit la dalle qui soit naze ? quelqu’un a t il des idées supplémentaires avant que je le jette avec grand regret (c’est un 2032bw, mais c’est la même chose, même si ma carte électronique est un peu différente car plus récente
                                +merci d’avance pour vos conseils

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + yvan + · 24 novembre 2019 à 17 h 26 min +

                                +

                                finalement j’ai trouvé, c’est un petit fusible vert qui ressemble à une résistance mais tout vert avec écrit 4A LF qui assure l’alimentation de la dalle.
                                +En le shuntant, mon écran a retrouvé l’image.
                                +après enquête il s’agit d’un fusible pico de 4ampères de chez little fuse, pas du tout évident à trouver
                                +Résolu !

                                + +
                                +
                                + +
                                +
                                +

                                + Reflow Dell 1546 | HugoPoi + · 22 août 2016 à 16 h 09 min +

                                +

                                […] « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable de marque Dell un 1546 pour être précis. Encore […]

                                + +
                                +
                                + +
                                +
                                +

                                + Reflow Dell Inspiron 1546 – HugoPoi + · 23 juin 2017 à 23 h 18 min +

                                +

                                […] d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un […]

                                + +
                                +
                                + +
                                +
                                +
                                +

                                Répondre à Croco Annuler la réponse

                                Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                                +
                                +
                                +

                                + +

                                +
                                +
                                +
                                +
                                +
                                +
                                + +
                                +
                                +
                                +
                                +
                                +
                                + + +
                                + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/f64169a1d117d8ea8a1d8831c5a8662260f6339a.00000792.css b/www/.content.EZtzwPjb/html/f64169a1d117d8ea8a1d8831c5a8662260f6339a.00000792.css new file mode 100644 index 0000000..4ad4943 --- /dev/null +++ b/www/.content.EZtzwPjb/html/f64169a1d117d8ea8a1d8831c5a8662260f6339a.00000792.css @@ -0,0 +1,7144 @@ +@charset "UTF-8"; +/* +Theme Name: Hestia +Theme URI: https://themeisle.com/themes/hestia/ +Author: ThemeIsle +Author URI: https://themeisle.com +Description: Hestia is a modern WordPress theme for professionals. It fits creative business, small businesses (restaurants, wedding planners, sport/medical shops), startups, corporate businesses, online agencies and firms, portfolios, ecommerce (WooCommerce), and freelancers. It has a multipurpose one-page design, widgetized footer, blog/news page and a clean look, is compatible with: Flat Parallax Slider, Photo Gallery, Travel Map and Elementor Page Builder . The theme is responsive, WPML, Retina ready, SEO friendly, and uses Material Kit for design. +Version: 1.1.43 +License: GNU General Public License v2 or later +License URI: http://www.gnu.org/licenses/gpl-2.0.html +Text Domain: hestia +WordPress Available: yes +Requires License: no +Tags: blog, custom-logo, portfolio, e-commerce, rtl-language-support, post-formats, grid-layout, one-column, two-columns, custom-background, custom-colors, custom-header, custom-menu, featured-image-header, featured-images, flexible-header, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready + +This theme, like WordPress, is licensed under the GPL. +Use it to make something cool, have fun, and share what you've learned with others. + +Hestia is based on Underscores http://underscores.me/, (C) 2012-2015 Automattic, Inc. +Underscores is distributed under the terms of the GNU GPL v2 or later. +*/ +/*-------------------------------------------------------------- +>>> TABLE OF CONTENTS: +---------------------------------------------------------------- +# General + ## Generic styles + ## Buttons and links +# Navigation +# Forms +# Pagination and navbar +# Typography +# Cards styling +# Tables +# Sections Styling + ## About Section + ## Portfolio Section + ## Contact Section + ## Team Section + ## Subscribe Section +# Footer +# Blog + ## Content + ## Sidebar + ## Attachment Page +# Woocommerce Integration + ## My Account Page + ## Generic + ## YITH Magnifier +# Responsive +--------------------------------------------------------------*/ +a, .form-group.label-static label.control-label, .form-group.label-placeholder label.control-label, .form-group.label-floating label.control-label, .pagination a, .pagination span, .card-background:after, .hestia-top-bar .widget.widget_search form:not(.form-group), .hestia-top-bar .widget.widget_product_search form:not(.form-group), .hestia-top-bar .widget.widget_shopping_cart .cart_list, .hestia-top-bar li a[href*="facebook.com"]:before, .hestia-top-bar li a[href*="twitter.com"]:before, .hestia-top-bar li a[href*="pinterest.com"]:before, .hestia-top-bar li a[href*="google.com"]:before, .hestia-top-bar li a[href*="linkedin.com"]:before, .hestia-top-bar li a[href*="dribbble.com"]:before, .hestia-top-bar li a[href*="github.com"]:before, .hestia-top-bar li a[href*="youtube.com"]:before, .hestia-top-bar li a[href*="instagram.com"]:before, .hestia-top-bar li a[href*="reddit.com"]:before, .hestia-top-bar li a[href*="tumblr.com"]:before, .hestia-top-bar li a[href*="behance.com"]:before, .hestia-top-bar li a[href*="snapchat.com"]:before, .hestia-top-bar li a[href*="deviantart.com"]:before, .hestia-top-bar li a[href*="vimeo.com"]:before, .woocommerce div.product .woocommerce-tabs ul.tabs.wc-tabs li a, .woocommerce nav.woocommerce-pagination ul li a { + -webkit-transition: all 0.3s ease; + -moz-transition: all 0.3s ease; + -ms-transition: all 0.3s ease; + -o-transition: all 0.3s ease; + transition: all 0.3s ease; +} + +button, +input[type="submit"], +input[type="button"], +.btn, .woocommerce .single-product div.product form.cart .button, .woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt, .woocommerce input.button:disabled, .woocommerce input.button[disabled]:disabled, #add_payment_method .wc-proceed-to-checkout a.checkout-button, +.woocommerce-cart .wc-proceed-to-checkout a.checkout-button, +.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button, .added_to_cart.wc-forward { + -webkit-transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1); + transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1); + transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1); + transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1); +} + +/*-------------------------------------------------------------- +# Typography +--------------------------------------------------------------*/ +body { + direction: ltr; + color: #3C4858; + font-family: "Roboto", "Helvetica", "Arial", sans-serif; + font-weight: 300; + line-height: 21px; +} + +h1, h2, h3, h4, h5, h6 { + font-family: "Roboto", "Helvetica", "Arial", sans-serif; + font-weight: 300; +} + +a { + color: #9c27b0; +} +a:hover, a:focus { + color: #89229b; + text-decoration: none; +} + +blockquote p { + font-style: italic; +} + +h1 { + font-size: 53.2px; + line-height: 61.18px; +} + +h2 { + font-size: 36.4px; + line-height: 54.6px; +} + +h3 { + margin: 20px 0 10px; + font-size: 25.55px; + line-height: 35.77px; +} + +h4 { + font-size: 18.2px; + line-height: 28.21px; +} + +h5 { + margin-bottom: 15px; + font-size: 17.5px; + line-height: 27.125px; +} + +h6 { + font-size: 12.6px; + line-height: 18.9px; + font-weight: 500; + text-transform: uppercase; +} + +.hestia-title, .title, .card-title, .info-title, .footer-brand, .footer-big h4, .footer-big h5, .media .media-heading { + font-family: "Roboto Slab", "Times New Roman", serif; + font-weight: 700; +} +.hestia-title, .hestia-title a, .title, .title a, .card-title, .card-title a, .info-title, .info-title a, .footer-brand, .footer-brand a, .footer-big h4, .footer-big h4 a, .footer-big h5, .footer-big h5 a, .media .media-heading, .media .media-heading a { + color: #3C4858; + text-decoration: none; + word-wrap: break-word; +} + +h1.title, +h1.hestia-title, +.pricing h2.title, +.pricing h2.hestia-title, +.contactus h2.title, +.contactus h2.hestia-title { + margin-bottom: 30px; +} + +h2.title, +h2.hestia-title { + margin-bottom: 10px; +} + +.carousel h1.hestia-title, +.carousel h2.title { + font-family: "Roboto", "Helvetica", "Arial", sans-serif; + font-size: 67.2px; + line-height: 77.28px; +} +.carousel span.sub-title { + display: block; + margin: 10px 0 60px; + font-family: "Roboto Slab", "Times New Roman", serif; + font-size: 18.2px; + line-height: 25.48px; +} +.carousel .buttons a { + padding: 17px 35px; + font-size: 14px; +} + +.description, .card-description, .footer-big { + color: #999999; +} + +.subscribe-description { + color: #efefef; +} + +.text-warning { + color: #ff9800; +} + +.text-primary { + color: #9c27b0; +} + +.text-danger { + color: #f44336; +} + +.text-success { + color: #4caf50; +} + +.text-info { + color: #00bcd4; +} + +.text-rose { + color: #e91e63; +} + +.text-gray { + color: #999999; +} + +.tooltip { + opacity: 0; + -webkit-transition: opacity,-webkit-transform 0.2s ease; + transition: opacity,-webkit-transform 0.2s ease; + transition: opacity,transform 0.2s ease; + transition: opacity,transform 0.2s ease,-webkit-transform 0.2s ease; + -webkit-transform: translate3d(0, 5px, 0); + -ms-transform: translate3d(0, 5px, 0); + transform: translate3d(0, 5px, 0); +} +.tooltip.in { + opacity: 1; + -webkit-transform: translate3d(0, 0px, 0); + -ms-transform: translate3d(0, 0px, 0); + transform: translate3d(0, 0px, 0); +} +.tooltip.left .tooltip-arrow { + border-left-color: #fff; +} +.tooltip.right .tooltip-arrow { + border-right-color: #fff; +} +.tooltip.top .tooltip-arrow { + border-top-color: #fff; +} +.tooltip.bottom .tooltip-arrow { + border-bottom-color: #fff; +} + +.tooltip-inner { + min-width: 130px; + padding: 10px 15px; + border: none; + border-radius: 3px; + color: #555; + background: #fff; + -webkit-box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2); + box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2); + font-size: 12px; + line-height: 18px; + text-transform: none; +} + +.screen-reader-text { + clip: rect(1px, 1px, 1px, 1px); + position: absolute !important; + height: 1px; + width: 1px; + overflow: hidden; +} +.screen-reader-text:focus { + background-color: #f1f1f1; + border-radius: 3px; + -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6); + box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6); + clip: auto !important; + color: #21759b; + display: block; + font-size: 14px; + font-weight: bold; + height: auto; + left: 5px; + line-height: normal; + padding: 15px 23px 14px; + text-decoration: none; + top: 5px; + width: auto; + z-index: 100000; + /* Above WP toolbar. */ +} + +/*-------------------------------------------------------------- +# Elements +--------------------------------------------------------------*/ +/*-------------------------------------------------------------- +## General +--------------------------------------------------------------*/ +body { + direction: ltr; + background-color: #e5e5e5; +} + +.container { + max-width: 100%; +} + +* { + -webkit-tap-highlight-color: rgba(255, 255, 255, 0); + -webkit-tap-highlight-color: transparent; +} + +embed, iframe, img, object, video, button, input, select, textarea, .wp-caption { + max-width: 100%; +} + +img { + height: auto; +} + +ul, ol { + margin-bottom: 30px; + line-height: 25.2px; +} + +legend { + border-bottom: 0; +} + +.animation-transition-fast, .navbar, .panel .panel-heading i, .section-cards .card { + -webkit-transition: all 150ms ease; + transition: all 150ms ease; +} + +.thumbnail { + padding: 0; + border: 0 none; + border-radius: 0; +} + +.section-image .description .default-link, +.section-image .default-link, +.hestia-title .default-link, +.title .default-link, +.default-link:hover, +.default-link { + color: #fff; +} + +.description .default-link { + color: #999999; +} + +body.menu-open { + overflow: hidden; +} + +/*-------------------------------------------------------------- +## Buttons +--------------------------------------------------------------*/ +:focus, :active, ::-moz-focus-inner { + outline: 0 !important; +} + +button, +input[type="submit"]::-moz-focus-inner, +input[type="button"]::-moz-focus-inner, +.btn::-moz-focus-inner { + border: 0; +} + +button, +input, +select, +textarea { + font-family: inherit; + font-size: inherit; + line-height: inherit; + padding: 7px; +} +button:focus, +input:focus, +select:focus, +textarea:focus { + outline: 0 !important; +} + +button, +input[type="submit"], +input[type="button"], +.btn { + position: relative; + margin: 10px 1px; + padding: 12px 30px; + border: none; + border-radius: 3px; + font-size: 12px; + font-weight: 400; + white-space: normal; + letter-spacing: 0; + text-transform: uppercase; + will-change: box-shadow,transform; +} + +input[type="number"] { + padding: 0; +} + +button, +input[type="submit"], +input[type="button"], +.btn, +.btn.btn-default { + -webkit-box-shadow: 0 2px 2px 0 rgba(153, 153, 153, 0.14), 0 3px 1px -2px rgba(153, 153, 153, 0.2), 0 1px 5px 0 rgba(153, 153, 153, 0.12); + -moz-box-shadow: 0 2px 2px 0 rgba(153, 153, 153, 0.14), 0 3px 1px -2px rgba(153, 153, 153, 0.2), 0 1px 5px 0 rgba(153, 153, 153, 0.12); + box-shadow: 0 2px 2px 0 rgba(153, 153, 153, 0.14), 0 3px 1px -2px rgba(153, 153, 153, 0.2), 0 1px 5px 0 rgba(153, 153, 153, 0.12); +} +button:hover, button:focus, button:active, +input[type="submit"]:hover, +input[type="submit"]:focus, +input[type="submit"]:active, +input[type="button"]:hover, +input[type="button"]:focus, +input[type="button"]:active, +.btn:hover, +.btn:focus, +.btn:active, +.btn.btn-default:hover, +.btn.btn-default:focus, +.btn.btn-default:active { + -webkit-box-shadow: 0 14px 26px -12px rgba(153, 153, 153, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(153, 153, 153, 0.2); + -moz-box-shadow: 0 14px 26px -12px rgba(153, 153, 153, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(153, 153, 153, 0.2); + box-shadow: 0 14px 26px -12px rgba(153, 153, 153, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(153, 153, 153, 0.2); +} + +button:hover, +button:focus, +input[type="submit"]:hover, +input[type="submit"]:focus, +input[type="submit"]:active, +input[type="button"]:hover, +input[type="button"]:focus, +input[type="button"]:active, +.btn, +.btn:hover, +.btn:focus, +.btn:active, +.btn.active, +.btn:active:focus, +.btn:active:hover, +.btn.active:focus, +.btn.active:hover, +.open > .btn.dropdown-toggle, +.open > .btn.dropdown-toggle:focus, +.open > .btn.dropdown-toggle:hover, +.btn.btn-default, +.btn.btn-default:hover, +.btn.btn-default:focus, +.btn.btn-default:active, +.btn.btn-default.active, +.btn.btn-default:active:focus, +.btn.btn-default:active:hover, +.btn.btn-default.active:focus, +.btn.btn-default.active:hover, +.open > .btn.btn-default.dropdown-toggle, +.open > .btn.btn-default.dropdown-toggle:focus, +.open > .btn.btn-default.dropdown-toggle:hover { + color: #fff; + background-color: #999999; + outline: none; +} + +.btn > a:hover, +.btn > a:focus, +.btn > a:active, +.btn:hover > a, +.btn:focus > a, +.btn:active > a { + color: #fff; +} + +.btn.btn-simple, .btn.btn-simple:hover, .btn.btn-simple:focus, .btn.btn-simple:active, +.btn.btn-default.btn-simple, +.btn.btn-default.btn-simple:hover, +.btn.btn-default.btn-simple:focus, +.btn.btn-default.btn-simple:active { + color: #999999; + background-color: transparent; +} + +button, input[type="submit"], input[type="button"], .btn.btn-primary { + -webkit-box-shadow: 0 2px 2px 0 rgba(156, 39, 176, 0.14), 0 3px 1px -2px rgba(156, 39, 176, 0.2), 0 1px 5px 0 rgba(156, 39, 176, 0.12); + -moz-box-shadow: 0 2px 2px 0 rgba(156, 39, 176, 0.14), 0 3px 1px -2px rgba(156, 39, 176, 0.2), 0 1px 5px 0 rgba(156, 39, 176, 0.12); + box-shadow: 0 2px 2px 0 rgba(156, 39, 176, 0.14), 0 3px 1px -2px rgba(156, 39, 176, 0.2), 0 1px 5px 0 rgba(156, 39, 176, 0.12); +} +button:hover, button:focus, button:active, input[type="submit"]:hover, input[type="submit"]:focus, input[type="submit"]:active, input[type="button"]:hover, input[type="button"]:focus, input[type="button"]:active, .btn.btn-primary:hover, .btn.btn-primary:focus, .btn.btn-primary:active { + -webkit-box-shadow: 0 14px 26px -12px rgba(156, 39, 176, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(156, 39, 176, 0.2); + -moz-box-shadow: 0 14px 26px -12px rgba(156, 39, 176, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(156, 39, 176, 0.2); + box-shadow: 0 14px 26px -12px rgba(156, 39, 176, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(156, 39, 176, 0.2); +} + +.btn.btn-primary.btn-simple, .btn.btn-primary.btn-simple:hover, .btn.btn-primary.btn-simple:focus, .btn.btn-primary.btn-simple:active { + color: #9c27b0; + background-color: transparent; +} + +button, +button:hover, +input[type="submit"], +input[type="submit"]:hover, +input[type="button"], +input[type="button"]:hover, +input#searchsubmit, +.btn.btn-primary, +.btn.btn-primary:hover, +.btn.btn-primary:focus, +.btn.btn-primary:active, +.btn.btn-primary.active, +.btn.btn-primary:active:focus, +.btn.btn-primary:active:hover, +.btn.btn-primary.active:focus, +.btn.btn-primary.active:hover, +.open > .btn.btn-primary.dropdown-toggle, +.open > .btn.btn-primary.dropdown-toggle:focus, +.open > .btn.btn-primary.dropdown-toggle:hover { + color: #fff; + background-color: #9c27b0; +} + +.btn.btn-danger { + -webkit-box-shadow: 0 2px 2px 0 rgba(244, 67, 54, 0.14), 0 3px 1px -2px rgba(244, 67, 54, 0.2), 0 1px 5px 0 rgba(244, 67, 54, 0.12); + -moz-box-shadow: 0 2px 2px 0 rgba(244, 67, 54, 0.14), 0 3px 1px -2px rgba(244, 67, 54, 0.2), 0 1px 5px 0 rgba(244, 67, 54, 0.12); + box-shadow: 0 2px 2px 0 rgba(244, 67, 54, 0.14), 0 3px 1px -2px rgba(244, 67, 54, 0.2), 0 1px 5px 0 rgba(244, 67, 54, 0.12); +} +.btn.btn-danger:hover, .btn.btn-danger:focus, .btn.btn-danger:active { + -webkit-box-shadow: 0 14px 26px -12px rgba(244, 67, 54, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(244, 67, 54, 0.2); + -moz-box-shadow: 0 14px 26px -12px rgba(244, 67, 54, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(244, 67, 54, 0.2); + box-shadow: 0 14px 26px -12px rgba(244, 67, 54, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(244, 67, 54, 0.2); +} + +.btn.btn-danger.btn-simple, +.btn.btn-danger.btn-simple:hover, +.btn.btn-danger.btn-simple:focus, +.btn.btn-danger.btn-simple:active, +.btn.btn-danger, +.btn.btn-danger:hover, +.btn.btn-danger:focus, +.btn.btn-danger:active, +.btn.btn-danger.active, +.btn.btn-danger:active:focus, +.btn.btn-danger:active:hover, +.btn.btn-danger.active:focus, +.btn.btn-danger.active:hover, +.open > .btn.btn-danger.dropdown-toggle, +.open > .btn.btn-danger.dropdown-toggle:focus, +.open > .btn.btn-danger.dropdown-toggle:hover { + color: #fff; + background-color: #f44336; +} + +.btn.btn-rose { + -webkit-box-shadow: 0 2px 2px 0 rgba(233, 30, 99, 0.14), 0 3px 1px -2px rgba(233, 30, 99, 0.2), 0 1px 5px 0 rgba(233, 30, 99, 0.12); + -moz-box-shadow: 0 2px 2px 0 rgba(233, 30, 99, 0.14), 0 3px 1px -2px rgba(233, 30, 99, 0.2), 0 1px 5px 0 rgba(233, 30, 99, 0.12); + box-shadow: 0 2px 2px 0 rgba(233, 30, 99, 0.14), 0 3px 1px -2px rgba(233, 30, 99, 0.2), 0 1px 5px 0 rgba(233, 30, 99, 0.12); +} +.btn.btn-rose:hover, .btn.btn-rose:focus, .btn.btn-rose:active { + -webkit-box-shadow: 0 14px 26px -12px rgba(233, 30, 99, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(233, 30, 99, 0.2); + -moz-box-shadow: 0 14px 26px -12px rgba(233, 30, 99, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(233, 30, 99, 0.2); + box-shadow: 0 14px 26px -12px rgba(233, 30, 99, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(233, 30, 99, 0.2); +} + +.btn.btn-rose.btn-simple, .btn.btn-rose.btn-simple:hover, .btn.btn-rose.btn-simple:focus, .btn.btn-rose.btn-simple:active { + color: #e91e63; + background-color: transparent; +} + +.btn.btn-rose, +.btn.btn-rose:hover, +.btn.btn-rose:focus, +.btn.btn-rose:active, +.btn.btn-rose.active, +.btn.btn-rose:active:focus, +.btn.btn-rose:active:hover, +.btn.btn-rose.active:focus, +.btn.btn-rose.active:hover, +.open > .btn.btn-rose.dropdown-toggle, +.open > .btn.btn-rose.dropdown-toggle:focus, +.open > .btn.btn-rose.dropdown-toggle:hover { + color: #fff; + background-color: #e91e63; +} + +.btn.btn-white { + box-shadow: 0 2px 2px 0 rgba(153, 153, 153, 0.14), 0 3px 1px -2px rgba(153, 153, 153, 0.2), 0 1px 5px 0 rgba(153, 153, 153, 0.12); + color: #999999; + background-color: #fff; +} +.btn.btn-white.btn-white:focus, .btn.btn-white.btn-white:hover { + color: #fff; + background-color: rgba(153, 153, 153, 0.6); +} +.btn.btn-white.btn-simple { + color: #fff; + background: transparent; +} +.btn.btn-round { + border-radius: 30px; +} +.btn:not(.btn-just-icon):not(.btn-fab) .fa { + position: relative; + font-size: 18px; +} +.btn.btn-just-icon { + padding: 12px; + font-size: 20px; + line-height: 20px; +} +.btn.btn-just-icon i { + width: 20px; +} +.btn.btn-just-icon.btn-lg { + padding: 13px 18px; + font-size: 22px; +} + +.btn .fa { + position: relative; + top: -1px; + font-size: 17px; + vertical-align: middle; +} + +.navbar button.navbar-toggle, .navbar button.navbar-toggle:hover { + color: #555; +} +.navbar.navbar-transparent button.navbar-toggle, .navbar.navbar-transparent button.navbar-toggle:hover { + color: #fff; +} +.navbar .button:hover { + box-shadow: none !important; +} + +.btn.btn-facebook, .btn.btn-facebook:hover, .btn.btn-facebook:focus, .btn.btn-facebook:active, +.navbar .navbar-nav > li > a.btn.btn-facebook, +.navbar .navbar-nav > li > a.btn.btn-facebook:hover, +.navbar .navbar-nav > li > a.btn.btn-facebook:focus, +.navbar .navbar-nav > li > a.btn.btn-facebook:active { + color: #fff; + background-color: #3b5998; +} + +.btn.btn-facebook, +.navbar .navbar-nav > li > a.btn.btn-facebook { + -webkit-box-shadow: 0 2px 2px 0 rgba(59, 89, 152, 0.14), 0 3px 1px -2px rgba(59, 89, 152, 0.2), 0 1px 5px 0 rgba(59, 89, 152, 0.12); + -moz-box-shadow: 0 2px 2px 0 rgba(59, 89, 152, 0.14), 0 3px 1px -2px rgba(59, 89, 152, 0.2), 0 1px 5px 0 rgba(59, 89, 152, 0.12); + box-shadow: 0 2px 2px 0 rgba(59, 89, 152, 0.14), 0 3px 1px -2px rgba(59, 89, 152, 0.2), 0 1px 5px 0 rgba(59, 89, 152, 0.12); +} +.btn.btn-facebook:hover, .btn.btn-facebook:focus, .btn.btn-facebook:active, +.navbar .navbar-nav > li > a.btn.btn-facebook:hover, +.navbar .navbar-nav > li > a.btn.btn-facebook:focus, +.navbar .navbar-nav > li > a.btn.btn-facebook:active { + -webkit-box-shadow: 0 14px 26px -12px rgba(59, 89, 152, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(59, 89, 152, 0.2); + -moz-box-shadow: 0 14px 26px -12px rgba(59, 89, 152, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(59, 89, 152, 0.2); + box-shadow: 0 14px 26px -12px rgba(59, 89, 152, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(59, 89, 152, 0.2); +} + +.btn.btn-facebook.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-facebook.btn-simple { + color: #3b5998; + background-color: transparent; +} + +.btn.btn-twitter, .btn.btn-twitter:hover, .btn.btn-twitter:focus, .btn.btn-twitter:active, +.navbar .navbar-nav > li > a.btn.btn-twitter, +.navbar .navbar-nav > li > a.btn.btn-twitter:hover, +.navbar .navbar-nav > li > a.btn.btn-twitter:focus, +.navbar .navbar-nav > li > a.btn.btn-twitter:active { + color: #fff; + background-color: #55acee; +} + +.btn.btn-twitter, +.navbar .navbar-nav > li > a.btn.btn-twitter { + -webkit-box-shadow: 0 2px 2px 0 rgba(85, 172, 238, 0.14), 0 3px 1px -2px rgba(85, 172, 238, 0.2), 0 1px 5px 0 rgba(85, 172, 238, 0.12); + -moz-box-shadow: 0 2px 2px 0 rgba(85, 172, 238, 0.14), 0 3px 1px -2px rgba(85, 172, 238, 0.2), 0 1px 5px 0 rgba(85, 172, 238, 0.12); + box-shadow: 0 2px 2px 0 rgba(85, 172, 238, 0.14), 0 3px 1px -2px rgba(85, 172, 238, 0.2), 0 1px 5px 0 rgba(85, 172, 238, 0.12); +} +.btn.btn-twitter:hover, .btn.btn-twitter:focus, .btn.btn-twitter:active, +.navbar .navbar-nav > li > a.btn.btn-twitter:hover, +.navbar .navbar-nav > li > a.btn.btn-twitter:focus, +.navbar .navbar-nav > li > a.btn.btn-twitter:active { + -webkit-box-shadow: 0 14px 26px -12px rgba(85, 172, 238, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(85, 172, 238, 0.2); + -moz-box-shadow: 0 14px 26px -12px rgba(85, 172, 238, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(85, 172, 238, 0.2); + box-shadow: 0 14px 26px -12px rgba(85, 172, 238, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(85, 172, 238, 0.2); +} + +.btn.btn-twitter.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-twitter.btn-simple { + color: #55acee; + background-color: transparent; +} + +.btn.btn-pinterest, .btn.btn-pinterest:hover, .btn.btn-pinterest:focus, .btn.btn-pinterest:active, +.navbar .navbar-nav > li > a.btn.btn-pinterest, +.navbar .navbar-nav > li > a.btn.btn-pinterest:hover, +.navbar .navbar-nav > li > a.btn.btn-pinterest:focus, +.navbar .navbar-nav > li > a.btn.btn-pinterest:active { + color: #fff; + background-color: #cc2127; +} + +.btn.btn-pinterest, +.navbar .navbar-nav > li > a.btn.btn-pinterest { + -webkit-box-shadow: 0 2px 2px 0 rgba(204, 33, 39, 0.14), 0 3px 1px -2px rgba(204, 33, 39, 0.2), 0 1px 5px 0 rgba(204, 33, 39, 0.12); + -moz-box-shadow: 0 2px 2px 0 rgba(204, 33, 39, 0.14), 0 3px 1px -2px rgba(204, 33, 39, 0.2), 0 1px 5px 0 rgba(204, 33, 39, 0.12); + box-shadow: 0 2px 2px 0 rgba(204, 33, 39, 0.14), 0 3px 1px -2px rgba(204, 33, 39, 0.2), 0 1px 5px 0 rgba(204, 33, 39, 0.12); +} +.btn.btn-pinterest:hover, .btn.btn-pinterest:focus, .btn.btn-pinterest:active, +.navbar .navbar-nav > li > a.btn.btn-pinterest:hover, +.navbar .navbar-nav > li > a.btn.btn-pinterest:focus, +.navbar .navbar-nav > li > a.btn.btn-pinterest:active { + -webkit-box-shadow: 0 14px 26px -12px rgba(204, 33, 39, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(204, 33, 39, 0.2); + -moz-box-shadow: 0 14px 26px -12px rgba(204, 33, 39, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(204, 33, 39, 0.2); + box-shadow: 0 14px 26px -12px rgba(204, 33, 39, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(204, 33, 39, 0.2); +} + +.btn.btn-pinterest.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-pinterest.btn-simple { + color: #cc2127; + background-color: transparent; +} + +.btn.btn-google, .btn.btn-google:hover, .btn.btn-google:focus, .btn.btn-google:active, +.navbar .navbar-nav > li > a.btn.btn-google, +.navbar .navbar-nav > li > a.btn.btn-google:hover, +.navbar .navbar-nav > li > a.btn.btn-google:focus, +.navbar .navbar-nav > li > a.btn.btn-google:active { + color: #fff; + background-color: #dd4b39; +} + +.btn.btn-google, +.navbar .navbar-nav > li > a.btn.btn-google { + -webkit-box-shadow: 0 2px 2px 0 rgba(221, 75, 57, 0.14), 0 3px 1px -2px rgba(221, 75, 57, 0.2), 0 1px 5px 0 rgba(221, 75, 57, 0.12); + -moz-box-shadow: 0 2px 2px 0 rgba(221, 75, 57, 0.14), 0 3px 1px -2px rgba(221, 75, 57, 0.2), 0 1px 5px 0 rgba(221, 75, 57, 0.12); + box-shadow: 0 2px 2px 0 rgba(221, 75, 57, 0.14), 0 3px 1px -2px rgba(221, 75, 57, 0.2), 0 1px 5px 0 rgba(221, 75, 57, 0.12); +} +.btn.btn-google:hover, .btn.btn-google:focus, .btn.btn-google:active, +.navbar .navbar-nav > li > a.btn.btn-google:hover, +.navbar .navbar-nav > li > a.btn.btn-google:focus, +.navbar .navbar-nav > li > a.btn.btn-google:active { + -webkit-box-shadow: 0 14px 26px -12px rgba(221, 75, 57, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(221, 75, 57, 0.2); + -moz-box-shadow: 0 14px 26px -12px rgba(221, 75, 57, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(221, 75, 57, 0.2); + box-shadow: 0 14px 26px -12px rgba(221, 75, 57, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(221, 75, 57, 0.2); +} + +.btn.btn-google.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-google.btn-simple { + color: #dd4b39; + background-color: transparent; +} + +.btn.btn-linkedin, .btn.btn-linkedin:hover, .btn.btn-linkedin:focus, .btn.btn-linkedin:active, +.navbar .navbar-nav > li > a.btn.btn-linkedin, +.navbar .navbar-nav > li > a.btn.btn-linkedin:hover, +.navbar .navbar-nav > li > a.btn.btn-linkedin:focus, +.navbar .navbar-nav > li > a.btn.btn-linkedin:active { + color: #fff; + background-color: #0976b4; +} + +.btn.btn-linkedin, +.navbar .navbar-nav > li > a.btn.btn-linkedin { + -webkit-box-shadow: 0 2px 2px 0 rgba(9, 118, 180, 0.14), 0 3px 1px -2px rgba(9, 118, 180, 0.2), 0 1px 5px 0 rgba(9, 118, 180, 0.12); + -moz-box-shadow: 0 2px 2px 0 rgba(9, 118, 180, 0.14), 0 3px 1px -2px rgba(9, 118, 180, 0.2), 0 1px 5px 0 rgba(9, 118, 180, 0.12); + box-shadow: 0 2px 2px 0 rgba(9, 118, 180, 0.14), 0 3px 1px -2px rgba(9, 118, 180, 0.2), 0 1px 5px 0 rgba(9, 118, 180, 0.12); +} +.btn.btn-linkedin:hover, .btn.btn-linkedin:focus, .btn.btn-linkedin:active, +.navbar .navbar-nav > li > a.btn.btn-linkedin:hover, +.navbar .navbar-nav > li > a.btn.btn-linkedin:focus, +.navbar .navbar-nav > li > a.btn.btn-linkedin:active { + -webkit-box-shadow: 0 14px 26px -12px rgba(9, 118, 180, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(9, 118, 180, 0.2); + -moz-box-shadow: 0 14px 26px -12px rgba(9, 118, 180, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(9, 118, 180, 0.2); + box-shadow: 0 14px 26px -12px rgba(9, 118, 180, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(9, 118, 180, 0.2); +} + +.btn.btn-linkedin.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-linkedin.btn-simple { + color: #0976b4; + background-color: transparent; +} + +.btn.btn-dribbble, .btn.btn-dribbble:hover, .btn.btn-dribbble:focus, .btn.btn-dribbble:active, +.navbar .navbar-nav > li > a.btn.btn-dribbble, +.navbar .navbar-nav > li > a.btn.btn-dribbble:hover, +.navbar .navbar-nav > li > a.btn.btn-dribbble:focus, +.navbar .navbar-nav > li > a.btn.btn-dribbble:active { + color: #fff; + background-color: #ea4c89; +} + +.btn.btn-dribbble, +.navbar .navbar-nav > li > a.btn.btn-dribbble { + -webkit-box-shadow: 0 2px 2px 0 rgba(234, 76, 137, 0.14), 0 3px 1px -2px rgba(234, 76, 137, 0.2), 0 1px 5px 0 rgba(234, 76, 137, 0.12); + -moz-box-shadow: 0 2px 2px 0 rgba(234, 76, 137, 0.14), 0 3px 1px -2px rgba(234, 76, 137, 0.2), 0 1px 5px 0 rgba(234, 76, 137, 0.12); + box-shadow: 0 2px 2px 0 rgba(234, 76, 137, 0.14), 0 3px 1px -2px rgba(234, 76, 137, 0.2), 0 1px 5px 0 rgba(234, 76, 137, 0.12); +} +.btn.btn-dribbble:hover, .btn.btn-dribbble:focus, .btn.btn-dribbble:active, +.navbar .navbar-nav > li > a.btn.btn-dribbble:hover, +.navbar .navbar-nav > li > a.btn.btn-dribbble:focus, +.navbar .navbar-nav > li > a.btn.btn-dribbble:active { + -webkit-box-shadow: 0 14px 26px -12px rgba(234, 76, 137, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(234, 76, 137, 0.2); + -moz-box-shadow: 0 14px 26px -12px rgba(234, 76, 137, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(234, 76, 137, 0.2); + box-shadow: 0 14px 26px -12px rgba(234, 76, 137, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(234, 76, 137, 0.2); +} + +.btn.btn-dribbble.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-dribbble.btn-simple { + color: #ea4c89; + background-color: transparent; +} + +.btn.btn-github, .btn.btn-github:hover, .btn.btn-github:focus, .btn.btn-github:active, +.navbar .navbar-nav > li > a.btn.btn-github, +.navbar .navbar-nav > li > a.btn.btn-github:hover, +.navbar .navbar-nav > li > a.btn.btn-github:focus, +.navbar .navbar-nav > li > a.btn.btn-github:active { + color: #fff; + background-color: #333; +} + +.btn.btn-github, +.navbar .navbar-nav > li > a.btn.btn-github { + -webkit-box-shadow: 0 2px 2px 0 rgba(51, 51, 51, 0.14), 0 3px 1px -2px rgba(51, 51, 51, 0.2), 0 1px 5px 0 rgba(51, 51, 51, 0.12); + -moz-box-shadow: 0 2px 2px 0 rgba(51, 51, 51, 0.14), 0 3px 1px -2px rgba(51, 51, 51, 0.2), 0 1px 5px 0 rgba(51, 51, 51, 0.12); + box-shadow: 0 2px 2px 0 rgba(51, 51, 51, 0.14), 0 3px 1px -2px rgba(51, 51, 51, 0.2), 0 1px 5px 0 rgba(51, 51, 51, 0.12); +} +.btn.btn-github:hover, .btn.btn-github:focus, .btn.btn-github:active, +.navbar .navbar-nav > li > a.btn.btn-github:hover, +.navbar .navbar-nav > li > a.btn.btn-github:focus, +.navbar .navbar-nav > li > a.btn.btn-github:active { + -webkit-box-shadow: 0 14px 26px -12px rgba(51, 51, 51, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(51, 51, 51, 0.2); + -moz-box-shadow: 0 14px 26px -12px rgba(51, 51, 51, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(51, 51, 51, 0.2); + box-shadow: 0 14px 26px -12px rgba(51, 51, 51, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(51, 51, 51, 0.2); +} + +.btn.btn-github.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-github.btn-simple { + color: #333; + background-color: transparent; +} + +.btn.btn-youtube, .btn.btn-youtube:hover, .btn.btn-youtube:focus, .btn.btn-youtube:active, +.navbar .navbar-nav > li > a.btn.btn-youtube, +.navbar .navbar-nav > li > a.btn.btn-youtube:hover, +.navbar .navbar-nav > li > a.btn.btn-youtube:focus, +.navbar .navbar-nav > li > a.btn.btn-youtube:active { + color: #fff; + background-color: #e52d27; +} + +.btn.btn-youtube, +.navbar .navbar-nav > li > a.btn.btn-youtube { + -webkit-box-shadow: 0 2px 2px 0 rgba(229, 45, 39, 0.14), 0 3px 1px -2px rgba(229, 45, 39, 0.2), 0 1px 5px 0 rgba(229, 45, 39, 0.12); + -moz-box-shadow: 0 2px 2px 0 rgba(229, 45, 39, 0.14), 0 3px 1px -2px rgba(229, 45, 39, 0.2), 0 1px 5px 0 rgba(229, 45, 39, 0.12); + box-shadow: 0 2px 2px 0 rgba(229, 45, 39, 0.14), 0 3px 1px -2px rgba(229, 45, 39, 0.2), 0 1px 5px 0 rgba(229, 45, 39, 0.12); +} +.btn.btn-youtube:hover, .btn.btn-youtube:focus, .btn.btn-youtube:active, +.navbar .navbar-nav > li > a.btn.btn-youtube:hover, +.navbar .navbar-nav > li > a.btn.btn-youtube:focus, +.navbar .navbar-nav > li > a.btn.btn-youtube:active { + -webkit-box-shadow: 0 14px 26px -12px rgba(229, 45, 39, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(229, 45, 39, 0.2); + -moz-box-shadow: 0 14px 26px -12px rgba(229, 45, 39, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(229, 45, 39, 0.2); + box-shadow: 0 14px 26px -12px rgba(229, 45, 39, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(229, 45, 39, 0.2); +} + +.btn.btn-youtube.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-youtube.btn-simple { + color: #e52d27; + background-color: transparent; +} + +.btn.btn-instagram, .btn.btn-instagram:hover, .btn.btn-instagram:focus, .btn.btn-instagram:active, +.navbar .navbar-nav > li > a.btn.btn-instagram, +.navbar .navbar-nav > li > a.btn.btn-instagram:hover, +.navbar .navbar-nav > li > a.btn.btn-instagram:focus, +.navbar .navbar-nav > li > a.btn.btn-instagram:active { + color: #fff; + background-color: #125688; +} + +.btn.btn-instagram, +.navbar .navbar-nav > li > a.btn.btn-instagram { + -webkit-box-shadow: 0 2px 2px 0 rgba(18, 86, 136, 0.14), 0 3px 1px -2px rgba(18, 86, 136, 0.2), 0 1px 5px 0 rgba(18, 86, 136, 0.12); + -moz-box-shadow: 0 2px 2px 0 rgba(18, 86, 136, 0.14), 0 3px 1px -2px rgba(18, 86, 136, 0.2), 0 1px 5px 0 rgba(18, 86, 136, 0.12); + box-shadow: 0 2px 2px 0 rgba(18, 86, 136, 0.14), 0 3px 1px -2px rgba(18, 86, 136, 0.2), 0 1px 5px 0 rgba(18, 86, 136, 0.12); +} +.btn.btn-instagram:hover, .btn.btn-instagram:focus, .btn.btn-instagram:active, +.navbar .navbar-nav > li > a.btn.btn-instagram:hover, +.navbar .navbar-nav > li > a.btn.btn-instagram:focus, +.navbar .navbar-nav > li > a.btn.btn-instagram:active { + -webkit-box-shadow: 0 14px 26px -12px rgba(18, 86, 136, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(18, 86, 136, 0.2); + -moz-box-shadow: 0 14px 26px -12px rgba(18, 86, 136, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(18, 86, 136, 0.2); + box-shadow: 0 14px 26px -12px rgba(18, 86, 136, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(18, 86, 136, 0.2); +} + +.btn.btn-instagram.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-instagram.btn-simple { + color: #125688; + background-color: transparent; +} + +.btn.btn-reddit, .btn.btn-reddit:hover, .btn.btn-reddit:focus, .btn.btn-reddit:active, +.navbar .navbar-nav > li > a.btn.btn-reddit, +.navbar .navbar-nav > li > a.btn.btn-reddit:hover, +.navbar .navbar-nav > li > a.btn.btn-reddit:focus, +.navbar .navbar-nav > li > a.btn.btn-reddit:active { + color: #fff; + background-color: #ff4500; +} + +.btn.btn-reddit, +.navbar .navbar-nav > li > a.btn.btn-reddit { + -webkit-box-shadow: 0 2px 2px 0 rgba(255, 69, 0, 0.14), 0 3px 1px -2px rgba(255, 69, 0, 0.2), 0 1px 5px 0 rgba(255, 69, 0, 0.12); + -moz-box-shadow: 0 2px 2px 0 rgba(255, 69, 0, 0.14), 0 3px 1px -2px rgba(255, 69, 0, 0.2), 0 1px 5px 0 rgba(255, 69, 0, 0.12); + box-shadow: 0 2px 2px 0 rgba(255, 69, 0, 0.14), 0 3px 1px -2px rgba(255, 69, 0, 0.2), 0 1px 5px 0 rgba(255, 69, 0, 0.12); +} +.btn.btn-reddit:hover, .btn.btn-reddit:focus, .btn.btn-reddit:active, +.navbar .navbar-nav > li > a.btn.btn-reddit:hover, +.navbar .navbar-nav > li > a.btn.btn-reddit:focus, +.navbar .navbar-nav > li > a.btn.btn-reddit:active { + -webkit-box-shadow: 0 14px 26px -12px rgba(255, 69, 0, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(255, 69, 0, 0.2); + -moz-box-shadow: 0 14px 26px -12px rgba(255, 69, 0, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(255, 69, 0, 0.2); + box-shadow: 0 14px 26px -12px rgba(255, 69, 0, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(255, 69, 0, 0.2); +} + +.btn.btn-reddit.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-reddit.btn-simple { + color: #ff4500; + background-color: transparent; +} + +.btn.btn-tumblr, .btn.btn-tumblr:hover, .btn.btn-tumblr:focus, .btn.btn-tumblr:active, +.navbar .navbar-nav > li > a.btn.btn-tumblr, +.navbar .navbar-nav > li > a.btn.btn-tumblr:hover, +.navbar .navbar-nav > li > a.btn.btn-tumblr:focus, +.navbar .navbar-nav > li > a.btn.btn-tumblr:active { + color: #fff; + background-color: #35465c; +} + +.btn.btn-tumblr, +.navbar .navbar-nav > li > a.btn.btn-tumblr { + -webkit-box-shadow: 0 2px 2px 0 rgba(53, 70, 92, 0.14), 0 3px 1px -2px rgba(53, 70, 92, 0.2), 0 1px 5px 0 rgba(53, 70, 92, 0.12); + -moz-box-shadow: 0 2px 2px 0 rgba(53, 70, 92, 0.14), 0 3px 1px -2px rgba(53, 70, 92, 0.2), 0 1px 5px 0 rgba(53, 70, 92, 0.12); + box-shadow: 0 2px 2px 0 rgba(53, 70, 92, 0.14), 0 3px 1px -2px rgba(53, 70, 92, 0.2), 0 1px 5px 0 rgba(53, 70, 92, 0.12); +} +.btn.btn-tumblr:hover, .btn.btn-tumblr:focus, .btn.btn-tumblr:active, +.navbar .navbar-nav > li > a.btn.btn-tumblr:hover, +.navbar .navbar-nav > li > a.btn.btn-tumblr:focus, +.navbar .navbar-nav > li > a.btn.btn-tumblr:active { + -webkit-box-shadow: 0 14px 26px -12px rgba(53, 70, 92, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(53, 70, 92, 0.2); + -moz-box-shadow: 0 14px 26px -12px rgba(53, 70, 92, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(53, 70, 92, 0.2); + box-shadow: 0 14px 26px -12px rgba(53, 70, 92, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(53, 70, 92, 0.2); +} + +.btn.btn-tumblr.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-tumblr.btn-simple { + color: #35465c; + background-color: transparent; +} + +.btn.btn-behance, .btn.btn-behance:hover, .btn.btn-behance:focus, .btn.btn-behance:active, +.navbar .navbar-nav > li > a.btn.btn-behance, +.navbar .navbar-nav > li > a.btn.btn-behance:hover, +.navbar .navbar-nav > li > a.btn.btn-behance:focus, +.navbar .navbar-nav > li > a.btn.btn-behance:active { + color: #fff; + background-color: #1769ff; +} + +.btn.btn-behance, +.navbar .navbar-nav > li > a.btn.btn-behance { + -webkit-box-shadow: 0 2px 2px 0 rgba(23, 105, 255, 0.14), 0 3px 1px -2px rgba(23, 105, 255, 0.2), 0 1px 5px 0 rgba(23, 105, 255, 0.12); + -moz-box-shadow: 0 2px 2px 0 rgba(23, 105, 255, 0.14), 0 3px 1px -2px rgba(23, 105, 255, 0.2), 0 1px 5px 0 rgba(23, 105, 255, 0.12); + box-shadow: 0 2px 2px 0 rgba(23, 105, 255, 0.14), 0 3px 1px -2px rgba(23, 105, 255, 0.2), 0 1px 5px 0 rgba(23, 105, 255, 0.12); +} +.btn.btn-behance:hover, .btn.btn-behance:focus, .btn.btn-behance:active, +.navbar .navbar-nav > li > a.btn.btn-behance:hover, +.navbar .navbar-nav > li > a.btn.btn-behance:focus, +.navbar .navbar-nav > li > a.btn.btn-behance:active { + -webkit-box-shadow: 0 14px 26px -12px rgba(23, 105, 255, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(23, 105, 255, 0.2); + -moz-box-shadow: 0 14px 26px -12px rgba(23, 105, 255, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(23, 105, 255, 0.2); + box-shadow: 0 14px 26px -12px rgba(23, 105, 255, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(23, 105, 255, 0.2); +} + +.btn.btn-behance.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-behance.btn-simple { + color: #1769ff; + background-color: transparent; +} + +.btn.btn-snapchat, .btn.btn-snapchat:hover, .btn.btn-snapchat:focus, .btn.btn-snapchat:active, +.navbar .navbar-nav > li > a.btn.btn-snapchat, +.navbar .navbar-nav > li > a.btn.btn-snapchat:hover, +.navbar .navbar-nav > li > a.btn.btn-snapchat:focus, +.navbar .navbar-nav > li > a.btn.btn-snapchat:active { + color: #fff; + background-color: #fffc00; +} + +.btn.btn-snapchat, +.navbar .navbar-nav > li > a.btn.btn-snapchat { + -webkit-box-shadow: 0 2px 2px 0 rgba(255, 252, 0, 0.14), 0 3px 1px -2px rgba(255, 252, 0, 0.2), 0 1px 5px 0 rgba(255, 252, 0, 0.12); + -moz-box-shadow: 0 2px 2px 0 rgba(255, 252, 0, 0.14), 0 3px 1px -2px rgba(255, 252, 0, 0.2), 0 1px 5px 0 rgba(255, 252, 0, 0.12); + box-shadow: 0 2px 2px 0 rgba(255, 252, 0, 0.14), 0 3px 1px -2px rgba(255, 252, 0, 0.2), 0 1px 5px 0 rgba(255, 252, 0, 0.12); +} +.btn.btn-snapchat:hover, .btn.btn-snapchat:focus, .btn.btn-snapchat:active, +.navbar .navbar-nav > li > a.btn.btn-snapchat:hover, +.navbar .navbar-nav > li > a.btn.btn-snapchat:focus, +.navbar .navbar-nav > li > a.btn.btn-snapchat:active { + -webkit-box-shadow: 0 14px 26px -12px rgba(255, 252, 0, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(255, 252, 0, 0.2); + -moz-box-shadow: 0 14px 26px -12px rgba(255, 252, 0, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(255, 252, 0, 0.2); + box-shadow: 0 14px 26px -12px rgba(255, 252, 0, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(255, 252, 0, 0.2); +} + +.btn.btn-snapchat.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-snapchat.btn-simple { + color: #fffc00; + background-color: transparent; +} + +.btn.btn-deviantart, .btn.btn-deviantart:hover, .btn.btn-deviantart:focus, .btn.btn-deviantart:active, +.navbar .navbar-nav > li > a.btn.btn-deviantart, +.navbar .navbar-nav > li > a.btn.btn-deviantart:hover, +.navbar .navbar-nav > li > a.btn.btn-deviantart:focus, +.navbar .navbar-nav > li > a.btn.btn-deviantart:active { + color: #fff; + background-color: #05cc47; +} + +.btn.btn-deviantart, +.navbar .navbar-nav > li > a.btn.btn-deviantart { + -webkit-box-shadow: 0 2px 2px 0 rgba(5, 204, 71, 0.14), 0 3px 1px -2px rgba(5, 204, 71, 0.2), 0 1px 5px 0 rgba(5, 204, 71, 0.12); + -moz-box-shadow: 0 2px 2px 0 rgba(5, 204, 71, 0.14), 0 3px 1px -2px rgba(5, 204, 71, 0.2), 0 1px 5px 0 rgba(5, 204, 71, 0.12); + box-shadow: 0 2px 2px 0 rgba(5, 204, 71, 0.14), 0 3px 1px -2px rgba(5, 204, 71, 0.2), 0 1px 5px 0 rgba(5, 204, 71, 0.12); +} +.btn.btn-deviantart:hover, .btn.btn-deviantart:focus, .btn.btn-deviantart:active, +.navbar .navbar-nav > li > a.btn.btn-deviantart:hover, +.navbar .navbar-nav > li > a.btn.btn-deviantart:focus, +.navbar .navbar-nav > li > a.btn.btn-deviantart:active { + -webkit-box-shadow: 0 14px 26px -12px rgba(5, 204, 71, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(5, 204, 71, 0.2); + -moz-box-shadow: 0 14px 26px -12px rgba(5, 204, 71, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(5, 204, 71, 0.2); + box-shadow: 0 14px 26px -12px rgba(5, 204, 71, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(5, 204, 71, 0.2); +} + +.btn.btn-deviantart.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-deviantart.btn-simple { + color: #05cc47; + background-color: transparent; +} + +.btn.btn-vimeo, .btn.btn-vimeo:hover, .btn.btn-vimeo:focus, .btn.btn-vimeo:active, +.navbar .navbar-nav > li > a.btn.btn-vimeo, +.navbar .navbar-nav > li > a.btn.btn-vimeo:hover, +.navbar .navbar-nav > li > a.btn.btn-vimeo:focus, +.navbar .navbar-nav > li > a.btn.btn-vimeo:active { + color: #fff; + background-color: #1ab7ea; +} + +.btn.btn-vimeo, +.navbar .navbar-nav > li > a.btn.btn-vimeo { + -webkit-box-shadow: 0 2px 2px 0 rgba(26, 183, 234, 0.14), 0 3px 1px -2px rgba(26, 183, 234, 0.2), 0 1px 5px 0 rgba(26, 183, 234, 0.12); + -moz-box-shadow: 0 2px 2px 0 rgba(26, 183, 234, 0.14), 0 3px 1px -2px rgba(26, 183, 234, 0.2), 0 1px 5px 0 rgba(26, 183, 234, 0.12); + box-shadow: 0 2px 2px 0 rgba(26, 183, 234, 0.14), 0 3px 1px -2px rgba(26, 183, 234, 0.2), 0 1px 5px 0 rgba(26, 183, 234, 0.12); +} +.btn.btn-vimeo:hover, .btn.btn-vimeo:focus, .btn.btn-vimeo:active, +.navbar .navbar-nav > li > a.btn.btn-vimeo:hover, +.navbar .navbar-nav > li > a.btn.btn-vimeo:focus, +.navbar .navbar-nav > li > a.btn.btn-vimeo:active { + -webkit-box-shadow: 0 14px 26px -12px rgba(26, 183, 234, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(26, 183, 234, 0.2); + -moz-box-shadow: 0 14px 26px -12px rgba(26, 183, 234, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(26, 183, 234, 0.2); + box-shadow: 0 14px 26px -12px rgba(26, 183, 234, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(26, 183, 234, 0.2); +} + +.btn.btn-vimeo.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-vimeo.btn-simple { + color: #1ab7ea; + background-color: transparent; +} + +.btn.disabled, +.btn.disabled:hover, +.btn.disabled:focus, +.btn.disabled.focus, +.btn.disabled:active, +.btn.disabled.active, +.btn:disabled, +.btn:disabled:hover, +.btn:disabled:focus, +.btn.focus:disabled, +.btn:disabled:active, +.btn.active:disabled, +.btn[disabled], +.btn[disabled]:hover, +.btn[disabled]:focus, +.btn[disabled].focus, +.btn[disabled]:active, +.btn[disabled].active, +fieldset[disabled] .btn, +fieldset[disabled] .btn:hover, +fieldset[disabled] .btn:focus, +fieldset[disabled] .btn.focus, +fieldset[disabled] .btn:active, +fieldset[disabled] .btn.active, .btn.btn-simple, +.btn.btn-default.btn-simple, .btn.btn-primary.btn-simple, .btn.btn-danger.btn-simple, .btn.btn-rose.btn-simple, .btn.btn-white.btn-simple, .navbar button.navbar-toggle, .navbar button.navbar-toggle:hover, .btn.btn-facebook.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-facebook.btn-simple, .btn.btn-twitter.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-twitter.btn-simple, .btn.btn-pinterest.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-pinterest.btn-simple, .btn.btn-google.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-google.btn-simple, .btn.btn-linkedin.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-linkedin.btn-simple, .btn.btn-dribbble.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-dribbble.btn-simple, .btn.btn-github.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-github.btn-simple, .btn.btn-youtube.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-youtube.btn-simple, .btn.btn-instagram.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-instagram.btn-simple, .btn.btn-reddit.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-reddit.btn-simple, .btn.btn-tumblr.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-tumblr.btn-simple, .btn.btn-behance.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-behance.btn-simple, .btn.btn-snapchat.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-snapchat.btn-simple, .btn.btn-deviantart.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-deviantart.btn-simple, .btn.btn-vimeo.btn-simple, +.navbar .navbar-nav > li > a.btn.btn-vimeo.btn-simple, .woocommerce.single-product .page-header .container .cart-contents-content.btn-white.btn-simple:focus, .woocommerce.single-product .page-header .container .cart-contents-content.btn-white.btn-simple:hover { + -webkit-box-shadow: none; + -moz-box-shadow: none; + box-shadow: none; +} + +/*-------------------------------------------------------------- +## Forms +--------------------------------------------------------------*/ +legend { + margin-bottom: 20px; + font-size: 21px; +} + +output { + padding-top: 8px; + font-size: 14px; + line-height: 1.42857; +} + +.radio label, +.checkbox label { + min-height: 20px; +} + +select { + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; +} + +.label { + background-color: #fff; + border-radius: 2px; +} +.label.label-default { + background-color: #fff; +} +.label.label-primary { + background-color: #9c27b0; +} +.label.label-success { + background-color: #4caf50; +} +.label.label-danger { + background-color: #f44336; +} +.label.label-rose { + background-color: #e91e63; +} + +.form-control { + height: 36px; + padding: 7px 0; + font-size: 14px; + line-height: 1.42857; +} + +.form-control-static { + min-height: 34px; + padding-top: 8px; + padding-bottom: 8px; +} + +.form-control::-moz-placeholder, .form-control:-ms-input-placeholder, .form-control::-webkit-input-placeholder, +.form-group .form-control::-moz-placeholder, +.form-group .form-control:-ms-input-placeholder, +.form-group .form-control::-webkit-input-placeholder { + color: #aaa; + font-weight: 400; +} + +.form-control[readonly], +.form-control[disabled], +fieldset[disabled] .form-control, +.form-group .form-control[readonly], +.form-group .form-control[disabled], +fieldset[disabled] .form-group .form-control { + background-color: transparent; +} + +.form-control[disabled], +fieldset[disabled] .form-control, +.form-group .form-control[disabled], +fieldset[disabled] .form-group .form-control { + border-bottom: 1px dotted #d2d2d2; + background-image: none; +} + +.form-control { + margin-bottom: 7px; +} + +.form-control::-moz-placeholder, .form-group .form-control::-moz-placeholder, +.form-control:-ms-input-placeholder, .form-group +.form-control:-ms-input-placeholder, +.form-control::-webkit-input-placeholder, .form-group +.form-control::-webkit-input-placeholder, +.checkbox label, .form-group +.checkbox label, +.radio label, .form-group +.radio label, +label, .form-group +label { + color: #aaa; + font-size: 14px; + font-weight: 400; + line-height: 1.42857; +} + +label.control-label { + margin: 16px 0 0; + color: #aaa; + font-size: 11px; + font-weight: 400; + line-height: 1.07143; +} + +.help-block { + margin-top: 0; + font-size: 11px; +} + +.form-group { + padding-bottom: 7px; + position: relative; +} +.form-group .form-control { + margin-bottom: 7px; +} +.form-group label.control-label { + margin: 16px 0 0; + color: #aaa; + font-size: 11px; + font-weight: 400; + line-height: 1.07143; +} +.form-group input[type=file] { + position: relative; + z-index: 100; + top: 0; + right: 0; + bottom: 0; + left: 0; + width: 100%; + height: 100%; + opacity: 1; +} +.form-group textarea { + resize: none; +} +.form-group textarea ~ .form-control-highlight { + margin-top: -11px; +} +.form-group .help-block { + margin-top: 0; + font-size: 11px; + display: none; + position: absolute; +} +.form-group.label-static label.control-label, .form-group.label-placeholder label.control-label, .form-group.label-floating label.control-label { + position: absolute; + pointer-events: none; +} +.form-group.label-floating label.control-label { + will-change: left,top,contents; +} +.form-group.label-placeholder:not(.is-empty) label.control-label { + display: none; +} +.form-group.label-floating label.control-label, .form-group.label-placeholder label.control-label { + top: -7px; + font-size: 14px; + line-height: 1.42857; +} +.form-group.label-static label.control-label, .form-group.label-floating.is-focused label.control-label, .form-group.label-floating:not(.is-empty) label.control-label { + top: -28px; + left: 0; + font-size: 11px; + line-height: 1.07143; +} +.form-group.is-focused .form-control .material-input:after { + background-color: #9c27b0; +} +.form-group.is-focused.label-placeholder label, .form-group.is-focused.label-placeholder label.control-label { + color: #aaa; +} +.form-group.is-focused select.form-control { + border-color: #d2d2d2; +} +.form-group.has-warning.is-focused .form-control { + background-image: -webkit-gradient(linear, left top, left bottom, from(#ff9800), to(#ff9800)), -webkit-gradient(linear, left top, left bottom, from(#d2d2d2), to(#d2d2d2)); + background-image: -webkit-linear-gradient(#ff9800, #ff9800), -webkit-linear-gradient(#d2d2d2, #d2d2d2); + background-image: linear-gradient(#ff9800, #ff9800), linear-gradient(#d2d2d2, #d2d2d2); +} +.form-group.has-warning label.control-label { + color: #ff9800; +} +.form-group.has-error.is-focused .form-control { + background-image: -webkit-gradient(linear, left top, left bottom, from(#f44336), to(#f44336)), -webkit-gradient(linear, left top, left bottom, from(#d2d2d2), to(#d2d2d2)); + background-image: -webkit-linear-gradient(#f44336, #f44336), -webkit-linear-gradient(#d2d2d2, #d2d2d2); + background-image: linear-gradient(#f44336, #f44336), linear-gradient(#d2d2d2, #d2d2d2); +} +.form-group.has-error label.control-label { + color: #f44336; +} +.form-group.has-success.is-focused .form-control { + background-image: -webkit-gradient(linear, left top, left bottom, from(#4caf50), to(#4caf50)), -webkit-gradient(linear, left top, left bottom, from(#d2d2d2), to(#d2d2d2)); + background-image: -webkit-linear-gradient(#4caf50, #4caf50), -webkit-linear-gradient(#d2d2d2, #d2d2d2); + background-image: linear-gradient(#4caf50, #4caf50), linear-gradient(#d2d2d2, #d2d2d2); +} +.form-group.has-success label.control-label { + color: #4caf50; +} +.form-group.has-info.is-focused .form-control { + background-image: -webkit-gradient(linear, left top, left bottom, from(#00bcd4), to(#00bcd4)), -webkit-gradient(linear, left top, left bottom, from(#d2d2d2), to(#d2d2d2)); + background-image: -webkit-linear-gradient(#00bcd4, #00bcd4), -webkit-linear-gradient(#d2d2d2, #d2d2d2); + background-image: linear-gradient(#00bcd4, #00bcd4), linear-gradient(#d2d2d2, #d2d2d2); +} +.form-group.has-info label.control-label, .form-group.has-info .help-block { + color: #00bcd4; +} + +select.form-control { + border: 0; + border-radius: 0; +} +select.form-control[multiple], +select .form-group.is-focused select.form-control[multiple] { + height: 85px; +} + +.input-group-btn .btn { + margin: 0 0 7px; +} + +.input-group .input-group-btn { + padding: 0 12px; +} +.input-group .input-group-addon { + padding: 6px 15px 0; + border: 0; + background: transparent; +} + +.form-control-feedback { + opacity: 0; +} +.has-success .form-control-feedback { + opacity: 1; + color: #4caf50; +} +.has-error .form-control-feedback { + opacity: 1; + color: #f44336; +} + +.searchform label, +.search-form label { + display: table-cell; + vertical-align: top; + padding-right: 25px; + width: 100%; +} + +.searchform, +.search-form, +.woocommerce-product-search { + display: table; + position: relative; +} +.searchform input[type=submit], +.search-form input[type=submit], +.woocommerce-product-search input[type=submit] { + display: table-cell; + vertical-align: top; + padding-left: 0; + padding-right: 0; + text-align: center; + text-indent: -9999px; + top: -19px; + width: 45px; +} +.searchform input[type=search], +.search-form input[type=search], +.woocommerce-product-search input[type=search] { + height: 36px; +} +.searchform:after, +.search-form:after, +.woocommerce-product-search:after { + color: #fff; + content: "\f002"; + font-family: 'Fontawesome'; + font-size: 18px; + pointer-events: none; + position: absolute; + right: 15px; + top: 4px; +} + +.form-control, +.form-group .form-control, +.woocommerce form .form-row input.input-text, +.woocommerce form .form-row textarea, .woocommerce div.product form.cart .variations select, .woocommerce .woocommerce-ordering select, .woocommerce-cart .shop_table .actions .coupon .input-text, .woocommerce-checkout #customer_details select, +.woocommerce-checkout #order_review select, +.woocommerce-checkout .woocomerce-form select { + background-image: -webkit-gradient(linear, left top, left bottom, from(#9c27b0), to(#9c27b0)), -webkit-gradient(linear, left top, left bottom, from(#d2d2d2), to(#d2d2d2)); + background-image: -webkit-linear-gradient(#9c27b0, #9c27b0), -webkit-linear-gradient(#d2d2d2, #d2d2d2); + background-image: linear-gradient(#9c27b0, #9c27b0), linear-gradient(#d2d2d2, #d2d2d2); + float: none; + border: 0; + border-radius: 0; + background-color: transparent; + background-repeat: no-repeat; + background-position: center bottom, center -webkit-calc(100% - 1px); + background-position: center bottom, center calc(100% - 1px); + background-size: 0 2px, 100% 1px; + font-weight: 400; + -webkit-transition: background 0s ease-out; + transition: background 0s ease-out; +} + +.form-group.is-focused .form-control { + background-image: -webkit-gradient(linear, left top, left bottom, from(#9c27b0), to(#9c27b0)), -webkit-gradient(linear, left top, left bottom, from(#d2d2d2), to(#d2d2d2)); + background-image: -webkit-linear-gradient(#9c27b0, #9c27b0), -webkit-linear-gradient(#d2d2d2, #d2d2d2); + background-image: linear-gradient(#9c27b0, #9c27b0), linear-gradient(#d2d2d2, #d2d2d2); + outline: none; + background-size: 100% 2px,100% 1px; + -webkit-transition-duration: 0.3s; + transition-duration: 0.3s; +} + +.form-group.is-focused select.form-control, .form-group.has-warning .form-control, .form-group.has-error .form-control, .form-group.has-success .form-control, .form-group.has-info .form-control, select.form-control, .form-control, +.form-group .form-control, +.woocommerce form .form-row input.input-text, +.woocommerce form .form-row textarea, .woocommerce div.product form.cart .variations select, .woocommerce .woocommerce-ordering select, .woocommerce-cart .shop_table .actions .coupon .input-text, .woocommerce-checkout #customer_details select, +.woocommerce-checkout #order_review select, +.woocommerce-checkout .woocomerce-form select, .form-group.is-focused .form-control { + -webkit-box-shadow: none; + -moz-box-shadow: none; + box-shadow: none; +} + +/*-------------------------------------------------------------- +## Navigation +--------------------------------------------------------------*/ +body:not(.home) .navbar-default .navbar-nav > .active > a, body:not(.home) .navbar-default .navbar-nav > .active > a:hover, body:not(.home) .navbar-default .navbar-nav > .active > a:focus { + background: transparent; +} + +.navbar { + border: 0; + padding: 0; + border-radius: 3px; + -webkit-box-shadow: 0 10px 20px -12px rgba(0, 0, 0, 0.42), 0 3px 20px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2); + box-shadow: 0 10px 20px -12px rgba(0, 0, 0, 0.42), 0 3px 20px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2); +} +.navbar > .container { + transition: padding .3s ease; + padding-top: 10px; + padding-bottom: 10px; +} +.navbar > .container .navbar-brand { + margin-left: 0; +} +.navbar.navbar-default .navbar-nav > .btn.open > a, .navbar.navbar-default .navbar-nav > .btn.active > a, .navbar.navbar-default .navbar-nav > .btn > a { + color: #fff; + background: transparent; +} +.navbar.navbar-not-transparent .navbar-nav > .active:not(.btn) > a, .navbar.navbar-not-transparent .navbar-nav > .active:not(.btn) > a:hover, .navbar.navbar-not-transparent .navbar-nav > .active:not(.btn) > a:focus { + background: transparent; +} +.navbar.navbar-transparent .navbar-nav > .active > a, .navbar.navbar-transparent .navbar-nav > .active > a:hover, .navbar.navbar-transparent .navbar-nav > .active > a:focus { + background: transparent; + color: #fff; +} +.navbar .navbar-right { + margin-right: 0; +} +.navbar .navbar-nav > li { + margin: 0; +} +.navbar .navbar-nav > li > a { + padding-top: 15px; + padding-bottom: 15px; + border-radius: 3px; + color: inherit; + font-size: 12px; + font-weight: 400; + text-transform: uppercase; +} +.navbar .navbar-nav > li > a:hover, .navbar .navbar-nav > li > a:focus { + color: inherit; +} +.navbar .navbar-nav > li > a:hover:before, .navbar .navbar-nav > li > a:focus:before { + color: inherit; + -webkit-transform: scaleX(1); + -ms-transform: scaleX(1); + transform: scaleX(1); +} +.navbar .navbar-nav > li > a .fa { + max-width: 20px; + font-size: 20px; +} +.navbar .navbar-nav > li > a:not(.btn-just-icon) .fa { + position: relative; + top: 2px; + margin-top: -4px; + margin-right: 4px; +} +.navbar .navbar-nav > li > a:not(.btn) .fa { + position: relative; + top: 0; + margin-top: -3px; + margin-right: 3px; +} +.navbar .navbar-nav > li .dropdown-menu { + margin-top: -5px; +} +.navbar .navbar-nav > li.btn { + padding: 0 10px; +} +.navbar .navbar-nav > li.btn a:hover:before, .navbar .navbar-nav > li.btn a:focus:before { + -webkit-transform: scaleX(0); + -ms-transform: scaleX(0); + transform: scaleX(0); +} +.navbar .navbar-nav > li:hover > .dropdown-menu { + margin-top: 0; +} +.navbar .navbar-nav > li:not(.btn) > a:before { + position: absolute; + z-index: -1; + top: 0; + right: 0; + bottom: 0; + left: 0; + border-radius: 3px; + background-color: rgba(255, 255, 255, 0.1); + content: ""; + -webkit-transition: all 300ms cubic-bezier(0.34, 0.9, 0.7, 1); + -moz-transition: all 300ms cubic-bezier(0.34, 0.9, 0.7, 1); + -o-transition: all 300ms cubic-bezier(0.34, 0.9, 0.7, 1); + -ms-transition: all 300ms cubic-bezier(0.34, 0.9, 0.7, 1); + transition: all 300ms cubic-bezier(0.34, 0.9, 0.7, 1); + -webkit-transform: scaleX(0); + -ms-transform: scaleX(0); + transform: scaleX(0); + -webkit-transform-origin: 50%; + -ms-transform-origin: 50%; + transform-origin: 50%; +} +.navbar .navbar-nav > li:not(.btn):hover a:before { + color: inherit; + -webkit-transform: scaleX(1); + -ms-transform: scaleX(1); + transform: scaleX(1); +} +.navbar:not(.hestia_center) .title-logo-wrapper { + max-width: 250px; +} +.navbar .navbar-brand { + padding: 0; + position: relative; + color: inherit; + line-height: 30px; + height: auto; +} +.navbar .navbar-brand img { + max-height: 50px; +} +.navbar .navbar-brand p { + font-size: 18px; + margin-bottom: 0; +} +.navbar .navbar-brand:hover, .navbar .navbar-brand:focus { + color: inherit; + background-color: transparent; +} +.navbar .navbar-toggle { + float: right; + border: 0; +} +.navbar .navbar-toggle:hover, .navbar .navbar-toggle:focus { + background-color: transparent; +} +.navbar .navbar-toggle .icon-bar { + border: 1px solid; +} +.navbar .navbar-header { + float: left; +} +.navbar .navbar-collapse { + border-top: none; +} +.navbar .btn { + margin-top: 0; + margin-bottom: 0; + will-change: initial; +} +.navbar.navbar-transparent { + color: #fff; + background-color: transparent; + -webkit-box-shadow: none; + box-shadow: none; +} +.navbar.navbar-transparent .navbar-nav > .active > a { + background: transparent; + color: #fff; +} +.navbar.navbar-transparent > .container { + padding-top: 25px; +} + +.navbar { + color: #555; + background-color: #fff; + -webkit-transition: all 150ms ease 0s; + transition: all 150ms ease 0s; +} +.navbar .dropdown-menu { + border: 0; + -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26); + box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26); + border-radius: 3px !important; +} +.navbar .dropdown-menu > .active > a { + color: #555; + background-color: transparent; +} +.navbar .dropdown-menu li { + position: relative; +} +.navbar .dropdown-menu li:hover > a { + background-color: #9c27b0; + -webkit-box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2); + box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2); +} +.navbar .dropdown-menu li:hover > a i { + color: #fff; +} +.navbar .dropdown-menu li > a { + color: #555; + background-color: transparent; + margin: 0 5px; + padding: 12px 20px 12px 12px; + border-radius: 2px; + font-size: 13px; + -webkit-transition: all 150ms linear; + transition: all 150ms linear; +} +.navbar .dropdown-menu li > a > i { + position: relative; + top: 1px; + min-width: 30px; + margin-right: 12px; + color: #333; + opacity: .5; + font-size: 24px; + text-align: center; +} +.navbar .dropdown-menu li > a .fa { + position: relative; + top: 1px; + margin-top: -4px; + margin-right: 12px; + font-size: 20px; + vertical-align: middle; +} +.navbar .dropdown-menu li:hover > a { + color: #fff; +} + +.navbar-fixed-top { + border-radius: 0; +} + +.dropdown-submenu { + position: relative; +} +.dropdown-submenu > .dropdown-menu { + display: none !important; + top: 0; + left: 100%; + margin-top: -6px; + margin-left: -1px; +} +.dropdown-submenu:hover > .dropdown-menu { + display: block !important; +} +.dropdown-submenu:hover > .dropdown-toggle .caret { + border-left: 4px dashed; + border-top: 4px solid transparent; + border-bottom: 4px solid transparent; +} + +.navbar.hestia_center { + float: none !important; +} +.navbar.hestia_center .navbar-collapse { + text-align: center; +} +.navbar.hestia_center .navbar-header { + display: block !important; + text-align: center; + padding-bottom: 10px; + width: 100%; + max-width: 100%; +} +.navbar.hestia_center .navbar-brand { + float: none; +} +.navbar.hestia_center .navbar-brand > img { + display: inherit; +} + +.navbar-toggle .icon-bar { + transition: .3s ease; + position: relative; +} +.navbar-toggle[aria-expanded="true"] .icon-bar:nth-child(1) { + -webkit-transform: rotate(45deg); + -moz-transform: rotate(45deg); + -o-transform: rotate(45deg); + transform: rotate(45deg); + top: 6px; +} +.navbar-toggle[aria-expanded="true"] .icon-bar:nth-child(2) { + width: 0; + opacity: 0; +} +.navbar-toggle[aria-expanded="true"] .icon-bar:nth-child(3) { + -webkit-transform: rotate(-45deg); + -moz-transform: rotate(-45deg); + -o-transform: rotate(-45deg); + transform: rotate(-45deg); + top: -6px; +} +.navbar-toggle[aria-expanded="false"] .icon-bar:nth-child(1) { + top: 0; + -webkit-transform-origin: left center; + -moz-transform-origin: left center; + -o-transform-origin: left center; + transform-origin: left center; +} +.navbar-toggle[aria-expanded="false"] .icon-bar:nth-child(2) { + top: 0; + -webkit-transform-origin: left center; + -moz-transform-origin: left center; + -o-transform-origin: left center; + transform-origin: left center; +} +.navbar-toggle[aria-expanded="false"] .icon-bar:nth-child(3) { + top: 0; + -webkit-transform-origin: left center; + -moz-transform-origin: left center; + -o-transform-origin: left center; + transform-origin: left center; +} + +/*-------------------------------------------------------------- +## Navbar Widgets +--------------------------------------------------------------*/ +.hestia_right .blog-sidebar-wrapper, .hestia_right .header-sidebar-wrapper { + float: none; + display: table-cell; + width: 100%; + vertical-align: middle; +} +.hestia_right .blog-sidebar-wrapper .header-widgets-wrapper, .hestia_right .header-sidebar-wrapper .header-widgets-wrapper { + position: relative; + float: right; +} +.hestia_right .blog-sidebar-wrapper .header-widgets-wrapper .widget, .hestia_right .header-sidebar-wrapper .header-widgets-wrapper .widget { + vertical-align: middle; + display: inline-block; +} + +.header-widgets-wrapper .widget { + margin: 0 10px 0 0; +} +.header-widgets-wrapper .widget:last-of-type { + margin-right: 0; +} +.header-widgets-wrapper .widget, +.header-widgets-wrapper .widget h5, +.header-widgets-wrapper .widget .textwidget { + display: inline-block; + line-height: inherit; +} +.header-widgets-wrapper .widget h5 { + margin: 0 5px 0 0; +} +.header-widgets-wrapper .widget .btn { + padding: 3px 10px; +} +.header-widgets-wrapper .widget .btn a { + color: #fff; +} +.header-widgets-wrapper .widget.widget_nav_menu h5, .header-widgets-wrapper .widget.widget_categories h5, .header-widgets-wrapper .widget.widget_product_categories h5, .header-widgets-wrapper .widget.widget_search h5, .header-widgets-wrapper .widget.widget_product_search h5, .header-widgets-wrapper .widget.widget_meta h5 { + display: none; +} +.header-widgets-wrapper .widget.widget_nav_menu input[type=submit], .header-widgets-wrapper .widget.widget_categories input[type=submit], .header-widgets-wrapper .widget.widget_product_categories input[type=submit], .header-widgets-wrapper .widget.widget_search input[type=submit], .header-widgets-wrapper .widget.widget_product_search input[type=submit], .header-widgets-wrapper .widget.widget_meta input[type=submit] { + opacity: 0; + left: -15px; +} +.header-widgets-wrapper .widget .searchform:after, +.header-widgets-wrapper .widget .search-form:after, +.header-widgets-wrapper .widget .woocommerce-product-search:after { + right: 30px; +} +.header-widgets-wrapper .widget.widget_product_search form, .header-widgets-wrapper .widget.widget_search form { + top: 15px; +} +.header-widgets-wrapper .widget.widget_product_search form:after, .header-widgets-wrapper .widget.widget_search form:after { + color: #333; +} +.header-widgets-wrapper .widget.widget_product_search form .control-label, .header-widgets-wrapper .widget.widget_search form .control-label { + color: #333; +} +.header-widgets-wrapper .widget.widget_shopping_cart { + margin-top: 7px; + cursor: pointer; + position: relative; +} +.header-widgets-wrapper .widget.widget_shopping_cart .button.checkout { + display: none; +} +.header-widgets-wrapper .widget.widget_shopping_cart .wc-forward:not(.checkout) { + opacity: 0; + position: absolute; + top: -5px; + left: -4px; +} +.header-widgets-wrapper .widget.widget_shopping_cart:before { + color: #333; + content: "\f07a"; + font-family: 'Fontawesome'; + font-size: 18px; + margin-right: 5px; +} +.header-widgets-wrapper .widget.widget_shopping_cart:hover .cart_list { + opacity: 1; + display: block; + visibility: visible; + margin-top: 10px; +} +.header-widgets-wrapper .widget.widget_shopping_cart h5 { + display: none; +} +.header-widgets-wrapper .widget.widget_shopping_cart .widget_shopping_cart_content { + display: inline-block; +} +.header-widgets-wrapper .widget.widget_shopping_cart .cart_list { + margin-top: 0; + display: block; + visibility: hidden; + transition: all .3s ease; + opacity: 0; + padding: 0 15px 15px; + position: absolute; + left: 0; + top: 15px; + z-index: 10; + border: 0; + -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26); + box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26); + border-radius: 3px !important; + background: #fff; +} +.header-widgets-wrapper .widget.widget_shopping_cart .cart_list li { + color: #333; + display: block; + margin-top: 15px; + padding-bottom: 0; + white-space: nowrap; +} +.header-widgets-wrapper .widget.widget_shopping_cart .cart_list li a:not(.remove) { + color: #333; + margin: 0; + padding-right: 65px; + text-align: left; +} +.header-widgets-wrapper .widget.widget_shopping_cart .cart_list li img { + float: left; + width: 50px; + margin-left: 0; + margin-right: 15px; +} +.header-widgets-wrapper .widget.widget_shopping_cart .cart_list li .quantity { + float: left; +} +.header-widgets-wrapper .widget.widget_shopping_cart .cart_list li .variation { + display: none; +} +.header-widgets-wrapper .widget.widget_shopping_cart .cart_list li.empty { + font-size: inherit; + line-height: 1.2; + padding: 0; +} +.header-widgets-wrapper .widget.widget_shopping_cart .total { + border: none; + margin: 0; + padding: 0; +} +.header-widgets-wrapper .widget.widget_shopping_cart .total strong { + display: none; +} +.header-widgets-wrapper .widget.widget_shopping_cart .total .amount { + float: none; +} +.header-widgets-wrapper ul { + line-height: inherit; +} +.header-widgets-wrapper ul li { + cursor: auto; + display: inline-block; + margin: 0 5px; +} +.header-widgets-wrapper ul li:first-child { + margin-left: 0; +} +.header-widgets-wrapper ul li:last-child { + margin-right: 0; +} +.header-widgets-wrapper ul li a { + font-size: inherit; + line-height: inherit; + padding: 0; + text-transform: inherit; +} +.header-widgets-wrapper ul li a:before { + background-color: transparent; + position: static; + font-family: 'FontAwesome'; + font-size: 16px; +} +.header-widgets-wrapper ul li a:hover, .header-widgets-wrapper ul li a:focus { + background-color: transparent; + outline: none; +} +.header-widgets-wrapper ul li a[href*="tel:"]:before, +.header-widgets-wrapper ul li a[href*="mailto:"]:before { + margin-right: 7px; +} +.header-widgets-wrapper ul li a[href*="tel:"]:before { + content: '\f095'; +} +.header-widgets-wrapper ul li a[href*="mailto:"]:before { + content: '\f0e0'; +} +.header-widgets-wrapper ul li.dropdown .caret { + display: none; +} + +.navbar-transparent .widget a { + color: #fff; +} +.navbar-transparent .widget .btn:hover a { + color: #fff; +} +.navbar-transparent .widget.widget_shopping_cart:before { + color: #fff; +} +.navbar-transparent .widget.widget_search form:after, .navbar-transparent .widget.widget_search form.form-group:before, .navbar-transparent .widget.widget_search form .control-label, .navbar-transparent .widget.widget_product_search form:after, .navbar-transparent .widget.widget_product_search form.form-group:before, .navbar-transparent .widget.widget_product_search form .control-label { + color: #fff; +} + +/*-------------------------------------------------------------- +## Pagination +--------------------------------------------------------------*/ +.pagination { + width: 100%; + text-align: center; +} +.pagination > li > a { + border: 0; +} +.pagination a, .pagination span { + min-width: 30px; + height: 30px; + margin: 0 3px; + padding: 0 11px; + border-radius: 30px !important; + color: #999999; + background: transparent; + font-size: 12px; + font-weight: 400; + line-height: 30px; + text-transform: uppercase; + display: inline-block; +} +.pagination a:hover, .pagination a:focus { + color: #999999; + background-color: #eee; +} +.pagination span:not(.dots):hover, .pagination span:not(.dots):focus { + color: #999999; + background-color: #eee; +} +.pagination span.current, .pagination span.current:focus, .pagination span.current:hover { + border-color: #9c27b0; + color: #fff; + background-color: #9c27b0; + -webkit-box-shadow: 0 4px 5px 0 rgba(156, 39, 176, 0.14), 0 1px 10px 0 rgba(156, 39, 176, 0.12), 0 2px 4px -1px rgba(156, 39, 176, 0.2); + box-shadow: 0 4px 5px 0 rgba(156, 39, 176, 0.14), 0 1px 10px 0 rgba(156, 39, 176, 0.12), 0 2px 4px -1px rgba(156, 39, 176, 0.2); +} +.pagination .next.page-numbers:after { + content: " \00bb"; +} +.pagination .prev.page-numbers:before { + content: "\00ab "; +} + +.label { + padding: 5px 12px; + border-radius: 12px; + font-size: 10px; + text-transform: uppercase; +} +.label.label-default { + background-color: #999999; +} + +/*-------------------------------------------------------------- +# Cards styling +--------------------------------------------------------------*/ +.card { + display: inline-block; + position: relative; + width: 100%; + margin-bottom: 30px; + border-radius: 6px; + color: rgba(0, 0, 0, 0.87); + background: #fff; + -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12); + -moz-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12); + box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12); +} +.card .card-image { + overflow: hidden; + position: relative; + height: 60%; + margin-top: -30px; + margin-right: 15px; + margin-left: 15px; + border-radius: 6px; + -webkit-transition: all 300ms cubic-bezier(0.34, 1.61, 0.7, 1); + -moz-transition: all 300ms cubic-bezier(0.34, 1.61, 0.7, 1); + -o-transition: all 300ms cubic-bezier(0.34, 1.61, 0.7, 1); + -ms-transition: all 300ms cubic-bezier(0.34, 1.61, 0.7, 1); + transition: all 300ms cubic-bezier(0.34, 1.61, 0.7, 1); + -webkit-transform: translate(0, 0); + -ms-transform: translate(0, 0); + transform: translate(0, 0); +} +.card .card-image img { + float: left; + width: 100%; + height: 100%; + /* WooCommerce fix */ + margin: 0 !important; + border-radius: 6px; +} +.card .category:not([class*="text-"]) { + color: #999999; +} +.card .content { + padding: 15px 30px; +} +.card .header { + margin: 15px; + padding: 15px 0; + border-radius: 3px; + background-color: #fff; +} +.card .header-primary, +.card .content-primary { + background: -webkit-linear-gradient(30deg, #ab47bc, #7b1fa2); + background: linear-gradient(60deg, #ab47bc, #7b1fa2); +} +.card [class*="header-"], +.card [class*="content-"], +.card [class*="header-"] .card-title a, +.card [class*="header-"] .card-title, +.card [class*="header-"] .icon i, +.card [class*="content-"] .card-title a, +.card [class*="content-"] .card-title, +.card [class*="content-"] .icon i, +.card [class*="header-"] .author a:hover, +.card [class*="header-"] .author a:focus, +.card [class*="header-"] .author a:active, +.card [class*="content-"] .author a:hover, +.card [class*="content-"] .author a:focus, +.card [class*="content-"] .author a:active { + color: #fff; +} +.card [class*="header-"] .icon i, +.card [class*="content-"] .icon i { + border-color: rgba(255, 255, 255, 0.25); +} +.card [class*="header-"] .author a, +.card [class*="header-"] .footer .stats, +.card [class*="header-"] .category, +.card [class*="header-"] .card-description, +.card [class*="content-"] .author a, +.card [class*="content-"] .footer .stats, +.card [class*="content-"] .category, +.card [class*="content-"] .card-description, +.card [class*="content-"] h1 small, +.card [class*="content-"] h2 small, +.card [class*="content-"] h3 small { + color: rgba(255, 255, 255, 0.8); +} +.card [class*="content-"] { + border-radius: 6px; +} +.card img { + width: 100%; + height: auto; +} +.card .category .fa { + position: relative; + top: 6px; + line-height: 0; +} +.card .author .avatar { + overflow: hidden; + width: 30px; + height: 30px; + margin-right: 5px; + border-radius: 50%; +} +.card .author a { + color: #3C4858; + text-decoration: none; +} +.card .author .date { + display: none; +} +.card .footer { + margin-top: 15px; +} +.card .footer div { + /* WooCommerce fix */ + display: inline-block !important; +} +.card .footer .author, +.card .footer .stats { + color: #999999; +} +.card .footer .stats { + float: right; + line-height: 30px; +} +.card .footer .stats .fa { + position: relative; + top: 4px; + font-size: 18px; +} +.card .checkbox { + margin-top: 16px; +} + +.card-contact .header { + margin-top: -20px; + padding: 15px 10px; +} + +.card-plain { + background: transparent; + -webkit-box-shadow: none; + -moz-box-shadow: none; + box-shadow: none; +} +.card-plain .content { + padding-right: 5px; + padding-left: 5px; +} +.card-plain .card-image { + margin: 0; + border-radius: 3px; +} +.card-plain .card-image a { + display: block; +} +.card-plain .card-image img { + border-radius: 3px; +} + +.card-form-horizontal .content { + padding-right: 15px; + padding-left: 15px; +} +.card-form-horizontal .form-group { + margin: 3px 0 0; + padding-bottom: 0; +} +.card-form-horizontal .form-group .form-control { + margin-bottom: 0; +} +.card-form-horizontal .btn { + margin: 0; +} +.card-form-horizontal .input-group .input-group-addon { + padding-left: 0; +} + +.card-profile { + margin-top: 30px; + text-align: center; +} +.card-profile .card-avatar { + overflow: hidden; + max-width: 130px; + max-height: 130px; + margin: -50px auto 0; + border-radius: 50%; +} +.card-profile.card-plain .card-avatar { + margin-top: 0; +} + +.card-testimonial { + margin-top: 30px; + text-align: center; +} +.card-testimonial .card-avatar { + max-width: 100px; + max-height: 100px; + margin: 30px auto 0; +} +.card-testimonial .card-avatar img { + overflow: hidden; + max-width: 130px; + max-height: 130px; + margin: -50px auto 0; + border-radius: 50%; +} +.card-testimonial .card-avatar + .content { + margin-top: 15px; +} + +.card-blog { + margin-top: 30px; +} +.card-blog.sticky { + padding: 20px; +} +.card-blog.sticky .card-image { + margin-left: 0; + margin-right: 0; +} +.card-blog .row .category { + margin-bottom: 0; +} +.card-blog .row .category a { + color: #00bcd4; +} +.card-blog .card-title { + margin-top: 5px; + font-size: 18.2px; + line-height: 25.48px; +} +.card-blog a.moretag, +.card-blog a.more-link { + display: inline-block; + margin-left: 5px; + color: #23527c; +} +.card-blog a.moretag:hover, +.card-blog a.more-link:hover { + color: #89229b; +} + +.card-pricing { + text-align: center; +} +.card-pricing .card-title { + margin-top: 30px; + font-size: 60px; +} +.card-pricing .content { + padding: 15px !important; +} +.card-pricing small { + font-size: 18px; +} +.card-pricing small:first-child { + position: relative; + top: -17px; + font-size: 26px; +} +.card-pricing ul { + max-width: 240px; + margin: 10px auto; + padding: 0; + list-style: none; +} +.card-pricing ul li { + padding: 12px 0; + border-bottom: 1px solid rgba(153, 153, 153, 0.3); + color: #999999; + text-align: center; +} +.card-pricing ul li:last-child { + border: 0; +} +.card-pricing ul li b { + color: #3C4858; +} + +.card-background { + background-position: center center; + background-size: cover; + text-align: center; +} +.card-background .content { + position: relative; + z-index: 2; + max-width: 440px; + min-height: 280px; + margin: 0 auto; + padding-top: 40px; + padding-bottom: 40px; +} +.card-background .card-title { + margin-top: 10px; + color: #fff; +} +.card-background:after { + display: block; + position: absolute; + z-index: 1; + top: 0; + left: 0; + width: 100%; + height: 100%; + border-radius: 6px; + opacity: 0; + background-color: rgba(0, 0, 0, 0.56); + content: ""; +} +.card-background:hover:after { + opacity: 1; +} + +.card-product { + margin-top: 30px; +} +.card-product .btn-simple.btn-just-icon { + padding: 0; +} +.card-product .footer { + display: table; + margin-top: 5px; + width: 100%; +} +.card-product .footer .price { + display: table-cell !important; + vertical-align: top; +} +.card-product .footer .price h4 { + color: #3C4858; + line-height: 1.2; + margin-bottom: 0; +} +.card-product .footer .stats { + display: table-cell !important; + padding-left: 10px; + vertical-align: bottom; + float: none; + text-align: right; +} +.card-product .footer .stats a { + margin: 10px 0 !important; +} +.card-product .footer .stats .fa { + top: 0; + margin-bottom: 2px; +} +.card-product .card-title, +.card-product .category, +.card-product .card-description { + text-align: center; +} +.card-product .category { + font-size: 13px; +} + +.img-thumbnail { + border-radius: 16px; +} + +.iframe-container iframe { + width: 100%; +} + +.card .card-image, .card .header, .card-profile .card-avatar, .card-testimonial .card-avatar img, .card-raised, .img-raised, .iframe-container iframe { + -webkit-box-shadow: 0 16px 38px -12px rgba(0, 0, 0, 0.56), 0 4px 25px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2); + -moz-box-shadow: 0 16px 38px -12px rgba(0, 0, 0, 0.56), 0 4px 25px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2); + box-shadow: 0 16px 38px -12px rgba(0, 0, 0, 0.56), 0 4px 25px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2); +} + +/*-------------------------------------------------------------- +# Tables +--------------------------------------------------------------*/ +table { + width: 100%; +} +table > thead > tr > th { + font-size: 21px; + font-weight: 300; + padding: 12px 8px; + vertical-align: middle; +} +table > tbody > tr > th, +table > tfoot > tr > th, +table > thead > tr > td, +table > tbody > tr > td, +table > tfoot > tr > td { + padding: 12px 8px; + vertical-align: middle; +} +table > tbody > tr { + position: relative; + border-bottom: 1px solid #eee; +} +table > tbody > tr:last-child { + border-bottom: 0; +} + +/*-------------------------------------------------------------- +# Sections +--------------------------------------------------------------*/ +/*-------------------------------------------------------------- +## Slider +--------------------------------------------------------------*/ +.carousel .page-header { + z-index: -2; +} +.carousel .carousel-control.left, .carousel .carousel-control.right { + z-index: 99; + background-image: none; +} +.carousel .item { + text-align: center; +} +.carousel .carousel-control { + text-shadow: none; +} +.carousel .carousel-control.left { + /*rtl:ignore*/ + right: auto; + /*rtl:ignore*/ + left: 0; +} +.carousel .carousel-control.right { + /*rtl:ignore*/ + right: 0; +} +.carousel .carousel-control .fa { + display: inline-block; + position: absolute; + z-index: 5; + top: 50%; + bottom: 15px; + font-size: 50px; +} + +/*-------------------------------------------------------------- +## Generic +--------------------------------------------------------------*/ +.section-gray { + background: #f0f0f0; +} + +.section { + padding: 70px 0; +} + +.section-dark, .section-image { + background: #232323; + background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #585858), color-stop(100%, #232323)); + background: -webkit-radial-gradient(center, ellipse cover, #585858 0%, #232323 100%); + background: -webkit-radial-gradient(center ellipse, #585858 0%, #232323 100%); + background: radial-gradient(ellipse at center, #585858 0%, #232323 100%); + background-color: #343434; + background-size: 200% 240%; + background-size: 550% 450%; +} + +.section-dark .hestia-title, +.section-dark .title, +.section-dark .card-plain .card-title, +.section-dark .card-plain .icon i, +.section-dark .card-plain [class*="text-"], +.section-dark .card-plain ul li b, +.section-image .hestia-title, +.section-image .title, +.section-image .card-plain .card-title, +.section-image .card-plain .icon i, +.section-image .card-plain [class*="text-"], +.section-image .card-plain ul li b { + color: #fff; +} + +.section-dark .description, +.section-dark .card-plain .card-description, +.section-dark .card-plain .icon, +.section-image .description, +.section-image .card-plain .card-description, +.section-image .card-plain .icon { + color: #eaeaea; +} + +.section-dark .card-plain .category, +.section-image .card-plain .category { + color: rgba(255, 255, 255, 0.5); +} + +.section-image { + position: relative; +} +.section-image:after { + display: block; + position: absolute; + z-index: 1; + top: 0; + left: 0; + width: 100%; + height: 100%; + background-color: rgba(0, 0, 0, 0.7); + content: ""; +} +.section-image .container { + position: relative; + z-index: 2; +} + +.section, .section-image { + background-position: center center; + background-size: cover; +} + +.hestia-features, .features, .products, .hestia-work, .hestia-testimonials, .hestia-blogs, .subscribe-line { + padding: 65px 0 70px; +} + +.about, +.hestia-about { + padding: 65px 0 30px; +} + +.team, +.hestia-team { + padding: 65px 0 20px; +} + +.testimonials, +.hestia-testimonials { + padding: 65px 0 40px; +} + +.contactus { + padding: 90px 0 70px; +} + +.pricing { + padding: 100px 0 70px; +} + +/*-------------------------------------------------------------- +## About Section +--------------------------------------------------------------*/ +.hestia-about { + background-attachment: fixed; + color: #999999; + font-weight: 300; +} +.hestia-about h1, .hestia-about h2, .hestia-about h3, .hestia-about h4, .hestia-about h5 { + color: #3C4858; + text-decoration: none; + word-wrap: break-word; + font-family: "Roboto Slab", "Times New Roman", serif; + font-weight: 700; +} +.hestia-about.section-image { + color: #fefefe; +} +.hestia-about.section-image h1, .hestia-about.section-image h2, .hestia-about.section-image h3, .hestia-about.section-image h4, .hestia-about.section-image h5 { + color: #fff; +} +.hestia-about.section-image h6 { + color: rgba(255, 255, 255, 0.76); +} +.hestia-about p { + font-size: 17.5px; + line-height: 27.125px; +} +.hestia-about .customizer-hidden { + display: none; +} + +.products .shop-item { + margin-top: 30px; +} +.products .shop-item .added_to_cart { + font-size: 10px; +} + +.is-ios .hestia-about { + background-attachment: scroll; +} + +/*-------------------------------------------------------------- +## Portfolio Section +--------------------------------------------------------------*/ +.hestia-work .portfolio-item { + margin-top: 30px; +} +.hestia-work .card-background .content { + padding-bottom: 50px; + opacity: 0; +} +.hestia-work .col-md-4 .card-background .content { + padding-top: 30%; +} +.hestia-work .col-md-6 .card-background .content { + padding-top: 20%; +} +.hestia-work .card-background:hover .content { + opacity: 1; + -webkit-transition: all ease 0.5s; + transition: all ease 0.5s; +} +.hestia-work .card-background .card-title { + font-size: 20px; +} +.hestia-work .portfolio-item:nth-child(6n) .label { + background-color: #4caf50; +} +.hestia-work .portfolio-item:nth-child(6n+1) .label { + background-color: #89229b; +} +.hestia-work .portfolio-item:nth-child(6n+2) .label { + background-color: #00bcd4; +} +.hestia-work .portfolio-item:nth-child(6n+3) .label { + background-color: #f44336; +} +.hestia-work .portfolio-item:nth-child(6n+4) .label { + background-color: #ff9800; +} +.hestia-work .portfolio-item:nth-child(6n+5) .label { + background-color: #e91e63; +} + +/*-------------------------------------------------------------- +## Contact Section +--------------------------------------------------------------*/ +.contactus .content .row { + padding: 0; +} +.contactus .form-group { + margin: 0; +} +.contactus .pirate_forms_wrap .form_field_wrap { + line-height: 0; +} +.contactus .card .content { + padding: 15px; +} +.contactus .pirate_forms_wrap { + float: none; +} +.contactus .pirate_forms_wrap .btn { + margin: 10px 0 15px; +} +.contactus .contact_message_wrap { + margin-bottom: 0; +} +.contactus .contact_submit_wrap { + text-align: right; + margin-bottom: 0; + width: 100%; +} +.contactus .hestia-info, +.contactus .info { + margin: 0; + padding: 0; +} +.contactus .hestia-info, +.contactus .hestia-info p, +.contactus .hestia-info a:not(.btn), +.contactus .info, +.contactus .info p, +.contactus .info a:not(.btn) { + color: #ccc; +} +.contactus .hestia-info a:not(.btn):hover, +.contactus .info a:not(.btn):hover { + text-decoration: underline; +} +.contactus .hestia-info:first-child, +.contactus .info:first-child { + margin-top: 30px; +} +.contactus .hestia-info .info-title, +.contactus .info .info-title { + margin-top: 20px; + color: #fff; +} +.contactus .hestia-info .icon, +.contactus .info .icon { + margin-top: 14px; + color: #fff; +} +.contactus h5.description { + color: #ccc; +} +.contactus .card-contact { + margin-top: 30px; +} + +.contact_submit_wrap { + text-align: left; +} + +/*-------------------------------------------------------------- +## Features Section +--------------------------------------------------------------*/ +.hestia-features, .features { + padding: 75px 0 55px; + text-align: center; +} +.hestia-features .hestia-title, +.hestia-features .title, .features .hestia-title, +.features .title { + margin-top: 10px; +} +.hestia-features .hestia-info, +.hestia-features .info, .features .hestia-info, +.features .info { + padding: 70px 0 30px; + margin: 0 auto; +} +.hestia-features .hestia-info p, +.hestia-features .info p, .features .hestia-info p, +.features .info p { + font-size: 16px; +} + +.hestia-info, .info { + max-width: 360px; +} +.hestia-info .icon, .info .icon { + color: #999999; +} +.hestia-info .icon > i, .info .icon > i { + font-size: 61.6px; +} +.hestia-info .info-title, .info .info-title { + margin: 30px 0 15px; + color: #3C4858; +} +.hestia-info p, .info p { + color: #999999; +} + +.info-horizontal .icon { + float: left; + margin-top: 24px; + margin-right: 10px; +} +.info-horizontal .icon > i { + font-size: 36.4px; +} +.info-horizontal .description { + overflow: hidden; +} + +.icon.icon-primary { + color: #9c27b0; +} +.icon.icon-success { + color: #4caf50; +} +.icon.icon-danger { + color: #f44336; +} +.icon.icon-rose { + color: #e91e63; +} + +.single-product .hestia-features, +.single-product .features { + padding: 50px 0 0; +} +.single-product .hestia-features > div h2, +.single-product .features > div h2 { + font-size: 25.55px; +} +.single-product .hestia-features > div h5, +.single-product .features > div h5 { + font-size: 16px; +} +.single-product .hestia-features .hestia-info > p, .single-product .hestia-features .info > p, +.single-product .features .hestia-info > p, +.single-product .features .info > p { + margin-bottom: 10px; +} + +/*-------------------------------------------------------------- +## Team Section +--------------------------------------------------------------*/ +.hestia-team .card, .team .card { + text-align: left; +} +.hestia-team .card .footer, .team .card .footer { + margin-top: 0; +} +.hestia-team h5.description, .team h5.description { + margin-bottom: 70px; +} + +.hestia-team .footer a[href*="facebook.com"], +.team .footer a[href*="facebook.com"], +.footer-menu a[href*="facebook.com"] { + color: #3b5998; +} + +.hestia-team .footer a[href*="twitter.com"], +.team .footer a[href*="twitter.com"], +.footer-menu a[href*="twitter.com"] { + color: #55acee; +} + +.hestia-team .footer a[href*="pinterest.com"], +.team .footer a[href*="pinterest.com"], +.footer-menu a[href*="pinterest.com"] { + color: #cc2127; +} + +.hestia-team .footer a[href*="google.com"], +.team .footer a[href*="google.com"], +.footer-menu a[href*="google.com"] { + color: #dd4b39; +} + +.hestia-team .footer a[href*="linkedin.com"], +.team .footer a[href*="linkedin.com"], +.footer-menu a[href*="linkedin.com"] { + color: #0976b4; +} + +.hestia-team .footer a[href*="dribbble.com"], +.team .footer a[href*="dribbble.com"], +.footer-menu a[href*="dribbble.com"] { + color: #ea4c89; +} + +.hestia-team .footer a[href*="github.com"], +.team .footer a[href*="github.com"], +.footer-menu a[href*="github.com"] { + color: #333; +} + +.hestia-team .footer a[href*="youtube.com"], +.team .footer a[href*="youtube.com"], +.footer-menu a[href*="youtube.com"] { + color: #e52d27; +} + +.hestia-team .footer a[href*="instagram.com"], +.team .footer a[href*="instagram.com"], +.footer-menu a[href*="instagram.com"] { + color: #125688; +} + +.hestia-team .footer a[href*="reddit.com"], +.team .footer a[href*="reddit.com"], +.footer-menu a[href*="reddit.com"] { + color: #ff4500; +} + +.hestia-team .footer a[href*="tumblr.com"], +.team .footer a[href*="tumblr.com"], +.footer-menu a[href*="tumblr.com"] { + color: #35465c; +} + +.hestia-team .footer a[href*="behance.com"], +.team .footer a[href*="behance.com"], +.footer-menu a[href*="behance.com"] { + color: #1769ff; +} + +.hestia-team .footer a[href*="snapchat.com"], +.team .footer a[href*="snapchat.com"], +.footer-menu a[href*="snapchat.com"] { + color: #fffc00; +} + +.hestia-team .footer a[href*="deviantart.com"], +.team .footer a[href*="deviantart.com"], +.footer-menu a[href*="deviantart.com"] { + color: #05cc47; +} + +.hestia-team .footer a[href*="vimeo.com"], +.team .footer a[href*="vimeo.com"], +.footer-menu a[href*="vimeo.com"] { + color: #1ab7ea; +} + +/*-------------------------------------------------------------- +## Subscribe Section +--------------------------------------------------------------*/ +.subscribe-line { + padding: 65px 0; +} +.subscribe-line .card { + margin-top: 30px; +} +.subscribe-line .card .input-group { + display: table; +} +.subscribe-line .card .input-group .input-group-addon { + display: table-cell; + width: 1%; +} +.subscribe-line.subscribe-line-image { + position: relative; + background-position: top center; + background-size: cover; +} +.subscribe-line.subscribe-line-image .title, +.subscribe-line.subscribe-line-image .hestia-title { + color: #fff; +} +.subscribe-line.subscribe-line-image:after { + display: block; + position: absolute; + z-index: 1; + top: 0; + left: 0; + width: 100%; + height: 100%; + background-color: rgba(0, 0, 0, 0.66); + content: ""; +} +.subscribe-line.subscribe-line-image .container { + position: relative; + z-index: 2; +} +.subscribe-line .card h5, +.subscribe-line .sib_loader { + display: none !important; +} + +/*-------------------------------------------------------------- +## Blog Section +--------------------------------------------------------------*/ +.hestia-blogs article:nth-child(6n) .category a { + color: #4caf50; +} +.hestia-blogs article:nth-child(6n+1) .category a { + color: #89229b; +} +.hestia-blogs article:nth-child(6n+2) .category a { + color: #00bcd4; +} +.hestia-blogs article:nth-child(6n+3) .category a { + color: #f44336; +} +.hestia-blogs article:nth-child(6n+4) .category a { + color: #ff9800; +} +.hestia-blogs article:nth-child(6n+5) .category a { + color: #e91e63; +} + +/*-------------------------------------------------------------- +## Footer +--------------------------------------------------------------*/ +.footer .widget h5 { + margin-bottom: 20px; + font-size: 18.2px; + line-height: 25.48px; +} +.footer a { + color: #3C4858; +} + +.footer-big { + color: #999999; + padding: 30px 0 18px; + text-align: center; +} +.footer-big ul { + margin-bottom: 0; + padding: 0; + list-style: none; +} +.footer-big ul li a { + display: inline-block; + position: relative; + padding: 5px 0; + border-radius: 3px; + font-size: 12px; + font-weight: 500; + text-decoration: none; + text-transform: uppercase; +} +.footer-big ul li a:hover { + text-decoration: none; +} +.footer-big ul li .btn { + margin: 0; +} +.footer-big p { + color: #999999; +} +.footer-big .footer-menu li { + display: inline-block; +} +.footer-big .footer-menu li a { + padding: 15px; +} +.footer-big .copyright { + padding: 15px 0; +} +.footer-big .content { + text-align: left; +} +.footer-big hr { + margin-top: 10px; +} + +.footer-black { + background: #323437; +} +.footer-black a { + opacity: 0.86; + color: #fff; +} +.footer-black a:hover, .footer-black a:focus { + opacity: 1; +} +.footer-black h5, .footer-black h4, .footer-black i, .footer-black .copyright { + color: #fff; +} +.footer-black hr { + border-color: rgba(255, 255, 255, 0.2); +} + +.hestia-bottom-footer-content { + position: relative; +} + +.hestia-center { + width: 100%; + text-align: center; +} + +.footer-big .footer-menu li a[href*="mailto:"], +.footer-big .footer-menu li a[href*="tel:"] { + color: transparent; + font-size: 0; + padding: 10px; +} +.footer-big .footer-menu li a[href*="mailto:"]:before, +.footer-big .footer-menu li a[href*="tel:"]:before { + color: #fff; + font-family: 'FontAwesome'; + font-size: 16px; +} +.footer-big .footer-menu li a[href*="mailto:"]:hover:before, +.footer-big .footer-menu li a[href*="tel:"]:hover:before { + color: #999; +} + +.footer-big .footer-menu li a[href*="mailto:"]:before { + content: '\f0e0'; +} + +.footer-big .footer-menu li a[href*="tel:"]:before { + content: '\f095'; +} + +.footer-big .footer-menu li a[href*="facebook.com"] { + color: transparent; + font-size: 0; + padding: 10px; +} +.footer-big .footer-menu li a[href*="facebook.com"]:before { + content: ""; + font-family: 'FontAwesome'; + color: #3c4858; + font-size: 16px; +} +.footer-big .footer-menu li a[href*="facebook.com"]:hover:before { + color: #3b5998; +} + +.footer-black .footer-menu li a[href*="facebook.com"]:before { + color: #fff; +} + +.footer-big .footer-menu li a[href*="twitter.com"] { + color: transparent; + font-size: 0; + padding: 10px; +} +.footer-big .footer-menu li a[href*="twitter.com"]:before { + content: ""; + font-family: 'FontAwesome'; + color: #3c4858; + font-size: 16px; +} +.footer-big .footer-menu li a[href*="twitter.com"]:hover:before { + color: #55acee; +} + +.footer-black .footer-menu li a[href*="twitter.com"]:before { + color: #fff; +} + +.footer-big .footer-menu li a[href*="pinterest.com"] { + color: transparent; + font-size: 0; + padding: 10px; +} +.footer-big .footer-menu li a[href*="pinterest.com"]:before { + content: ""; + font-family: 'FontAwesome'; + color: #3c4858; + font-size: 16px; +} +.footer-big .footer-menu li a[href*="pinterest.com"]:hover:before { + color: #cc2127; +} + +.footer-black .footer-menu li a[href*="pinterest.com"]:before { + color: #fff; +} + +.footer-big .footer-menu li a[href*="google.com"] { + color: transparent; + font-size: 0; + padding: 10px; +} +.footer-big .footer-menu li a[href*="google.com"]:before { + content: ""; + font-family: 'FontAwesome'; + color: #3c4858; + font-size: 16px; +} +.footer-big .footer-menu li a[href*="google.com"]:hover:before { + color: #dd4b39; +} + +.footer-black .footer-menu li a[href*="google.com"]:before { + color: #fff; +} + +.footer-big .footer-menu li a[href*="linkedin.com"] { + color: transparent; + font-size: 0; + padding: 10px; +} +.footer-big .footer-menu li a[href*="linkedin.com"]:before { + content: ""; + font-family: 'FontAwesome'; + color: #3c4858; + font-size: 16px; +} +.footer-big .footer-menu li a[href*="linkedin.com"]:hover:before { + color: #0976b4; +} + +.footer-black .footer-menu li a[href*="linkedin.com"]:before { + color: #fff; +} + +.footer-big .footer-menu li a[href*="dribbble.com"] { + color: transparent; + font-size: 0; + padding: 10px; +} +.footer-big .footer-menu li a[href*="dribbble.com"]:before { + content: ""; + font-family: 'FontAwesome'; + color: #3c4858; + font-size: 16px; +} +.footer-big .footer-menu li a[href*="dribbble.com"]:hover:before { + color: #ea4c89; +} + +.footer-black .footer-menu li a[href*="dribbble.com"]:before { + color: #fff; +} + +.footer-big .footer-menu li a[href*="github.com"] { + color: transparent; + font-size: 0; + padding: 10px; +} +.footer-big .footer-menu li a[href*="github.com"]:before { + content: ""; + font-family: 'FontAwesome'; + color: #3c4858; + font-size: 16px; +} +.footer-big .footer-menu li a[href*="github.com"]:hover:before { + color: #333; +} + +.footer-black .footer-menu li a[href*="github.com"]:before { + color: #fff; +} + +.footer-big .footer-menu li a[href*="youtube.com"] { + color: transparent; + font-size: 0; + padding: 10px; +} +.footer-big .footer-menu li a[href*="youtube.com"]:before { + content: ""; + font-family: 'FontAwesome'; + color: #3c4858; + font-size: 16px; +} +.footer-big .footer-menu li a[href*="youtube.com"]:hover:before { + color: #e52d27; +} + +.footer-black .footer-menu li a[href*="youtube.com"]:before { + color: #fff; +} + +.footer-big .footer-menu li a[href*="instagram.com"] { + color: transparent; + font-size: 0; + padding: 10px; +} +.footer-big .footer-menu li a[href*="instagram.com"]:before { + content: ""; + font-family: 'FontAwesome'; + color: #3c4858; + font-size: 16px; +} +.footer-big .footer-menu li a[href*="instagram.com"]:hover:before { + color: #125688; +} + +.footer-black .footer-menu li a[href*="instagram.com"]:before { + color: #fff; +} + +.footer-big .footer-menu li a[href*="reddit.com"] { + color: transparent; + font-size: 0; + padding: 10px; +} +.footer-big .footer-menu li a[href*="reddit.com"]:before { + content: ""; + font-family: 'FontAwesome'; + color: #3c4858; + font-size: 16px; +} +.footer-big .footer-menu li a[href*="reddit.com"]:hover:before { + color: #ff4500; +} + +.footer-black .footer-menu li a[href*="reddit.com"]:before { + color: #fff; +} + +.footer-big .footer-menu li a[href*="tumblr.com"] { + color: transparent; + font-size: 0; + padding: 10px; +} +.footer-big .footer-menu li a[href*="tumblr.com"]:before { + content: ""; + font-family: 'FontAwesome'; + color: #3c4858; + font-size: 16px; +} +.footer-big .footer-menu li a[href*="tumblr.com"]:hover:before { + color: #35465c; +} + +.footer-black .footer-menu li a[href*="tumblr.com"]:before { + color: #fff; +} + +.footer-big .footer-menu li a[href*="behance.com"] { + color: transparent; + font-size: 0; + padding: 10px; +} +.footer-big .footer-menu li a[href*="behance.com"]:before { + content: ""; + font-family: 'FontAwesome'; + color: #3c4858; + font-size: 16px; +} +.footer-big .footer-menu li a[href*="behance.com"]:hover:before { + color: #1769ff; +} + +.footer-black .footer-menu li a[href*="behance.com"]:before { + color: #fff; +} + +.footer-big .footer-menu li a[href*="snapchat.com"] { + color: transparent; + font-size: 0; + padding: 10px; +} +.footer-big .footer-menu li a[href*="snapchat.com"]:before { + content: ""; + font-family: 'FontAwesome'; + color: #3c4858; + font-size: 16px; +} +.footer-big .footer-menu li a[href*="snapchat.com"]:hover:before { + color: #fffc00; +} + +.footer-black .footer-menu li a[href*="snapchat.com"]:before { + color: #fff; +} + +.footer-big .footer-menu li a[href*="deviantart.com"] { + color: transparent; + font-size: 0; + padding: 10px; +} +.footer-big .footer-menu li a[href*="deviantart.com"]:before { + content: ""; + font-family: 'FontAwesome'; + color: #3c4858; + font-size: 16px; +} +.footer-big .footer-menu li a[href*="deviantart.com"]:hover:before { + color: #05cc47; +} + +.footer-black .footer-menu li a[href*="deviantart.com"]:before { + color: #fff; +} + +.footer-big .footer-menu li a[href*="vimeo.com"] { + color: transparent; + font-size: 0; + padding: 10px; +} +.footer-big .footer-menu li a[href*="vimeo.com"]:before { + content: ""; + font-family: 'FontAwesome'; + color: #3c4858; + font-size: 16px; +} +.footer-big .footer-menu li a[href*="vimeo.com"]:hover:before { + color: #1ab7ea; +} + +.footer-black .footer-menu li a[href*="vimeo.com"]:before { + color: #fff; +} + +/*-------------------------------------------------------------- +## Top bar +--------------------------------------------------------------*/ +.hestia-top-bar { + font-size: 12px; + height: 40px; + line-height: 40px; + max-height: 40px; +} +.hestia-top-bar .col-md-6, +.hestia-top-bar .col-md-12 { + max-height: 40px; +} +.hestia-top-bar .col-md-6.pull-right, +.hestia-top-bar .col-md-12.pull-right { + text-align: right; +} +.hestia-top-bar .widget { + margin: 0 10px 0 0; +} +.hestia-top-bar .widget:last-of-type { + margin-right: 0; +} +.hestia-top-bar .widget, +.hestia-top-bar .widget h5, +.hestia-top-bar .widget .textwidget { + display: inline-block; + line-height: inherit; +} +.hestia-top-bar .widget h5 { + margin: 0 5px 0 0; +} +.hestia-top-bar .widget .btn { + padding: 3px 10px; +} +.hestia-top-bar .widget.widget_nav_menu h5, .hestia-top-bar .widget.widget_categories h5, .hestia-top-bar .widget.widget_product_categories h5 { + display: none; +} +.hestia-top-bar .widget.widget_search h5, .hestia-top-bar .widget.widget_product_search h5 { + display: none; +} +.hestia-top-bar .widget.widget_search .label-floating, .hestia-top-bar .widget.widget_product_search .label-floating { + display: inline-block; + font-size: inherit; + margin: 0; + padding: 0; + width: auto; +} +.hestia-top-bar .widget.widget_search .label-floating .control-label, .hestia-top-bar .widget.widget_product_search .label-floating .control-label { + padding: 0; +} +.hestia-top-bar .widget.widget_search .label-floating.is-empty .control-label, .hestia-top-bar .widget.widget_product_search .label-floating.is-empty .control-label { + font-size: inherit; + position: absolute; + font-weight: 300; + left: 25px; + top: 12px; + margin-top: 0; + text-align: left; + opacity: 1; +} +.hestia-top-bar .widget.widget_search .label-floating.is-focused .control-label, .hestia-top-bar .widget.widget_product_search .label-floating.is-focused .control-label { + opacity: 0; + font-size: inherit; + line-height: 20px; +} +.hestia-top-bar .widget.widget_search .label-floating:not(.is-empty) .control-label, .hestia-top-bar .widget.widget_product_search .label-floating:not(.is-empty) .control-label { + opacity: 0; + left: 25px; + top: 12px; +} +.hestia-top-bar .widget.widget_search form:not(.form-group), .hestia-top-bar .widget.widget_product_search form:not(.form-group) { + opacity: 0; +} +.hestia-top-bar .widget.widget_search form.form-group, .hestia-top-bar .widget.widget_product_search form.form-group { + opacity: 1; +} +.hestia-top-bar .widget.widget_search form.form-group input[type=search], .hestia-top-bar .widget.widget_product_search form.form-group input[type=search] { + background: none; + border: none; + font-size: inherit; + font-weight: 300; + float: none; + margin: 2px 0 0 25px; + width: auto; +} +.hestia-top-bar .widget.widget_search form.form-group input[type=submit], .hestia-top-bar .widget.widget_product_search form.form-group input[type=submit] { + display: none; +} +.hestia-top-bar .widget.widget_search form.form-group:after, .hestia-top-bar .widget.widget_product_search form.form-group:after { + display: none; +} +.hestia-top-bar .widget.widget_search form.form-group:before, .hestia-top-bar .widget.widget_product_search form.form-group:before { + color: #fff; + content: "\f002"; + font-family: 'Fontawesome'; + font-size: 18px; + position: absolute; + left: 0; + top: 0; +} +.hestia-top-bar .widget.widget_search .search-form { + display: inline-block; +} +.hestia-top-bar .widget.widget_shopping_cart { + cursor: pointer; + padding-left: 25px; + position: relative; + vertical-align: top; +} +.hestia-top-bar .widget.widget_shopping_cart:before { + color: #fff; + content: "\f07a"; + font-family: 'Fontawesome'; + font-size: 18px; + position: absolute; + left: 0; + top: 0; + z-index: 9999; +} +.hestia-top-bar .widget.widget_shopping_cart:hover .cart_list { + display: inline-block; + opacity: 1; + visibility: visible; + margin-top: 0; +} +.hestia-top-bar .widget.widget_shopping_cart .button.checkout { + display: none; +} +.hestia-top-bar .widget.widget_shopping_cart .wc-forward:not(.checkout) { + opacity: 0; + position: absolute; + top: -5px; + left: -4px; +} +.hestia-top-bar .widget.widget_shopping_cart h5 { + display: none; +} +.hestia-top-bar .widget.widget_shopping_cart .widget_shopping_cart_content { + display: inline-block; +} +.hestia-top-bar .widget.widget_shopping_cart .cart_list { + border-radius: 0 0 6px 6px; + opacity: 0; + visibility: hidden; + margin-top: -10px; + padding: 0 15px 15px; + position: absolute; + left: 0; + top: 40px; + z-index: 10; +} +.hestia-top-bar .widget.widget_shopping_cart .cart_list li { + display: block; + margin-top: 15px; + padding-bottom: 0; + white-space: nowrap; +} +.hestia-top-bar .widget.widget_shopping_cart .cart_list li a:not(.remove) { + margin: 0; + padding-right: 65px; + text-align: left; +} +.hestia-top-bar .widget.widget_shopping_cart .cart_list li img { + float: left; + width: 50px; + margin-left: 0; + margin-right: 15px; +} +.hestia-top-bar .widget.widget_shopping_cart .cart_list li .quantity { + float: left; +} +.hestia-top-bar .widget.widget_shopping_cart .cart_list li .variation { + display: none; +} +.hestia-top-bar .widget.widget_shopping_cart .cart_list li.empty { + font-size: inherit; + line-height: 1.2; + padding: 0; +} +.hestia-top-bar .widget.widget_shopping_cart .total { + border: none; + margin: 0; + padding: 0; +} +.hestia-top-bar .widget.widget_shopping_cart .total strong { + display: none; +} +.hestia-top-bar .widget.widget_shopping_cart .total .amount { + float: none; +} +.hestia-top-bar ul { + line-height: inherit; +} +.hestia-top-bar ul li { + cursor: auto; + display: inline-block; + margin: 0 5px; +} +.hestia-top-bar ul li:first-child { + margin-left: 0; +} +.hestia-top-bar ul li:last-child { + margin-right: 0; +} +.hestia-top-bar ul li a { + font-size: inherit; + line-height: inherit; + padding: 0; + text-transform: inherit; +} +.hestia-top-bar ul li a:before { + background-color: transparent; + position: static; + font-family: 'FontAwesome'; + font-size: 16px; +} +.hestia-top-bar ul li a:hover, .hestia-top-bar ul li a:focus { + background-color: transparent; + outline: none; +} +.hestia-top-bar ul li a[href*="tel:"]:before, +.hestia-top-bar ul li a[href*="mailto:"]:before { + margin-right: 7px; +} +.hestia-top-bar ul li a[href*="tel:"]:before { + content: '\f095'; +} +.hestia-top-bar ul li a[href*="mailto:"]:before { + content: '\f0e0'; +} +.hestia-top-bar ul li.dropdown .caret { + display: none; +} + +.hestia-top-bar li a[href*="facebook.com"] { + color: transparent; + font-size: 0; +} +.hestia-top-bar li a[href*="facebook.com"]:before { + content: ""; +} +.hestia-top-bar li a[href*="facebook.com"]:hover:before { + color: #3b5998; +} + +.hestia-top-bar li a[href*="twitter.com"] { + color: transparent; + font-size: 0; +} +.hestia-top-bar li a[href*="twitter.com"]:before { + content: ""; +} +.hestia-top-bar li a[href*="twitter.com"]:hover:before { + color: #55acee; +} + +.hestia-top-bar li a[href*="pinterest.com"] { + color: transparent; + font-size: 0; +} +.hestia-top-bar li a[href*="pinterest.com"]:before { + content: ""; +} +.hestia-top-bar li a[href*="pinterest.com"]:hover:before { + color: #cc2127; +} + +.hestia-top-bar li a[href*="google.com"] { + color: transparent; + font-size: 0; +} +.hestia-top-bar li a[href*="google.com"]:before { + content: ""; +} +.hestia-top-bar li a[href*="google.com"]:hover:before { + color: #dd4b39; +} + +.hestia-top-bar li a[href*="linkedin.com"] { + color: transparent; + font-size: 0; +} +.hestia-top-bar li a[href*="linkedin.com"]:before { + content: ""; +} +.hestia-top-bar li a[href*="linkedin.com"]:hover:before { + color: #0976b4; +} + +.hestia-top-bar li a[href*="dribbble.com"] { + color: transparent; + font-size: 0; +} +.hestia-top-bar li a[href*="dribbble.com"]:before { + content: ""; +} +.hestia-top-bar li a[href*="dribbble.com"]:hover:before { + color: #ea4c89; +} + +.hestia-top-bar li a[href*="github.com"] { + color: transparent; + font-size: 0; +} +.hestia-top-bar li a[href*="github.com"]:before { + content: ""; +} +.hestia-top-bar li a[href*="github.com"]:hover:before { + color: #333; +} + +.hestia-top-bar li a[href*="youtube.com"] { + color: transparent; + font-size: 0; +} +.hestia-top-bar li a[href*="youtube.com"]:before { + content: ""; +} +.hestia-top-bar li a[href*="youtube.com"]:hover:before { + color: #e52d27; +} + +.hestia-top-bar li a[href*="instagram.com"] { + color: transparent; + font-size: 0; +} +.hestia-top-bar li a[href*="instagram.com"]:before { + content: ""; +} +.hestia-top-bar li a[href*="instagram.com"]:hover:before { + color: #125688; +} + +.hestia-top-bar li a[href*="reddit.com"] { + color: transparent; + font-size: 0; +} +.hestia-top-bar li a[href*="reddit.com"]:before { + content: ""; +} +.hestia-top-bar li a[href*="reddit.com"]:hover:before { + color: #ff4500; +} + +.hestia-top-bar li a[href*="tumblr.com"] { + color: transparent; + font-size: 0; +} +.hestia-top-bar li a[href*="tumblr.com"]:before { + content: ""; +} +.hestia-top-bar li a[href*="tumblr.com"]:hover:before { + color: #35465c; +} + +.hestia-top-bar li a[href*="behance.com"] { + color: transparent; + font-size: 0; +} +.hestia-top-bar li a[href*="behance.com"]:before { + content: ""; +} +.hestia-top-bar li a[href*="behance.com"]:hover:before { + color: #1769ff; +} + +.hestia-top-bar li a[href*="snapchat.com"] { + color: transparent; + font-size: 0; +} +.hestia-top-bar li a[href*="snapchat.com"]:before { + content: ""; +} +.hestia-top-bar li a[href*="snapchat.com"]:hover:before { + color: #fffc00; +} + +.hestia-top-bar li a[href*="deviantart.com"] { + color: transparent; + font-size: 0; +} +.hestia-top-bar li a[href*="deviantart.com"]:before { + content: ""; +} +.hestia-top-bar li a[href*="deviantart.com"]:hover:before { + color: #05cc47; +} + +.hestia-top-bar li a[href*="vimeo.com"] { + color: transparent; + font-size: 0; +} +.hestia-top-bar li a[href*="vimeo.com"]:before { + content: ""; +} +.hestia-top-bar li a[href*="vimeo.com"]:hover:before { + color: #1ab7ea; +} + +/*-------------------------------------------------------------- +# Blog +--------------------------------------------------------------*/ +/*-------------------------------------------------------------- +## Content +--------------------------------------------------------------*/ +.search-no-results .search-form, .error404 .search-form { + margin-top: 40px; +} + +#authors-on-blog { + padding: 80px 0; +} +#authors-on-blog .card-profile { + text-align: left; +} +#authors-on-blog .col-md-6:nth-child(2n+1) { + clear: both; +} + +.blog-post.blog-post-wrapper .section-text h1 { + font-size: 63.84px; + line-height: 73.416px; +} +.blog-post.blog-post-wrapper .section-text h2 { + font-size: 43.68px; + line-height: 65.52px; +} +.blog-post.blog-post-wrapper .section-text h3 { + font-size: 30.66px; + line-height: 42.924px; +} +.blog-post.blog-post-wrapper .section-text h4 { + font-size: 31.62px; + line-height: 49.011px; +} +.blog-post.blog-post-wrapper .section-text h5 { + font-size: 21px; + line-height: 32.55px; +} +.blog-post.blog-post-wrapper .section-text h6 { + font-size: 15.12px; + line-height: 22.68px; +} + +.blog-post { + word-wrap: break-word; + line-height: 25.2px; +} +.blog-post .section-text { + padding-bottom: 0; + font-size: 16.8px; +} +.blog-post .section-text p { + margin-bottom: 30px; +} +.blog-post .section-blog-info { + padding-top: 15px; +} +.blog-post .section-blog-info .entry-categories, .blog-post .section-blog-info .entry-tags { + word-break: break-all; +} +.blog-post .section-blog-info .entry-categories span, .blog-post .section-blog-info .entry-tags span { + display: inline-block; + margin: 5px; +} +.blog-post .section-blog-info .entry-categories a { + display: inline-block; + padding: 2px 2px; + color: #fff; +} +.blog-post .section-blog-info .card-profile { + margin-top: 0; + text-align: left; +} +.blog-post .section-blog-info .card-profile .description { + font-size: 14px; +} + +dl dd, pre { + margin-bottom: 30px; +} + +.alignleft .avatar { + margin-right: 24px; +} + +.alignright .avatar { + margin-left: 24px; +} + +article.sticky h2:before { + content: "Featured: "; +} + +img.centered, .aligncenter { + display: block; + margin: 0 auto 24px; +} + +img.alignnone { + margin-bottom: 12px; +} + +.alignleft { + float: left; + text-align: left; +} + +.alignright { + float: right; + text-align: right; +} + +img.alignleft, .wp-caption.alignleft { + margin: 0 24px 24px 0; + margin: 0 2.4rem 2.4rem 0; +} + +img.alignright, .wp-caption.alignright { + margin: 0 0 24px 24px; +} + +.wp-caption-text { + padding-top: 10px; + font-size: 14px; + font-weight: 700; + text-align: center; +} + +.gallery-caption { + padding-top: 10px; +} + +.bypostauthor { + display: block; +} + +/*-------------------------------------------------------------- +## Comments +--------------------------------------------------------------*/ +.media .avatar, .media-body .avatar, .media-area .avatar { + overflow: hidden; + width: 64px; + height: 64px; + margin: 0 auto; + margin-right: 15px; + border-radius: 50%; + -webkit-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2); + box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2); +} + +.media-area .hestia-title, +.comment-respond .hestia-title { + margin-bottom: 30px; +} + +.comment .pull-left { + padding-right: 10px; +} + +.media-body div.avatar { + margin: 0 10px; +} + +.media { + overflow: visible; +} +.media .avatar img { + width: 100%; +} +.media .media-heading { + margin-top: 0; + font-size: 18.2px; + margin-bottom: 10px; +} +.media .media-heading small { + font-family: "Roboto", "Helvetica", "Arial", sans-serif; +} +.media .media-body { + padding-right: 10px; +} +.media .media-body .media .media-body { + padding-right: 0; +} +.media .media-footer .btn { + margin-bottom: 20px; +} +.media .media-footer:after { + display: table; + clear: both; + content: " "; +} +.media p { + color: #999999; + font-size: 16px; + line-height: 25.6px; +} + +#comments .comment-notes { + display: none; +} + +.section-comments ul.children .comment-author.avatar, .section-comments ul.children .avatar img { + width: 40px; + height: 40px; +} + +.blog-post .media p { + color: #555; +} +.blog-post .section-comments .title { + margin-bottom: 30px; +} +.blog-post .section-comments .comment-respond .author { + margin: 15px 20px 0 0; +} +.blog-post .section-comments .comment-respond .author img { + border-radius: 100%; +} +.blog-post .comment-reply-link { + font-size: 12px; + font-weight: 400; + text-transform: uppercase; + float: right; +} + +label.subscribe-label { + font-weight: 300; +} + +.media-body { + width: 10000px; + display: table-cell; + overflow: visible; +} + +/*-------------------------------------------------------------- +## Sidebar +--------------------------------------------------------------*/ +.single aside.blog-sidebar { + padding: 40px 0; +} + +.widget { + margin-bottom: 30px; + word-break: break-word; +} +.widget ul { + padding: 0 0 0 10px; + margin: 0; + list-style: none; +} +.widget ul li { + line-height: 33.6px; + padding-top: 5px; +} +.widget ul li:first-child { + padding-top: 0; +} + +aside .widget .btn a { + color: #fff; +} + +aside .widget a { + color: #23527c; + font-weight: 500; +} + +.widget a:hover { + color: #89229b; +} +.widget #searchform { + margin-bottom: 0; + padding-bottom: 0; +} +.widget h5 { + font-family: "Roboto Slab", "Times New Roman", serif; + margin-bottom: 10px; + font-size: 21.84px; + font-weight: 700; + line-height: 30.576px; +} +.widget select { + width: 100%; +} + +.hestia-widget-placeholder { + border: 1px dashed #b4b9be; + padding: 25px; + text-align: center; +} +.hestia-widget-placeholder .widget { + margin: 0; +} + +.single .hestia_right aside.blog-sidebar { + padding: 0; +} + +.hestia_right .hestia-widget-placeholder { + padding: 5px; +} + +.widget_calendar th, +.widget_calendar tr, +.widget_calendar td { + padding: 7px 0; + text-align: center; +} + +.hestia-sidebar-close, +.hestia-sidebar-open { + display: none; +} + +/*-------------------------------------------------------------- +## Attachment Page +--------------------------------------------------------------*/ +.attachment .main-raised .blog-post { + padding-bottom: 130px; +} +.attachment .sizes { + margin-top: 20px; +} + +/*-------------------------------------------------------------- +# Page +--------------------------------------------------------------*/ +.page-header .container, +.page-header .author, +.page-header .author a, +.page-header .hestia-title, +.page-header .title, +.page-header .description { + color: #fff; +} + +.page-header { + overflow: hidden; + height: 90vh; + margin: 0; + padding: 0; + border: 0; + background-position: center center; + background-size: cover; +} +.page-header .container { + padding-top: 30vh; + color: #fff; +} +.page-header .container .hestia-title, +.page-header .container .title { + margin: 0 0 20px; +} +.page-header.header-small .container .hestia-title, +.page-header.header-small .container .title { + margin: 20px 0 10px; +} + +.archive .page-header.header-small .hestia-title, +.blog .page-header.header-small .hestia-title, +.search .page-header.header-small .hestia-title, +.archive .page-header.header-small .title, +.blog .page-header.header-small .title, +.search .page-header.header-small .title { + font-size: 44.8px; + line-height: 58.24px; +} + +.page-header.header-small { + min-height: 300px; + height: auto; +} +.page-header.header-small .container { + padding-top: 180px; + padding-bottom: 110px; +} +.page-header.header-small .hestia-title, +.page-header.header-small .title { + font-family: "Roboto", "Helvetica", "Arial", sans-serif; + font-size: 53.2px; + line-height: 79.8px; +} + +.woocommerce .page-header.header-small .hestia-title, +.woocommerce .page-header.header-small .title { + font-size: 53.2px; + line-height: 79.8px; +} + +.header-filter { + position: relative; +} +.header-filter:before, .header-filter:after { + display: block; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + content: ""; +} +.header-filter::before { + background-color: rgba(0, 0, 0, 0.5); +} +.header-filter .container { + position: relative; +} + +.carousel .header-filter:before, .carousel .header-filter:after { + z-index: -1; +} + +.clear-filter:before { + display: none; +} + +.header .wrapper { + background: #ccc; +} +.header .btn { + margin: 0; +} +.header h6 { + margin-bottom: 0; +} + +.phone-container img { + width: 100%; +} + +.main { + position: relative; + background: #fff; +} + +.main-raised { + margin: -60px 30px 0; + border-radius: 6px 6px 0 0; + -webkit-box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2); + box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2); +} + +.page-template-template-pagebuilder-blank .section { + padding: 0; +} + +.woocommerce.archive .main-raised, .single .main-raised { + margin-top: -60px; + margin-bottom: 30px; +} + +.woocommerce.archive .main-raised { + background-color: #e5e5e5; +} + +.content-sidebar-left { + padding-left: 30px; + padding-right: 0; +} + +.content-sidebar-right { + padding-right: 30px; + padding-left: 0; +} + +.shop-sidebar-wrapper { + padding: 0; +} + +.content-full.col-md-12 { + padding: 0; +} + +/*-------------------------------------------------------------- +# Woocommerce Integration +--------------------------------------------------------------*/ +/*-------------------------------------------------------------- +## Generic +--------------------------------------------------------------*/ +.woocommerce.archive .main { + background-color: #f0f0f0; +} +.woocommerce.archive .blog-post { + padding-left: 0; + padding-right: 0; +} +.woocommerce.archive .blog-post .products { + margin-left: -15px; + margin-right: -15px; +} +.woocommerce.archive .blog-post .section { + padding: 0 15px 70px; +} +.woocommerce.single-product .main.main-raised { + margin: 0; + border-radius: 0; + -webkit-box-shadow: 0; + box-shadow: 0; +} +.woocommerce.single-product .blog-post { + background-color: #f0f0f0; +} +.woocommerce.single-product .blog-post .col-md-12 > div[id^=product].product { + margin: -315px 0 0; + padding: 40px; + border-radius: 6px; + background: #fff; + -webkit-box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2); + box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2); +} +.woocommerce.single-product .section { + padding: 0 0 70px; +} +.woocommerce.single-product .page-header { + z-index: 0; + min-height: 575px; + height: auto; + background-position: top center; +} +.woocommerce.single-product .page-header .container .cart-contents-content { + right: 15px; + position: relative; + bottom: -10px; +} +.woocommerce.single-product .page-header .container .cart-contents-content.btn-white { + box-shadow: 0 2px 2px 0 rgba(153, 153, 153, 0.14), 0 3px 1px -2px rgba(153, 153, 153, 0.2), 0 1px 5px 0 rgba(153, 153, 153, 0.12); + color: #999999; + background-color: #fff; +} +.woocommerce.single-product .page-header .container .cart-contents-content.btn-white.btn-white:focus, .woocommerce.single-product .page-header .container .cart-contents-content.btn-white.btn-white:hover { + color: #fff; + background-color: rgba(153, 153, 153, 0.6); +} +.woocommerce.single-product .page-header .container .cart-contents-content.btn-white.btn-white:focus.btn-simple, .woocommerce.single-product .page-header .container .cart-contents-content.btn-white.btn-white:hover.btn-simple { + color: #fff; + background: transparent; +} +.woocommerce.single-product .product_title { + color: #3C4858; + font-family: "Roboto Slab", "Times New Roman", serif; + font-size: 36.4px; + font-weight: 700; + line-height: 54.6px; +} +.woocommerce.single-product .summary .price, +.woocommerce.single-product .woocommerce-variation-price .price { + display: block; + color: #3C4858; + font-family: "Roboto", "Helvetica", "Arial", sans-serif; + font-size: 25.55px; + font-weight: 300; + line-height: 35.77px; +} +.woocommerce.single-product .summary .price del, .woocommerce.single-product .summary .price ins, .woocommerce.single-product .summary .price span, +.woocommerce.single-product .woocommerce-variation-price .price del, +.woocommerce.single-product .woocommerce-variation-price .price ins, +.woocommerce.single-product .woocommerce-variation-price .price span { + font-weight: 300; +} +.woocommerce.single-product .summary .price { + margin: 10px 0 25px; +} +.woocommerce.single-product .summary .price.price-unit { + font-size: 16px; + margin: -20px 0 25px; +} +.woocommerce.single-product .woocommerce-variation-price .price { + margin: 0 0 25px; +} +.woocommerce.single-product div.product form.cart table.variations { + margin-bottom: 0; +} +.woocommerce.single-product div.product form.cart table.variations td.label label { + margin-bottom: 0; +} +.woocommerce.single-product div.product form.cart table.variations td.value { + padding-top: 0; + position: relative; +} +.woocommerce.single-product div.product form.cart table.variations td.value:before { + content: '\f0d7'; + font-family: FontAwesome; + position: absolute; + top: 7px; + right: 10px; + display: inline-block; + font-size: 12px; + pointer-events: none; +} +.woocommerce.single-product .upsells { + margin-top: 60px; + padding-top: 0; +} +.woocommerce.single-product .upsells h2 { + margin: 0 0 60px; + text-align: center; +} +.woocommerce.single-product .related { + overflow-x: hidden; +} +.woocommerce.single-product .related ul.products { + margin: 0 -15px; +} +.woocommerce .page-header .container { + position: relative; +} +.woocommerce .page-header .container .cart-contents-content { + z-index: 1; + right: 15px; + position: absolute; + bottom: 30px; +} +.woocommerce .page-header .container .cart-contents-content .fa { + vertical-align: -2px; + margin-right: 5px; +} +.woocommerce div.product form.cart .reset_variations { + float: right; + margin-top: 10px; + font-size: 14px; +} +.woocommerce div.product form.cart .reset_variations:after { + margin-left: 5px; + font-family: "Fontawesome"; + content: "\f00d"; +} +.woocommerce div.product form.cart input { + margin-right: 10px; + border: none; + border-bottom: 1px solid #ccc; +} +.woocommerce div.product form.cart .button:after { + margin-left: 10px; + font-family: "Fontawesome"; + content: "\f07a"; +} +.woocommerce div.product .woocommerce-tabs ul.tabs { + margin-bottom: 60px; + padding: 0; +} +.woocommerce div.product .woocommerce-tabs ul.tabs.wc-tabs { + overflow: visible; +} +.woocommerce div.product .woocommerce-tabs ul.tabs.wc-tabs li { + background: none; +} +.woocommerce div.product .woocommerce-tabs ul.tabs li { + padding: 0 30px 0 0; + margin: 0; +} +.woocommerce div.product .woocommerce-tabs ul.tabs li:after, .woocommerce div.product .woocommerce-tabs ul.tabs li:before { + border: none; + -webkit-box-shadow: none; + box-shadow: none; +} +.woocommerce div.product .woocommerce-tabs ul.tabs.wc-tabs li { + border: none; +} +.woocommerce div.product .woocommerce-tabs ul.tabs.wc-tabs li.active a { + color: #e91e63; + border-bottom: 2px solid #e91e63; +} +.woocommerce div.product .woocommerce-tabs ul.tabs.wc-tabs li a { + border-bottom: 2px solid transparent; + min-width: 100px; + padding: 10px 15px; + border-radius: 0; + color: #555; + font-size: 14px; + font-weight: 400; + line-height: 24px; + text-align: center; + text-transform: uppercase; +} +.woocommerce div.product .woocommerce-tabs ul.tabs.wc-tabs li a:hover { + border-bottom: 2px solid #e91e63; +} +.woocommerce div.product .woocommerce-tabs ul.tabs:before { + border: none; +} +.woocommerce div.product .woocommerce-tabs h2 { + display: none; +} +.woocommerce div.product .woocommerce-tabs .panel { + box-shadow: none; + margin-bottom: 0; +} +.woocommerce div.product p.stars a:before { + color: #ff9800; +} +.woocommerce div.product form.cart .variations tr { + display: inline-block; + width: 48%; + margin-bottom: 25px; +} +.woocommerce div.product form.cart .variations tr:nth-child(2n), .woocommerce div.product form.cart .variations tr td { + float: right; +} +.woocommerce div.product form.cart .variations td.label { + text-align: left; +} +.woocommerce div.product form.cart .variations td label { + background: transparent; + font-family: "Roboto", "Helvetica", "Arial", sans-serif; + font-weight: 400; + text-transform: none; +} +.woocommerce div.product form.cart .variations select { + width: 100%; + padding: 7px 0; + border: none; +} +.woocommerce div.product form.cart .variations select:focus { + background-size: 100% 2px,100% 1px; + -webkit-transition-duration: 0.3s; + transition-duration: 0.3s; +} +.woocommerce div.product form.cart .variations td, .woocommerce div.product form.cart .variations th { + width: 100%; +} +.woocommerce div.product div.images .flex-control-thumbs { + margin-top: 10px; +} +.woocommerce div.product div.images .flex-control-thumbs li { + margin-left: 2%; + margin-bottom: 10px; + width: 32%; +} +.woocommerce div.product div.images .flex-control-thumbs li:nth-child(3n+1), .woocommerce div.product div.images .flex-control-thumbs li:first-child { + margin-left: 0; +} +.woocommerce.single-product .summary .price ins { + font-weight: 400; + text-decoration: none; +} +.woocommerce.single-product .product .images { + margin-bottom: 60px; + position: relative; + width: 45%; +} +.woocommerce.single-product .product .summary { + padding-left: 60px; + margin-bottom: 60px; + width: 55%; +} +.woocommerce.single-product .product span.onsale { + position: absolute; + top: -25px; + left: -25px; + right: auto; + z-index: 5; +} +.woocommerce.single-product .product form.cart { + margin: 60px 0 0; + padding: 0; +} +.woocommerce.single-product .product .woocommerce-product-rating { + margin-bottom: 0; +} +.woocommerce.single-product .product .woocommerce-product-rating .star-rating { + font-size: 12px; +} +.woocommerce.single-product .product .woocommerce-review-link { + font-size: 14px; +} +.woocommerce.single-product .woocommerce-breadcrumb { + margin: 0 0 23px; +} +.woocommerce.single-product .section-text { + font-size: 14px; +} +.woocommerce .shop-item p { + font-size: 14px; +} +.woocommerce ul.products li.product .onsale, +.woocommerce span.onsale { + -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12); + box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12); + right: 0; + width: auto; + margin: 0; + padding: 0 10px; + border-radius: 3px; + background-color: #89229b; + font-family: "Roboto Condensed", sans-serif; + font-size: 12px; + font-weight: 300; + line-height: 50px; + text-transform: uppercase; +} +.woocommerce span.onsale { + top: -25px; + left: -25px; +} +.woocommerce #respond input#submit.added:after, .woocommerce a.button.added:after, .woocommerce button.button.added:after, .woocommerce input.button.added:after { + color: #4caf50; +} +.woocommerce .single-product div.product form.cart .button, .woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt { + padding: 12px 30px; + border-radius: 3px; + color: #fff; + background-color: #9c27b0; + font-family: "Roboto", "Helvetica", "Arial", sans-serif; + font-size: 12px; + font-weight: 400; + text-transform: uppercase; +} +.woocommerce input.button.alt { + padding: 12px 30px; + border-radius: 3px; + color: #fff; + background-color: #9c27b0; + font-family: "Roboto", "Helvetica", "Arial", sans-serif; + font-size: 12px; + font-weight: 400; + text-transform: uppercase; +} +.woocommerce input.button:disabled { + padding: 12px 30px; + border-radius: 3px; + color: #fff; + background-color: #9c27b0; + font-family: "Roboto", "Helvetica", "Arial", sans-serif; + font-size: 12px; + font-weight: 400; + text-transform: uppercase; +} +.woocommerce input.button:disabled[disabled] { + padding: 12px 30px; + border-radius: 3px; + color: #fff; + background-color: #9c27b0; + font-family: "Roboto", "Helvetica", "Arial", sans-serif; + font-size: 12px; + font-weight: 400; + text-transform: uppercase; +} +.woocommerce a.button.wc-backward:hover, +.woocommerce .single-product div.product form.cart +.button:hover, +.woocommerce #respond input#submit:hover, +.woocommerce button.button:hover, +.woocommerce input.button:hover, +.woocommerce #respond input#submit.alt:hover, +.woocommerce a.button.alt:hover, +.woocommerce button.button.alt:hover { + color: #fff; + background-color: #9c27b0; +} +.woocommerce input.button.alt:hover { + color: #fff; + background-color: #9c27b0; +} +.woocommerce input.button:disabled:hover, .woocommerce input.button:disabled[disabled]:hover { + color: #fff; + background-color: #9c27b0; +} +.woocommerce .cart-collaterals { + margin-top: -60px; + margin-bottom: 46.2px; +} +.woocommerce .cart-collaterals h2 { + font-size: 33.6px; + margin: 0 0 4px; +} +.woocommerce .cart-collaterals .cross-sells { + width: 52%; +} +.woocommerce .cart-collaterals .cross-sells .products { + margin-top: 30px; +} +.woocommerce .cart-collaterals .cart_totals { + margin-bottom: 14px; + width: 44%; +} +.woocommerce .cart-collaterals .cart_totals th, .woocommerce .cart-collaterals .cart_totals td { + padding: 20px 0; +} +.woocommerce .cart-collaterals .cart_totals th { + font-weight: 300; +} +.woocommerce .cart-collaterals .cart_totals td { + font-weight: 700; +} +.woocommerce .cart-collaterals .cart_totals .checkout-button { + font-size: 14px; +} +.woocommerce .product .card-product { + text-align: center; +} +.woocommerce .product .card-product .card-description p { + margin-bottom: 10px; + color: #999999; + font-size: 14px; + font-weight: 300; + line-height: 21px; +} +.woocommerce .product .card-product .footer { + text-align: left; +} +.woocommerce ul.products li.product { + width: 25%; + margin: 0; + padding: 0 15px; + background: transparent; + -webkit-box-shadow: none; + box-shadow: none; +} +.woocommerce ul.products li.product .price del { + opacity: 1; + display: inline; +} +.woocommerce ul.products li.product .price ins { + font-weight: 300; + text-decoration: none; +} +.woocommerce ul.products li.product .button { + display: inline-block; + margin-top: 0; +} +.woocommerce .hestia-features p { + color: #999999; + font-size: 14px; + font-weight: 300; + line-height: 21px; +} +.woocommerce .related.products { + margin-top: 100px; + padding-top: 0; +} +.woocommerce .related.products h2 { + margin: 0 0 80px; + font-size: 36.4px; + font-family: "Roboto Slab", "Times New Roman", serif; + font-weight: 700; + text-align: center; +} +.woocommerce ul.products li.product .price { + color: #3C4858; + font-size: 17px; + font-weight: 300; + line-height: 1.2; + text-align: left; +} +.woocommerce ul.products li.product .price.price-unit { + padding: 0 30px 15px; + margin: -20px 0 10px; + font-size: 12px; +} +.woocommerce nav.woocommerce-pagination ul { + overflow: visible; + border: none; + margin: 20px 0; +} +.woocommerce nav.woocommerce-pagination ul li { + overflow: visible; + border: none; +} +.woocommerce nav.woocommerce-pagination ul li span.current { + min-width: 30px; + height: 30px; + margin: 0 3px; + padding: 0 11px; + border-color: #9c27b0; + border-radius: 30px; + color: #fff; + background-color: #9c27b0; + -webkit-box-shadow: 0 4px 5px 0 rgba(156, 39, 176, 0.14), 0 1px 10px 0 rgba(156, 39, 176, 0.12), 0 2px 4px -1px rgba(156, 39, 176, 0.2); + box-shadow: 0 4px 5px 0 rgba(156, 39, 176, 0.14), 0 1px 10px 0 rgba(156, 39, 176, 0.12), 0 2px 4px -1px rgba(156, 39, 176, 0.2); + line-height: 30px; +} +.woocommerce nav.woocommerce-pagination ul li a { + min-width: 30px; + height: 30px; + margin: 0 3px; + padding: 0 11px; + border: 0; + border-radius: 30px; + color: #999999; + background: transparent; + font-size: 14px; + font-weight: 400; + line-height: 30px; + text-transform: uppercase; +} +.woocommerce nav.woocommerce-pagination ul li a:hover, .woocommerce nav.woocommerce-pagination ul li a:focus { + background-color: #eee; +} +.woocommerce td.product-name dl.variation dd, .woocommerce td.product-name dl.variation dt { + margin-bottom: 7px; +} +.woocommerce dl.variation dd p { + margin: 0 4px 0 0; + padding: 0 0 3.5px; + font-size: 14px; + line-height: 1.42857143; +} +.woocommerce form .form-row .required { + text-decoration: none; +} +.woocommerce form .form-row .input-checkbox { + margin: 8px 0 0; +} +.woocommerce .col2-set .woocommerce-account-fields label.checkbox span { + margin-left: 20px; +} +.woocommerce form.login { + border: none; + margin: 0; + padding: 0; +} +.woocommerce form.login input[type=submit] { + margin-right: 20px; +} +.woocommerce .before-shop-main { + margin: 20px 0 25px; +} +.woocommerce .woocommerce-breadcrumb { + color: #999999; + font-size: 12px; + margin: 0 0 3px; +} +.woocommerce .woocommerce-breadcrumb a { + color: #999999; +} +.woocommerce .woocommerce-breadcrumb a:hover { + color: #3C4858; +} +.woocommerce .woocommerce-result-count { + color: #3C4858; + font-size: 14px; +} +.woocommerce .woocommerce-ordering, +.woocommerce .woocommerce-result-count { + margin: 0 !important; + padding: 0; +} +.woocommerce .woocommerce-ordering { + margin-top: 10px !important; +} +.woocommerce .woocommerce-ordering:before { + content: '\f0d7'; + font-family: FontAwesome; + position: absolute; + top: 0; + right: 0; + display: inline-block; + font-size: 12px; + pointer-events: none; +} +.woocommerce .woocommerce-ordering select { + border: none; + padding: 0 0 7px 0; + text-transform: uppercase; +} +.woocommerce .woocommerce-ordering select:focus { + background-size: 100% 2px,100% 1px; + -webkit-transition-duration: 0.3s; + transition-duration: 0.3s; +} + +.woocommerce-checkout-payment .woocommerce-info { + color: #3C4858; + background: #ebe9eb; + padding: 0 !important; +} +.woocommerce-checkout-payment .woocommerce-info:before { + display: none; +} + +#add_payment_method table.cart td.actions .coupon .input-text, +.woocommerce-cart table.cart td.actions .coupon .input-text, +.woocommerce-checkout table.cart td.actions .coupon .input-text { + width: auto; + border: 0; + margin: 0 20px 0 0; +} + +.woocommerce table.shop_table, +.table > thead > tr > th { + border: none; +} + +#add_payment_method table.cart img, +.woocommerce-cart table.cart img, +.woocommerce-checkout table.cart img { + width: auto; + max-width: 100px; + -webkit-box-shadow: none; + box-shadow: none; +} + +.woocommerce-cart .woocommerce-cart-form { + margin-bottom: 15px; + padding-bottom: 7px; +} +.woocommerce-cart .shop_table .actions .coupon { + margin-bottom: 15px; + position: relative; + padding-bottom: 7px; +} +.woocommerce-cart .shop_table .actions .coupon .input-text { + height: 36px; + font-size: 14px; + color: #555; +} +.woocommerce-cart .shop_table .actions .coupon .input-text:focus { + background-size: 100% 2px,100% 1px; + -webkit-transition-duration: 0.3s; + transition-duration: 0.3s; +} +.woocommerce-cart .shop_table .blockUI.blockOverlay, +.woocommerce-cart .cart-collaterals .blockUI.blockOverlay { + background-color: white !important; +} + +.woocommerce-checkout #customer_details select, +.woocommerce-checkout #order_review select, +.woocommerce-checkout .woocomerce-form select { + border: none; +} +.woocommerce-checkout #customer_details select:focus, +.woocommerce-checkout #customer_details .input-text:focus, +.woocommerce-checkout #order_review select:focus, +.woocommerce-checkout #order_review .input-text:focus, +.woocommerce-checkout .woocomerce-form select:focus, +.woocommerce-checkout .woocomerce-form .input-text:focus { + background-size: 100% 2px,100% 1px; + -webkit-transition-duration: 0.3s; + transition-duration: 0.3s; +} + +.woocommerce .quantity .qty { + padding: 4px 0; +} + +.shop-item > .card > .card-image, +.product > .card > .card-image { + box-shadow: 0 5px 15px -8px rgba(0, 0, 0, 0.24), 0 8px 10px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.2); +} + +.shop-item:hover > .card > .card-image, +.product:hover > .card > .card-image { + -webkit-box-shadow: 0 15px 35px -15px rgba(0, 0, 0, 0.5), 0 5px 25px 0 rgba(0, 0, 0, 0.12), 0 10px 10px -5px rgba(0, 0, 0, 0.2); + box-shadow: 0 15px 35px -15px rgba(0, 0, 0, 0.5), 0 5px 25px 0 rgba(0, 0, 0, 0.12), 0 10px 10px -5px rgba(0, 0, 0, 0.2); + -webkit-transform: translate(0, -10px); + -ms-transform: translate(0, -10px); + transform: translate(0, -10px); +} + +#add_payment_method .wc-proceed-to-checkout a.checkout-button, +.woocommerce-cart .wc-proceed-to-checkout a.checkout-button, +.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button { + padding: 12px 30px; + border-radius: 3px; + color: #fff; + background-color: #9c27b0; + font-family: "Roboto", "Helvetica", "Arial", sans-serif; + font-size: 12px; + font-weight: 400; + text-transform: uppercase; +} + +.added_to_cart.wc-forward { + border-radius: 3px; + color: #fff; + background-color: #9c27b0; + font-family: "Roboto", "Helvetica", "Arial", sans-serif; + font-weight: 400; + text-transform: uppercase; + display: inline-block; + bottom: -25px; + width: auto; + margin: 0 auto; + padding: 5px 15px; + font-size: 10px; + text-align: center; + line-height: 30px; +} + +.hestia-view-cart-wrapper { + bottom: -30px; + display: block !important; + overflow: visible; + position: absolute; + right: 0; + left: 0; + width: 100%; + text-align: center; +} + +.added_to_cart.wc-forward:hover, +.woocommerce-message a.button:hover, +#add_payment_method .wc-proceed-to-checkout a.checkout-button:hover, +.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover, +.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button:hover { + color: #fff; + background-color: #9c27b0; +} + +.woocommerce-page ul.products li.product { + width: 25%; + margin: 0; + padding: 0 15px; + background: transparent; + -webkit-box-shadow: none; + box-shadow: none; +} + +.woocommerce-cart table.shop_table { + margin-top: -30px; +} +.woocommerce-cart table.shop_table th { + font-size: 13px; + font-weight: 300; + padding: 20px; + text-transform: uppercase; +} +.woocommerce-cart table.shop_table .product-name a { + color: #3C4858; + font-size: 16px; + font-weight: 500; + line-height: 30px; +} +.woocommerce-cart table.shop_table td { + padding: 20px; +} +.woocommerce-cart table.shop_table td.product-remove { + width: 21px; +} +.woocommerce-cart table.shop_table td.product-thumbnail { + width: 100px; +} +.woocommerce-cart table.shop_table td.actions { + padding: 20px 0; +} +.woocommerce-cart table.shop_table td.actions input[type=submit] { + font-size: 14px; +} + +.woocommerce-page .title-row { + margin-top: 20px; +} + +.single-product.woocommerce .thumbnails #slider-prev, .single-product.woocommerce .thumbnails #slider-next { + top: 45% !important; +} + +.variations tr { + border: none; +} +.variations tr .label { + color: #aaa; + font-size: 14px; +} + +.woocommerce .single-product div.product form.cart .button, .woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt, .woocommerce input.button:disabled, .woocommerce input.button[disabled]:disabled, #add_payment_method .wc-proceed-to-checkout a.checkout-button, +.woocommerce-cart .wc-proceed-to-checkout a.checkout-button, +.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button, .added_to_cart.wc-forward { + -webkit-box-shadow: 0 2px 2px 0 rgba(156, 39, 176, 0.14), 0 3px 1px -2px rgba(156, 39, 176, 0.2), 0 1px 5px 0 rgba(156, 39, 176, 0.12); + -moz-box-shadow: 0 2px 2px 0 rgba(156, 39, 176, 0.14), 0 3px 1px -2px rgba(156, 39, 176, 0.2), 0 1px 5px 0 rgba(156, 39, 176, 0.12); + box-shadow: 0 2px 2px 0 rgba(156, 39, 176, 0.14), 0 3px 1px -2px rgba(156, 39, 176, 0.2), 0 1px 5px 0 rgba(156, 39, 176, 0.12); +} + +.woocommerce a.button.wc-backward:hover, +.woocommerce .single-product div.product form.cart +.button:hover, +.woocommerce #respond input#submit:hover, +.woocommerce button.button:hover, +.woocommerce input.button:hover, +.woocommerce #respond input#submit.alt:hover, +.woocommerce a.button.alt:hover, +.woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover, .woocommerce input.button:disabled:hover, .woocommerce input.button[disabled]:disabled:hover, .added_to_cart.wc-forward:hover, +.woocommerce-message a.button:hover, +#add_payment_method .wc-proceed-to-checkout a.checkout-button:hover, +.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover, +.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button:hover, .widget_shopping_cart.widget .remove:hover { + -webkit-box-shadow: 0 14px 26px -12px rgba(156, 39, 176, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(156, 39, 176, 0.2); + -moz-box-shadow: 0 14px 26px -12px rgba(156, 39, 176, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(156, 39, 176, 0.2); + box-shadow: 0 14px 26px -12px rgba(156, 39, 176, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(156, 39, 176, 0.2); +} + +.boxed-layout-header { + padding-bottom: 60px; +} + +/*-------------------------------------------------------------- +## Widgets +--------------------------------------------------------------*/ +.shop-sidebar.card { + padding-top: 29px; + padding-left: 15px; + padding-right: 15px; +} + +.woocommerce ul.product_list_widget, .footer ul.product_list_widget, ul.product_list_widget { + padding: 0; +} +.woocommerce ul.product_list_widget li, .footer ul.product_list_widget li, ul.product_list_widget li { + font-size: 14px; + padding: 10px 0; +} +.woocommerce ul.product_list_widget li:after, .footer ul.product_list_widget li:after, ul.product_list_widget li:after { + content: " "; + display: block; + height: 0; + clear: both; +} +.woocommerce ul.product_list_widget li a, .footer ul.product_list_widget li a, ul.product_list_widget li a { + padding: 0; + display: block; + margin-bottom: 8px; + line-height: normal; + font-weight: 400; +} +.woocommerce ul.product_list_widget li img, .footer ul.product_list_widget li img, ul.product_list_widget li img { + float: right; + -webkit-transition: all 300ms cubic-bezier(0.34, 1.61, 0.7, 1); + -moz-transition: all 300ms cubic-bezier(0.34, 1.61, 0.7, 1); + -o-transition: all 300ms cubic-bezier(0.34, 1.61, 0.7, 1); + -ms-transition: all 300ms cubic-bezier(0.34, 1.61, 0.7, 1); + transition: all 300ms cubic-bezier(0.34, 1.61, 0.7, 1); + border-radius: 6px; + margin-left: 20px; + width: 70px; + -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12); + -moz-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12); + box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12); +} +.woocommerce ul.product_list_widget li:hover img, .footer ul.product_list_widget li:hover img, ul.product_list_widget li:hover img { + transform: translateY(-3px); + -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 6px -2px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.12); + -moz-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 6px -2px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.12); + box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 6px -2px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.12); +} +.woocommerce ul.product_list_widget li .quantity, .footer ul.product_list_widget li .quantity, ul.product_list_widget li .quantity { + display: block; +} +.woocommerce ul.product_list_widget li:first-child, .footer ul.product_list_widget li:first-child, ul.product_list_widget li:first-child { + padding-top: 0; +} + +.star-rating { + color: #ff9800; + overflow: hidden; + position: relative; + height: 12px; + line-height: 1; + font-size: 12px; + width: 64.8px; + font-family: star; +} +.star-rating:before { + content: '\73\73\73\73\73'; + color: #d3ced2; + float: left; + top: 0; + left: 0; + position: absolute; +} +.star-rating span { + position: absolute; + padding-top: 18px; +} +.star-rating span:before { + content: '\53\53\53\53\53'; + top: 0; + position: absolute; + left: 0; +} + +#secondary div[id^=woocommerce_rating_filter] li, +.footer div[id^=woocommerce_rating_filter] li { + text-align: right; +} +#secondary div[id^=woocommerce_rating_filter] li a, +.footer div[id^=woocommerce_rating_filter] li a { + font-weight: 300; +} +#secondary div[id^=woocommerce_rating_filter] li .star-rating, +.footer div[id^=woocommerce_rating_filter] li .star-rating { + float: left; +} + +#secondary div[id^=woocommerce_layered_nav] ul, +#secondary div[id^=woocommerce_product_categories] ul, +.footer div[id^=woocommerce_layered_nav] ul, +.footer div[id^=woocommerce_product_categories] ul { + padding: 0; +} +#secondary div[id^=woocommerce_layered_nav] ul.children, +#secondary div[id^=woocommerce_product_categories] ul.children, +.footer div[id^=woocommerce_layered_nav] ul.children, +.footer div[id^=woocommerce_product_categories] ul.children { + padding-left: 15px; +} +#secondary div[id^=woocommerce_layered_nav] ul li a, +#secondary div[id^=woocommerce_product_categories] ul li a, +.footer div[id^=woocommerce_layered_nav] ul li a, +.footer div[id^=woocommerce_product_categories] ul li a { + font-weight: 400; + font-size: 14px; +} +#secondary div[id^=woocommerce_layered_nav] ul .count, +#secondary div[id^=woocommerce_product_categories] ul .count, +.footer div[id^=woocommerce_layered_nav] ul .count, +.footer div[id^=woocommerce_product_categories] ul .count { + font-size: 14px; + float: right; +} + +#secondary div[id^=woocommerce_products] a .product-title, +#secondary div[id^=woocommerce_top_rated_products] a .product-title, +#secondary div[id^=woocommerce_recently_viewed_products] a .product-title, +.footer div[id^=woocommerce_products] a .product-title, +.footer div[id^=woocommerce_top_rated_products] a .product-title, +.footer div[id^=woocommerce_recently_viewed_products] a .product-title { + margin-top: 20px; +} +#secondary div[id^=woocommerce_products] .amount:first-of-type, +#secondary div[id^=woocommerce_products] ins, +#secondary div[id^=woocommerce_top_rated_products] .amount:first-of-type, +#secondary div[id^=woocommerce_top_rated_products] ins, +#secondary div[id^=woocommerce_recently_viewed_products] .amount:first-of-type, +#secondary div[id^=woocommerce_recently_viewed_products] ins, +.footer div[id^=woocommerce_products] .amount:first-of-type, +.footer div[id^=woocommerce_products] ins, +.footer div[id^=woocommerce_top_rated_products] .amount:first-of-type, +.footer div[id^=woocommerce_top_rated_products] ins, +.footer div[id^=woocommerce_recently_viewed_products] .amount:first-of-type, +.footer div[id^=woocommerce_recently_viewed_products] ins { + text-decoration: none; +} +#secondary div[id^=woocommerce_products] ins .amount, +#secondary div[id^=woocommerce_top_rated_products] ins .amount, +#secondary div[id^=woocommerce_recently_viewed_products] ins .amount, +.footer div[id^=woocommerce_products] ins .amount, +.footer div[id^=woocommerce_top_rated_products] ins .amount, +.footer div[id^=woocommerce_recently_viewed_products] ins .amount { + margin-left: 10px !important; +} + +#secondary div[id^=woocommerce_recent_reviews] .reviewer, +.footer div[id^=woocommerce_recent_reviews] .reviewer { + font-size: 15px; +} +#secondary div[id^=woocommerce_recent_reviews] ul.product_list_widget li > a > img, +.footer div[id^=woocommerce_recent_reviews] ul.product_list_widget li > a > img { + width: 70px; +} + +#secondary div[id^=woocommerce_price_filter], +.footer div[id^=woocommerce_price_filter] { + padding-right: 14px; +} +#secondary div[id^=woocommerce_price_filter] .price_slider, +.footer div[id^=woocommerce_price_filter] .price_slider { + background-color: #c8c8c8; + height: 2px; + margin: 15px 0 30px; + border-radius: 5px; +} +#secondary div[id^=woocommerce_price_filter] .price_slider .ui-slider-range, +.footer div[id^=woocommerce_price_filter] .price_slider .ui-slider-range { + background-color: #9c27b0; + height: 2px; + display: block; + position: absolute; +} +#secondary div[id^=woocommerce_price_filter] .price_slider .ui-slider-handle, +.footer div[id^=woocommerce_price_filter] .price_slider .ui-slider-handle { + margin-top: -6px; + margin-left: 0; + background: #fff; + border: 1px solid #9c27b0; + border-radius: 50%; + height: 14px; + width: 14px; + position: absolute; + top: 0; + -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12); + -moz-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12); + box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12); + transition: transform .3s ease; + cursor: pointer; +} +#secondary div[id^=woocommerce_price_filter] .price_slider .ui-slider-handle:focus, +.footer div[id^=woocommerce_price_filter] .price_slider .ui-slider-handle:focus { + outline: none; +} +#secondary div[id^=woocommerce_price_filter] .price_slider .ui-slider-handle.ui-state-active, #secondary div[id^=woocommerce_price_filter] .price_slider .ui-slider-handle:hover, +.footer div[id^=woocommerce_price_filter] .price_slider .ui-slider-handle.ui-state-active, +.footer div[id^=woocommerce_price_filter] .price_slider .ui-slider-handle:hover { + transform: scale3d(1.5, 1.5, 1); +} +#secondary div[id^=woocommerce_price_filter] .button, +.footer div[id^=woocommerce_price_filter] .button { + margin-right: -14px; + float: right; + font-size: 12px; +} +#secondary div[id^=woocommerce_price_filter] .price_slider, +.footer div[id^=woocommerce_price_filter] .price_slider { + font-size: inherit; + line-height: inherit; + text-align: left; +} +#secondary div[id^=woocommerce_price_filter] .price_label, +.footer div[id^=woocommerce_price_filter] .price_label { + max-width: 50%; + padding-top: 0; + text-align: left; + font-size: 14px; +} + +div[id^=woocommerce_product_tag_cloud].widget a { + font-weight: 600; + padding: 5px 12px; + border-radius: 12px; + text-transform: uppercase; + background: #9c27b0; + color: #fff; + margin-bottom: 5px; + line-height: 27px; + white-space: nowrap; + font-size: 10px !important; +} + +.widget_shopping_cart.widget img { + width: 70px; + float: right; + margin-left: 20px; + margin-right: 0; +} +.widget_shopping_cart.widget .remove, +.widget_shopping_cart.widget .total .amount, +.widget_shopping_cart.widget .buttons .button:last-child { + float: right; +} +.widget_shopping_cart.widget .remove { + color: #f44336; + border-radius: 50%; + height: 18px; + width: 18px; + font-size: 18px; + line-height: 18px; + font-weight: 600; + text-align: center; + top: -2px; + z-index: 1; +} +.widget_shopping_cart.widget .remove:hover { + color: #fff; + background: #f44336; +} +.widget_shopping_cart.widget .buttons .button { + color: #fff; + display: inline-block; +} +.widget_shopping_cart.widget .buttons:after { + content: " "; + display: block; + height: 0; + clear: both; +} +.widget_shopping_cart.widget .variation { + border-left: 0; + padding-left: 0; +} +.widget_shopping_cart.widget .variation dt, +.widget_shopping_cart.widget .variation dd { + font-size: 12px; + line-height: 14px; + padding: 0; + margin: 0 4px 0 0; +} +.widget_shopping_cart.widget .variation dd p { + font-size: 12px; + line-height: 14px; +} + +.woocommerce-product-search { + width: 100%; +} +.woocommerce-product-search input.search-field { + display: table-cell; + vertical-align: top; + float: left; + width: 70%; +} +.woocommerce-product-search input[type=submit] { + float: right; +} + +div[id^=woocommerce_product_search].widget, +div[id^=search].widget { + margin-bottom: 0; +} +div[id^=woocommerce_product_search].widget .search-form, +div[id^=woocommerce_product_search].widget .woocommerce-product-search, +div[id^=search].widget .search-form, +div[id^=search].widget .woocommerce-product-search { + margin-bottom: 0; + padding-bottom: 0; +} + +div[id^=woocommerce_layered_nav_filters].widget li { + width: 100%; + display: inline; +} +div[id^=woocommerce_layered_nav_filters].widget li a { + font-weight: 100; +} +div[id^=woocommerce_layered_nav_filters].widget li a:before { + color: red; +} + +/*-------------------------------------------------------------- +## Account Page +--------------------------------------------------------------*/ +.woocommerce-account .woocommerce-MyAccount-navigation { + display: inline-block; + width: 20%; +} +.woocommerce-account .woocommerce-MyAccount-content { + display: inline-block; + float: right; + width: 75%; + margin-left: 5%; +} +.woocommerce-account .woocommerce-MyAccount-navigation ul { + padding: 0; + border-top: 1px solid #eee; +} +.woocommerce-account .woocommerce-MyAccount-navigation ul li { + padding-bottom: 0; + border-bottom: 1px solid #eee; + list-style: none; +} +.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a:before { + opacity: 1; +} +.woocommerce-account .woocommerce-MyAccount-navigation ul li a { + display: block; + padding: 10px 5px; +} +.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover { + color: #333; +} +.woocommerce-account .woocommerce-MyAccount-navigation ul li a:before { + margin-right: 20px; + opacity: 0.25; +} +.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover:before { + opacity: 1; +} +.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--dashboard a:before, .woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--orders a:before, .woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--downloads a:before, .woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-address a:before, .woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--payment-methods a:before, .woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-account a:before, .woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a:before { + font-family: "FontAwesome"; +} +.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--dashboard a:before { + content: "\f0e4"; +} +.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--orders a:before { + content: "\f291"; +} +.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--downloads a:before { + content: "\f1c6"; +} +.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-address a:before { + content: "\f015"; +} +.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--payment-methods a:before { + content: "\f09d"; +} +.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-account a:before { + content: "\f007"; +} +.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a:before { + content: "\f08b"; +} +.woocommerce-account .woocommerce-MyAccount-content h2 { + font-size: 25px; + font-weight: 600; + text-align: center; +} +.woocommerce-account p.order-again { + text-align: right; +} + +.woocommerce-EditAccountForm input[type="submit"] { + float: right; + margin-top: 50px; +} + +.woocommerce-account table.shop_table_responsive thead { + color: #fff; + background-color: #333; +} +.woocommerce-account table.shop_table_responsive thead th { + padding: 10px; + border-right: 1px solid; + text-align: center; +} +.woocommerce-account table.shop_table_responsive tbody td { + padding: 10px; + text-align: center; +} +.woocommerce-account table.shop_table_responsive tbody tr { + border-bottom: 1px solid #eee; +} +.woocommerce-account .my_account_orders .button { + text-decoration: underline; + text-transform: uppercase; +} +.woocommerce-account .woocommerce-MyAccount-content .col2-set { + width: 100%; +} + +/*-------------------------------------------------------------- +## Notifications +--------------------------------------------------------------*/ +.woocommerce-info, +.woocommerce-error, +.woocommerce-message { + padding: 20px 15px 20px 50px !important; + border: none; + color: #fff; + line-height: 20px; + background: #efefef; +} +.woocommerce-info:before, +.woocommerce-error:before, +.woocommerce-message:before { + top: 19px; + color: #3C4858; + font-family: "FontAwesome"; +} +.woocommerce-info li, +.woocommerce-error li, +.woocommerce-message li { + line-height: 1.5; +} +.woocommerce-info > a.button, +.woocommerce-error > a.button, +.woocommerce-message > a.button { + background-color: transparent; + box-shadow: none; + padding: 5px 10px 0; + font-size: 12px; + font-weight: bold; + color: #3C4858; +} +.woocommerce-info > a.button:hover, +.woocommerce-error > a.button:hover, +.woocommerce-message > a.button:hover { + color: #3C4858; + background: none; + box-shadow: none; + opacity: .75; +} + +.woocommerce-info { + color: #fff; + background-color: #00bcd4; +} +.woocommerce-info:before { + color: #fff; + content: "\f129"; +} +.woocommerce-info a { + color: #fff; + font-weight: bold; +} +.woocommerce-info a:hover { + opacity: .75; + color: #fff; +} + +.woocommerce-error { + background-color: #fccbc7; + color: #3C4858; +} +.woocommerce-error:before { + content: "\f12a"; +} + +.woocommerce-message { + background-color: #e5ffe8; + color: #3C4858; +} +.woocommerce-message a:not(.button) { + color: #3C4858; + font-weight: 800; +} +.woocommerce-message a:not(.button):hover { + opacity: .75; +} +.woocommerce-message:before { + content: "\f00c"; +} + +/*-------------------------------------------------------------- +## Reviews +--------------------------------------------------------------*/ +.woocommerce #reviews #comments ol.commentlist { + padding: 0; +} +.woocommerce div.product #reviews .comment img { + overflow: hidden; + width: 45px; + height: 45px; + margin: 0 auto; + padding: 0; + border: none; + border-radius: 50%; + -webkit-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2); + box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2); +} +.woocommerce #reviews #comments ol.commentlist li img.avatar { + overflow: hidden; + width: 45px; + height: 45px; + margin: 0 auto; + padding: 0; + border: none; + border-radius: 50%; + -webkit-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2); + box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2); +} +.woocommerce #reviews #comments ol.commentlist li .comment-text { + margin-bottom: 25px; + border: none; +} +.woocommerce .comment-form .comment-notes { + display: none; +} +.woocommerce .comment-reply-title { + font-family: "Roboto Slab", "Times New Roman", serif; + font-weight: 700; + color: #3C4858; + text-decoration: none; + word-wrap: break-word; + margin: 20px 0 10px; + font-size: 25.55px; + line-height: 35.77px; + text-align: center; + display: block; +} +.woocommerce .form-submit { + text-align: right; +} + +/*-------------------------------------------------------------- +## Checkout +--------------------------------------------------------------*/ +.woocommerce .col2-set, +.woocommerce-page .col2-set, +.woocommerce-checkout .col2-set { + float: left; + width: 48%; + margin-right: 12%; +} + +.woocommerce-checkout .col2-set { + margin-bottom: 50px; +} + +#customer_details .col-1, +#customer_details .col-2 { + clear: left; + width: 100%; +} + +#order_review { + float: right; + clear: right; + width: 40%; + margin-right: 0; +} + +.woocommerce-checkout #payment input[type=submit], +.woocommerce-checkout input[type=submit] { + font-size: 14px; +} +.woocommerce-checkout table.shop_table td strong { + display: block; +} +.woocommerce-checkout .woocommerce-info, +.woocommerce-checkout .woocommerce-error, +.woocommerce-checkout .woocommerce-message, +.woocommerce-checkout #payment { + border-radius: 3px; +} +.woocommerce-checkout #payment { + background: #f0f0f0; +} +.woocommerce-checkout #payment #place_order { + float: none; +} +.woocommerce-checkout #payment ul.payment_methods, +.woocommerce-checkout #payment div.form-row { + padding: 20px; +} +.woocommerce-checkout #payment ul.payment_methods { + border: none; +} +.woocommerce-checkout #payment ul.payment_methods li { + background: #f0f0f0; +} +.woocommerce-checkout #payment ul.payment_methods li, +.woocommerce-checkout #payment ul.payment_methods div, +.woocommerce-checkout #payment ul.payment_methods div p { + font-size: 14px; + line-height: 1.5; +} +.woocommerce-checkout #payment ul.payment_methods li:last-child div.payment_box { + margin-bottom: 0; +} +.woocommerce-checkout #payment div.payment_box { + background: #dfdfdf; +} +.woocommerce-checkout #payment div.payment_box ::before { + border-color: #dfdfdf; +} +.woocommerce-checkout #payment .payment_method_paypal .about_paypal { + float: none; + margin-left: 10px; +} +.woocommerce-checkout .checkout_coupon .form-row { + margin-bottom: 0; + width: 53%; +} +.woocommerce-checkout .checkout_coupon .form-row-last { + text-align: right; + width: 47%; +} +.woocommerce-checkout .form-row label { + color: #999999; + font-size: 16px; + font-weight: 300; +} +.woocommerce-checkout .select2-container--default .select2-selection--single, +.woocommerce-checkout .select2-dropdown { + border-color: #d2d2d2; +} +.woocommerce-checkout .woocommerce-checkout-payment .form-row .woocommerce-form__label-for-checkbox, .woocommerce-checkout .woocommerce-checkout-payment li > label { + color: #2d3359; + font-size: 14px; + font-weight: 400; +} +.woocommerce-checkout .woocommerce-checkout-payment .form-row .woocommerce-form__label-for-checkbox span:not(.required), .woocommerce-checkout .woocommerce-checkout-payment li > label span:not(.required) { + padding-left: 20px; +} +.woocommerce-checkout .woocommerce-checkout-payment .form-row .woocommerce-form__label-for-checkbox input, .woocommerce-checkout .woocommerce-checkout-payment li > label input { + margin: 9px 0 0; +} +.woocommerce-checkout .woocommerce-account-fields p.create-account { + margin: 0; +} +.woocommerce-checkout .woocommerce-shipping-fields h3 { + margin: 0; + padding-left: 3px; +} +.woocommerce-checkout .woocommerce-shipping-fields h3 label { + line-height: 1; + margin: 0 0 10px; +} +.woocommerce-checkout .woocommerce-shipping-fields h3 label input { + margin-left: 0; + position: relative; +} +.woocommerce-checkout .woocommerce-shipping-fields h3 label span { + color: #999999; + font-size: 16px; + font-weight: 300; +} +.woocommerce-checkout .col-md-12 #customer_details label { + font-weight: 500; +} +.woocommerce-checkout .shop_table tr.shipping td p { + margin: 0; +} + +/*-------------------------------------------------------------- +## WooCommerce Responsive +--------------------------------------------------------------*/ +@media (max-width: 1200px) { + .woocommerce.archive .blog-post .col-md-12 { + padding-left: 15px; + padding-right: 15px; + } +} +@media (min-width: 992px) { + .woocommerce .content-sidebar-right ul.products li.product, .woocommerce .content-sidebar-left ul.products li.product { + width: 33.3%; + } +} +@media (max-width: 991px) { + .woocommerce .content-sidebar-left, + .woocommerce .content-sidebar-right { + padding: 0 15px; + } + .woocommerce .content-sidebar-left ul.products li.product, + .woocommerce .content-sidebar-right ul.products li.product { + clear: none; + } + .woocommerce .before-shop-main { + padding-left: 15px; + padding-right: 15px; + margin: 20px 0 25px; + } + .woocommerce .page-header .container .row .cart-contents-content { + right: 30px; + } + + /* product list */ + .woocommerce ul.products li.product { + float: left; + width: 50%; + margin: auto; + padding-right: 15px; + padding-left: 15px; + } + + .shop-with-sidebar ul.products li.product:nth-child(3n+1) { + clear: none; + } + + .woocommerce ul.products li.product:nth-child(2n+1) { + clear: left; + } + + .woocommerce-ordering, + .woocommerce-ordering select { + width: 100%; + margin-right: 0; + } + + .woocommerce-breadcrumb { + width: 100%; + margin-bottom: 20px; + line-height: 33px; + } + + /*My Account Styling*/ + .woocommerce-account .woocommerce-MyAccount-navigation { + width: 100%; + } + + .woocommerce-account .woocommerce-MyAccount-navigation ul li { + display: table-cell; + border: none; + } + + .woocommerce-account .woocommerce-MyAccount-navigation ul { + display: table; + width: 100%; + margin: 0 0 25px; + border: none; + } + + .woocommerce-account .woocommerce-MyAccount-navigation ul li a { + display: block; + } + + .woocommerce-account .woocommerce-MyAccount-content { + width: 100%; + margin-left: 0; + } + + .woocommerce-account .woocommerce-MyAccount-navigation ul li a:before { + margin-right: 5px; + opacity: 0.25; + } + + .woocommerce-account input.woocommerce-Button.button { + height: auto; + margin-top: 10px; + padding: 8px 37px; + border: none; + border-radius: 2px; + color: #fff; + background: #111111; + font-family: "Roboto Condensed", sans-serif; + font-size: 11px; + letter-spacing: 2px; + text-transform: uppercase; + } + + .woocommerce-account input.woocommerce-Button.button:hover { + background: rgba(17, 17, 17, 0.8); + } + + .woocommerce-checkout table.shop_table th.product-total, + .woocommerce-checkout table.shop_table td.product-total, + .woocommerce-checkout table.shop_table tfoot td { + text-align: right; + } + + .woocommerce.single-product .product .images { + margin-bottom: 30px; + } + .woocommerce.single-product .product form.cart { + margin-top: 30px; + } + .woocommerce.single-product .related.products, + .woocommerce.single-product .upsells.products { + padding-bottom: 0; + } + .woocommerce.single-product .related.products h2, + .woocommerce.single-product .upsells.products h2 { + margin-bottom: 20px; + } +} +@media (max-width: 768px) { + .woocommerce.single-product .product .images, .woocommerce.single-product .product .summary { + width: 100%; + } + + .woocommerce.single-product .product .summary { + padding-left: 0; + } + + .woocommerce-product-search input.search-field { + width: 85%; + } + + .woocommerce-cart .section { + padding: 30px 0 0; + } + .woocommerce-cart .section.section-blog-info:empty { + padding: 0; + } + .woocommerce-cart table.cart td.actions { + background: none !important; + } + .woocommerce-cart table.shop_table td.product-name { + line-height: 30px; + } + .woocommerce-cart table.shop_table td.product-name dl.variation dd, + .woocommerce-cart table.shop_table td.product-name dl.variation dt { + font-size: 16px; + line-height: 30px; + margin-bottom: 0; + } + .woocommerce-cart table.shop_table td.product-name dl.variation dd p { + font-size: 16px; + } + .woocommerce-cart .cart-collaterals { + margin-bottom: 0; + } + .woocommerce-cart .wc-proceed-to-checkout { + padding: 1em 0 0; + } + + .woocommerce-checkout .section { + padding: 20px 0 0; + } + .woocommerce-checkout .woocommerce-billing-fields h3 { + margin-top: 0; + } + .woocommerce-checkout td.product-name dl.variation dt, + .woocommerce-checkout td.product-name dl.variation dd { + font-size: 16px; + margin-bottom: 0; + } + .woocommerce-checkout td.product-name dl.variation dd p { + font-size: 16px; + } +} +@media (max-width: 767px) { + /* Woocommerce */ + .woocommerce .page-header .container { + padding-top: 170px; + } + + .woocommerce ul.products li.product, + .woocommerce ul.products li.product:nth-child(2n), + .woocommerce-page ul.products li.product:nth-child(2n) { + float: none; + width: 100%; + max-width: 370px; + margin: 25px auto; + } + + .woocommerce .page-header { + min-height: 200px; + } + .woocommerce .page-header .container .row .cart-contents-content { + right: 10px; + } + + /*My Account Styling*/ + .woocommerce-account .woocommerce-MyAccount-navigation ul li { + display: inline-block; + min-width: 125px; + border: none; + } + + .woocommerce-account .woocommerce-MyAccount-navigation ul { + display: table; + width: 100%; + margin: 0 0 25px; + border: none; + } + + .woocommerce .col2-set, .woocommerce-page .col2-set { + width: auto; + float: none; + margin-right: 0; + } + + #order_review, #order_review_heading { + float: none; + width: auto; + } + + .woocommerce.single-product .product { + padding: 30px 15px 0; + } + .woocommerce.single-product .product .images, + .woocommerce.single-product .product .summary { + width: 100%; + } + .woocommerce.single-product .product .summary { + padding-left: 0; + } + .woocommerce.single-product .product span.onsale { + left: 15px; + } + .woocommerce.single-product .blog-post .col-md-12 > div[id^=product].product { + padding: 30px 15px; + } + + .woocommerce.single-product.single .section { + padding: 0; + } + + .woocommerce-cart table.shop_table td.product-remove { + width: 100%; + } + + .woocommerce .cart-collaterals { + margin-top: 0; + } + .woocommerce .cart-collaterals h2 { + margin-top: 20px; + margin-bottom: 10px; + text-align: center; + } + .woocommerce .cart-collaterals .cross-sells, + .woocommerce .cart-collaterals .cart_totals, + .woocommerce .cart-collaterals .cross-sells ul.products li { + width: 100%; + } +} +@media (max-width: 1200px) { + .woocommerce .widget_shopping_cart_content a.button { + padding: 12px 18px; + } + + .woocommerce-cart .col-md-12, + .woocommerce-checkout .col-md-12 { + padding-left: 15px; + padding-right: 15px; + } +} +@media (max-width: 480px) { + /* Woocommerce */ + .woocommerce.archive .main-raised { + margin: -60px 10px 30px; + } + + /*My Account Styling*/ + .woocommerce-account .woocommerce-MyAccount-navigation ul li { + width: 50%; + } + + .woocommerce-account .my_account_orders .button { + display: block; + } + + .woocommerce span.onsale { + left: -5px; + top: -5px; + } + + .woocommerce-product-search input.search-field { + width: 70%; + } + + .woocommerce.single-product .product_title { + font-size: 28px; + line-height: 42px; + } + .woocommerce.single-product .woocommerce-message { + position: relative; + padding: 20px 15px 40px 50px !important; + } + .woocommerce.single-product .woocommerce-message a { + float: left; + position: absolute; + bottom: 20px; + padding: 0; + } + .woocommerce.single-product #review_form #respond p.form-submit { + text-align: center; + } + .woocommerce div.product .woocommerce-tabs ul.tabs { + margin-bottom: 30px; + } + .woocommerce div.product .woocommerce-tabs ul.tabs li { + display: block; + padding: 0; + } + .woocommerce div.product .woocommerce-tabs ul.tabs li a { + display: block; + text-align: left !important; + margin-bottom: 5px; + } + + .woocommerce-cart table.cart td.actions .coupon .input-text { + margin: 0 0 10px 0; + width: 100%; + } + .woocommerce-cart table.cart td.actions .coupon .button { + width: 100%; + } + + .woocommerce-checkout .checkout_coupon .form-row, + .woocommerce-checkout .checkout_coupon input.button { + width: 100%; + } + .woocommerce-checkout .checkout_coupon .input-text { + margin-bottom: 10px !important; + } +} +/*-------------------------------------------------------------- +## YITH Magnifier +--------------------------------------------------------------*/ +li.yith_magnifier_thumbnail { + display: block; + position: relative; + padding: 0 10px; +} +li.yith_magnifier_thumbnail a { + margin: 25px auto; +} +li.yith_magnifier_thumbnail a img { + border-radius: 6px; +} + +.yith_magnifier_zoom_magnifier { + border: none !important; +} + +/*-------------------------------------------------------------- +# Responsive +--------------------------------------------------------------*/ +@media (max-width: 1199px) { + .hestia-features .row, + .hestia-about .row, + .products .row, + .hestia-work .row, + .hestia-team .row, + .pricing .row, + .hestia-testimonials .row, + section.hestia-blogs .row, + .contactus .row { + padding: 0 50px; + } + + .carousel h1.hestia-title, + .carousel h2.title { + font-size: 58.8px; + line-height: 67.62px; + } + + .navbar .navbar-brand { + padding: 0 15px; + } + + .navbar .navbar-nav > li > a { + padding-top: 15px; + padding-bottom: 15px; + } +} +@media (max-width: 991px) { + .navbar .navbar-nav > li { + margin-right: 10px; + margin-left: 10px; + } + + .page-header { + height: auto; + min-height: 100vh; + } + + .card.card-raised .card-image { + margin-top: -30px; + display: block; + margin-left: 0; + margin-right: 0; + } + + .card.card-raised { + padding: 20px; + } + + .woocommerce-checkout .page-header { + height: auto; + } + + .hestia-about .text-area { + margin: 0 0 10px; + } + + .blog .page-header.header-small h2 { + margin: 0; + } + + .blog .page-header.header-small .container { + padding: 200px 15px; + } + + .blog .page-header.header-small { + height: auto; + min-height: 0; + } + + .page-header .iframe-container { + padding: 30px 0; + } + + .card-form-horizontal .form-group { + padding-bottom: 20px; + } + + .carousel .page-header { + padding: 0 30px; + } + + .carousel .buttons { + margin-bottom: 100px; + } + + .btn.btn-simple { + padding-right: 0; + padding-left: 0; + text-align: left; + } + + .hestia-work .col-md-6 .card-background .content, + .hestia-work .col-md-4 .card-background .content { + padding-top: 15%; + } + + .alternative-blog-row { + display: table; + width: 100%; + margin: 0 auto; + table-layout: fixed; + } + + .alternative-blog-row div:first-child { + display: table-footer-group; + } + + .alternative-blog-row div:last-child { + display: table-header-group; + } + + .hestia-features .row, + .features .row, + .hestia-about .row, + .about .row, + .products .row, + .hestia-work .row, + .work .row, + .hestia-team .row, + .team .row, + .pricing .row, + .hestia-testimonials .row, + .testimonials .row, + section.blogs .row, + .contactus .row { + padding: 0 25px; + } + + .contactus .contact_submit_wrap { + text-align: center; + } + + .single aside.blog-sidebar { + padding: 40px 30px; + } + + .shop-sidebar.card { + width: 96%; + text-align: initial; + } + + .shop-sidebar-wrapper { + text-align: center; + } + + .blog .hestia-blogs { + padding-top: 30px; + } + .blog .hestia-blogs .card-blog .card-image { + margin-bottom: 30px; + } + .blog #authors-on-blog { + padding-bottom: 40px; + } + + .single.single-post .section-blog-info .card-profile .card-title, + .single.single-post .section-blog-info .card-profile .description { + text-align: center; + } + + .hestia-sidebar-open, + .hestia-sidebar-close { + cursor: pointer; + display: inline-block; + margin: 0; + padding: 12px 15px; + } + + .row-sidebar-toggle { + margin: 0 15px; + text-align: right; + } + + .blog-sidebar-wrapper, + .shop-sidebar-wrapper { + float: none; + overflow-x: hidden; + position: fixed; + z-index: 9999; + top: 0; + left: -100%; + width: 100%; + height: 100%; + padding: 15px 0; + background: #fff; + -webkit-transition: 0.5s ease; + -moz-transition: 0.5s ease; + -ms-transition: 0.5s ease; + -o-transition: 0.5s ease; + transition: 0.5s ease; + } + .blog-sidebar-wrapper .row-sidebar-toggle, + .shop-sidebar-wrapper .row-sidebar-toggle { + margin-bottom: 30px; + } + + .blog-sidebar-wrapper .blog-sidebar { + margin: 0 15px; + } + + .archive.woocommerce .hestia-sidebar-open { + margin-bottom: 30px; + } + + .hestia-top-bar .container { + width: 100%; + } + .hestia-top-bar .col-md-6 { + width: 50%; + } +} +@media (min-width: 992px) { + .navbar .navbar-collapse { + text-align: center; + } + + .blog-posts-wrap > article { + padding: 20px; + } + + .card.card-raised .card-image { + margin-left: 0; + margin-right: 0; + } + + .navbar .navbar-center { + display: inline-block; + float: none; + } + + .navbar .navbar-nav > li { + margin: 0; + } + + .navbar .navbar-nav > li.btn { + margin: 0 10px; + } + + .navbar .navbar-nav > li.btn:last-child { + margin-right: 0; + } + + .gallery .gallery-item { + padding: 5px; + } + + .gallery img { + border: none !important; + border-radius: 6px; + -webkit-box-shadow: 0 16px 38px -12px rgba(0, 0, 0, 0.56), 0 4px 25px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2); + box-shadow: 0 16px 38px -12px rgba(0, 0, 0, 0.56), 0 4px 25px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2); + } + + .entry-social { + text-align: right; + } + + .footer .content { + margin-left: -15px; + margin-right: -15px; + } + .footer .row { + margin-left: -15px; + margin-right: -15px; + } + .footer .col-md-4 { + padding: 0 30px; + } + + .blog-sidebar-wrapper, + .shop-sidebar-wrapper { + float: left; + overflow: none; + position: static; + padding: 0; + background: transparent; + left: 0 !important; + } +} +@media (min-width: 783px) and (min-width: 601px) { + body.admin-bar .navbar-default:not(.navbar-transparent) { + margin-top: 32px; + } +} +@media (min-width: 769px) { + .form-horizontal .control-label { + padding-top: 8px; + } + + .dropdown .dropdown-menu { + display: block; + visibility: hidden; + margin-top: -20px; + opacity: 0; + -webkit-transition: all 150ms linear; + transition: all 150ms linear; + } + .dropdown.open .dropdown-menu, .dropdown:hover .dropdown-menu { + visibility: visible; + margin-top: 1px; + opacity: 1; + } + + .navbar-nav > li { + float: none; + display: inline-block; + } + + .container > .navbar-header { + min-width: 250px; + display: table-cell !important; + vertical-align: middle; + float: none; + } + + .navbar:not(.hestia_right) .navbar-collapse { + display: table-cell !important; + vertical-align: middle; + text-align: right; + width: 100%; + } + + .navbar.hestia_center .navbar-collapse { + display: block !important; + text-align: center; + } + + .navbar.hestia_center .navbar-right { + float: none !important; + display: block; + text-align: center; + } + + .navbar.hestia_right .navbar-right { + float: left !important; + margin-top: 20px; + } + + .navbar.hestia_right.navbar-not-transparent .navbar-right { + transition: margin .3s ease; + margin-top: 10px; + } + + .navbar.full-screen-menu.hestia_center .navbar-toggle { + transition: .3s ease; + right: 0; + position: absolute; + top: 30px; + } + .navbar.full-screen-menu.hestia_center.navbar-not-transparent .navbar-toggle { + transform: translateY(-15px); + } + .navbar.full-screen-menu > .container { + display: table; + position: relative; + } + .navbar.full-screen-menu.hestia_right .navbar-right { + margin-top: 0; + } + .navbar.full-screen-menu.hestia_right .navbar-toggle { + display: table-cell; + } + .navbar.full-screen-menu .navbar-toggle { + z-index: 999999; + display: block; + } + .navbar.full-screen-menu .full-screen-menu-close { + display: none; + } + .navbar.full-screen-menu .navbar-collapse .navbar-nav { + transition: all .3s ease; + opacity: 0; + visibility: hidden; + } + .navbar.full-screen-menu .navbar-collapse.in .navbar-nav { + opacity: 1; + visibility: visible; + display: block !important; + } + .navbar.full-screen-menu .navbar-nav { + z-index: 9999; + overflow-X: auto; + position: fixed; + width: 100%; + background-color: rgba(0, 0, 0, 0.9); + left: 0; + top: 0; + bottom: 0; + padding-top: 100px; + } + .navbar.full-screen-menu .navbar-nav > li, .navbar.full-screen-menu .navbar-nav > li.btn:last-child { + display: table; + margin: 20px auto; + } + .navbar.full-screen-menu .navbar-nav > li a { + font-size: 17px; + } + .navbar.full-screen-menu.navbar-not-transparent .navbar-nav { + background-color: rgba(255, 255, 255, 0.9); + } +} +@media (max-width: 768px) { + .navbar .navbar-toggle { + margin-right: 0; + } + .navbar .dropdown-menu li:hover a { + box-shadow: none; + } + .navbar.hestia_center .navbar-header { + width: auto; + max-width: none; + padding: 0; + } + .navbar.hestia_center .navbar-header .navbar-brand { + float: left; + } + .navbar.navbar-transparent .navbar-nav li a, .navbar.navbar-transparent .navbar-nav i, .navbar.navbar-transparent .navbar-nav li.btn a, .navbar.navbar-transparent .navbar-nav .btn.dropdown-menu.open > li a { + color: #fff !important; + opacity: 1; + } + .navbar.navbar-default li.btn a, .navbar.navbar-default li.btn a i { + color: #fff !important; + } + .navbar.navbar-default .navbar-nav .open:not(.btn) a { + background: transparent; + color: #777; + } + .navbar.navbar-default li a:hover, .navbar.navbar-default li a:focus, + .navbar.navbar-default ul.dropdown-menu li a:hover, + .navbar.navbar-default ul.dropdown-menu li a:focus, .navbar.navbar-not-transparent li a:hover, .navbar.navbar-not-transparent li a:focus, + .navbar.navbar-not-transparent ul.dropdown-menu li a:hover, + .navbar.navbar-not-transparent ul.dropdown-menu li a:focus { + box-shadow: none; + } + .navbar .container { + width: 100%; + } + .navbar.navbar-fixed-top .navbar-collapse, .navbar.navbar-fixed-top.navbar-not-transparent .navbar-collapse { + max-height: calc(100% - 70px); + margin-top: 70px; + overflow-y: scroll; + position: fixed; + z-index: 9999; + background: #fff; + width: 100%; + top: 0; + -webkit-overflow-scrolling: auto; + } + .navbar.navbar-with-topbar.navbar-fixed-top .navbar-collapse { + max-height: calc(100% - 100px); + margin-top: 110px; + } + .navbar.navbar-fixed-top.navbar-transparent .navbar-collapse { + background-color: rgba(0, 0, 0, 0.8); + } + .navbar .navbar-nav { + margin: 7.5px 0; + } + .navbar .navbar-nav .navbar-text { + margin-top: 15px; + margin-bottom: 15px; + color: inherit; + } + .navbar .navbar-nav .open .dropdown-menu > .dropdown-header { + border: 0; + color: inherit; + } + .navbar .navbar-nav li { + box-sizing: border-box; + float: left; + margin: 0; + padding: 0; + width: 100%; + } + .navbar .navbar-nav li.btn { + margin-top: 10px; + } + .navbar .navbar-nav li > a { + text-align: left; + } + .navbar .navbar-nav li > a > i, + .navbar .navbar-nav li > a .fa { + margin-right: 12px; + font-size: 22.1px; + } + .navbar .navbar-nav li.btn > a, + .navbar .navbar-nav li.button > a { + text-align: left; + } + .navbar .navbar-nav > .open > a:hover, .navbar .navbar-nav > .open > a:focus { + background-color: transparent; + color: #fff; + } + .navbar .navbar-nav li a:before { + position: absolute; + z-index: -1; + top: 0; + right: 0; + bottom: 0; + left: 0; + border-radius: 3px; + background-color: rgba(255, 255, 255, 0.1); + content: ""; + -webkit-transition: all 300ms cubic-bezier(0.34, 0.9, 0.7, 1); + -moz-transition: all 300ms cubic-bezier(0.34, 0.9, 0.7, 1); + -o-transition: all 300ms cubic-bezier(0.34, 0.9, 0.7, 1); + -ms-transition: all 300ms cubic-bezier(0.34, 0.9, 0.7, 1); + transition: all 300ms cubic-bezier(0.34, 0.9, 0.7, 1); + -webkit-transform: scaleX(0); + -ms-transform: scaleX(0); + transform: scaleX(0); + -webkit-transform-origin: 50%; + -ms-transform-origin: 50%; + transform-origin: 50%; + } + .navbar .navbar-nav li a:hover:before, .navbar .navbar-nav li a:focus:before { + color: inherit; + -webkit-transform: scaleX(1); + -ms-transform: scaleX(1); + transform: scaleX(1); + } + .navbar .navbar-nav .dropdown li { + padding: 0; + } + .navbar .navbar-nav .dropdown a { + position: relative; + } + .navbar .navbar-nav .dropdown a .caret { + background: #e91e63; + border: none; + border-radius: 2px; + box-sizing: content-box; + color: #fff; + cursor: pointer; + display: inline-block; + font-family: Fontawesome; + font-size: 20px; + height: 30px; + margin-left: 0; + position: absolute; + right: 15px; + text-align: center; + top: 10px; + width: 30px; + z-index: 100; + } + .navbar .navbar-nav .dropdown a .caret:hover { + opacity: 0.8; + } + .navbar .navbar-nav .dropdown a .caret:before { + content: "\f107"; + top: 5px; + position: relative; + display: inline-block; + -webkit-transition: all 0.3s ease; + -moz-transition: all 0.3s ease; + -ms-transition: all 0.3s ease; + -o-transition: all 0.3s ease; + transition: all 0.3s ease; + } + .navbar .navbar-nav .dropdown a .caret.caret-open:before { + -webkit-transform: rotate(-180deg); + -moz-transform: rotate(-180deg); + -ms-transform: rotate(-180deg); + -o-transform: rotate(-180deg); + transform: rotate(-180deg); + } + .navbar .navbar-nav .dropdown a > i, + .navbar .navbar-nav .dropdown a .fa { + margin-right: 12px; + font-size: 20.4px; + } + .navbar .navbar-nav .dropdown.open .caret:before { + -webkit-transform: rotate(-180deg); + -moz-transform: rotate(-180deg); + -ms-transform: rotate(-180deg); + -o-transform: rotate(-180deg); + transform: rotate(-180deg); + } + .navbar .navbar-nav .dropdown.open .dropdown-menu { + display: block !important; + } + .navbar .navbar-nav .dropdown .dropdown-menu { + background: transparent; + box-shadow: none; + position: static; + margin-top: 0; + padding: 0; + width: 100%; + } + .navbar .navbar-nav .dropdown .dropdown-menu.open { + display: block !important; + } + .navbar .navbar-nav .dropdown .dropdown-menu li a { + line-height: 20px; + margin: 0; + padding: 15px 0 15px 30px; + } + .navbar .navbar-nav .dropdown .dropdown-menu li a:hover, .navbar .navbar-nav .dropdown .dropdown-menu li a:focus { + background-color: transparent; + } + .navbar .navbar-nav .dropdown .dropdown-menu li a .caret { + line-height: 1; + } + .navbar .navbar-nav .dropdown .dropdown-menu li a:before { + position: absolute; + z-index: -1; + top: 0; + right: 0; + bottom: 0; + left: 0; + border-radius: 3px; + background-color: rgba(255, 255, 255, 0.1); + content: ""; + -webkit-transition: all 300ms cubic-bezier(0.34, 0.9, 0.7, 1); + -moz-transition: all 300ms cubic-bezier(0.34, 0.9, 0.7, 1); + -o-transition: all 300ms cubic-bezier(0.34, 0.9, 0.7, 1); + -ms-transition: all 300ms cubic-bezier(0.34, 0.9, 0.7, 1); + transition: all 300ms cubic-bezier(0.34, 0.9, 0.7, 1); + -webkit-transform: scaleX(0); + -ms-transform: scaleX(0); + transform: scaleX(0); + -webkit-transform-origin: 50%; + -ms-transform-origin: 50%; + transform-origin: 50%; + } + .navbar .navbar-nav .dropdown .dropdown-menu li a:hover:before, .navbar .navbar-nav .dropdown .dropdown-menu li a:focus:before { + color: inherit; + -webkit-transform: scaleX(1); + -ms-transform: scaleX(1); + transform: scaleX(1); + } + .navbar .navbar-nav .dropdown .dropdown-menu li li a { + padding: 15px 0 15px 45px; + } + .navbar .dropdown-submenu:hover > .dropdown-menu { + display: none !important; + } + .navbar .dropdown-submenu:hover > a { + background: transparent !important; + box-shadow: none; + } + .navbar .navbar-brand h1, .navbar .navbar-brand p { + padding: 10px 0; + } + .navbar .dropdown-submenu.open > a { + background: transparent !important; + color: inherit; + -webkit-box-shadow: none; + box-shadow: none; + } + .navbar .dropdown-menu li a, .navbar.navbar-not-transparent .dropdown-menu li a { + color: #777; + } + .navbar .dropdown-menu li a .caret, .navbar.navbar-not-transparent .dropdown-menu li a .caret { + color: #fff; + } + .navbar .dropdown-menu i, .navbar.navbar-not-transparent .dropdown-menu i { + opacity: 1; + } + + .navbar-default .navbar-nav .open .dropdown-menu { + background-color: #f3f3f3; + } + + .navbar-transparent .navbar-nav .open .dropdown-menu { + background-color: rgba(0, 0, 0, 0.5); + } + + .navbar.navbar-transparent .open .dropdown-menu > li > a:hover, + .navbar.navbar-transparent .open .dropdown-menu > li > a:focus, + .navbar.navbar-transparent .open .dropdown-menu > .active > a, + .navbar.navbar-transparent .open .dropdown-menu > .active > a:hover, + .navbar.navbar-transparent .open .dropdown-menu > .active > a:focus, + .navbar.navbar-transparent .open .dropdown-menu > .disabled > a, + .navbar.navbar-transparent .open .dropdown-menu > .disabled > a:hover, + .navbar.navbar-transparent .open .dropdown-menu > .disabled > a:focus { + color: inherit; + background-color: transparent; + } + + .navbar .open .dropdown-menu > li > a:hover, + .navbar .open .dropdown-menu > li > a:focus, + .navbar .open .dropdown-menu > .active > a, + .navbar .open .dropdown-menu > .active > a:hover, + .navbar .open .dropdown-menu > .active > a:focus, + .navbar .open .dropdown-menu > .disabled > a, + .navbar .open .dropdown-menu > .disabled > a:hover, + .navbar .open .dropdown-menu > .disabled > a:focus { + color: #e91e63; + background-color: transparent; + } + + .hestia_right .header-sidebar-wrapper { + display: none; + } + + .single .section { + padding: 30px 0 0; + } + .single .section.section-blog-info { + padding: 15px 0 30px; + } + + .media .avatar, .media-body .avatar, .media-area .avatar { + margin: 0; + width: 35px; + height: 35px; + } + + h1 { + font-size: 42px; + } + + .subscribe-line .btn { + margin-top: 15px; + } + + ul.children { + padding-left: 5px; + border-left: 1px #cfcfcf solid; + } + + .blog-post.blog-post-wrapper .section-text h1 { + font-size: 50.4px; + line-height: 57.96px; + } + .blog-post.blog-post-wrapper .section-text h2 { + font-size: 43.68px; + line-height: 65.52px; + } + .blog-post.blog-post-wrapper .section-text h3 { + font-size: 30.66px; + line-height: 42.924px; + } + .blog-post.blog-post-wrapper .section-text h4 { + font-size: 17px; + line-height: 26.35px; + } + .blog-post.blog-post-wrapper .section-text h5 { + font-size: 21px; + line-height: 32.55px; + } + .blog-post.blog-post-wrapper .section-text h6 { + font-size: 15.12px; + line-height: 22.68px; + } + + .blog-post .section-comments .comment-respond .author { + display: none; + } + + .carousel h2.title, + .carousel h1.hestia-title { + font-size: 42px; + } + + .page-header.header-small .title, + .page-header.header-small .hestia-title { + font-size: 42px; + line-height: 63px; + } + + .hestia-about .text-area { + margin-bottom: 20px; + } + + .footer.footer-big { + padding: 30px 0 26px; + } + .footer .footer-menu { + width: 100%; + } + .footer .copyright { + display: inline-block; + float: none !important; + width: 100%; + padding: 10px 0; + text-align: center; + } + + .navbar.navbar-transparent { + border-radius: 0; + background-color: rgba(0, 0, 0, 0.8); + } + .navbar.navbar-transparent > .container { + padding-top: 10px; + } + + .main-raised { + margin-right: 10px; + margin-left: 10px; + } + + hr { + margin-top: 0; + } + + .hestia-about { + padding-top: 0; + } + .hestia-about h2 { + margin-top: 0; + } + .hestia-about .widget_sow-image .panel-widget-style { + margin-top: -60px; + padding: 0 0 60px 0 !important; + } + + .hestia-team .btn.btn-just-icon i { + margin-right: 10px; + width: auto; + } + + .hestia-work .card { + cursor: pointer; + } + + .pricing { + padding: 60px 0 40px; + } + .pricing p.text-gray { + margin-bottom: 40px; + } + + .contactus .card-contact { + margin-top: 90px; + } + + .single.single-post .section-blog-info .entry-social { + margin: 15px 0 30px; + } + .single.single-post .section-blog-info .card-profile { + margin-top: 20px; + } + + .page .section.section-text { + padding: 30px 0; + } + + .single-post .page-header.header-small .container, + .page .page-header.header-small .container, + .blog .page-header.header-small .container, + .archive .page-header.header-small .container, + .category .page-header.header-small .container { + padding: 170px 15px 90px; + } + .single-post .page-header.header-small .container .hestia-title, + .page .page-header.header-small .container .hestia-title, + .blog .page-header.header-small .container .hestia-title, + .archive .page-header.header-small .container .hestia-title, + .category .page-header.header-small .container .hestia-title { + margin-top: 0; + } + + .hestia-top-bar { + overflow: hidden; + } + .hestia-top-bar .col-md-6 { + text-align: center; + width: 100%; + } + .hestia-top-bar .col-md-6.pull-right { + display: none; + } + .hestia-top-bar .col-md-12, .hestia-top-bar .col-md-12.pull-right { + float: none !important; + text-align: center; + } + .hestia-top-bar .widget.widget_shopping_cart { + display: none; + } +} +@media (max-width: 480px) { + .single .main-raised { + margin: -60px 10px 30px; + } + + .comment-respond .form-submit input { + display: block; + float: none !important; + margin: 0 auto; + } + + .hestia-features { + padding: 40px 0 55px; + } +} +/*-------------------------------------------------------------- +# Compatibility +--------------------------------------------------------------*/ +/*-------------------------------------------------------------- +## Send in Blue +--------------------------------------------------------------*/ +form.form-group[id^=sib] input[type=text], +form.form-group[id^=sib] input[type=email], +form.form-group[id^=sib] select { + border: none !important; +} + +/*-------------------------------------------------------------- +## WPML +--------------------------------------------------------------*/ +footer .wpml-ls-item-legacy-dropdown a, +footer .wpml-ls-item-legacy-dropdown-click a { + color: #000000; +} + +.wpml-ls-statics-footer { + margin: 0 auto; +} + +/*-------------------------------------------------------------- +## BBPress Basic +--------------------------------------------------------------*/ +.bbp-template-notice.info { + max-width: inherit; +} + +#bbpress-forums p.bbp-topic-meta img.avatar, #bbpress-forums ul.bbp-reply-revision-log img.avatar, #bbpress-forums ul.bbp-topic-revision-log img.avatar, #bbpress-forums div.bbp-template-notice img.avatar, #bbpress-forums .widget_display_topics img.avatar, #bbpress-forums .widget_display_replies img.avatar { + margin-bottom: 0; +} + +.bbpress.blog-post .section-text p { + font-size: 15px; + margin-bottom: 20px; +} + +#wp-link-close { + box-shadow: none; +} + +/*-------------------------------------------------------------- +## Elementor / Beaver Builder Section Editing +--------------------------------------------------------------*/ +.elementor-editor-active .main > section, +.fl-builder-edit .main > section { + position: relative; +} +.elementor-editor-active .main > section .hestia-pagebuilder-frontpage-controls, +.fl-builder-edit .main > section .hestia-pagebuilder-frontpage-controls { + position: absolute; + top: 20px; + bottom: 20px; + left: 20px; + right: 20px; + border: 2px solid #76cfe8; + text-align: center; + display: none; + z-index: 100; +} +.elementor-editor-active .main > section .hestia-pagebuilder-frontpage-controls > a, +.fl-builder-edit .main > section .hestia-pagebuilder-frontpage-controls > a { + cursor: pointer; + position: relative; + background: #71d7f7; + border-radius: 3px 3px 0 0; + top: -30px; + line-height: 30px; + min-width: 30px; + text-align: center; + color: #fff; + font-weight: 800; + padding: 0 10px; + display: inline-block; +} +.elementor-editor-active .main > section .hestia-pagebuilder-frontpage-controls > a:hover, +.fl-builder-edit .main > section .hestia-pagebuilder-frontpage-controls > a:hover { + color: #f00; +} +.elementor-editor-active .main > section .hestia-pagebuilder-frontpage-controls > a > .dashicons, +.fl-builder-edit .main > section .hestia-pagebuilder-frontpage-controls > a > .dashicons { + height: 30px; + width: auto; + margin-right: 5px; + line-height: 27px; +} +.elementor-editor-active .main > section:hover .hestia-pagebuilder-frontpage-controls, +.fl-builder-edit .main > section:hover .hestia-pagebuilder-frontpage-controls { + display: block; +} + +/*# sourceMappingURL=style.css.map */ diff --git a/www/.content.EZtzwPjb/html/f64e8af5fb822076fadbcc3b3f77a10c38c18c2b.00000518.xml b/www/.content.EZtzwPjb/html/f64e8af5fb822076fadbcc3b3f77a10c38c18c2b.00000518.xml new file mode 100644 index 0000000..fb39631 --- /dev/null +++ b/www/.content.EZtzwPjb/html/f64e8af5fb822076fadbcc3b3f77a10c38c18c2b.00000518.xml @@ -0,0 +1,46 @@ + + + + HugoPoi » SSD OCZ Vertex 3 + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Sat, 14 Sep 2013 23:01:40 +0000 + fr-FR + hourly + 1 + http://wordpress.org/?v=3.6 + + Asus U36 et OCZ Vertex 3 la suite + http://blog.hugopoi.net/2012/03/30/asus-u36-et-ocz-vertex-3-la-suite/ + http://blog.hugopoi.net/2012/03/30/asus-u36-et-ocz-vertex-3-la-suite/#comments + Fri, 30 Mar 2012 10:29:27 +0000 + HugoPoi + + + + + + + + + + + + + + + http://blog.hugopoi.net/?p=635 + Lire la suite »

                                ]]>
                                + http://blog.hugopoi.net/2012/03/30/asus-u36-et-ocz-vertex-3-la-suite/feed/ + 1 +
                                +
                                +
                                diff --git a/www/.content.EZtzwPjb/html/f6efbf49d088ca4951e931f0ddf531accd34441a.00000659.css b/www/.content.EZtzwPjb/html/f6efbf49d088ca4951e931f0ddf531accd34441a.00000659.css new file mode 100644 index 0000000..8043bbf --- /dev/null +++ b/www/.content.EZtzwPjb/html/f6efbf49d088ca4951e931f0ddf531accd34441a.00000659.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;background:#fff;border:1px +solid #f00;font-size:10pt;width:280px;padding:2px}span.wpcf7-not-valid-tip-no-ajax{color:#f00;font-size:10pt;display:block}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/f6f8684efe99d36b05896a7f29774d8bf7da4f1a.00000121.html b/www/.content.EZtzwPjb/html/f6f8684efe99d36b05896a7f29774d8bf7da4f1a.00000121.html new file mode 100644 index 0000000..bbb7935 --- /dev/null +++ b/www/.content.EZtzwPjb/html/f6f8684efe99d36b05896a7f29774d8bf7da4f1a.00000121.html @@ -0,0 +1,1370 @@ + + + + + + + + Réparations Samsung SyncMaster 2232BW – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                +
                                +
                                +
                                + +
                                +
                                +
                                +
                                +
                                +
                                +

                                Allô docteur on a un problème,

                                +

                                En ce dimanche calme avant la fin de mes partiels, mon écran Samsung SyncMaster 2232BW commençait à faire des siennes. Celui-ci depuis un mois ou deux clignotait de façon systématique au démarrage, au début pendant seulement quelques secondes, puis au fur et à mesure, de plus en plus jusqu’à devoir attendre 10 minutes pour que je puisse l’utiliser. Après 3 ans et 4 mois de bons et loyaux services, il voulait me quitter. J’ai tenté le support Samsung par email avec peu d’espoir car l’écran a dépassé sa garantie de 4 mois (oui oui les bâtards -> obsolescence programmée). Et donc j’ai eu le droit à un joli mail automatique me disant de contacter un numéro non surtaxé (mais avec combien de temps d’attente ?), ce que je n’ai pas fait car je n’avais pas envie de passer 30min au téléphone pour au final avoir un « On est désolé mais on ne peut rien faire pour vous car la garantie est dépassée, mais on peut envoyer votre écran en SAV pour faire un devis pour seulement 50 boules ». Concernant le support email de Samsung France, je leur donne une note de 0/20 puisque ce n’est pas un support mais une redirection vers le téléphone.

                                +

                                +

                                Symptômes

                                +

                                Clignotements de l’écran et de la LED power systématiques à chaque démarrage de l’écran. Je me suis tout de suite douté d’un problème d’alimentation et après quelques recherches sur google, confirmation du problème sur beaucoup d’écrans et téléviseurs. Dans 99% des cas ce clignotement est dû à des condensateurs défectueux qu’il faut simplement changer :-D

                                +

                                Démontage

                                +

                                Donc après avoir cerné le problème, j’ai ouvert l’écran pour chercher les condos défectueux. J’ai trouvé une petite vidéo pour mon écran :

                                +

                                +

                                Voici quelques photos en plus pour vous aider :

                                +

                                Les outils que j’ai utilisé pour le démontage

                                +

                                Position des clips

                                +

                                Carte d’alimentation dans son emplacement

                                +

                                Et voici les condensateurs qui posent problèmes. Comme vous pouvez le voir sur la photo, ils sont très facilement identifiable car ils sont bombés sur le dessus.

                                +

                                Condensateurs défectueux

                                +

                                Vous devez donc acheter des condensateurs de remplacement, par exemple sur Conrad.

                                +

                                Mes condensateurs suivant étaient endommagés:

                                +
                                  +
                                • 1 de 330uF 25V remplacé par un 470uF 25V
                                • +
                                • 3 de 820uF 25V remplacé par des 1000uF 50V
                                • +
                                +

                                Pour la réparation, il vous faut un fer à souder avec une panne pas trop grosse mais d’une grosse puissance car les soudures sont très solides (j’ai galéré avec un fer pro qui monte jusqu’à 400°).

                                +

                                Tout remarche nickel après remontage, plus de clignotement pour seulement quelques euros.

                                +

                                edit du 19 aout 2014 : j’ai trouvé le service manuel de l’écran si besoin samsung_2232bw_chassis_lpe22bs_sm

                                + + +
                                +
                                + +
                                +
                                +
                                +
                                +
                                +

                                + 41 commentaires

                                +
                                + +
                                +
                                +
                                +
                                +

                                + c'est_moi + · 30 janvier 2012 à 18 h 57 min +

                                +

                                Mille mercis et mille félicitations pour cette fiche technique si pédagogue.

                                +

                                J’espère que le partiels se passent plus que parfait !!

                                +

                                J’ai gardé l’url de la page pour réparer mon écran dans un petit mois : j’espère que la page soit toujours là ;-)

                                +

                                Merci encore.

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Maxime + · 5 mai 2012 à 12 h 31 min +

                                +

                                Bonjour HugoPoi!

                                +

                                Merci pour toutes vos infos et votre topic, je voulais avoir quelques précisions sur les condos à changer pour samsung 2232bw, je veux passer commande mais j’ai un problème avec les dimensions des condos, si vous pouvez m’informer de ce que je pourrais acheter car il y a trop de références. En vous remerciant A+ Maxime

                                + +
                                +
                                +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  +

                                  + HugoPoi + · 14 juin 2012 à 22 h 56 min +

                                  +

                                  N’importe quel condensateur polarisé avec des caractéristiques proches devrait marché.

                                  + +
                                  +
                                  + +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + gaubjezj + · 14 juin 2012 à 22 h 32 min +

                                +

                                Merci pour le tuto qui m’a bien aidé.
                                +J’ai utilisé un fer de 40 W avec une panne fine et
                                +une pompe à dessouder et j’ai retiré les condensateurs sans problème.
                                +Merci encore (3€40 pour le dépannage).

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + DragonTribal + · 2 juillet 2012 à 12 h 02 min +

                                +

                                super merci pour manifique tuto.
                                +Est-il possible de changer les 5 condensateurs 820uF 25V par des 1000uF 50V? car moi mes 5 condensateurs sont presque HS ;-)

                                +

                                Cordialement

                                + +
                                +
                                +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  +

                                  + HugoPoi + · 2 juillet 2012 à 12 h 25 min +

                                  +

                                  Oui je penses que ça marchera étant donné que c’est des valeurs plus grandes.

                                  + +
                                  +
                                  + +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + FRED + · 11 juillet 2012 à 19 h 11 min +

                                +

                                Bravo, MERCI.
                                +Je n’ai encore rien fait…mais j’ai le même problème, et tu me donnes la solution.
                                +Super.

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + daninpet + · 31 août 2012 à 10 h 10 min +

                                +

                                Merci mille fois!

                                +

                                J’avais ce problème, et j’ai emmener la photo des trucs a remplacer chez le réparateur du coin et voila!! Ça m’a coûté 7 Euros (mais j’habite en Thaïlande)

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + moi + · 15 novembre 2012 à 15 h 25 min +

                                +

                                super mon 2232bw vient de lâcher, les 3 + 1 condos sont gonflés j ai trouvé un 330 en 35v qui traîné sur un écran mort et j’ai commander 5 1000uf 35v sur ebay pour moins de 3 dollars, ca devrait le faire j’espere j’attend d’être livré merci! par contre j’ai qu’un gros pistolet a soudure et un gros fil d’étain, c’est pas évident mais bon ca le fait quand même =)

                                + +
                                +
                                +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  +

                                  + moi + · 7 décembre 2012 à 9 h 33 min +

                                  +

                                  parfait je vient de recevoir les condos; j ai meuler la panne du fer a souder pour la tailler en mine de crayon et j ai reussi a les souder facilement ils étaient un peu plus gros mais ca passe tout juste, mais attention ne pas prendre des plus gros! l écran fonctionne nickel maintenant.

                                  + +
                                  +
                                  + +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Croco + · 19 janvier 2013 à 18 h 39 min +

                                +

                                Je souhaiterai savoir si tu as utilisé un fer à souder bien précis étant donné que la carte est une multi couche.
                                +Merci

                                + +
                                +
                                + + +
                                + +
                                +
                                +
                                +
                                +

                                + momo + · 10 juin 2013 à 13 h 15 min +

                                +

                                slut je voudrai savoir ou trouvé les condansateur a changer sur mon ecran qui clignote

                                + +
                                +
                                + + +
                                + +
                                +
                                +
                                +
                                +

                                + lokmane + · 5 juillet 2013 à 16 h 08 min +

                                +

                                merci j’avais un ecran rouge ! et c’etais la tresse qui relie mon ecran votre page m’a aider a l’ouvrir et a le reparer merci bien

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + ML + · 21 août 2013 à 19 h 11 min +

                                +

                                Merci ! Ecran réparé. Halte à l’obsolescence programmée.

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + raymond + · 31 octobre 2013 à 13 h 20 min +

                                +

                                ai vu votre vidéo et les explications pour la reparation de mon écran , apparemment le méme probléme l écran passe au noir apres quelque seconde , j ai vu un le condensateur en bas a gauche gonflé , je l ai fait changé (10€) les autre condensateur étant toujour bon d après la personne qui me l a changé , mais j ai toujour le méme probléme cela peut il venir de la carte video a gauche ?

                                + +
                                +
                                +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  +

                                  + HugoPoi + · 20 décembre 2013 à 12 h 27 min +

                                  +

                                  Si la led bleu du bouton power s’éteint aussi c’est un problème d’alimentation sinon c’est plus compliqué et ça peut provenir de condensateurs sur la partie vidéo. Changé tous les plus gros condensateurs sur la partie alimentation pourrait être un bon début même si ils ne paraissent pas endommagé.

                                  + +
                                  +
                                  + +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + damien + · 4 novembre 2013 à 0 h 29 min +

                                +

                                bonjour,

                                +

                                j’ai des crasses coincées entres l’écran et le truc juste derrière, est ce qu’on sais les enlever en démontant la dalle ?

                                + +
                                +
                                +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  +

                                  + HugoPoi + · 20 décembre 2013 à 12 h 28 min +

                                  +

                                  Je ne sais si cette partie de la dalle est démontable, je penses que c’est collé mais vous pouvez essayer.

                                  + +
                                  +
                                  + +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + mac + · 1 décembre 2013 à 17 h 30 min +

                                +

                                Merci HugoPoi, avec ces excellents conseils et tuto vidéo, mon écran est reparti pour une nouvelle vie.
                                +Pour les composants, si vous êtes sur Paris ou proche. La boutique RAM électroniques est une bonne adresse, 138 bd Diderot 75012 Paris (Place de la Nation).

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Bouddhid + · 16 janvier 2014 à 19 h 21 min +

                                +

                                Merci beaucoup pour ces conseils ! J’étais à 2 doigts de jeter mon écran, le voilà comme neuf pour moins de 5€ ! Vive la bricole !

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Vincent + · 17 mai 2014 à 16 h 45 min +

                                +

                                Alors là merci.

                                +

                                Pour ce post, les photos, la vidéo, tout y est.

                                +

                                J’ai démonté l’écran assez vite, enlevé la carte, regarder quel condensateurs étaient gonflés,(il y en avaient 4), un magasin d’électronique sur lyon et une heure de démontage, soudure, remontage plus tard, voilà, c’est tout beau.
                                +Ca ne clignote plus, ça s’allume comme avant, comme neuf.

                                +

                                Et dire que j’allais jeter cet écran et claquer 350 euros pour un neuf…

                                +

                                Coût de l’opération pour 4 condensateurs, du fil d’étain 7 euros.

                                +

                                Je précise que je n’avais jamais fais de soudure sur composant électronique auparavant.
                                +Comme quoi cette opération de réparation est à la portée de tous.

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Julot + · 6 juillet 2014 à 13 h 49 min +

                                +

                                Site vraiment détaillé et très claire. J’ai pu dépanner mon écran avec succès. Merci beaucoup pour ces précieuses explications.

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + PaniK31 + · 29 juillet 2014 à 9 h 21 min +

                                +

                                Pas besoin d’une grosse puissance pour le fer, il faut au préalable gratter le vernis sur l’étain afin de pouvoir le faire fondre plus facilement

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + R211_IP-45130B + · 20 août 2014 à 14 h 04 min +

                                +

                                Bonjour à tous,

                                +

                                Une âme charitable peut-elle me communiquer ce qui est gravé sur la résistance CMS R211 de la carte d’alimentation/inverter IP-45130B qui équipe le SAMSUNG 2232BW ? Cette résistance a pris un coup de tournevis et je n’arrive pas à déterminer sa valeur de résistance car son marquage est effacé et comme le composant est abimé la mesure à l’ohmmètre indique l’infinie.

                                +

                                Merci par avance.

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + roger + · 24 octobre 2014 à 17 h 21 min +

                                +

                                Ca refonctionne après échange de 4 condensateurs :
                                +-un 330uf25v remplacé à l’identique.
                                +-trois 820uf25v remplacés par 1000uf25v.
                                +Le tout pour quelques €. Le plus dur était le dessoudage, la tresse n’était pas très efficace contrairement à la pompe.
                                +Grand merci à HugoPoi.

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Max + · 26 février 2015 à 16 h 28 min +

                                +

                                ENORME MERCI!! J’ai réparé mon écran en 20mn pour 3,50€, il était à 2 doigts de partir à la déchetterie. Ca faisait des mois qu’il clignotait, et l’allumage mettait parfois plus d’une demi heure. J’ai changé 5 condos 820uf25v et 1 330uf25v, par exactement les mêmes en neuf, et là il démarre au quart de tour! Ca fait plaisir! :)

                                + +
                                +
                                +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  +

                                  + rocco michelle + · 7 octobre 2015 à 10 h 16 min +

                                  +

                                  Bonjour je ne sais si vous verrez mon message mais je tente…je cherche quelqu’un qui accepterait de changer mes condensateurs sur mon samsung, les réparateurs me demandent 70 à 80 euros et encore ils n’ont pss envie de le faire et me disent d’acheter un nouvel écran. j’aurais bien tenter mais je n’ai pas de matériel et j’ai lu que les condo pouvaient être très dangereux s’ils avaient de la charge alors j’ai la trouille de bidouiller pq je n’y connais rien. si vous êtes de lyon acccepteriez vous de changer mes condensateurs pour 45 euros? merci de votre réponse.

                                  + +
                                  +
                                  + +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + lecakeseb + · 27 juillet 2015 à 15 h 26 min +

                                +

                                Bonjour,

                                +

                                J’ai utilisé la vidéo pour démonter mon écran afin de le nettoyer de 4 bêtes d’orage infiltrés entre le premier écran (noir) et la dalle (blanche) de mon samsung SyncMaster 2232W

                                +

                                Petits conseils afin de modérer ce que j’ai pu voir dans cette vidéo :

                                +

                                0 : aspirez, nettoyez l’extérieur de l’écran avant de l’ouvrir et nettoyez la table qui vous servira d’atelier, pour éviter les poussières qui s’infiltreront forcément plus tard si vous ne le faites pas…
                                +1 : pour ouvrir, utilisez plutôt un couteau à enduire pour la première partie (le cadre). Vous n’abîmerez ainsi pas du tout l’écran. Soyez patients, ne forcez pas ! ça viendra doucement, mais ça viendra. Il m’a fallu à peine 10 minutes, sans détériorer l’écran, sans le griffer… Il est encore nickel !
                                +2 : attention à ne pas déconnecter les fils reliant le cadre à la carte. Inutile pour simplement nettoyer l’écran.
                                +3 : pour séparer les deux éléments de la dalle entre lesquels les bêtes se sont infiltrées, les doigts suffisent, pas besoin d’outils qui viendraient les endommager. La dalle blanche reste à l’horizontale, l’écran noir sera tenu à la verticale.
                                +4 : utiliser un chiffon doux ne peluchant pas pour enlever les bêtes (faites-vous aider de quelqu’un qui les enlèvera pendant que vous tenez l’écran extérieur en position verticale).
                                +5 : repositionnez la colle d’étanchéité qui aurait pu se déplacer, avant de repositionner les deux écrans.
                                +6 : commencer par refermer par le bas de l’écran (sinon les éléments de réglage situés au bas de l’écran – luminosité, contraste,…- ne se replaceront pas correctement).
                                +7 : Une fois l’écran refermé, j’ai appliqué un peu de « barrage aux insectes », avec un chiffon à l’arrière de mon écran en insistant surtout sur les bouches d’aération par lesquelles les maudites bestioles ont du s’infiltrer. En espérant ne pas avoir à ouvrir !

                                +

                                Bon courage à vous !

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Michel Jousserandot + · 20 janvier 2017 à 20 h 41 min +

                                +

                                Merci pour les conseils au démontage.
                                +J’avais un problème un peu différent :l’écran ne s’allumait plus du tout. Avec un copain beaucoup plus malin que moi, on a détecté 2 fusibles dont l’un était fichu. On l’a remplacé par un petit fil de cuivre. Et tout a remarché comme avant.
                                +Il faut surtout faire attention quand on teste la partie haute tension
                                +Michel.

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Crec + · 14 juillet 2017 à 10 h 20 min +

                                +

                                Bonjour. Très bons conseils avertis. Merci beaucoup.
                                +Peut-on avoir les mêmes conseils pour un écran BX2250.
                                +Merci par avance.
                                +Crec

                                + +
                                +
                                +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  +

                                  + HugoPoi + · 6 août 2017 à 14 h 03 min +

                                  +

                                  J’ai pas de BX2250 donc dans le détails non mais si c’est les même symptômes ça doit la même procédure.

                                  + +
                                  +
                                  + +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Ferronnier + · 10 août 2017 à 17 h 42 min +

                                +

                                Un grand merci !
                                +J’ai changé tous les condensateurs de la partie alimentation de la carte, en déportant certains qui n’avaient pas le même format qu’à l’origine, et ça tourne nickel !

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Nours + · 1 décembre 2017 à 15 h 17 min +

                                +

                                Ca fait des années que j’ai cet article enregistré dans un coin, en nourrissant l’espoir d’avoir un jour le courage de réparer ce foutu écran… Après plus de cinq ans c’est chose faite \o/
                                +Un giga, hypra, immense merci pour ce tutoriel tellement bien expliqué et facile d’accès (je n’avais pas touché à un fer à souder depuis… Oh boy 15 ans déjà).
                                +Après une longue pause, l’écran reprend du service… Jusqu’à la prochaine panne /o/

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + Alex + · 11 août 2018 à 13 h 28 min +

                                +

                                Quelqu’un sait qui pourrait me le faire svp j ai le même problème mais aucun matériel

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + David + · 5 février 2019 à 21 h 06 min +

                                +

                                Merci Hugo pour ce tuto qui m’a déjà servi en 2013 et qui va me resservir aujourd’hui car mon 2ème 2232bw commence à avoir les mêmes symptômes.

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + yvan + · 23 novembre 2019 à 17 h 14 min +

                                +

                                Bonjour
                                +j’ai tenté de changer le condensateur qui avait l’air naze mais ça n’a pas marché … toujours le bouton bleu allumé, l’écran est reconnu par Windows 10 même si l’écran est éteint
                                +grâce au service manuel de l’écran fourni plus haut, j’ai vérifié les tensions jusque sur la carte de la dalle et elles sont correctes, ainsi que sur la carte elle-même, tout est ok, donc je pense que ce n’est plus un problème de condensateur
                                +pour les fusibles, ils ressemblent plutôt à des composants qu’à de simple fusibles, mais comme j’ai les bonnes tension, je ne pense pas que ça vienne de là
                                +j’ai bien peur que ce soit la dalle qui soit naze ? quelqu’un a t il des idées supplémentaires avant que je le jette avec grand regret (c’est un 2032bw, mais c’est la même chose, même si ma carte électronique est un peu différente car plus récente
                                +merci d’avance pour vos conseils

                                + +
                                +
                                + +
                                + +
                                +
                                +
                                +
                                +

                                + yvan + · 24 novembre 2019 à 17 h 26 min +

                                +

                                finalement j’ai trouvé, c’est un petit fusible vert qui ressemble à une résistance mais tout vert avec écrit 4A LF qui assure l’alimentation de la dalle.
                                +En le shuntant, mon écran a retrouvé l’image.
                                +après enquête il s’agit d’un fusible pico de 4ampères de chez little fuse, pas du tout évident à trouver
                                +Résolu !

                                + +
                                +
                                + +
                                +
                                +

                                + Reflow Dell 1546 | HugoPoi + · 22 août 2016 à 16 h 09 min +

                                +

                                […] « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable de marque Dell un 1546 pour être précis. Encore […]

                                + +
                                +
                                + +
                                +
                                +

                                + Reflow Dell Inspiron 1546 – HugoPoi + · 23 juin 2017 à 23 h 18 min +

                                +

                                […] d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un […]

                                + +
                                +
                                + +
                                +
                                +
                                +

                                Répondre à HugoPoi Annuler la réponse

                                Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                                +
                                +
                                +

                                + +

                                +
                                +
                                +
                                +
                                +
                                +
                                + +
                                +
                                +
                                +
                                +
                                +
                                + + +
                                + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/f70524ad77cefd741b355671d57e781577427716.00000470.xml b/www/.content.EZtzwPjb/html/f70524ad77cefd741b355671d57e781577427716.00000470.xml new file mode 100644 index 0000000..346b683 --- /dev/null +++ b/www/.content.EZtzwPjb/html/f70524ad77cefd741b355671d57e781577427716.00000470.xml @@ -0,0 +1,41 @@ + + + + HugoPoi » ntfsprogs + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Sat, 14 Sep 2013 23:01:40 +0000 + fr-FR + hourly + 1 + http://wordpress.org/?v=3.6 + + Redimensionner une partition NTFS + http://blog.hugopoi.net/2012/12/23/redimensionner-une-partition-ntfs/ + http://blog.hugopoi.net/2012/12/23/redimensionner-une-partition-ntfs/#comments + Sun, 23 Dec 2012 17:56:48 +0000 + HugoPoi + + + + + + + + + + http://blog.hugopoi.net/?p=685 + Lire la suite »

                                ]]>
                                + http://blog.hugopoi.net/2012/12/23/redimensionner-une-partition-ntfs/feed/ + 0 +
                                +
                                +
                                diff --git a/www/.content.EZtzwPjb/html/f738aecd6c5cc82b9e24dc184810d8a607ef1f57.00000390.html b/www/.content.EZtzwPjb/html/f738aecd6c5cc82b9e24dc184810d8a607ef1f57.00000390.html new file mode 100644 index 0000000..83fe648 --- /dev/null +++ b/www/.content.EZtzwPjb/html/f738aecd6c5cc82b9e24dc184810d8a607ef1f57.00000390.html @@ -0,0 +1,364 @@ + + + + + + + désimlocker – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                                +
                                +
                                +
                                + +
                                +
                                +
                                +
                                +
                                +
                                +
                                + +
                                +
                                +
                                +
                                + +
                                +
                                + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/f75c4d93cc686b20de96799ddbcea65e7488400b.00000496.html b/www/.content.EZtzwPjb/html/f75c4d93cc686b20de96799ddbcea65e7488400b.00000496.html new file mode 100644 index 0000000..d1773cd --- /dev/null +++ b/www/.content.EZtzwPjb/html/f75c4d93cc686b20de96799ddbcea65e7488400b.00000496.html @@ -0,0 +1,367 @@ + + + + + + + réparation – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                                +
                                +
                                +
                                + +
                                +
                                +
                                +
                                +
                                +

                                Reflow Dell Inspiron 1546

                                +
                                Les choses n’ont pas beaucoup changé en terme d’obsolescence « semi-programmée » depuis le billet que j’avais écrit sur la réparation de mon écran Samsung. Ce mois ci j’ai récupéré un pc portable Dell Inspiron 1546 pour être précis. Encore un cadeau empoisonné de la belle-famille « Essaye de faire ce que tu peux pour récupérer mes photos, j’en rachèterais un ». Le pc portable en question était dans un état de mort certain.
                                + (suite…)
                                +
                                +
                                Par HugoPoi, il y a
                                +
                                + +
                                +
                                +
                                +
                                + +
                                +
                                + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/f7d71c3bb9edce6f668c70f810ffbfe9915307d6.00000351.html b/www/.content.EZtzwPjb/html/f7d71c3bb9edce6f668c70f810ffbfe9915307d6.00000351.html new file mode 100644 index 0000000..64d45d9 --- /dev/null +++ b/www/.content.EZtzwPjb/html/f7d71c3bb9edce6f668c70f810ffbfe9915307d6.00000351.html @@ -0,0 +1,369 @@ + + + + + + + boitier – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                                +
                                +
                                +
                                + +
                                +
                                +
                                +
                                +
                                +

                                Stockage numérique pour tous

                                Ce blog parle très technique comme en témoigne mon dernier article mais aujourd’hui je vais faire un petit topo sur les disques-dur ou plutôt le stockage de vos données numériques en général. Dans cet article je vais m’adresser à tout le monde de papi-geek à tante-photo et pas uniquement à tous les geeks.

                                +

                                Je me suis aperçu, dans mon entourage proche mais aussi sur des forums ou je traîne parfois, que beaucoup n’ont aucune notion sur comment est stockée l’information sur nos ordinateurs et ce qu’il y a dans un disque USB que l’on achète à la Fnac pour ne citer que ces abrutis.

                                +

                                Retour en arrière, le fameux disque-dur que tout le monde utilise (peut-être sans le savoir) a été inventé en 1953 par IBM. Les premiers modèles avaient une capacité de quelques mégaoctets pour un prix de 10 000$. Aujourd’hui, il existe des modèles allant jusqu’à plus de 2 Téraoctets de capacité soit un million de fois plus.

                                +

                                Le disque-dur stocke les informations de façon magnétique sur des plateaux qui ressemblent à des CDs qui sont en rotation. Des petits bras viennent se positionner au dessus des disques pour écrire/lire les informations. ça ressemble à cela :

                                +

                                +

                                (suite…)

                                +
                                +
                                + +
                                +
                                +
                                +
                                + +
                                +
                                + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/f9d8f158a6c5c35b91275bb032a9eaa56fe18a8e.00000377.html b/www/.content.EZtzwPjb/html/f9d8f158a6c5c35b91275bb032a9eaa56fe18a8e.00000377.html new file mode 100644 index 0000000..c1b8cf8 --- /dev/null +++ b/www/.content.EZtzwPjb/html/f9d8f158a6c5c35b91275bb032a9eaa56fe18a8e.00000377.html @@ -0,0 +1,377 @@ + + + + + + + Debian – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                                +
                                +
                                +
                                + +
                                +
                                +
                                +
                                +
                                +

                                Le cloud maison

                                Voilà un petit moment que je me devais de faire cet article pour vous en dire un peu plus sur comment je gère mes données numériques au quotidien. Et après plusieurs essais et échecs, je peux enfin dire que j’ai trouvé des outils simples et maintenus pour cette quête. Même Lire la suite…

                                +
                                Par HugoPoi, il y a

                                Préparation Migration

                                Après réception de ma freebox revolution et son switch gigabit il est temps de s’occuper de mon home serveur :

                                +

                                Windows est facile mais chiant pour certains trucs… Trop de contraintes pour un usage à la maison et oui je suis sûr que certain vont troller car chez moi j’ai un serveur avec comme OS Windows Server 2008 R2. Mais pourquoi Windows Server? Première raison, tous les postes à la maison sont sous windows 7 (pour jouer c’est mieux ;). Deuxième raison, j’avais envie de me faire la main sur 2008 avec son lot de nouveautés dont la gestion des machines virtuelles VM qui est très pratique. Mais c’est vraiment trop lourd comme OS, il faut 10 minutes pour installer un service style DNS et la majorité des services réseaux ont besoin de Active Directory pour fonctionner. Dès que j’ai installé AD, ça a foutu la merde partout sur les trucs déjà configurés donc je suis retourné en arrière. Aussi IIS c’est un peu la foire pour trouver un paramètre donc je préfère utiliser un Apache. (suite…)

                                +
                                Par HugoPoi, il y a
                                +
                                + +
                                +
                                +
                                +
                                + +
                                +
                                + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/fa03440a676c0fc9fdf22b22a4d33f8930f50382.00000528.html b/www/.content.EZtzwPjb/html/fa03440a676c0fc9fdf22b22a4d33f8930f50382.00000528.html new file mode 100644 index 0000000..20b96c5 --- /dev/null +++ b/www/.content.EZtzwPjb/html/fa03440a676c0fc9fdf22b22a4d33f8930f50382.00000528.html @@ -0,0 +1,371 @@ + + + + + + + tapping – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + +
                                +
                                +
                                +
                                + +
                                +
                                +
                                +
                                +
                                +

                                L’homme du milieu avec DD-WRT

                                J’avais besoin de faire un MITM entre un ONT et la box SFR NB6 pour pouvoir capturer les identifiants PPP pour le tunnel ipv6. Je n’avais pas de hub ou de machine avec 2 interfaces Ethernet pour pouvoir le faire de façon passive sans faire du spoofing ARP. Et je n’avais pas envie d’envoyer des trames ARP sur l’infrastructure réseau SFR. J’avais un Netgear WNR3500Lv1 dans un coin, je me suis dit qu’il y avais moyen d’utiliser ce genre de routeur pour faire du tapping passif.

                                +

                                (suite…)

                                +
                                Par HugoPoi, il y a
                                +
                                + +
                                +
                                +
                                +
                                + +
                                +
                                + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/fa85d4f4f298fe40f3153f84d9e4deb29fdab971.00000011.html b/www/.content.EZtzwPjb/html/fa85d4f4f298fe40f3153f84d9e4deb29fdab971.00000011.html new file mode 100644 index 0000000..9a50146 --- /dev/null +++ b/www/.content.EZtzwPjb/html/fa85d4f4f298fe40f3153f84d9e4deb29fdab971.00000011.html @@ -0,0 +1,290 @@ + + + + + + Anonymat I2P, TOR et les VPN | HugoPoi + + + + + + + + + + + + + + + + + + + + + +
                                +
                                +
                                +

                                Anonymat I2P, TOR et les VPN

                                + +
                                +
                                + +

                                Intro

                                +

                                Mon Minitel à coté de (soon) mon Minitel 2.0

                                +

                                Suite aux articles de mon « confrère » Bluetouff, je voudrais apporter ma pierre à l’édifice anonymat sur internet. Cet article va donc parler de 2 concepts logiciels réseaux qui permettent de surfer de façon blindée sur Internet. Enfin pas tant que ça …

                                +

                                En premier lieu, je devais écrire cet article dans le but de vous donnez des conseils pour utiliser les réseaux anonymes, mais je suis rendu compte qu’il était urgent d’informer les gens sur les dangers que sont les VPN.

                                +

                                Suite à une conversation avec un ami (et même plusieurs), je leur disais que je téléchargeais sur le réseau Bitorrent. La grande question était : est-ce que tu utilises un VPN ? Je leur ai répondu que non. La première des raisons pour laquelle je n’utilise pas de VPN c’est que je n’ai pas d’argent. Aussi le fait que pour utiliser un VPN, il faut rediriger ses paquets ip, ils transitent donc par un tiers qui peut comme il le veut logger toutes vos connexions et trafics. Enfin si je suis une autorité qui veux écouter le trafic des gens (genre hadopi), bah j’ouvre un VPN « pas-hadopi.fr« , venez tous ici pour contourner hadopi, tout le monde il est beau, tout le monde il est gentil, voilà tous les pigeons dans mon filet. Pour dire aussi que le VPN c’est de l’anti-internet, cela revient à supprimer le plus grand intérêt d’internet, à savoir l’échange direct possible entre tous et publier, discuter de façon décentralisée. Ce qui m’inquiète le plus en ce moment, c’est cette nouvelle vague « cloud computing  » « web 3.0  » qui vient avec des périphériques qui ne servent à rien sans internet et des services hyper centralisés tel Facebook ou Youtube et Google. Je ne sais pas si les gens se rendent compte qu’ils mettent leurs vies entre les mains de sociétés privées dont ils n’ont que peu de contrôle.

                                +

                                Tor

                                +

                                The Onion Router, je vais pas écrire un roman sur le fonctionnement de ce système de routage anonymisant mais le principe est pas super compliqué. Au lieu de choisir d’acheminer votre trafic de façon la plus rapide et/ou la moins cher, ce réseau va acheminer votre trafic de façon aléatoire et cryptée. Attention le cryptage est présent qu’entre votre ordinateur et le dernier nœud, qui lui se connecte en clair sur le serveur que vous voulez atteindre. Donc il serait facile, comme tout le monde peut devenir nœud sur Tor, d’intercepter le trafic qui passe en clair quand on est le dernier maillon de la chaîne. Quand vous utilisez ce genre de service (TOR,I2P,VPN,Proxy,…) évitez d’aller vous connecter sur le site de votre banque. Et puis quel serait l’intérêt d’être anonyme si c’est pour vous identifier sur facebook, on marche sur la tête là non ?!

                                +

                                En surfant sur les pages du projet Tor, je suis tombé sur ça. Une page qui donne des retours d’expériences sur l’hébergement de nœuds relais pour Tor. Il est marrant de constater que les hébergeurs ne sont pas du tout fan de ce genre d’installation sur leur réseau. Cela montre que ce genre de système est suffisamment puissant pour faire peur, et permet d’effectuer sûrement des attaques ciblées de façon totalement anonyme.

                                +

                                I2P

                                +

                                Alors je vais être moins long sur l’explication du fonctionnement de I2P, ça rassemble beaucoup à Tor sauf que c’est plus orienté service et échange peer to peer. Vous pouvez lire cette page qui explique les différences entre les réseaux Tor et I2P.

                                +
                                + + +
                                + + +
                                  +
                                1. +
                                  + +
                                  +

                                  Yop Hugo, il est cool ton blog mais pour être tranquille avec HADOPI faut faire du wawa :)
                                  +Ca peut être une idée d’article :p

                                  +
                                  + +
                                  +
                                2. +
                                3. +
                                  + +
                                  +

                                  quote : « le VPN c’est de l’anti-internet, cela revient à supprimer le plus grand intérêt d’internet, à savoir l’échange direct possible entre tous »…
                                  +Un FTP sous SSL chez moi via mon VPN nordique va bien pour mes amis… Je ne comprends pas votre argument…
                                  +Une plus fine explication?
                                  +Merci.

                                  +
                                  + +
                                  + +
                                4. +
                                5. +
                                  + +
                                  +

                                  pour 4.90 euros par mois j utilise http://www.vpn-discount.com qui me procure une grande satisfaction au niveau fiabilite,securite,rapidite et surete….un super vpn

                                  +
                                  + +
                                  +
                                    +
                                  • +
                                    + +
                                    +

                                    tu ne peux pas vérifier si il log tes connexions … Mais bon si il est à l’étranger ça limite le traçage :)

                                    +
                                    + +
                                    +
                                  • +
                                  +
                                6. +
                                + +
                                +

                                Répondre à Denis ¬
                                Annuler la réponse

                                +
                                +

                                + +

                                +

                                NOTE - Vous pouvez utiliser les éléments et attributs HTML tags and attributes:
                                <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>

                                +

                                + +

                                +
                                +
                                +
                                +
                                + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/faa2cd8550f4659695519afa5e944d519d6bb24c.00000005.html b/www/.content.EZtzwPjb/html/faa2cd8550f4659695519afa5e944d519d6bb24c.00000005.html new file mode 100644 index 0000000..153e730 --- /dev/null +++ b/www/.content.EZtzwPjb/html/faa2cd8550f4659695519afa5e944d519d6bb24c.00000005.html @@ -0,0 +1,487 @@ + + + + + + + + Free personne à rien compris – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                +
                                +
                                +
                                + +
                                +
                                +
                                +
                                +
                                +
                                +

                                FreeC’est mon deuxième article et aujourd’hui on va parler de l’opérateur télécom Free qui malmène et se fait malmener par certains membres du gouvernement.

                                +

                                Je vais commencer par raconter un truc qui s’est passé il y a quelques semaines. Dans la petite sphère des FAI, Free était connu pour être un peu à l’encontre du mouvement hadopi et aussi pour éviter toute atteinte à la neutralité du net. Mais un jour beaucoup de clients et non clients ont remarqué des problèmes de vitesse sur certain site de streaming video style Youtube et MegaVideo, ils ont tout de suite crié atteinte à la neutralité du net et ont accusé Free. Plusieurs sites ont relayé l’info mais sans preuves valables ou seulement les commentaires de certains freenautes ayant remarqué un problème de débit sur leur accès. Free comme à son habitude n’a pas jugé bon de communiquer sur le sujet. Donc aucun démenti, le mouvement continu et le problème semble résolu à l’heure actuelle.

                                +

                                Étant moi même freenaute je fais ma petite enquête sur mon accès et je n’ai pas pu démontré quoi que ce soit au niveau du temps de chargement des vidéos Youtube à part qu’il sont assez long pendant la période en question. Donc avant de jeter la pierre sur Free qui aurait soit disant limité le trafic vers certains serveurs étranger ; il faudrait une analyse profonde du réseau et effectuer des mesures concrètes. Le problème étant peut-être dû aux opérateurs de transit que Free utilise pour acheminer son trafic transatlantique, problème technique de routage ou de bande passante.

                                +

                                Je ne dis pas que Free est complètement innocent mais cela serait quand même bizarre qu’il mene d’un coté une politique contre Hadopi et de l’autre qu’il filtre le traffic dans le dos de leurs abonnés.

                                +
                                Ecran Pass Prioritaire Free

                                Ecran Pass Prioritaire Free

                                +

                                Mais cette semaine, en utilisant ma super freebox HD pour tester les nouveautés disponibles, je découvre dans Tv Replay un petit icone en bas. Et la je trouve ça bizarre « pass prioritaire » c’est quoi ce machin. Je cite : « Pour accéder à toutes les chaînes du service entre 19h et 22h. activez votre PASS PRIORITAIRE » . C’est un pass pour pouvoir accèder en priorité sur le service donc en gros, de la vente de QoS pour service TV. Cela pourrais donc rentrer dans le cadre d’une politique de test de la part de Free vu que ce service est actuellement en beta. L’avenir nous dira s’ils vont proposer un service similaire vers l’étranger, vous réalisez ? …

                                +

                                Toujours dans l’idée de vous informer vous pouvez aller lire cet article sur Numerama.

                                +
                                +
                                +
                                +
                                +
                                Catégories : News
                                +
                                +
                                +
                                + + + + + + + + + +
                                +
                                +
                                +
                                +
                                +
                                +
                                +

                                + 0 commentaire

                                +
                                +
                                +
                                +

                                Laisser un commentaire

                                Votre adresse de messagerie ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                                +
                                +
                                +

                                + +

                                +
                                +
                                +
                                +
                                +
                                +
                                + +
                                +
                                +
                                +
                                +
                                +
                                + + +
                                + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/fac2ee54c600853aec2addc693b78ac8de32cc4c.00000601.js b/www/.content.EZtzwPjb/html/fac2ee54c600853aec2addc693b78ac8de32cc4c.00000601.js new file mode 100644 index 0000000..f8faddd --- /dev/null +++ b/www/.content.EZtzwPjb/html/fac2ee54c600853aec2addc693b78ac8de32cc4c.00000601.js @@ -0,0 +1,526 @@ +( function( $ ) { + + 'use strict'; + + if ( typeof wpcf7 === 'undefined' || wpcf7 === null ) { + return; + } + + wpcf7 = $.extend( { + cached: 0, + inputs: [] + }, wpcf7 ); + + $( function() { + wpcf7.supportHtml5 = ( function() { + var features = {}; + var input = document.createElement( 'input' ); + + features.placeholder = 'placeholder' in input; + + var inputTypes = [ 'email', 'url', 'tel', 'number', 'range', 'date' ]; + + $.each( inputTypes, function( index, value ) { + input.setAttribute( 'type', value ); + features[ value ] = input.type !== 'text'; + } ); + + return features; + } )(); + + $( 'div.wpcf7 > form' ).each( function() { + var $form = $( this ); + wpcf7.initForm( $form ); + + if ( wpcf7.cached ) { + wpcf7.refill( $form ); + } + } ); + } ); + + wpcf7.getId = function( form ) { + return parseInt( $( 'input[name="_wpcf7"]', form ).val(), 10 ); + }; + + wpcf7.initForm = function( form ) { + var $form = $( form ); + + $form.submit( function( event ) { + if ( ! wpcf7.supportHtml5.placeholder ) { + $( '[placeholder].placeheld', $form ).each( function( i, n ) { + $( n ).val( '' ).removeClass( 'placeheld' ); + } ); + } + + if ( typeof window.FormData === 'function' ) { + wpcf7.submit( $form ); + event.preventDefault(); + } + } ); + + $( '.wpcf7-submit', $form ).after( '' ); + + wpcf7.toggleSubmit( $form ); + + $form.on( 'click', '.wpcf7-acceptance', function() { + wpcf7.toggleSubmit( $form ); + } ); + + // Exclusive Checkbox + $( '.wpcf7-exclusive-checkbox', $form ).on( 'click', 'input:checkbox', function() { + var name = $( this ).attr( 'name' ); + $form.find( 'input:checkbox[name="' + name + '"]' ).not( this ).prop( 'checked', false ); + } ); + + // Free Text Option for Checkboxes and Radio Buttons + $( '.wpcf7-list-item.has-free-text', $form ).each( function() { + var $freetext = $( ':input.wpcf7-free-text', this ); + var $wrap = $( this ).closest( '.wpcf7-form-control' ); + + if ( $( ':checkbox, :radio', this ).is( ':checked' ) ) { + $freetext.prop( 'disabled', false ); + } else { + $freetext.prop( 'disabled', true ); + } + + $wrap.on( 'change', ':checkbox, :radio', function() { + var $cb = $( '.has-free-text', $wrap ).find( ':checkbox, :radio' ); + + if ( $cb.is( ':checked' ) ) { + $freetext.prop( 'disabled', false ).focus(); + } else { + $freetext.prop( 'disabled', true ); + } + } ); + } ); + + // Placeholder Fallback + if ( ! wpcf7.supportHtml5.placeholder ) { + $( '[placeholder]', $form ).each( function() { + $( this ).val( $( this ).attr( 'placeholder' ) ); + $( this ).addClass( 'placeheld' ); + + $( this ).focus( function() { + if ( $( this ).hasClass( 'placeheld' ) ) { + $( this ).val( '' ).removeClass( 'placeheld' ); + } + } ); + + $( this ).blur( function() { + if ( '' === $( this ).val() ) { + $( this ).val( $( this ).attr( 'placeholder' ) ); + $( this ).addClass( 'placeheld' ); + } + } ); + } ); + } + + if ( wpcf7.jqueryUi && ! wpcf7.supportHtml5.date ) { + $form.find( 'input.wpcf7-date[type="date"]' ).each( function() { + $( this ).datepicker( { + dateFormat: 'yy-mm-dd', + minDate: new Date( $( this ).attr( 'min' ) ), + maxDate: new Date( $( this ).attr( 'max' ) ) + } ); + } ); + } + + if ( wpcf7.jqueryUi && ! wpcf7.supportHtml5.number ) { + $form.find( 'input.wpcf7-number[type="number"]' ).each( function() { + $( this ).spinner( { + min: $( this ).attr( 'min' ), + max: $( this ).attr( 'max' ), + step: $( this ).attr( 'step' ) + } ); + } ); + } + + // Character Count + $( '.wpcf7-character-count', $form ).each( function() { + var $count = $( this ); + var name = $count.attr( 'data-target-name' ); + var down = $count.hasClass( 'down' ); + var starting = parseInt( $count.attr( 'data-starting-value' ), 10 ); + var maximum = parseInt( $count.attr( 'data-maximum-value' ), 10 ); + var minimum = parseInt( $count.attr( 'data-minimum-value' ), 10 ); + + var updateCount = function( target ) { + var $target = $( target ); + var length = $target.val().length; + var count = down ? starting - length : length; + $count.attr( 'data-current-value', count ); + $count.text( count ); + + if ( maximum && maximum < length ) { + $count.addClass( 'too-long' ); + } else { + $count.removeClass( 'too-long' ); + } + + if ( minimum && length < minimum ) { + $count.addClass( 'too-short' ); + } else { + $count.removeClass( 'too-short' ); + } + }; + + $( ':input[name="' + name + '"]', $form ).each( function() { + updateCount( this ); + + $( this ).keyup( function() { + updateCount( this ); + } ); + } ); + } ); + + // URL Input Correction + $form.on( 'change', '.wpcf7-validates-as-url', function() { + var val = $.trim( $( this ).val() ); + + if ( val + && ! val.match( /^[a-z][a-z0-9.+-]*:/i ) + && -1 !== val.indexOf( '.' ) ) { + val = val.replace( /^\/+/, '' ); + val = 'http://' + val; + } + + $( this ).val( val ); + } ); + }; + + wpcf7.submit = function( form ) { + if ( typeof window.FormData !== 'function' ) { + return; + } + + var $form = $( form ); + + $( '.ajax-loader', $form ).addClass( 'is-active' ); + + wpcf7.clearResponse( $form ); + + var formData = new FormData( $form.get( 0 ) ); + + var detail = { + id: $form.closest( 'div.wpcf7' ).attr( 'id' ), + status: 'init', + inputs: [], + formData: formData + }; + + $.each( $form.serializeArray(), function( i, field ) { + if ( '_wpcf7' == field.name ) { + detail.contactFormId = field.value; + } else if ( '_wpcf7_version' == field.name ) { + detail.pluginVersion = field.value; + } else if ( '_wpcf7_locale' == field.name ) { + detail.contactFormLocale = field.value; + } else if ( '_wpcf7_unit_tag' == field.name ) { + detail.unitTag = field.value; + } else if ( '_wpcf7_container_post' == field.name ) { + detail.containerPostId = field.value; + } else if ( field.name.match( /^_wpcf7_\w+_free_text_/ ) ) { + var owner = field.name.replace( /^_wpcf7_\w+_free_text_/, '' ); + detail.inputs.push( { + name: owner + '-free-text', + value: field.value + } ); + } else if ( field.name.match( /^_/ ) ) { + // do nothing + } else { + detail.inputs.push( field ); + } + } ); + + wpcf7.triggerEvent( $form.closest( 'div.wpcf7' ), 'beforesubmit', detail ); + + var ajaxSuccess = function( data, status, xhr, $form ) { + detail.id = $( data.into ).attr( 'id' ); + detail.status = data.status; + detail.apiResponse = data; + + var $message = $( '.wpcf7-response-output', $form ); + + switch ( data.status ) { + case 'validation_failed': + $.each( data.invalidFields, function( i, n ) { + $( n.into, $form ).each( function() { + wpcf7.notValidTip( this, n.message ); + $( '.wpcf7-form-control', this ).addClass( 'wpcf7-not-valid' ); + $( '[aria-invalid]', this ).attr( 'aria-invalid', 'true' ); + } ); + } ); + + $message.addClass( 'wpcf7-validation-errors' ); + $form.addClass( 'invalid' ); + + wpcf7.triggerEvent( data.into, 'invalid', detail ); + break; + case 'acceptance_missing': + $message.addClass( 'wpcf7-acceptance-missing' ); + $form.addClass( 'unaccepted' ); + + wpcf7.triggerEvent( data.into, 'unaccepted', detail ); + break; + case 'spam': + $message.addClass( 'wpcf7-spam-blocked' ); + $form.addClass( 'spam' ); + + wpcf7.triggerEvent( data.into, 'spam', detail ); + break; + case 'aborted': + $message.addClass( 'wpcf7-aborted' ); + $form.addClass( 'aborted' ); + + wpcf7.triggerEvent( data.into, 'aborted', detail ); + break; + case 'mail_sent': + $message.addClass( 'wpcf7-mail-sent-ok' ); + $form.addClass( 'sent' ); + + wpcf7.triggerEvent( data.into, 'mailsent', detail ); + break; + case 'mail_failed': + $message.addClass( 'wpcf7-mail-sent-ng' ); + $form.addClass( 'failed' ); + + wpcf7.triggerEvent( data.into, 'mailfailed', detail ); + break; + default: + var customStatusClass = 'custom-' + + data.status.replace( /[^0-9a-z]+/i, '-' ); + $message.addClass( 'wpcf7-' + customStatusClass ); + $form.addClass( customStatusClass ); + } + + wpcf7.refill( $form, data ); + + wpcf7.triggerEvent( data.into, 'submit', detail ); + + if ( 'mail_sent' == data.status ) { + $form.each( function() { + this.reset(); + } ); + + wpcf7.toggleSubmit( $form ); + } + + if ( ! wpcf7.supportHtml5.placeholder ) { + $form.find( '[placeholder].placeheld' ).each( function( i, n ) { + $( n ).val( $( n ).attr( 'placeholder' ) ); + } ); + } + + $message.html( '' ).append( data.message ).slideDown( 'fast' ); + $message.attr( 'role', 'alert' ); + + $( '.screen-reader-response', $form.closest( '.wpcf7' ) ).each( function() { + var $response = $( this ); + $response.html( '' ).attr( 'role', '' ).append( data.message ); + + if ( data.invalidFields ) { + var $invalids = $( '
                                  ' ); + + $.each( data.invalidFields, function( i, n ) { + if ( n.idref ) { + var $li = $( '
                                • ' ).append( $( '' ).attr( 'href', '#' + n.idref ).append( n.message ) ); + } else { + var $li = $( '
                                • ' ).append( n.message ); + } + + $invalids.append( $li ); + } ); + + $response.append( $invalids ); + } + + $response.attr( 'role', 'alert' ).focus(); + } ); + }; + + $.ajax( { + type: 'POST', + url: wpcf7.apiSettings.getRoute( + '/contact-forms/' + wpcf7.getId( $form ) + '/feedback' ), + data: formData, + dataType: 'json', + processData: false, + contentType: false + } ).done( function( data, status, xhr ) { + ajaxSuccess( data, status, xhr, $form ); + $( '.ajax-loader', $form ).removeClass( 'is-active' ); + } ).fail( function( xhr, status, error ) { + var $e = $( '
                                  ' ).text( error.message ); + $form.after( $e ); + } ); + }; + + wpcf7.triggerEvent = function( target, name, detail ) { + var $target = $( target ); + + /* DOM event */ + var event = new CustomEvent( 'wpcf7' + name, { + bubbles: true, + detail: detail + } ); + + $target.get( 0 ).dispatchEvent( event ); + + /* jQuery event */ + $target.trigger( 'wpcf7:' + name, detail ); + $target.trigger( name + '.wpcf7', detail ); // deprecated + }; + + wpcf7.toggleSubmit = function( form, state ) { + var $form = $( form ); + var $submit = $( 'input:submit', $form ); + + if ( typeof state !== 'undefined' ) { + $submit.prop( 'disabled', ! state ); + return; + } + + if ( $form.hasClass( 'wpcf7-acceptance-as-validation' ) ) { + return; + } + + $submit.prop( 'disabled', false ); + + $( '.wpcf7-acceptance', $form ).each( function() { + var $span = $( this ); + var $input = $( 'input:checkbox', $span ); + + if ( ! $span.hasClass( 'optional' ) ) { + if ( $span.hasClass( 'invert' ) && $input.is( ':checked' ) + || ! $span.hasClass( 'invert' ) && ! $input.is( ':checked' ) ) { + $submit.prop( 'disabled', true ); + return false; + } + } + } ); + }; + + wpcf7.notValidTip = function( target, message ) { + var $target = $( target ); + $( '.wpcf7-not-valid-tip', $target ).remove(); + $( '' ) + .text( message ).appendTo( $target ); + + if ( $target.is( '.use-floating-validation-tip *' ) ) { + var fadeOut = function( target ) { + $( target ).not( ':hidden' ).animate( { + opacity: 0 + }, 'fast', function() { + $( this ).css( { 'z-index': -100 } ); + } ); + }; + + $target.on( 'mouseover', '.wpcf7-not-valid-tip', function() { + fadeOut( this ); + } ); + + $target.on( 'focus', ':input', function() { + fadeOut( $( '.wpcf7-not-valid-tip', $target ) ); + } ); + } + }; + + wpcf7.refill = function( form, data ) { + var $form = $( form ); + + var refillCaptcha = function( $form, items ) { + $.each( items, function( i, n ) { + $form.find( ':input[name="' + i + '"]' ).val( '' ); + $form.find( 'img.wpcf7-captcha-' + i ).attr( 'src', n ); + var match = /([0-9]+)\.(png|gif|jpeg)$/.exec( n ); + $form.find( 'input:hidden[name="_wpcf7_captcha_challenge_' + i + '"]' ).attr( 'value', match[ 1 ] ); + } ); + }; + + var refillQuiz = function( $form, items ) { + $.each( items, function( i, n ) { + $form.find( ':input[name="' + i + '"]' ).val( '' ); + $form.find( ':input[name="' + i + '"]' ).siblings( 'span.wpcf7-quiz-label' ).text( n[ 0 ] ); + $form.find( 'input:hidden[name="_wpcf7_quiz_answer_' + i + '"]' ).attr( 'value', n[ 1 ] ); + } ); + }; + + if ( typeof data === 'undefined' ) { + $.ajax( { + type: 'GET', + url: wpcf7.apiSettings.getRoute( + '/contact-forms/' + wpcf7.getId( $form ) + '/refill' ), + beforeSend: function( xhr ) { + var nonce = $form.find( ':input[name="_wpnonce"]' ).val(); + + if ( nonce ) { + xhr.setRequestHeader( 'X-WP-Nonce', nonce ); + } + }, + dataType: 'json' + } ).done( function( data, status, xhr ) { + if ( data.captcha ) { + refillCaptcha( $form, data.captcha ); + } + + if ( data.quiz ) { + refillQuiz( $form, data.quiz ); + } + } ); + + } else { + if ( data.captcha ) { + refillCaptcha( $form, data.captcha ); + } + + if ( data.quiz ) { + refillQuiz( $form, data.quiz ); + } + } + }; + + wpcf7.clearResponse = function( form ) { + var $form = $( form ); + $form.removeClass( 'invalid spam sent failed' ); + $form.siblings( '.screen-reader-response' ).html( '' ).attr( 'role', '' ); + + $( '.wpcf7-not-valid-tip', $form ).remove(); + $( '[aria-invalid]', $form ).attr( 'aria-invalid', 'false' ); + $( '.wpcf7-form-control', $form ).removeClass( 'wpcf7-not-valid' ); + + $( '.wpcf7-response-output', $form ) + .hide().empty().removeAttr( 'role' ) + .removeClass( 'wpcf7-mail-sent-ok wpcf7-mail-sent-ng wpcf7-validation-errors wpcf7-spam-blocked' ); + }; + + wpcf7.apiSettings.getRoute = function( path ) { + var url = wpcf7.apiSettings.root; + + url = url.replace( + wpcf7.apiSettings.namespace, + wpcf7.apiSettings.namespace + path ); + + return url; + }; + +} )( jQuery ); + +/* + * Polyfill for Internet Explorer + * See https://developer.mozilla.org/en-US/docs/Web/API/CustomEvent/CustomEvent + */ +( function () { + if ( typeof window.CustomEvent === "function" ) return false; + + function CustomEvent ( event, params ) { + params = params || { bubbles: false, cancelable: false, detail: undefined }; + var evt = document.createEvent( 'CustomEvent' ); + evt.initCustomEvent( event, + params.bubbles, params.cancelable, params.detail ); + return evt; + } + + CustomEvent.prototype = window.Event.prototype; + + window.CustomEvent = CustomEvent; +} )(); diff --git a/www/.content.EZtzwPjb/html/faca07eb228ea4f1492fa0ce872e9ab41f6cf676.00000589.js b/www/.content.EZtzwPjb/html/faca07eb228ea4f1492fa0ce872e9ab41f6cf676.00000589.js new file mode 100644 index 0000000..099122d --- /dev/null +++ b/www/.content.EZtzwPjb/html/faca07eb228ea4f1492fa0ce872e9ab41f6cf676.00000589.js @@ -0,0 +1,280 @@ +(function($) { + + if (typeof _wpcf7 == 'undefined' || _wpcf7 === null) + _wpcf7 = {}; + + _wpcf7 = $.extend({ cached: 0 }, _wpcf7); + + $(function() { + _wpcf7.supportHtml5 = $.wpcf7SupportHtml5(); + $('div.wpcf7 > form').wpcf7InitForm(); + }); + + $.fn.wpcf7InitForm = function() { + this.ajaxForm({ + beforeSubmit: function(arr, $form, options) { + $form.wpcf7ClearResponseOutput(); + $form.find('[aria-invalid]').attr('aria-invalid', 'false'); + $form.find('img.ajax-loader').css({ visibility: 'visible' }); + return true; + }, + beforeSerialize: function($form, options) { + $form.find('[placeholder].placeheld').each(function(i, n) { + $(n).val(''); + }); + return true; + }, + data: { '_wpcf7_is_ajax_call': 1 }, + dataType: 'json', + success: $.wpcf7AjaxSuccess, + error: function(xhr, status, error, $form) { + var e = $('
                                  ').text(error.message); + $form.after(e); + } + }); + + if (_wpcf7.cached) + this.wpcf7OnloadRefill(); + + this.wpcf7ToggleSubmit(); + + this.find('.wpcf7-submit').wpcf7AjaxLoader(); + + this.find('.wpcf7-acceptance').click(function() { + $(this).closest('form').wpcf7ToggleSubmit(); + }); + + this.find('.wpcf7-exclusive-checkbox').wpcf7ExclusiveCheckbox(); + + this.find('[placeholder]').wpcf7Placeholder(); + + if (_wpcf7.jqueryUi && ! _wpcf7.supportHtml5.date) { + this.find('input.wpcf7-date[type="date"]').each(function() { + $(this).datepicker({ + dateFormat: 'yy-mm-dd', + minDate: new Date($(this).attr('min')), + maxDate: new Date($(this).attr('max')) + }); + }); + } + + if (_wpcf7.jqueryUi && ! _wpcf7.supportHtml5.number) { + this.find('input.wpcf7-number[type="number"]').each(function() { + $(this).spinner({ + min: $(this).attr('min'), + max: $(this).attr('max'), + step: $(this).attr('step') + }); + }); + } + }; + + $.wpcf7AjaxSuccess = function(data, status, xhr, $form) { + if (! $.isPlainObject(data) || $.isEmptyObject(data)) + return; + + var $responseOutput = $form.find('div.wpcf7-response-output'); + + $form.wpcf7ClearResponseOutput(); + + $form.find('.wpcf7-form-control').removeClass('wpcf7-not-valid'); + $form.removeClass('invalid spam sent failed'); + + if (data.captcha) + $form.wpcf7RefillCaptcha(data.captcha); + + if (data.quiz) + $form.wpcf7RefillQuiz(data.quiz); + + if (data.invalids) { + $.each(data.invalids, function(i, n) { + $form.find(n.into).wpcf7NotValidTip(n.message); + $form.find(n.into).find('.wpcf7-form-control').addClass('wpcf7-not-valid'); + $form.find(n.into).find('[aria-invalid]').attr('aria-invalid', 'true'); + }); + + $responseOutput.addClass('wpcf7-validation-errors'); + $form.addClass('invalid'); + + $(data.into).trigger('invalid.wpcf7'); + + } else if (1 == data.spam) { + $responseOutput.addClass('wpcf7-spam-blocked'); + $form.addClass('spam'); + + $(data.into).trigger('spam.wpcf7'); + + } else if (1 == data.mailSent) { + $responseOutput.addClass('wpcf7-mail-sent-ok'); + $form.addClass('sent'); + + if (data.onSentOk) + $.each(data.onSentOk, function(i, n) { eval(n) }); + + $(data.into).trigger('mailsent.wpcf7'); + + } else { + $responseOutput.addClass('wpcf7-mail-sent-ng'); + $form.addClass('failed'); + + $(data.into).trigger('mailfailed.wpcf7'); + } + + if (data.onSubmit) + $.each(data.onSubmit, function(i, n) { eval(n) }); + + $(data.into).trigger('submit.wpcf7'); + + if (1 == data.mailSent) + $form.resetForm().clearForm(); + + $form.find('[placeholder].placeheld').each(function(i, n) { + $(n).val($(n).attr('placeholder')); + }); + + $responseOutput.append(data.message).slideDown('fast'); + $responseOutput.attr('role', 'alert'); + } + + $.fn.wpcf7ExclusiveCheckbox = function() { + return this.find('input:checkbox').click(function() { + $(this).closest('.wpcf7-checkbox').find('input:checkbox').not(this).removeAttr('checked'); + }); + }; + + $.fn.wpcf7Placeholder = function() { + if (_wpcf7.supportHtml5.placeholder) + return this; + + return this.each(function() { + $(this).val($(this).attr('placeholder')); + $(this).addClass('placeheld'); + + $(this).focus(function() { + if ($(this).hasClass('placeheld')) + $(this).val('').removeClass('placeheld'); + }); + + $(this).blur(function() { + if ('' == $(this).val()) { + $(this).val($(this).attr('placeholder')); + $(this).addClass('placeheld'); + } + }); + }); + }; + + $.fn.wpcf7AjaxLoader = function() { + return this.each(function() { + var loader = $('') + .attr({ src: _wpcf7.loaderUrl, alt: _wpcf7.sending }) + .css('visibility', 'hidden'); + + $(this).after(loader); + }); + }; + + $.fn.wpcf7ToggleSubmit = function() { + return this.each(function() { + var form = $(this); + if (this.tagName.toLowerCase() != 'form') + form = $(this).find('form').first(); + + if (form.hasClass('wpcf7-acceptance-as-validation')) + return; + + var submit = form.find('input:submit'); + if (! submit.length) return; + + var acceptances = form.find('input:checkbox.wpcf7-acceptance'); + if (! acceptances.length) return; + + submit.removeAttr('disabled'); + acceptances.each(function(i, n) { + n = $(n); + if (n.hasClass('wpcf7-invert') && n.is(':checked') + || ! n.hasClass('wpcf7-invert') && ! n.is(':checked')) + submit.attr('disabled', 'disabled'); + }); + }); + }; + + $.fn.wpcf7NotValidTip = function(message) { + return this.each(function() { + var into = $(this); + into.hide().append('' + message + '').slideDown('fast'); + }); + }; + + $.fn.wpcf7OnloadRefill = function() { + return this.each(function() { + var url = $(this).attr('action'); + if (0 < url.indexOf('#')) + url = url.substr(0, url.indexOf('#')); + + var id = $(this).find('input[name="_wpcf7"]').val(); + var unitTag = $(this).find('input[name="_wpcf7_unit_tag"]').val(); + + $.getJSON(url, + { _wpcf7_is_ajax_call: 1, _wpcf7: id, _wpcf7_request_ver: $.now() }, + function(data) { + if (data && data.captcha) + $('#' + unitTag).wpcf7RefillCaptcha(data.captcha); + + if (data && data.quiz) + $('#' + unitTag).wpcf7RefillQuiz(data.quiz); + } + ); + }); + }; + + $.fn.wpcf7RefillCaptcha = function(captcha) { + return this.each(function() { + var form = $(this); + + $.each(captcha, function(i, n) { + form.find(':input[name="' + i + '"]').clearFields(); + form.find('img.wpcf7-captcha-' + i).attr('src', n); + var match = /([0-9]+)\.(png|gif|jpeg)$/.exec(n); + form.find('input:hidden[name="_wpcf7_captcha_challenge_' + i + '"]').attr('value', match[1]); + }); + }); + }; + + $.fn.wpcf7RefillQuiz = function(quiz) { + return this.each(function() { + var form = $(this); + + $.each(quiz, function(i, n) { + form.find(':input[name="' + i + '"]').clearFields(); + form.find(':input[name="' + i + '"]').siblings('span.wpcf7-quiz-label').text(n[0]); + form.find('input:hidden[name="_wpcf7_quiz_answer_' + i + '"]').attr('value', n[1]); + }); + }); + }; + + $.fn.wpcf7ClearResponseOutput = function() { + return this.each(function() { + $(this).find('div.wpcf7-response-output').hide().empty().removeClass('wpcf7-mail-sent-ok wpcf7-mail-sent-ng wpcf7-validation-errors wpcf7-spam-blocked').removeAttr('role'); + $(this).find('span.wpcf7-not-valid-tip').remove(); + $(this).find('img.ajax-loader').css({ visibility: 'hidden' }); + }); + }; + + $.wpcf7SupportHtml5 = function() { + var features = {}; + var input = document.createElement('input'); + + features.placeholder = 'placeholder' in input; + + var inputTypes = ['email', 'url', 'tel', 'number', 'range', 'date']; + + $.each(inputTypes, function(index, value) { + input.setAttribute('type', value); + features[value] = input.type !== 'text'; + }); + + return features; + }; + +})(jQuery); \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/fb71879affa4d4ea2ff7ac08932cb29775a355d0.00000492.html b/www/.content.EZtzwPjb/html/fb71879affa4d4ea2ff7ac08932cb29775a355d0.00000492.html new file mode 100644 index 0000000..53aeac5 --- /dev/null +++ b/www/.content.EZtzwPjb/html/fb71879affa4d4ea2ff7ac08932cb29775a355d0.00000492.html @@ -0,0 +1,370 @@ + + + + + + + redimensionner – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                                  +
                                  +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  +
                                  +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  + +
                                  +
                                  + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/fb7b069f88fcf323064810a86aa5fa01bdea211d.00000421.html b/www/.content.EZtzwPjb/html/fb7b069f88fcf323064810a86aa5fa01bdea211d.00000421.html new file mode 100644 index 0000000..f6e69b0 --- /dev/null +++ b/www/.content.EZtzwPjb/html/fb7b069f88fcf323064810a86aa5fa01bdea211d.00000421.html @@ -0,0 +1,379 @@ + + + + + + + Home Cinéma – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                                  +
                                  +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  +
                                  +

                                  Home Cinéma

                                  Bientôt fini mais peut-être jamais terminé tellement il y a de boulot autour d’un système home-cinema complet et parfait. Cela fait bientôt deux semaines que je suis dans mes travaux et ma configuration HTPC. Première semaine, je suis parti de rien, aucun câble posé, pas de pc installé et pas de meuble. Du coup, le lundi, je suis allé à Ikea et j’ai trouvé à peu près ce que je voulais pour pas trop cher (120 € pour de l’aggloméré de merde). Le mardi, je venais de recevoir tout le matos, à savoir :

                                  +
                                    +
                                  • Un Amplificateur Yamaha RX-671
                                  • +
                                  • Un kit d’enceinte Jamo 5.1
                                  • +
                                  • Un boitier Antec Remote black et les 2-3 composants qui vont bien
                                  • +
                                  +

                                  Salon Wii

                                  +

                                   

                                  + +
                                  Par HugoPoi, il y a
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  + +
                                  +
                                  + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/fb95e213d8b8d26606ebfc0e2c5091776e3737f8.00000319.xml b/www/.content.EZtzwPjb/html/fb95e213d8b8d26606ebfc0e2c5091776e3737f8.00000319.xml new file mode 100644 index 0000000..4c6b84c --- /dev/null +++ b/www/.content.EZtzwPjb/html/fb95e213d8b8d26606ebfc0e2c5091776e3737f8.00000319.xml @@ -0,0 +1,175 @@ + + + + Commentaires pour HugoPoi + + https://blog.hugopoi.net + Internet, Hardware et Bidouille + + Mon, 27 Jan 2020 22:44:09 +0000 + + hourly + + 1 + https://wordpress.org/?v=5.1.4 + + + Commentaires sur Le cloud maison par emilien mougeat + https://blog.hugopoi.net/2019/03/30/le-cloud-maison/#comment-31118 + + Mon, 27 Jan 2020 22:44:09 +0000 + https://blog.hugopoi.net/?p=1142#comment-31118 + + Bon Je viens de comprendre le probleme NFS, les droits configurés sur le volume etaient des droits windaube ….. SERIEUX Oo

                                  +]]>
                                  +
                                  + + + Commentaires sur Le cloud maison par emilien mougeat + https://blog.hugopoi.net/2019/03/30/le-cloud-maison/#comment-31117 + + Mon, 27 Jan 2020 21:42:12 +0000 + https://blog.hugopoi.net/?p=1142#comment-31117 + + Salut !
                                  +Merci pour ce retour d’experience.
                                  +J’ai également passé le pas ! freenas + yunohost en iohyve ( debian9+yunohost). plutot cool.
                                  +Par contre j’ai une petite galere que je n’arrive pas à resoudre, et je voulais savoir si tu avais rencontré la meme problematique.
                                  +En effet quand j’essaye de monter le NFS entre le yuno et le freenas, impossible.
                                  +Ma conf « semble » bonne maiiiiiiis je n’y arrive pas.
                                  +Qu niveau de la conf nfs du freenas, quels paramètres as tu ?
                                  +++

                                  +]]>
                                  +
                                  + + + Commentaires sur Pourquoi je suis sous Linux bordel ! par Victor + https://blog.hugopoi.net/2017/02/11/pourquoi-je-suis-sous-linux-bordel/#comment-31105 + + Fri, 27 Dec 2019 23:22:03 +0000 + http://blog.hugopoi.net/?p=947#comment-31105 + + Salut

                                  +

                                  Pour moi, c’est exactement le contraire. Une install de Windows 7 (avec mises à jour intégrées) = 30 minuites chrono ! Et côté périphériques, presque tout est plug and play.

                                  +

                                  Avec Linux, c’est la galère assurée ! Y’a pas une distribution qui a les mêmes fonctionnalités et pas une qui ne fonctionne complètement du premier coup ! C’est pire qu’un jeu de Lego.
                                  +Y’a trop peu de périphériques qui sont pris en charge en natif.
                                  +Il faut perdre son temps à compiler les drivers pour faire fonctionner de simples périphériques de base.
                                  +Et tout ça, en ligne de commande bien sûr ! C’est gavant !
                                  +On est bientôt en 2020 quand même…

                                  +]]>
                                  +
                                  + + + Commentaires sur Réparations Samsung SyncMaster 2232BW par yvan + https://blog.hugopoi.net/2012/01/15/reparations-samsung-syncmaster-2232bw/#comment-31085 + + Sun, 24 Nov 2019 16:26:21 +0000 + http://blog.hugopoi.net/?p=586#comment-31085 + + finalement j’ai trouvé, c’est un petit fusible vert qui ressemble à une résistance mais tout vert avec écrit 4A LF qui assure l’alimentation de la dalle.
                                  +En le shuntant, mon écran a retrouvé l’image.
                                  +après enquête il s’agit d’un fusible pico de 4ampères de chez little fuse, pas du tout évident à trouver
                                  +Résolu !

                                  +]]>
                                  +
                                  + + + Commentaires sur Réparations Samsung SyncMaster 2232BW par yvan + https://blog.hugopoi.net/2012/01/15/reparations-samsung-syncmaster-2232bw/#comment-31083 + + Sat, 23 Nov 2019 16:14:23 +0000 + http://blog.hugopoi.net/?p=586#comment-31083 + + Bonjour
                                  +j’ai tenté de changer le condensateur qui avait l’air naze mais ça n’a pas marché … toujours le bouton bleu allumé, l’écran est reconnu par Windows 10 même si l’écran est éteint
                                  +grâce au service manuel de l’écran fourni plus haut, j’ai vérifié les tensions jusque sur la carte de la dalle et elles sont correctes, ainsi que sur la carte elle-même, tout est ok, donc je pense que ce n’est plus un problème de condensateur
                                  +pour les fusibles, ils ressemblent plutôt à des composants qu’à de simple fusibles, mais comme j’ai les bonnes tension, je ne pense pas que ça vienne de là
                                  +j’ai bien peur que ce soit la dalle qui soit naze ? quelqu’un a t il des idées supplémentaires avant que je le jette avec grand regret (c’est un 2032bw, mais c’est la même chose, même si ma carte électronique est un peu différente car plus récente
                                  +merci d’avance pour vos conseils

                                  +]]>
                                  +
                                  + + + Commentaires sur Le cloud maison par clement + https://blog.hugopoi.net/2019/03/30/le-cloud-maison/#comment-31029 + + Thu, 11 Jul 2019 20:15:37 +0000 + https://blog.hugopoi.net/?p=1142#comment-31029 + + Merci pour le retour d’expérience (et l’humour sur le blog!) ^^. Chez moi, c’est Synology avec l’OS d’origine et Yunohost sur RASPI! #fun

                                  +]]>
                                  +
                                  + + + Commentaires sur Niquer les DRMs d’Amazon AKA convertir vos ebook vers EPUB sans DRM par Romaric + https://blog.hugopoi.net/2018/09/08/niquer-les-drms-damazon-aka-convertir-vos-ebook-vers-epub-sans-drm/#comment-31004 + + Sat, 04 May 2019 18:11:13 +0000 + https://blog.hugopoi.net/?p=999#comment-31004 + + Seule chose à penser à faire, sous peine sinon de ne pas réussir à relancer Kindle.
                                  +Une fois installée et lancée, dans l’appli Kindle, dans les réglages, désactiver l’installation automatique des mises à jour. Sinon au prochain lancement de Kindle par Playonlinux, il tombera sur l’installeur de nouvelle version et plantera.

                                  +]]>
                                  +
                                  + + + Commentaires sur Niquer les DRMs d’Amazon AKA convertir vos ebook vers EPUB sans DRM par Romaric + https://blog.hugopoi.net/2018/09/08/niquer-les-drms-damazon-aka-convertir-vos-ebook-vers-epub-sans-drm/#comment-31000 + + Fri, 03 May 2019 16:19:17 +0000 + https://blog.hugopoi.net/?p=999#comment-31000 + + Juste dire un ENORME MERCI pour ce tutoriel, grâce auquel j’ai réussi à récupérer un livre acheté sur Amazon pour le lire sur une liseuse KOBO.

                                  +]]>
                                  +
                                  + + + Commentaires sur Réparations Samsung SyncMaster 2232BW par David + https://blog.hugopoi.net/2012/01/15/reparations-samsung-syncmaster-2232bw/#comment-30880 + + Tue, 05 Feb 2019 20:06:14 +0000 + http://blog.hugopoi.net/?p=586#comment-30880 + + Merci Hugo pour ce tuto qui m’a déjà servi en 2013 et qui va me resservir aujourd’hui car mon 2ème 2232bw commence à avoir les mêmes symptômes.

                                  +]]>
                                  +
                                  + + + Commentaires sur Réparations Samsung SyncMaster 2232BW par Alex + https://blog.hugopoi.net/2012/01/15/reparations-samsung-syncmaster-2232bw/#comment-30774 + + Sat, 11 Aug 2018 11:28:30 +0000 + http://blog.hugopoi.net/?p=586#comment-30774 + + Quelqu’un sait qui pourrait me le faire svp j ai le même problème mais aucun matériel

                                  +]]>
                                  +
                                  +
                                  +
                                  diff --git a/www/.content.EZtzwPjb/html/fba3cf75186bc4dcc5615c0ab55f7de976ae5bca.00000556.html b/www/.content.EZtzwPjb/html/fba3cf75186bc4dcc5615c0ab55f7de976ae5bca.00000556.html new file mode 100644 index 0000000..a357d4c --- /dev/null +++ b/www/.content.EZtzwPjb/html/fba3cf75186bc4dcc5615c0ab55f7de976ae5bca.00000556.html @@ -0,0 +1,372 @@ + + + + + + + wireshark – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                                  +
                                  +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  +
                                  +

                                  L’homme du milieu avec DD-WRT

                                  J’avais besoin de faire un MITM entre un ONT et la box SFR NB6 pour pouvoir capturer les identifiants PPP pour le tunnel ipv6. Je n’avais pas de hub ou de machine avec 2 interfaces Ethernet pour pouvoir le faire de façon passive sans faire du spoofing ARP. Et je n’avais pas envie d’envoyer des trames ARP sur l’infrastructure réseau SFR. J’avais un Netgear WNR3500Lv1 dans un coin, je me suis dit qu’il y avais moyen d’utiliser ce genre de routeur pour faire du tapping passif.

                                  +

                                  (suite…)

                                  +
                                  Par HugoPoi, il y a
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  + +
                                  +
                                  + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/fbc7bd93bce10b43c7fcb3bdfe48156030d08b11.00000635.css b/www/.content.EZtzwPjb/html/fbc7bd93bce10b43c7fcb3bdfe48156030d08b11.00000635.css new file mode 100644 index 0000000..8043bbf --- /dev/null +++ b/www/.content.EZtzwPjb/html/fbc7bd93bce10b43c7fcb3bdfe48156030d08b11.00000635.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;background:#fff;border:1px +solid #f00;font-size:10pt;width:280px;padding:2px}span.wpcf7-not-valid-tip-no-ajax{color:#f00;font-size:10pt;display:block}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/fc82663cf1204f7ae898d3c27142cfd875285c56.00001216.js b/www/.content.EZtzwPjb/html/fc82663cf1204f7ae898d3c27142cfd875285c56.00001216.js new file mode 100644 index 0000000..340ce0a --- /dev/null +++ b/www/.content.EZtzwPjb/html/fc82663cf1204f7ae898d3c27142cfd875285c56.00001216.js @@ -0,0 +1,6 @@ +/*! jQuery v1.12.4 | (c) jQuery Foundation | jquery.org/license | WordPress 2019-05-16 */ +!function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=a.document,e=c.slice,f=c.concat,g=c.push,h=c.indexOf,i={},j=i.toString,k=i.hasOwnProperty,l={},m="1.12.4",n=function(a,b){return new n.fn.init(a,b)},o=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,p=/^-ms-/,q=/-([\da-z])/gi,r=function(a,b){return b.toUpperCase()};n.fn=n.prototype={jquery:m,constructor:n,selector:"",length:0,toArray:function(){return e.call(this)},get:function(a){return null!=a?a<0?this[a+this.length]:this[a]:e.call(this)},pushStack:function(a){var b=n.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a){return n.each(this,a)},map:function(a){return this.pushStack(n.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(e.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(a<0?b:0);return this.pushStack(c>=0&&c=0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},isPlainObject:function(a){var b;if(!a||"object"!==n.type(a)||a.nodeType||n.isWindow(a))return!1;try{if(a.constructor&&!k.call(a,"constructor")&&!k.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}if(!l.ownFirst)for(b in a)return k.call(a,b);for(b in a);return void 0===b||k.call(a,b)},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?i[j.call(a)]||"object":typeof a},globalEval:function(b){b&&n.trim(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(p,"ms-").replace(q,r)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b){var c,d=0;if(s(a)){for(c=a.length;d0&&b-1 in a)}var t=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+1*new Date,v=a.document,w=0,x=0,y=fa(),z=fa(),A=fa(),B=function(a,b){return a===b&&(l=!0),0},C=1<<31,D={}.hasOwnProperty,E=[],F=E.pop,G=E.push,H=E.push,I=E.slice,J=function(a,b){for(var c=0,d=a.length;c+~]|"+L+")"+L+"*"),T=new RegExp("="+L+"*([^\\]'\"]*?)"+L+"*\\]","g"),U=new RegExp(O),V=new RegExp("^"+M+"$"),W={ID:new RegExp("^#("+M+")"),CLASS:new RegExp("^\\.("+M+")"),TAG:new RegExp("^("+M+"|[*])"),ATTR:new RegExp("^"+N),PSEUDO:new RegExp("^"+O),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+L+"*(even|odd|(([+-]|)(\\d*)n|)"+L+"*(?:([+-]|)"+L+"*(\\d+)|))"+L+"*\\)|)","i"),bool:new RegExp("^(?:"+K+")$","i"),needsContext:new RegExp("^"+L+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+L+"*((?:-\\d)?\\d*)"+L+"*\\)|)(?=[^-]|$)","i")},X=/^(?:input|select|textarea|button)$/i,Y=/^h\d$/i,Z=/^[^{]+\{\s*\[native \w/,$=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,_=/[+~]/,aa=/'|\\/g,ba=new RegExp("\\\\([\\da-f]{1,6}"+L+"?|("+L+")|.)","ig"),ca=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:d<0?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)},da=function(){m()};try{H.apply(E=I.call(v.childNodes),v.childNodes),E[v.childNodes.length].nodeType}catch(xa){H={apply:E.length?function(a,b){G.apply(a,I.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function ea(a,b,d,e){var f,h,j,k,l,o,r,s,w=b&&b.ownerDocument,x=b?b.nodeType:9;if(d=d||[],"string"!=typeof a||!a||1!==x&&9!==x&&11!==x)return d;if(!e&&((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,p)){if(11!==x&&(o=$.exec(a)))if(f=o[1]){if(9===x){if(!(j=b.getElementById(f)))return d;if(j.id===f)return d.push(j),d}else if(w&&(j=w.getElementById(f))&&t(b,j)&&j.id===f)return d.push(j),d}else{if(o[2])return H.apply(d,b.getElementsByTagName(a)),d;if((f=o[3])&&c.getElementsByClassName&&b.getElementsByClassName)return H.apply(d,b.getElementsByClassName(f)),d}if(c.qsa&&!A[a+" "]&&(!q||!q.test(a))){if(1!==x)w=b,s=a;else if("object"!==b.nodeName.toLowerCase()){(k=b.getAttribute("id"))?k=k.replace(aa,"\\$&"):b.setAttribute("id",k=u),r=g(a),h=r.length,l=V.test(k)?"#"+k:"[id='"+k+"']";while(h--)r[h]=l+" "+pa(r[h]);s=r.join(","),w=_.test(a)&&na(b.parentNode)||b}if(s)try{return H.apply(d,w.querySelectorAll(s)),d}catch(y){}finally{k===u&&b.removeAttribute("id")}}}return i(a.replace(Q,"$1"),b,d,e)}function fa(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function ga(a){return a[u]=!0,a}function ha(a){var b=n.createElement("div");try{return!!a(b)}catch(xa){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function ia(a,b){var c=a.split("|"),e=c.length;while(e--)d.attrHandle[c[e]]=b}function ja(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||C)-(~a.sourceIndex||C);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function ka(a){return function(b){return"input"===b.nodeName.toLowerCase()&&b.type===a}}function la(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function ma(a){return ga(function(b){return b=+b,ga(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function na(a){return a&&void 0!==a.getElementsByTagName&&a}c=ea.support={},f=ea.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return!!b&&"HTML"!==b.nodeName},m=ea.setDocument=function(a){var b,e,g=a?a.ownerDocument||a:v;return g!==n&&9===g.nodeType&&g.documentElement?(n=g,o=n.documentElement,p=!f(n),(e=n.defaultView)&&e.top!==e&&(e.addEventListener?e.addEventListener("unload",da,!1):e.attachEvent&&e.attachEvent("onunload",da)),c.attributes=ha(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ha(function(a){return a.appendChild(n.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=Z.test(n.getElementsByClassName),c.getById=ha(function(a){return o.appendChild(a).id=u,!n.getElementsByName||!n.getElementsByName(u).length}),c.getById?(d.find.ID=function(a,b){if(void 0!==b.getElementById&&p){var c=b.getElementById(a);return c?[c]:[]}},d.filter.ID=function(a){var b=a.replace(ba,ca);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(ba,ca);return function(a){var c=void 0!==a.getAttributeNode&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return void 0!==b.getElementsByTagName?b.getElementsByTagName(a):c.qsa?b.querySelectorAll(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){if(void 0!==b.getElementsByClassName&&p)return b.getElementsByClassName(a)},r=[],q=[],(c.qsa=Z.test(n.querySelectorAll))&&(ha(function(a){o.appendChild(a).innerHTML="",a.querySelectorAll("[msallowcapture^='']").length&&q.push("[*^$]="+L+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+L+"*(?:value|"+K+")"),a.querySelectorAll("[id~="+u+"-]").length||q.push("~="),a.querySelectorAll(":checked").length||q.push(":checked"),a.querySelectorAll("a#"+u+"+*").length||q.push(".#.+[+~]")}),ha(function(a){var b=n.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+L+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=Z.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ha(function(a){c.disconnectedMatch=s.call(a,"div"),s.call(a,"[s!='']:x"),r.push("!=",O)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=Z.test(o.compareDocumentPosition),t=b||Z.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d||(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===n||a.ownerDocument===v&&t(v,a)?-1:b===n||b.ownerDocument===v&&t(v,b)?1:k?J(k,a)-J(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,e=a.parentNode,f=b.parentNode,g=[a],h=[b];if(!e||!f)return a===n?-1:b===n?1:e?-1:f?1:k?J(k,a)-J(k,b):0;if(e===f)return ja(a,b);c=a;while(c=c.parentNode)g.unshift(c);c=b;while(c=c.parentNode)h.unshift(c);while(g[d]===h[d])d++;return d?ja(g[d],h[d]):g[d]===v?-1:h[d]===v?1:0},n):n},ea.matches=function(a,b){return ea(a,null,null,b)},ea.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(T,"='$1']"),c.matchesSelector&&p&&!A[b+" "]&&(!r||!r.test(b))&&(!q||!q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(xa){}return ea(b,n,null,[a]).length>0},ea.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},ea.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&D.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},ea.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},ea.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=ea.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=ea.selectors={cacheLength:50,createPseudo:ga,match:W,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(ba,ca),a[3]=(a[3]||a[4]||a[5]||"").replace(ba,ca),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||ea.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&ea.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return W.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&U.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(ba,ca).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+L+")"+a+"("+L+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||void 0!==a.getAttribute&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=ea.attr(d,a);return null==e?"!="===b:!b||(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e.replace(P," ")+" ").indexOf(c)>-1:"|="===b&&(e===c||e.slice(0,c.length+1)===c+"-"))}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h,t=!1;if(q){if(f){while(p){m=b;while(m=m[p])if(h?m.nodeName.toLowerCase()===r:1===m.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){m=q,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n&&j[2],m=n&&q.childNodes[n];while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if(1===m.nodeType&&++t&&m===b){k[a]=[w,n,t];break}}else if(s&&(m=b,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n),!1===t)while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if((h?m.nodeName.toLowerCase()===r:1===m.nodeType)&&++t&&(s&&(l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),k[a]=[w,t]),m===b))break;return(t-=e)===d||t%d==0&&t/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||ea.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?ga(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=J(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:ga(function(a){var b=[],c=[],d=h(a.replace(Q,"$1"));return d[u]?ga(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),b[0]=null,!c.pop()}}),has:ga(function(a){return function(b){return ea(a,b).length>0}}),contains:ga(function(a){return a=a.replace(ba,ca),function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:ga(function(a){return V.test(a||"")||ea.error("unsupported lang: "+a),a=a.replace(ba,ca).toLowerCase(),function(b){var c;do{if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return(c=c.toLowerCase())===a||0===c.indexOf(a+"-")}while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return!1===a.disabled},disabled:function(a){return!0===a.disabled},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,!0===a.selected},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return Y.test(a.nodeName)},input:function(a){return X.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:ma(function(){return[0]}),last:ma(function(a,b){return[b-1]}),eq:ma(function(a,b,c){return[c<0?c+b:c]}),even:ma(function(a,b){for(var c=0;c=0;)a.push(d);return a}),gt:ma(function(a,b,c){for(var d=c<0?c+b:c;++d1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function sa(a,b,c){for(var d=0,e=b.length;d-1&&(f[j]=!(g[j]=l))}}else r=ta(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):H.apply(g,r)})}function va(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=qa(function(a){return a===b},h,!0),l=qa(function(a){return J(b,a)>-1},h,!0),m=[function(a,c,d){var e=!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d));return b=null,e}];i1&&ra(m),i>1&&pa(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(Q,"$1"),c,i0,e=a.length>0,f=function(f,g,h,i,k){var l,o,q,r=0,s="0",t=f&&[],u=[],v=j,x=f||e&&d.find.TAG("*",k),y=w+=null==v?1:Math.random()||.1,z=x.length;for(k&&(j=g===n||g||k);s!==z&&null!=(l=x[s]);s++){if(e&&l){o=0,g||l.ownerDocument===n||(m(l),h=!p);while(q=a[o++])if(q(l,g||n,h)){i.push(l);break}k&&(w=y)}c&&((l=!q&&l)&&r--,f&&t.push(l))}if(r+=s,c&&s!==r){o=0;while(q=b[o++])q(t,u,g,h);if(f){if(r>0)while(s--)t[s]||u[s]||(u[s]=F.call(i));u=ta(u)}H.apply(i,u),k&&!f&&u.length>0&&r+b.length>1&&ea.uniqueSort(i)}return k&&(w=y,j=v),t};return c?ga(f):f}return h=ea.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=va(b[c]),f[u]?d.push(f):e.push(f);f=A(a,wa(e,d)),f.selector=a}return f},i=ea.select=function(a,b,e,f){var i,j,k,l,m,n="function"==typeof a&&a,o=!f&&g(a=n.selector||a);if(e=e||[],1===o.length){if(j=o[0]=o[0].slice(0),j.length>2&&"ID"===(k=j[0]).type&&c.getById&&9===b.nodeType&&p&&d.relative[j[1].type]){if(!(b=(d.find.ID(k.matches[0].replace(ba,ca),b)||[])[0]))return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=W.needsContext.test(a)?0:j.length;while(i--){if(k=j[i],d.relative[l=k.type])break;if((m=d.find[l])&&(f=m(k.matches[0].replace(ba,ca),_.test(j[0].type)&&na(b.parentNode)||b))){if(j.splice(i,1),!(a=f.length&&pa(j)))return H.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,!b||_.test(a)&&na(b.parentNode)||b),e},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ha(function(a){return 1&a.compareDocumentPosition(n.createElement("div"))}),ha(function(a){return a.innerHTML="","#"===a.firstChild.getAttribute("href")})||ia("type|href|height|width",function(a,b,c){if(!c)return a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ha(function(a){return a.innerHTML="",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||ia("value",function(a,b,c){if(!c&&"input"===a.nodeName.toLowerCase())return a.defaultValue}),ha(function(a){return null==a.getAttribute("disabled")})||ia(K,function(a,b,c){var d;if(!c)return!0===a[b]?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),ea}(a);n.find=t,n.expr=t.selectors,n.expr[":"]=n.expr.pseudos,n.uniqueSort=n.unique=t.uniqueSort,n.text=t.getText,n.isXMLDoc=t.isXML,n.contains=t.contains;var u=function(a,b,c){var d=[],e=void 0!==c;while((a=a[b])&&9!==a.nodeType)if(1===a.nodeType){if(e&&n(a).is(c))break;d.push(a)}return d},v=function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c},w=n.expr.match.needsContext,x=/^<([\w-]+)\s*\/?>(?:<\/\1>|)$/,y=/^.[^:#\[\.,]*$/;function z(a,b,c){if(n.isFunction(b))return n.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return n.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(y.test(b))return n.filter(b,a,c);b=n.filter(b,a)}return n.grep(a,function(a){return n.inArray(a,b)>-1!==c})}n.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?n.find.matchesSelector(d,a)?[d]:[]:n.find.matches(a,n.grep(b,function(a){return 1===a.nodeType}))},n.fn.extend({find:function(a){var b,c=[],d=this,e=d.length;if("string"!=typeof a)return this.pushStack(n(a).filter(function(){for(b=0;b1?n.unique(c):c),c.selector=this.selector?this.selector+" "+a:a,c},filter:function(a){return this.pushStack(z(this,a||[],!1))},not:function(a){return this.pushStack(z(this,a||[],!0))},is:function(a){return!!z(this,"string"==typeof a&&w.test(a)?n(a):a||[],!1).length}});var A,B=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/;(n.fn.init=function(a,b,c){var e,f;if(!a)return this;if(c=c||A,"string"==typeof a){if(!(e="<"===a.charAt(0)&&">"===a.charAt(a.length-1)&&a.length>=3?[null,a,null]:B.exec(a))||!e[1]&&b)return!b||b.jquery?(b||c).find(a):this.constructor(b).find(a);if(e[1]){if(b=b instanceof n?b[0]:b,n.merge(this,n.parseHTML(e[1],b&&b.nodeType?b.ownerDocument||b:d,!0)),x.test(e[1])&&n.isPlainObject(b))for(e in b)n.isFunction(this[e])?this[e](b[e]):this.attr(e,b[e]);return this}if((f=d.getElementById(e[2]))&&f.parentNode){if(f.id!==e[2])return A.find(a);this.length=1,this[0]=f}return this.context=d,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):n.isFunction(a)?void 0!==c.ready?c.ready(a):a(n):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),n.makeArray(a,this))}).prototype=n.fn,A=n(d);var C=/^(?:parents|prev(?:Until|All))/,D={children:!0,contents:!0,next:!0,prev:!0};n.fn.extend({has:function(a){var b,c=n(a,this),d=c.length;return this.filter(function(){for(b=0;b-1:1===c.nodeType&&n.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?n.uniqueSort(f):f)},index:function(a){return a?"string"==typeof a?n.inArray(this[0],n(a)):n.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(n.uniqueSort(n.merge(this.get(),n(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function E(a,b){do{a=a[b]}while(a&&1!==a.nodeType);return a}n.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return u(a,"parentNode")},parentsUntil:function(a,b,c){return u(a,"parentNode",c)},next:function(a){return E(a,"nextSibling")},prev:function(a){return E(a,"previousSibling")},nextAll:function(a){return u(a,"nextSibling")},prevAll:function(a){return u(a,"previousSibling")},nextUntil:function(a,b,c){return u(a,"nextSibling",c)},prevUntil:function(a,b,c){return u(a,"previousSibling",c)},siblings:function(a){return v((a.parentNode||{}).firstChild,a)},children:function(a){return v(a.firstChild)},contents:function(a){return n.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:n.merge([],a.childNodes)}},function(a,b){n.fn[a]=function(c,d){var e=n.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=n.filter(d,e)),this.length>1&&(D[a]||(e=n.uniqueSort(e)),C.test(a)&&(e=e.reverse())),this.pushStack(e)}});var F=/\S+/g;function G(a){var b={};return n.each(a.match(F)||[],function(a,c){b[c]=!0}),b}n.Callbacks=function(a){a="string"==typeof a?G(a):n.extend({},a);var b,c,d,e,f=[],g=[],h=-1,i=function(){for(e=a.once,d=b=!0;g.length;h=-1){c=g.shift();while(++h-1)f.splice(c,1),c<=h&&h--}),this},has:function(a){return a?n.inArray(a,f)>-1:f.length>0},empty:function(){return f&&(f=[]),this},disable:function(){return e=g=[],f=c="",this},disabled:function(){return!f},lock:function(){return e=!0,c||j.disable(),this},locked:function(){return!!e},fireWith:function(a,c){return e||(c=c||[],c=[a,c.slice?c.slice():c],g.push(c),b||i()),this},fire:function(){return j.fireWith(this,arguments),this},fired:function(){return!!d}};return j},n.extend({Deferred:function(a){var b=[["resolve","done",n.Callbacks("once memory"),"resolved"],["reject","fail",n.Callbacks("once memory"),"rejected"],["notify","progress",n.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return n.Deferred(function(c){n.each(b,function(b,f){var g=n.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&n.isFunction(a.promise)?a.promise().progress(c.notify).done(c.resolve).fail(c.reject):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?n.extend(a,d):d}},e={};return d.pipe=d.then,n.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=e.call(arguments),d=c.length,f=1!==d||a&&n.isFunction(a.promise)?d:0,g=1===f?a:n.Deferred(),h=function(a,b,c){return function(d){b[a]=this,c[a]=arguments.length>1?e.call(arguments):d,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(d>1)for(i=new Array(d),j=new Array(d),k=new Array(d);b0||(H.resolveWith(d,[n]),n.fn.triggerHandler&&(n(d).triggerHandler("ready"),n(d).off("ready"))))}});function I(){d.addEventListener?(d.removeEventListener("DOMContentLoaded",J),a.removeEventListener("load",J)):(d.detachEvent("onreadystatechange",J),a.detachEvent("onload",J))}function J(){(d.addEventListener||"load"===a.event.type||"complete"===d.readyState)&&(I(),n.ready())}n.ready.promise=function(b){if(!H)if(H=n.Deferred(),"complete"===d.readyState||"loading"!==d.readyState&&!d.documentElement.doScroll)a.setTimeout(n.ready);else if(d.addEventListener)d.addEventListener("DOMContentLoaded",J),a.addEventListener("load",J);else{d.attachEvent("onreadystatechange",J),a.attachEvent("onload",J);var c=!1;try{c=null==a.frameElement&&d.documentElement}catch(e){}c&&c.doScroll&&function b(){if(!n.isReady){try{c.doScroll("left")}catch(e){return a.setTimeout(b,50)}I(),n.ready()}}()}return H.promise(b)},n.ready.promise();var K;for(K in n(l))break;l.ownFirst="0"===K,l.inlineBlockNeedsLayout=!1,n(function(){var a,b,c,e;(c=d.getElementsByTagName("body")[0])&&c.style&&(b=d.createElement("div"),e=d.createElement("div"),e.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",c.appendChild(e).appendChild(b),void 0!==b.style.zoom&&(b.style.cssText="display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1",l.inlineBlockNeedsLayout=a=3===b.offsetWidth,a&&(c.style.zoom=1)),c.removeChild(e))}),function(){var a=d.createElement("div");l.deleteExpando=!0;try{delete a.test}catch(b){l.deleteExpando=!1}a=null}();var L=function(a){var b=n.noData[(a.nodeName+" ").toLowerCase()],c=+a.nodeType||1;return(1===c||9===c)&&(!b||!0!==b&&a.getAttribute("classid")===b)},M=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,N=/([A-Z])/g;function O(a,b,c){if(void 0===c&&1===a.nodeType){var d="data-"+b.replace(N,"-$1").toLowerCase();if("string"==typeof(c=a.getAttribute(d))){try{c="true"===c||"false"!==c&&("null"===c?null:+c+""===c?+c:M.test(c)?n.parseJSON(c):c)}catch(e){}n.data(a,b,c)}else c=void 0}return c}function P(a){var b +;for(b in a)if(("data"!==b||!n.isEmptyObject(a[b]))&&"toJSON"!==b)return!1;return!0}function Q(a,b,d,e){if(L(a)){var f,g,h=n.expando,i=a.nodeType,j=i?n.cache:a,k=i?a[h]:a[h]&&h;if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a[h]=c.pop()||n.guid++:h),j[k]||(j[k]=i?{}:{toJSON:n.noop}),"object"!=typeof b&&"function"!=typeof b||(e?j[k]=n.extend(j[k],b):j[k].data=n.extend(j[k].data,b)),g=j[k],e||(g.data||(g.data={}),g=g.data),void 0!==d&&(g[n.camelCase(b)]=d),"string"==typeof b?null==(f=g[b])&&(f=g[n.camelCase(b)]):f=g,f}}function R(a,b,c){if(L(a)){var d,e,f=a.nodeType,g=f?n.cache:a,h=f?a[n.expando]:n.expando;if(g[h]){if(b&&(d=c?g[h]:g[h].data)){n.isArray(b)?b=b.concat(n.map(b,n.camelCase)):b in d?b=[b]:(b=n.camelCase(b),b=b in d?[b]:b.split(" ")),e=b.length;while(e--)delete d[b[e]];if(c?!P(d):!n.isEmptyObject(d))return}(c||(delete g[h].data,P(g[h])))&&(f?n.cleanData([a],!0):l.deleteExpando||g!=g.window?delete g[h]:g[h]=void 0)}}}n.extend({cache:{},noData:{"applet ":!0,"embed ":!0,"object ":"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"},hasData:function(a){return!!(a=a.nodeType?n.cache[a[n.expando]]:a[n.expando])&&!P(a)},data:function(a,b,c){return Q(a,b,c)},removeData:function(a,b){return R(a,b)},_data:function(a,b,c){return Q(a,b,c,!0)},_removeData:function(a,b){return R(a,b,!0)}}),n.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=n.data(f),1===f.nodeType&&!n._data(f,"parsedAttrs"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=n.camelCase(d.slice(5)),O(f,d,e[d])));n._data(f,"parsedAttrs",!0)}return e}return"object"==typeof a?this.each(function(){n.data(this,a)}):arguments.length>1?this.each(function(){n.data(this,a,b)}):f?O(f,a,n.data(f,a)):void 0},removeData:function(a){return this.each(function(){n.removeData(this,a)})}}),n.extend({queue:function(a,b,c){var d;if(a)return b=(b||"fx")+"queue",d=n._data(a,b),c&&(!d||n.isArray(c)?d=n._data(a,b,n.makeArray(c)):d.push(c)),d||[]},dequeue:function(a,b){b=b||"fx";var c=n.queue(a,b),d=c.length,e=c.shift(),f=n._queueHooks(a,b),g=function(){n.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return n._data(a,c)||n._data(a,c,{empty:n.Callbacks("once memory").add(function(){n._removeData(a,b+"queue"),n._removeData(a,c)})})}}),n.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.length
                                  a",l.leadingWhitespace=3===a.firstChild.nodeType,l.tbody=!a.getElementsByTagName("tbody").length,l.htmlSerialize=!!a.getElementsByTagName("link").length,l.html5Clone="<:nav>"!==d.createElement("nav").cloneNode(!0).outerHTML,c.type="checkbox",c.checked=!0,b.appendChild(c),l.appendChecked=c.checked,a.innerHTML="",l.noCloneChecked=!!a.cloneNode(!0).lastChild.defaultValue,b.appendChild(a),c=d.createElement("input"),c.setAttribute("type","radio"),c.setAttribute("checked","checked"),c.setAttribute("name","t"),a.appendChild(c),l.checkClone=a.cloneNode(!0).cloneNode(!0).lastChild.checked,l.noCloneEvent=!!a.addEventListener,a[n.expando]=1,l.attributes=!a.getAttribute(n.expando)}();var ca={option:[1,""],legend:[1,"
                                  ","
                                  "],area:[1,"",""],param:[1,"",""],thead:[1,"","
                                  "],tr:[2,"","
                                  "],col:[2,"","
                                  "],td:[3,"","
                                  "],_default:l.htmlSerialize?[0,"",""]:[1,"X
                                  ","
                                  "]};ca.optgroup=ca.option,ca.tbody=ca.tfoot=ca.colgroup=ca.caption=ca.thead,ca.th=ca.td;function da(a,b){var c,d,e=0,f=void 0!==a.getElementsByTagName?a.getElementsByTagName(b||"*"):void 0!==a.querySelectorAll?a.querySelectorAll(b||"*"):void 0;if(!f)for(f=[],c=a.childNodes||a;null!=(d=c[e]);e++)!b||n.nodeName(d,b)?f.push(d):n.merge(f,da(d,b));return void 0===b||b&&n.nodeName(a,b)?n.merge([a],f):f}function ea(a,b){for(var c,d=0;null!=(c=a[d]);d++)n._data(c,"globalEval",!b||n._data(b[d],"globalEval"))}var fa=/<|&#?\w+;/,ga=/"!==m[1]||ga.test(g)?0:i:i.firstChild,f=g&&g.childNodes.length;while(f--)n.nodeName(k=g.childNodes[f],"tbody")&&!k.childNodes.length&&g.removeChild(k)}n.merge(q,i.childNodes),i.textContent="";while(i.firstChild)i.removeChild(i.firstChild);i=p.lastChild}else q.push(b.createTextNode(g));i&&p.removeChild(i),l.appendChecked||n.grep(da(q,"input"),ha),r=0;while(g=q[r++])if(d&&n.inArray(g,d)>-1)e&&e.push(g);else if(h=n.contains(g.ownerDocument,g),i=da(p.appendChild(g),"script"),h&&ea(i),c){f=0;while(g=i[f++])$.test(g.type||"")&&c.push(g)}return i=null,p}!function(){var b,c,e=d.createElement("div");for(b in{submit:!0,change:!0,focusin:!0})c="on"+b,(l[b]=c in a)||(e.setAttribute(c,"t"),l[b]=!1===e.attributes[c].expando);e=null}();var ja=/^(?:input|select|textarea)$/i,ka=/^key/,la=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,ma=/^(?:focusinfocus|focusoutblur)$/,na=/^([^.]*)(?:\.(.+)|)/;function oa(){return!0}function pa(){return!1}function qa(){try{return d.activeElement}catch(a){}}function ra(a,b,c,d,e,f){var g,h;if("object"==typeof b){"string"!=typeof c&&(d=d||c,c=void 0);for(h in b)ra(a,h,c,d,b[h],f);return a}if(null==d&&null==e?(e=c,d=c=void 0):null==e&&("string"==typeof c?(e=d,d=void 0):(e=d,d=c,c=void 0)),!1===e)e=pa;else if(!e)return a;return 1===f&&(g=e,e=function(a){return n().off(a),g.apply(this,arguments)},e.guid=g.guid||(g.guid=n.guid++)),a.each(function(){n.event.add(this,b,e,d,c)})}n.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=n._data(a);if(r){c.handler&&(i=c,c=i.handler,e=i.selector),c.guid||(c.guid=n.guid++),(g=r.events)||(g=r.events={}),(k=r.handle)||(k=r.handle=function(a){return void 0===n||a&&n.event.triggered===a.type?void 0:n.event.dispatch.apply(k.elem,arguments)},k.elem=a),b=(b||"").match(F)||[""],h=b.length;while(h--)f=na.exec(b[h])||[],o=q=f[1],p=(f[2]||"").split(".").sort(),o&&(j=n.event.special[o]||{},o=(e?j.delegateType:j.bindType)||o,j=n.event.special[o]||{},l=n.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&n.expr.match.needsContext.test(e),namespace:p.join(".")},i),(m=g[o])||(m=g[o]=[],m.delegateCount=0,j.setup&&!1!==j.setup.call(a,d,p,k)||(a.addEventListener?a.addEventListener(o,k,!1):a.attachEvent&&a.attachEvent("on"+o,k))),j.add&&(j.add.call(a,l),l.handler.guid||(l.handler.guid=c.guid)),e?m.splice(m.delegateCount++,0,l):m.push(l),n.event.global[o]=!0);a=null}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=n.hasData(a)&&n._data(a);if(r&&(k=r.events)){b=(b||"").match(F)||[""],j=b.length;while(j--)if(h=na.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=n.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,m=k[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),i=f=m.length;while(f--)g=m[f],!e&&q!==g.origType||c&&c.guid!==g.guid||h&&!h.test(g.namespace)||d&&d!==g.selector&&("**"!==d||!g.selector)||(m.splice(f,1),g.selector&&m.delegateCount--,l.remove&&l.remove.call(a,g));i&&!m.length&&(l.teardown&&!1!==l.teardown.call(a,p,r.handle)||n.removeEvent(a,o,r.handle),delete k[o])}else for(o in k)n.event.remove(a,o+b[j],c,d,!0);n.isEmptyObject(k)&&(delete r.handle,n._removeData(a,"events"))}},trigger:function(b,c,e,f){var g,h,i,j,l,m,o,p=[e||d],q=k.call(b,"type")?b.type:b,r=k.call(b,"namespace")?b.namespace.split("."):[];if(i=m=e=e||d,3!==e.nodeType&&8!==e.nodeType&&!ma.test(q+n.event.triggered)&&(q.indexOf(".")>-1&&(r=q.split("."),q=r.shift(),r.sort()),h=q.indexOf(":")<0&&"on"+q,b=b[n.expando]?b:new n.Event(q,"object"==typeof b&&b),b.isTrigger=f?2:3,b.namespace=r.join("."),b.rnamespace=b.namespace?new RegExp("(^|\\.)"+r.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=e),c=null==c?[b]:n.makeArray(c,[b]),l=n.event.special[q]||{},f||!l.trigger||!1!==l.trigger.apply(e,c))){if(!f&&!l.noBubble&&!n.isWindow(e)){for(j=l.delegateType||q,ma.test(j+q)||(i=i.parentNode);i;i=i.parentNode)p.push(i),m=i;m===(e.ownerDocument||d)&&p.push(m.defaultView||m.parentWindow||a)}o=0;while((i=p[o++])&&!b.isPropagationStopped())b.type=o>1?j:l.bindType||q,g=(n._data(i,"events")||{})[b.type]&&n._data(i,"handle"),g&&g.apply(i,c),(g=h&&i[h])&&g.apply&&L(i)&&(b.result=g.apply(i,c),!1===b.result&&b.preventDefault());if(b.type=q,!f&&!b.isDefaultPrevented()&&(!l._default||!1===l._default.apply(p.pop(),c))&&L(e)&&h&&e[q]&&!n.isWindow(e)){m=e[h],m&&(e[h]=null),n.event.triggered=q;try{e[q]()}catch(s){}n.event.triggered=void 0,m&&(e[h]=m)}return b.result}},dispatch:function(a){a=n.event.fix(a);var b,c,d,f,g,h=[],i=e.call(arguments),j=(n._data(this,"events")||{})[a.type]||[],k=n.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||!1!==k.preDispatch.call(this,a)){h=n.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,c=0;while((g=f.handlers[c++])&&!a.isImmediatePropagationStopped())a.rnamespace&&!a.rnamespace.test(g.namespace)||(a.handleObj=g,a.data=g.data,void 0!==(d=((n.event.special[g.origType]||{}).handle||g.handler).apply(f.elem,i))&&!1===(a.result=d)&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&("click"!==a.type||isNaN(a.button)||a.button<1))for(;i!=this;i=i.parentNode||this)if(1===i.nodeType&&(!0!==i.disabled||"click"!==a.type)){for(d=[],c=0;c-1:n.find(e,this,null,[i]).length),d[e]&&d.push(f);d.length&&g.push({elem:i,handlers:d})}return h]","i"),ua=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:-]+)[^>]*)\/>/gi,va=/\s*$/g,za=ba(d),Aa=za.appendChild(d.createElement("div"));function Ba(a,b){return n.nodeName(a,"table")&&n.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function Ca(a){return a.type=(null!==n.find.attr(a,"type"))+"/"+a.type,a}function Da(a){var b=xa.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function Ea(a,b){if(1===b.nodeType&&n.hasData(a)){var c,d,e,f=n._data(a),g=n._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;d1&&"string"==typeof q&&!l.checkClone&&wa.test(q))return a.each(function(e){var f=a.eq(e);r&&(b[0]=q.call(this,e,f.html())),Ga(f,b,c,d)});if(o&&(k=ia(b,a[0].ownerDocument,!1,a,d),e=k.firstChild,1===k.childNodes.length&&(k=e),e||d)){for(i=n.map(da(k,"script"),Ca),h=i.length;m")},clone:function(a,b,c){var d,e,f,g,h,i=n.contains(a.ownerDocument,a);if(l.html5Clone||n.isXMLDoc(a)||!ta.test("<"+a.nodeName+">")?f=a.cloneNode(!0):(Aa.innerHTML=a.outerHTML,Aa.removeChild(f=Aa.firstChild)),!(l.noCloneEvent&&l.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||n.isXMLDoc(a)))for(d=da(f),h=da(a),g=0;null!=(e=h[g]);++g)d[g]&&Fa(e,d[g]);if(b)if(c)for(h=h||da(a),d=d||da(f),g=0;null!=(e=h[g]);g++)Ea(e,d[g]);else Ea(a,f);return d=da(f,"script"),d.length>0&&ea(d,!i&&da(a,"script")),d=h=e=null,f},cleanData:function(a,b){for(var d,e,f,g,h=0,i=n.expando,j=n.cache,k=l.attributes,m=n.event.special;null!=(d=a[h]);h++)if((b||L(d))&&(f=d[i],g=f&&j[f])){if(g.events)for(e in g.events)m[e]?n.event.remove(d,e):n.removeEvent(d,e,g.handle);j[f]&&(delete j[f],k||void 0===d.removeAttribute?d[i]=void 0:d.removeAttribute(i),c.push(f))}}}),n.fn.extend({domManip:Ga,detach:function(a){return Ha(this,a,!0)},remove:function(a){return Ha(this,a)},text:function(a){return X(this,function(a){return void 0===a?n.text(this):this.empty().append((this[0]&&this[0].ownerDocument||d).createTextNode(a))},null,a,arguments.length)},append:function(){return Ga(this,arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){Ba(this,a).appendChild(a)}})},prepend:function(){return Ga(this,arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=Ba(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return Ga(this,arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return Ga(this,arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},empty:function(){for(var a,b=0;null!=(a=this[b]);b++){1===a.nodeType&&n.cleanData(da(a,!1));while(a.firstChild)a.removeChild(a.firstChild);a.options&&n.nodeName(a,"select")&&(a.options.length=0)}return this},clone:function(a,b){return a=null!=a&&a,b=null==b?a:b,this.map(function(){return n.clone(this,a,b)})},html:function(a){return X(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a)return 1===b.nodeType?b.innerHTML.replace(sa,""):void 0;if("string"==typeof a&&!va.test(a)&&(l.htmlSerialize||!ta.test(a))&&(l.leadingWhitespace||!_.test(a))&&!ca[(Z.exec(a)||["",""])[1].toLowerCase()]){a=n.htmlPrefilter(a);try{for(;c")).appendTo(b.documentElement),b=(Ia[0].contentWindow||Ia[0].contentDocument).document,b.write(),b.close(),c=Ka(a,b),Ia.detach()),Ja[a]=c),c}var Ma=/^margin/,Na=new RegExp("^("+S+")(?!px)[a-z%]+$","i"),Oa=function(a,b,c,d){var e,f,g={};for(f in b)g[f]=a.style[f],a.style[f]=b[f];e=c.apply(a,d||[]);for(f in b)a.style[f]=g[f];return e},Pa=d.documentElement;!function(){var b,c,e,f,g,h,i=d.createElement("div"),j=d.createElement("div");function k(){var k,l,m=d.documentElement;m.appendChild(i),j.style.cssText="-webkit-box-sizing:border-box;box-sizing:border-box;position:relative;display:block;margin:auto;border:1px;padding:1px;top:1%;width:50%",b=e=h=!1,c=g=!0,a.getComputedStyle&&(l=a.getComputedStyle(j),b="1%"!==(l||{}).top,h="2px"===(l||{}).marginLeft,e="4px"===(l||{width:"4px"}).width,j.style.marginRight="50%",c="4px"===(l||{marginRight:"4px"}).marginRight,k=j.appendChild(d.createElement("div")),k.style.cssText=j.style.cssText="-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:0",k.style.marginRight=k.style.width="0",j.style.width="1px",g=!parseFloat((a.getComputedStyle(k)||{}).marginRight),j.removeChild(k)),j.style.display="none",f=0===j.getClientRects().length,f&&(j.style.display="",j.innerHTML="
                                  t
                                  ",j.childNodes[0].style.borderCollapse="separate",k=j.getElementsByTagName("td"),k[0].style.cssText="margin:0;border:0;padding:0;display:none",(f=0===k[0].offsetHeight)&&(k[0].style.display="",k[1].style.display="none",f=0===k[0].offsetHeight)),m.removeChild(i)}j.style&&(j.style.cssText="float:left;opacity:.5",l.opacity="0.5"===j.style.opacity,l.cssFloat=!!j.style.cssFloat,j.style.backgroundClip="content-box",j.cloneNode(!0).style.backgroundClip="",l.clearCloneStyle="content-box"===j.style.backgroundClip,i=d.createElement("div"),i.style.cssText="border:0;width:8px;height:0;top:0;left:-9999px;padding:0;margin-top:1px;position:absolute",j.innerHTML="",i.appendChild(j),l.boxSizing=""===j.style.boxSizing||""===j.style.MozBoxSizing||""===j.style.WebkitBoxSizing,n.extend(l,{reliableHiddenOffsets:function(){return null==b&&k(),f},boxSizingReliable:function(){return null==b&&k(),e},pixelMarginRight:function(){return null==b&&k(),c},pixelPosition:function(){return null==b&&k(),b},reliableMarginRight:function(){return null==b&&k(),g},reliableMarginLeft:function(){return null==b&&k(),h}}))}();var Qa,Ra,Sa=/^(top|right|bottom|left)$/;a.getComputedStyle?(Qa=function(b){var c=b.ownerDocument.defaultView;return c&&c.opener||(c=a),c.getComputedStyle(b)},Ra=function(a,b,c){var d,e,f,g,h=a.style;return c=c||Qa(a),g=c?c.getPropertyValue(b)||c[b]:void 0,""!==g&&void 0!==g||n.contains(a.ownerDocument,a)||(g=n.style(a,b)),c&&!l.pixelMarginRight()&&Na.test(g)&&Ma.test(b)&&(d=h.width,e=h.minWidth,f=h.maxWidth,h.minWidth=h.maxWidth=h.width=g,g=c.width,h.width=d,h.minWidth=e,h.maxWidth=f),void 0===g?g:g+""}):Pa.currentStyle&&(Qa=function(a){return a.currentStyle},Ra=function(a,b,c){var d,e,f,g,h=a.style;return c=c||Qa(a),g=c?c[b]:void 0,null==g&&h&&h[b]&&(g=h[b]),Na.test(g)&&!Sa.test(b)&&(d=h.left,e=a.runtimeStyle,f=e&&e.left,f&&(e.left=a.currentStyle.left),h.left="fontSize"===b?"1em":g,g=h.pixelLeft+"px",h.left=d,f&&(e.left=f)),void 0===g?g:g+""||"auto"});function Ta(a,b){return{get:function(){return a()?void delete this.get:(this.get=b).apply(this,arguments)}}}var Ua=/alpha\([^)]*\)/i,Va=/opacity\s*=\s*([^)]*)/i,Wa=/^(none|table(?!-c[ea]).+)/,Xa=new RegExp("^("+S+")(.*)$","i"),Ya={position:"absolute",visibility:"hidden",display:"block"},Za={letterSpacing:"0",fontWeight:"400"},$a=["Webkit","O","Moz","ms"],_a=d.createElement("div").style;function ab(a){if(a in _a)return a;var b=a.charAt(0).toUpperCase()+a.slice(1),c=$a.length;while(c--)if((a=$a[c]+b)in _a)return a}function bb(a,b){for(var c,d,e,f=[],g=0,h=a.length;g=1||""===b)&&""===n.trim(f.replace(Ua,""))&&c.removeAttribute&&(c.removeAttribute("filter"),""===b||d&&!d.filter)||(c.filter=Ua.test(f)?f.replace(Ua,e):f+" "+e)}}),n.cssHooks.marginRight=Ta(l.reliableMarginRight,function(a,b){if(b)return Oa(a,{display:"inline-block"},Ra,[a,"marginRight"])}),n.cssHooks.marginLeft=Ta(l.reliableMarginLeft,function(a,b){if(b)return(parseFloat(Ra(a,"marginLeft"))||(n.contains(a.ownerDocument,a)?a.getBoundingClientRect().left-Oa(a,{marginLeft:0},function(){return a.getBoundingClientRect().left}):0))+"px"}),n.each({ +margin:"",padding:"",border:"Width"},function(a,b){n.cssHooks[a+b]={expand:function(c){for(var d=0,e={},f="string"==typeof c?c.split(" "):[c];d<4;d++)e[a+U[d]+b]=f[d]||f[d-2]||f[0];return e}},Ma.test(a)||(n.cssHooks[a+b].set=cb)}),n.fn.extend({css:function(a,b){return X(this,function(a,b,c){var d,e,f={},g=0;if(n.isArray(b)){for(d=Qa(a),e=b.length;g1)},show:function(){return bb(this,!0)},hide:function(){return bb(this)},toggle:function(a){return"boolean"==typeof a?a?this.show():this.hide():this.each(function(){V(this)?n(this).show():n(this).hide()})}});function fb(a,b,c,d,e){return new fb.prototype.init(a,b,c,d,e)}n.Tween=fb,fb.prototype={constructor:fb,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||n.easing._default,this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(n.cssNumber[c]?"":"px")},cur:function(){var a=fb.propHooks[this.prop];return a&&a.get?a.get(this):fb.propHooks._default.get(this)},run:function(a){var b,c=fb.propHooks[this.prop];return this.options.duration?this.pos=b=n.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration):this.pos=b=a,this.now=(this.end-this.start)*b+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),c&&c.set?c.set(this):fb.propHooks._default.set(this),this}},fb.prototype.init.prototype=fb.prototype,fb.propHooks={_default:{get:function(a){var b;return 1!==a.elem.nodeType||null!=a.elem[a.prop]&&null==a.elem.style[a.prop]?a.elem[a.prop]:(b=n.css(a.elem,a.prop,""),b&&"auto"!==b?b:0)},set:function(a){n.fx.step[a.prop]?n.fx.step[a.prop](a):1!==a.elem.nodeType||null==a.elem.style[n.cssProps[a.prop]]&&!n.cssHooks[a.prop]?a.elem[a.prop]=a.now:n.style(a.elem,a.prop,a.now+a.unit)}}},fb.propHooks.scrollTop=fb.propHooks.scrollLeft={set:function(a){a.elem.nodeType&&a.elem.parentNode&&(a.elem[a.prop]=a.now)}},n.easing={linear:function(a){return a},swing:function(a){return.5-Math.cos(a*Math.PI)/2},_default:"swing"},n.fx=fb.prototype.init,n.fx.step={};var gb,hb,ib=/^(?:toggle|show|hide)$/,jb=/queueHooks$/;function kb(){return a.setTimeout(function(){gb=void 0}),gb=n.now()}function lb(a,b){var c,d={height:a},e=0;for(b=b?1:0;e<4;e+=2-b)c=U[e],d["margin"+c]=d["padding"+c]=a;return b&&(d.opacity=d.width=a),d}function mb(a,b,c){for(var d,e=(pb.tweeners[b]||[]).concat(pb.tweeners["*"]),f=0,g=e.length;f
                                  a",a=c.getElementsByTagName("a")[0],b.setAttribute("type","checkbox"),c.appendChild(b),a=c.getElementsByTagName("a")[0],a.style.cssText="top:1px",l.getSetAttribute="t"!==c.className,l.style=/top/.test(a.getAttribute("style")),l.hrefNormalized="/a"===a.getAttribute("href"),l.checkOn=!!b.value,l.optSelected=f.selected,l.enctype=!!d.createElement("form").enctype,e.disabled=!0,l.optDisabled=!f.disabled,b=d.createElement("input"),b.setAttribute("value",""),l.input=""===b.getAttribute("value"),b.value="t",b.setAttribute("type","radio"),l.radioValue="t"===b.value}();var qb=/\r/g,rb=/[\x20\t\r\n\f]+/g;n.fn.extend({val:function(a){var b,c,d,e=this[0];{if(arguments.length)return d=n.isFunction(a),this.each(function(c){var e;1===this.nodeType&&(e=d?a.call(this,c,n(this).val()):a,null==e?e="":"number"==typeof e?e+="":n.isArray(e)&&(e=n.map(e,function(a){return null==a?"":a+""})),(b=n.valHooks[this.type]||n.valHooks[this.nodeName.toLowerCase()])&&"set"in b&&void 0!==b.set(this,e,"value")||(this.value=e))});if(e)return(b=n.valHooks[e.type]||n.valHooks[e.nodeName.toLowerCase()])&&"get"in b&&void 0!==(c=b.get(e,"value"))?c:(c=e.value,"string"==typeof c?c.replace(qb,""):null==c?"":c)}}}),n.extend({valHooks:{option:{get:function(a){var b=n.find.attr(a,"value");return null!=b?b:n.trim(n.text(a)).replace(rb," ")}},select:{get:function(a){for(var b,c,d=a.options,e=a.selectedIndex,f="select-one"===a.type||e<0,g=f?null:[],h=f?e+1:d.length,i=e<0?h:f?e:0;i-1)try{d.selected=c=!0}catch(h){d.scrollHeight}else d.selected=!1;return c||(a.selectedIndex=-1),e}}}}),n.each(["radio","checkbox"],function(){n.valHooks[this]={set:function(a,b){if(n.isArray(b))return a.checked=n.inArray(n(a).val(),b)>-1}},l.checkOn||(n.valHooks[this].get=function(a){return null===a.getAttribute("value")?"on":a.value})});var sb,tb,ub=n.expr.attrHandle,vb=/^(?:checked|selected)$/i,wb=l.getSetAttribute,xb=l.input;n.fn.extend({attr:function(a,b){return X(this,n.attr,a,b,arguments.length>1)},removeAttr:function(a){return this.each(function(){n.removeAttr(this,a)})}}),n.extend({attr:function(a,b,c){var d,e,f=a.nodeType;if(3!==f&&8!==f&&2!==f)return void 0===a.getAttribute?n.prop(a,b,c):(1===f&&n.isXMLDoc(a)||(b=b.toLowerCase(),e=n.attrHooks[b]||(n.expr.match.bool.test(b)?tb:sb)),void 0!==c?null===c?void n.removeAttr(a,b):e&&"set"in e&&void 0!==(d=e.set(a,c,b))?d:(a.setAttribute(b,c+""),c):e&&"get"in e&&null!==(d=e.get(a,b))?d:(d=n.find.attr(a,b),null==d?void 0:d))},attrHooks:{type:{set:function(a,b){if(!l.radioValue&&"radio"===b&&n.nodeName(a,"input")){var c=a.value;return a.setAttribute("type",b),c&&(a.value=c),b}}}},removeAttr:function(a,b){var c,d,e=0,f=b&&b.match(F);if(f&&1===a.nodeType)while(c=f[e++])d=n.propFix[c]||c,n.expr.match.bool.test(c)?xb&&wb||!vb.test(c)?a[d]=!1:a[n.camelCase("default-"+c)]=a[d]=!1:n.attr(a,c,""),a.removeAttribute(wb?c:d)}}),tb={set:function(a,b,c){return!1===b?n.removeAttr(a,c):xb&&wb||!vb.test(c)?a.setAttribute(!wb&&n.propFix[c]||c,c):a[n.camelCase("default-"+c)]=a[c]=!0,c}},n.each(n.expr.match.bool.source.match(/\w+/g),function(a,b){var c=ub[b]||n.find.attr;xb&&wb||!vb.test(b)?ub[b]=function(a,b,d){var e,f;return d||(f=ub[b],ub[b]=e,e=null!=c(a,b,d)?b.toLowerCase():null,ub[b]=f),e}:ub[b]=function(a,b,c){if(!c)return a[n.camelCase("default-"+b)]?b.toLowerCase():null}}),xb&&wb||(n.attrHooks.value={set:function(a,b,c){if(!n.nodeName(a,"input"))return sb&&sb.set(a,b,c);a.defaultValue=b}}),wb||(sb={set:function(a,b,c){var d=a.getAttributeNode(c);if(d||a.setAttributeNode(d=a.ownerDocument.createAttribute(c)),d.value=b+="","value"===c||b===a.getAttribute(c))return b}},ub.id=ub.name=ub.coords=function(a,b,c){var d;if(!c)return(d=a.getAttributeNode(b))&&""!==d.value?d.value:null},n.valHooks.button={get:function(a,b){var c=a.getAttributeNode(b);if(c&&c.specified)return c.value},set:sb.set},n.attrHooks.contenteditable={set:function(a,b,c){sb.set(a,""!==b&&b,c)}},n.each(["width","height"],function(a,b){n.attrHooks[b]={set:function(a,c){if(""===c)return a.setAttribute(b,"auto"),c}}})),l.style||(n.attrHooks.style={get:function(a){return a.style.cssText||void 0},set:function(a,b){return a.style.cssText=b+""}});var yb=/^(?:input|select|textarea|button|object)$/i,zb=/^(?:a|area)$/i;n.fn.extend({prop:function(a,b){return X(this,n.prop,a,b,arguments.length>1)},removeProp:function(a){return a=n.propFix[a]||a,this.each(function(){try{this[a]=void 0,delete this[a]}catch(b){}})}}),n.extend({prop:function(a,b,c){var d,e,f=a.nodeType;if(3!==f&&8!==f&&2!==f)return 1===f&&n.isXMLDoc(a)||(b=n.propFix[b]||b,e=n.propHooks[b]),void 0!==c?e&&"set"in e&&void 0!==(d=e.set(a,c,b))?d:a[b]=c:e&&"get"in e&&null!==(d=e.get(a,b))?d:a[b]},propHooks:{tabIndex:{get:function(a){var b=n.find.attr(a,"tabindex");return b?parseInt(b,10):yb.test(a.nodeName)||zb.test(a.nodeName)&&a.href?0:-1}}},propFix:{for:"htmlFor",class:"className"}}),l.hrefNormalized||n.each(["href","src"],function(a,b){n.propHooks[b]={get:function(a){return a.getAttribute(b,4)}}}),l.optSelected||(n.propHooks.selected={get:function(a){var b=a.parentNode;return b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex),null},set:function(a){var b=a.parentNode;b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex)}}),n.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){n.propFix[this.toLowerCase()]=this}),l.enctype||(n.propFix.enctype="encoding");var Ab=/[\t\r\n\f]/g;function Bb(a){return n.attr(a,"class")||""}n.fn.extend({addClass:function(a){var b,c,d,e,f,g,h,i=0;if(n.isFunction(a))return this.each(function(b){n(this).addClass(a.call(this,b,Bb(this)))});if("string"==typeof a&&a){b=a.match(F)||[];while(c=this[i++])if(e=Bb(c),d=1===c.nodeType&&(" "+e+" ").replace(Ab," ")){g=0;while(f=b[g++])d.indexOf(" "+f+" ")<0&&(d+=f+" ");h=n.trim(d),e!==h&&n.attr(c,"class",h)}}return this},removeClass:function(a){var b,c,d,e,f,g,h,i=0;if(n.isFunction(a))return this.each(function(b){n(this).removeClass(a.call(this,b,Bb(this)))});if(!arguments.length)return this.attr("class","");if("string"==typeof a&&a){b=a.match(F)||[];while(c=this[i++])if(e=Bb(c),d=1===c.nodeType&&(" "+e+" ").replace(Ab," ")){g=0;while(f=b[g++])while(d.indexOf(" "+f+" ")>-1)d=d.replace(" "+f+" "," ");h=n.trim(d),e!==h&&n.attr(c,"class",h)}}return this},toggleClass:function(a,b){var c=typeof a;return"boolean"==typeof b&&"string"===c?b?this.addClass(a):this.removeClass(a):n.isFunction(a)?this.each(function(c){n(this).toggleClass(a.call(this,c,Bb(this),b),b)}):this.each(function(){var b,d,e,f;if("string"===c){d=0,e=n(this),f=a.match(F)||[];while(b=f[d++])e.hasClass(b)?e.removeClass(b):e.addClass(b)}else void 0!==a&&"boolean"!==c||(b=Bb(this),b&&n._data(this,"__className__",b),n.attr(this,"class",b||!1===a?"":n._data(this,"__className__")||""))})},hasClass:function(a){var b,c,d=0;b=" "+a+" ";while(c=this[d++])if(1===c.nodeType&&(" "+Bb(c)+" ").replace(Ab," ").indexOf(b)>-1)return!0;return!1}}),n.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(a,b){n.fn[b]=function(a,c){return arguments.length>0?this.on(b,null,a,c):this.trigger(b)}}),n.fn.extend({hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}});var Cb=a.location,Db=n.now(),Eb=/\?/,Fb=/(,)|(\[|{)|(}|])|"(?:[^"\\\r\n]|\\["\\\/bfnrt]|\\u[\da-fA-F]{4})*"\s*:?|true|false|null|-?(?!0\d)\d+(?:\.\d+|)(?:[eE][+-]?\d+|)/g;n.parseJSON=function(b){if(a.JSON&&a.JSON.parse)return a.JSON.parse(b+"");var c,d=null,e=n.trim(b+"");return e&&!n.trim(e.replace(Fb,function(a,b,e,f){return c&&b&&(d=0),0===d?a:(c=e||b,d+=!f-!e,"")}))?Function("return "+e)():n.error("Invalid JSON: "+b)},n.parseXML=function(b){var c,d;if(!b||"string"!=typeof b)return null;try{a.DOMParser?(d=new a.DOMParser,c=d.parseFromString(b,"text/xml")):(c=new a.ActiveXObject("Microsoft.XMLDOM"),c.async="false",c.loadXML(b))}catch(e){c=void 0}return c&&c.documentElement&&!c.getElementsByTagName("parsererror").length||n.error("Invalid XML: "+b),c};var Gb=/#.*$/,Hb=/([?&])_=[^&]*/,Ib=/^(.*?):[ \t]*([^\r\n]*)\r?$/gm,Jb=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Kb=/^(?:GET|HEAD)$/,Lb=/^\/\//,Mb=/^([\w.+-]+:)(?:\/\/(?:[^\/?#]*@|)([^\/?#:]*)(?::(\d+)|)|)/,Nb={},Ob={},Pb="*/".concat("*"),Qb=Cb.href,Rb=Mb.exec(Qb.toLowerCase())||[];function Sb(a){return function(b,c){"string"!=typeof b&&(c=b,b="*");var d,e=0,f=b.toLowerCase().match(F)||[];if(n.isFunction(c))while(d=f[e++])"+"===d.charAt(0)?(d=d.slice(1)||"*",(a[d]=a[d]||[]).unshift(c)):(a[d]=a[d]||[]).push(c)}}function Tb(a,b,c,d){var e={},f=a===Ob;function g(h){var i;return e[h]=!0,n.each(a[h]||[],function(a,h){var j=h(b,c,d);return"string"!=typeof j||f||e[j]?f?!(i=j):void 0:(b.dataTypes.unshift(j),g(j),!1)}),i}return g(b.dataTypes[0])||!e["*"]&&g("*")}function Ub(a,b){var c,d,e=n.ajaxSettings.flatOptions||{};for(d in b)void 0!==b[d]&&((e[d]?a:c||(c={}))[d]=b[d]);return c&&n.extend(!0,a,c),a}function Vb(a,b,c){var d,e,f,g,h=a.contents,i=a.dataTypes;while("*"===i[0])i.shift(),void 0===e&&(e=a.mimeType||b.getResponseHeader("Content-Type"));if(e)for(g in h)if(h[g]&&h[g].test(e)){i.unshift(g);break}if(i[0]in c)f=i[0];else{for(g in c){if(!i[0]||a.converters[g+" "+i[0]]){f=g;break}d||(d=g)}f=f||d}if(f)return f!==i[0]&&i.unshift(f),c[f]}function Wb(a,b,c,d){var e,f,g,h,i,j={},k=a.dataTypes.slice();if(k[1])for(g in a.converters)j[g.toLowerCase()]=a.converters[g];f=k.shift();while(f)if(a.responseFields[f]&&(c[a.responseFields[f]]=b),!i&&d&&a.dataFilter&&(b=a.dataFilter(b,a.dataType)),i=f,f=k.shift())if("*"===f)f=i;else if("*"!==i&&i!==f){if(!(g=j[i+" "+f]||j["* "+f]))for(e in j)if(h=e.split(" "),h[1]===f&&(g=j[i+" "+h[0]]||j["* "+h[0]])){!0===g?g=j[e]:!0!==j[e]&&(f=h[0],k.unshift(h[1]));break}if(!0!==g)if(g&&a.throws)b=g(b);else try{b=g(b)}catch(l){return{state:"parsererror",error:g?l:"No conversion from "+i+" to "+f}}}return{state:"success",data:b}}n.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:Qb,type:"GET",isLocal:Jb.test(Rb[1]),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Pb,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":n.parseJSON,"text xml":n.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(a,b){return b?Ub(Ub(a,n.ajaxSettings),b):Ub(n.ajaxSettings,a)},ajaxPrefilter:Sb(Nb),ajaxTransport:Sb(Ob),ajax:function(b,c){"object"==typeof b&&(c=b,b=void 0),c=c||{};var d,e,f,g,h,i,j,k,l=n.ajaxSetup({},c),m=l.context||l,o=l.context&&(m.nodeType||m.jquery)?n(m):n.event,p=n.Deferred(),q=n.Callbacks("once memory"),r=l.statusCode||{},s={},t={},u=0,v="canceled",w={readyState:0,getResponseHeader:function(a){var b;if(2===u){if(!k){k={};while(b=Ib.exec(g))k[b[1].toLowerCase()]=b[2]}b=k[a.toLowerCase()]}return null==b?null:b},getAllResponseHeaders:function(){return 2===u?g:null},setRequestHeader:function(a,b){var c=a.toLowerCase();return u||(a=t[c]=t[c]||a,s[a]=b),this},overrideMimeType:function(a){return u||(l.mimeType=a),this},statusCode:function(a){var b;if(a)if(u<2)for(b in a)r[b]=[r[b],a[b]];else w.always(a[w.status]);return this},abort:function(a){var b=a||v;return j&&j.abort(b),x(0,b),this}};if(p.promise(w).complete=q.add,w.success=w.done,w.error=w.fail,l.url=((b||l.url||Qb)+"").replace(Gb,"").replace(Lb,Rb[1]+"//"),l.type=c.method||c.type||l.method||l.type,l.dataTypes=n.trim(l.dataType||"*").toLowerCase().match(F)||[""],null==l.crossDomain&&(d=Mb.exec(l.url.toLowerCase()),l.crossDomain=!(!d||d[1]===Rb[1]&&d[2]===Rb[2]&&(d[3]||("http:"===d[1]?"80":"443"))===(Rb[3]||("http:"===Rb[1]?"80":"443")))),l.data&&l.processData&&"string"!=typeof l.data&&(l.data=n.param(l.data,l.traditional)),Tb(Nb,l,c,w),2===u)return w;i=n.event&&l.global,i&&0==n.active++&&n.event.trigger("ajaxStart"),l.type=l.type.toUpperCase(),l.hasContent=!Kb.test(l.type),f=l.url,l.hasContent||(l.data&&(f=l.url+=(Eb.test(f)?"&":"?")+l.data,delete l.data),!1===l.cache&&(l.url=Hb.test(f)?f.replace(Hb,"$1_="+Db++):f+(Eb.test(f)?"&":"?")+"_="+Db++)),l.ifModified&&(n.lastModified[f]&&w.setRequestHeader("If-Modified-Since",n.lastModified[f]),n.etag[f]&&w.setRequestHeader("If-None-Match",n.etag[f])),(l.data&&l.hasContent&&!1!==l.contentType||c.contentType)&&w.setRequestHeader("Content-Type",l.contentType),w.setRequestHeader("Accept",l.dataTypes[0]&&l.accepts[l.dataTypes[0]]?l.accepts[l.dataTypes[0]]+("*"!==l.dataTypes[0]?", "+Pb+"; q=0.01":""):l.accepts["*"]);for(e in l.headers)w.setRequestHeader(e,l.headers[e]);if(l.beforeSend&&(!1===l.beforeSend.call(m,w,l)||2===u))return w.abort();v="abort";for(e in{success:1,error:1,complete:1})w[e](l[e]);if(j=Tb(Ob,l,c,w)){if(w.readyState=1,i&&o.trigger("ajaxSend",[w,l]),2===u)return w;l.async&&l.timeout>0&&(h=a.setTimeout(function(){w.abort("timeout")},l.timeout));try{u=1,j.send(s,x)}catch(y){if(!(u<2))throw y;x(-1,y)}}else x(-1,"No Transport");function x(b,c,d,e){var k,s,t,v,x,y=c;2!==u&&(u=2,h&&a.clearTimeout(h),j=void 0,g=e||"",w.readyState=b>0?4:0,k=b>=200&&b<300||304===b,d&&(v=Vb(l,w,d)),v=Wb(l,v,w,k),k?(l.ifModified&&(x=w.getResponseHeader("Last-Modified"),x&&(n.lastModified[f]=x),(x=w.getResponseHeader("etag"))&&(n.etag[f]=x)),204===b||"HEAD"===l.type?y="nocontent":304===b?y="notmodified":(y=v.state,s=v.data,t=v.error,k=!t)):(t=y,!b&&y||(y="error",b<0&&(b=0))),w.status=b,w.statusText=(c||y)+"",k?p.resolveWith(m,[s,y,w]):p.rejectWith(m,[w,y,t]),w.statusCode(r),r=void 0,i&&o.trigger(k?"ajaxSuccess":"ajaxError",[w,l,k?s:t]),q.fireWith(m,[w,y]),i&&(o.trigger("ajaxComplete",[w,l]),--n.active||n.event.trigger("ajaxStop")))}return w},getJSON:function(a,b,c){return n.get(a,b,c,"json")},getScript:function(a,b){return n.get(a,void 0,b,"script")}}),n.each(["get","post"],function(a,b){n[b]=function(a,c,d,e){return n.isFunction(c)&&(e=e||d,d=c,c=void 0),n.ajax(n.extend({url:a,type:b,dataType:e,data:c,success:d},n.isPlainObject(a)&&a))}}),n._evalUrl=function(a){return n.ajax({url:a,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,throws:!0})},n.fn.extend({wrapAll:function(a){if(n.isFunction(a))return this.each(function(b){n(this).wrapAll(a.call(this,b))});if(this[0]){var b=n(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&1===a.firstChild.nodeType)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){return n.isFunction(a)?this.each(function(b){n(this).wrapInner(a.call(this,b))}):this.each(function(){var b=n(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=n.isFunction(a);return this.each(function(c){n(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){n.nodeName(this,"body")||n(this).replaceWith(this.childNodes)}).end()}});function Xb(a){return a.style&&a.style.display||n.css(a,"display")}function Yb(a){if(!n.contains(a.ownerDocument||d,a))return!0;while(a&&1===a.nodeType){if("none"===Xb(a)||"hidden"===a.type)return!0;a=a.parentNode}return!1}n.expr.filters.hidden=function(a){return l.reliableHiddenOffsets()?a.offsetWidth<=0&&a.offsetHeight<=0&&!a.getClientRects().length:Yb(a)},n.expr.filters.visible=function(a){return!n.expr.filters.hidden(a)};var Zb=/%20/g,$b=/\[\]$/,_b=/\r?\n/g,ac=/^(?:submit|button|image|reset|file)$/i,bc=/^(?:input|select|textarea|keygen)/i;function cc(a,b,c,d){var e;if(n.isArray(b))n.each(b,function(b,e){c||$b.test(a)?d(a,e):cc(a+"["+("object"==typeof e&&null!=e?b:"")+"]",e,c,d)});else if(c||"object"!==n.type(b))d(a,b);else for(e in b)cc(a+"["+e+"]",b[e],c,d)}n.param=function(a,b){var c,d=[],e=function(a,b){b=n.isFunction(b)?b():null==b?"":b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};if(void 0===b&&(b=n.ajaxSettings&&n.ajaxSettings.traditional),n.isArray(a)||a.jquery&&!n.isPlainObject(a))n.each(a,function(){e(this.name,this.value)});else for(c in a)cc(c,a[c],b,e);return d.join("&").replace(Zb,"+")},n.fn.extend({serialize:function(){return n.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var a=n.prop(this,"elements");return a?n.makeArray(a):this}).filter(function(){var a=this.type;return this.name&&!n(this).is(":disabled")&&bc.test(this.nodeName)&&!ac.test(a)&&(this.checked||!Y.test(a))}).map(function(a,b){var c=n(this).val();return null==c?null:n.isArray(c)?n.map(c,function(a){return{name:b.name,value:a.replace(_b,"\r\n")}}):{name:b.name,value:c.replace(_b,"\r\n")}}).get()}}),n.ajaxSettings.xhr=void 0!==a.ActiveXObject?function(){return this.isLocal?hc():d.documentMode>8?gc():/^(get|post|head|put|delete|options)$/i.test(this.type)&&gc()||hc()}:gc;var dc=0,ec={},fc=n.ajaxSettings.xhr();a.attachEvent&&a.attachEvent("onunload",function(){for(var a in ec)ec[a](void 0,!0)}),l.cors=!!fc&&"withCredentials"in fc,(fc=l.ajax=!!fc)&&n.ajaxTransport(function(b){if(!b.crossDomain||l.cors){var c;return{send:function(d,e){var f,g=b.xhr(),h=++dc;if(g.open(b.type,b.url,b.async,b.username,b.password),b.xhrFields)for(f in b.xhrFields)g[f]=b.xhrFields[f];b.mimeType&&g.overrideMimeType&&g.overrideMimeType(b.mimeType),b.crossDomain||d["X-Requested-With"]||(d["X-Requested-With"]="XMLHttpRequest");for(f in d)void 0!==d[f]&&g.setRequestHeader(f,d[f]+"");g.send(b.hasContent&&b.data||null),c=function(a,d){var f,i,j;if(c&&(d||4===g.readyState))if(delete ec[h],c=void 0,g.onreadystatechange=n.noop,d)4!==g.readyState&&g.abort();else{j={},f=g.status,"string"==typeof g.responseText&&(j.text=g.responseText);try{i=g.statusText}catch(k){i=""}f||!b.isLocal||b.crossDomain?1223===f&&(f=204):f=j.text?200:404}j&&e(f,i,j,g.getAllResponseHeaders())},b.async?4===g.readyState?a.setTimeout(c):g.onreadystatechange=ec[h]=c:c()},abort:function(){c&&c(void 0,!0)}}}});function gc(){try{return new a.XMLHttpRequest}catch(b){}}function hc(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}n.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(a){return n.globalEval(a),a}}}),n.ajaxPrefilter("script",function(a){void 0===a.cache&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),n.ajaxTransport("script",function(a){if(a.crossDomain){var b,c=d.head||n("head")[0]||d.documentElement;return{send:function(e,f){b=d.createElement("script"),b.async=!0,a.scriptCharset&&(b.charset=a.scriptCharset),b.src=a.url,b.onload=b.onreadystatechange=function(a,c){(c||!b.readyState||/loaded|complete/.test(b.readyState))&&(b.onload=b.onreadystatechange=null,b.parentNode&&b.parentNode.removeChild(b),b=null,c||f(200,"success"))},c.insertBefore(b,c.firstChild)},abort:function(){b&&b.onload(void 0,!0)}}}});var ic=[],jc=/(=)\?(?=&|$)|\?\?/;n.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=ic.pop()||n.expando+"_"+Db++;return this[a]=!0,a}}),n.ajaxPrefilter("json jsonp",function(b,c,d){var e,f,g,h=!1!==b.jsonp&&(jc.test(b.url)?"url":"string"==typeof b.data&&0===(b.contentType||"").indexOf("application/x-www-form-urlencoded")&&jc.test(b.data)&&"data");if(h||"jsonp"===b.dataTypes[0])return e=b.jsonpCallback=n.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,h?b[h]=b[h].replace(jc,"$1"+e):!1!==b.jsonp&&(b.url+=(Eb.test(b.url)?"&":"?")+b.jsonp+"="+e),b.converters["script json"]=function(){return g||n.error(e+" was not called"),g[0]},b.dataTypes[0]="json",f=a[e],a[e]=function(){g=arguments},d.always(function(){void 0===f?n(a).removeProp(e):a[e]=f,b[e]&&(b.jsonpCallback=c.jsonpCallback,ic.push(e)),g&&n.isFunction(f)&&f(g[0]),g=f=void 0}),"script"}),n.parseHTML=function(a,b,c){if(!a||"string"!=typeof a)return null;"boolean"==typeof b&&(c=b,b=!1),b=b||d;var e=x.exec(a),f=!c&&[];return e?[b.createElement(e[1])]:(e=ia([a],b,f),f&&f.length&&n(f).remove(),n.merge([],e.childNodes))};var kc=n.fn.load;n.fn.load=function(a,b,c){if("string"!=typeof a&&kc)return kc.apply(this,arguments);var d,e,f,g=this,h=a.indexOf(" ");return h>-1&&(d=n.trim(a.slice(h,a.length)),a=a.slice(0,h)),n.isFunction(b)?(c=b,b=void 0):b&&"object"==typeof b&&(e="POST"),g.length>0&&n.ajax({url:a,type:e||"GET",dataType:"html",data:b}).done(function(a){f=arguments,g.html(d?n("
                                  ").append(n.parseHTML(a)).find(d):a)}).always(c&&function(a,b){g.each(function(){c.apply(this,f||[a.responseText,b,a])})}),this},n.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(a,b){n.fn[b]=function(a){return this.on(b,a)}}),n.expr.filters.animated=function(a){return n.grep(n.timers,function(b){return a===b.elem}).length};function lc(a){return n.isWindow(a)?a:9===a.nodeType&&(a.defaultView||a.parentWindow)}n.offset={setOffset:function(a,b,c){var d,e,f,g,h,i,j,k=n.css(a,"position"),l=n(a),m={};"static"===k&&(a.style.position="relative"),h=l.offset(),f=n.css(a,"top"),i=n.css(a,"left"),j=("absolute"===k||"fixed"===k)&&n.inArray("auto",[f,i])>-1,j?(d=l.position(),g=d.top,e=d.left):(g=parseFloat(f)||0,e=parseFloat(i)||0),n.isFunction(b)&&(b=b.call(a,c,n.extend({},h))),null!=b.top&&(m.top=b.top-h.top+g),null!=b.left&&(m.left=b.left-h.left+e),"using"in b?b.using.call(a,m):l.css(m)}},n.fn.extend({offset:function(a){if(arguments.length)return void 0===a?this:this.each(function(b){n.offset.setOffset(this,a,b)});var b,c,d={top:0,left:0},e=this[0],f=e&&e.ownerDocument;if(f)return b=f.documentElement,n.contains(b,e)?(void 0!==e.getBoundingClientRect&&(d=e.getBoundingClientRect()),c=lc(f),{top:d.top+(c.pageYOffset||b.scrollTop)-(b.clientTop||0),left:d.left+(c.pageXOffset||b.scrollLeft)-(b.clientLeft||0)}):d},position:function(){if(this[0]){var a,b,c={top:0,left:0},d=this[0];return"fixed"===n.css(d,"position")?b=d.getBoundingClientRect():(a=this.offsetParent(),b=this.offset(),n.nodeName(a[0],"html")||(c=a.offset()),c.top+=n.css(a[0],"borderTopWidth",!0),c.left+=n.css(a[0],"borderLeftWidth",!0)),{top:b.top-c.top-n.css(d,"marginTop",!0),left:b.left-c.left-n.css(d,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var a=this.offsetParent;while(a&&!n.nodeName(a,"html")&&"static"===n.css(a,"position"))a=a.offsetParent;return a||Pa})}}),n.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,b){var c=/Y/.test(b);n.fn[a]=function(d){return X(this,function(a,d,e){var f=lc(a);if(void 0===e)return f?b in f?f[b]:f.document.documentElement[d]:a[d];f?f.scrollTo(c?n(f).scrollLeft():e,c?e:n(f).scrollTop()):a[d]=e},a,d,arguments.length,null)}}),n.each(["top","left"],function(a,b){n.cssHooks[b]=Ta(l.pixelPosition,function(a,c){if(c)return c=Ra(a,b),Na.test(c)?n(a).position()[b]+"px":c})}),n.each({Height:"height",Width:"width"},function(a,b){n.each({padding:"inner"+a,content:b,"":"outer"+a},function(c,d){n.fn[d]=function(d,e){var f=arguments.length&&(c||"boolean"!=typeof d),g=c||(!0===d||!0===e?"margin":"border") +;return X(this,function(b,c,d){var e;return n.isWindow(b)?b.document.documentElement["client"+a]:9===b.nodeType?(e=b.documentElement,Math.max(b.body["scroll"+a],e["scroll"+a],b.body["offset"+a],e["offset"+a],e["client"+a])):void 0===d?n.css(b,c,g):n.style(b,c,d,g)},b,f?d:void 0,f,null)}})}),n.fn.extend({bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return 1===arguments.length?this.off(a,"**"):this.off(b,a||"**",c)}}),n.fn.size=function(){return this.length},n.fn.andSelf=n.fn.addBack,"function"==typeof define&&define.amd&&define("jquery",[],function(){return n});var mc=a.jQuery,nc=a.$;return n.noConflict=function(b){return a.$===n&&(a.$=nc),b&&a.jQuery===n&&(a.jQuery=mc),n},b||(a.jQuery=a.$=n),n}); +jQuery.noConflict(); \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/fc9bfc81f8c15b7fab37f3142dcfc596597846f4.00000313.xml b/www/.content.EZtzwPjb/html/fc9bfc81f8c15b7fab37f3142dcfc596597846f4.00000313.xml new file mode 100644 index 0000000..e116e1a --- /dev/null +++ b/www/.content.EZtzwPjb/html/fc9bfc81f8c15b7fab37f3142dcfc596597846f4.00000313.xml @@ -0,0 +1,185 @@ + + + News – HugoPoi + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Sat, 11 Feb 2017 17:37:20 +0000 + fr-FR + hourly + 1 + https://wordpress.org/?v=4.7.2 + + Pourquoi je suis sous Linux bordel ! + http://blog.hugopoi.net/2017/02/11/pourquoi-je-suis-sous-linux-bordel/ + http://blog.hugopoi.net/2017/02/11/pourquoi-je-suis-sous-linux-bordel/#respond + Sat, 11 Feb 2017 17:37:20 +0000 + + + + + + + + http://blog.hugopoi.net/?p=947 + Lire la suite »

                                  ]]>
                                  + http://blog.hugopoi.net/2017/02/11/pourquoi-je-suis-sous-linux-bordel/feed/ + 0 +
                                  + + Orange et consort, impossible d’obtenir le désimlockage + http://blog.hugopoi.net/2013/09/15/orange-et-consort-impossible-dobtenir-le-desimlockage/ + http://blog.hugopoi.net/2013/09/15/orange-et-consort-impossible-dobtenir-le-desimlockage/#comments + Sat, 14 Sep 2013 23:01:40 +0000 + + + + + + + + + + http://blog.hugopoi.net/?p=794 + Lire la suite »

                                  ]]>
                                  + http://blog.hugopoi.net/2013/09/15/orange-et-consort-impossible-dobtenir-le-desimlockage/feed/ + 1 +
                                  + + Réparer et transformer une clé USB de 4Go en 8Go + http://blog.hugopoi.net/2013/05/11/reparer-et-transformer-une-cle-usb-de-4go-en-8go/ + http://blog.hugopoi.net/2013/05/11/reparer-et-transformer-une-cle-usb-de-4go-en-8go/#comments + Sat, 11 May 2013 13:51:53 +0000 + + + + + + + + http://blog.hugopoi.net/?p=768 + Lire la suite »

                                  ]]>
                                  + http://blog.hugopoi.net/2013/05/11/reparer-et-transformer-une-cle-usb-de-4go-en-8go/feed/ + 8 +
                                  + + Liste de Noël + http://blog.hugopoi.net/2012/11/18/liste-de-noel-2/ + http://blog.hugopoi.net/2012/11/18/liste-de-noel-2/#respond + Sun, 18 Nov 2012 21:00:38 +0000 + + + + + + + + + + + http://blog.hugopoi.net/?p=556 + Lire la suite »

                                  ]]>
                                  + http://blog.hugopoi.net/2012/11/18/liste-de-noel-2/feed/ + 0 +
                                  + + Pascal Negre tu m’emmerdes + http://blog.hugopoi.net/2012/01/07/pascal-negre-tu-memmerdes/ + http://blog.hugopoi.net/2012/01/07/pascal-negre-tu-memmerdes/#comments + Sat, 07 Jan 2012 14:32:47 +0000 + + + + + + + + http://blog.hugopoi.net/?p=574 + Lire la suite »

                                  ]]>
                                  + http://blog.hugopoi.net/2012/01/07/pascal-negre-tu-memmerdes/feed/ + 4 +
                                  + + Quel age pour s’inscrire sur Facebook ? + http://blog.hugopoi.net/2011/05/13/quel-age-pour-sinscrire-sur-facebook/ + http://blog.hugopoi.net/2011/05/13/quel-age-pour-sinscrire-sur-facebook/#respond + Fri, 13 May 2011 14:22:24 +0000 + + + + + http://blog.hugopoi.net/?p=369 + Lire la suite »

                                  ]]>
                                  + http://blog.hugopoi.net/2011/05/13/quel-age-pour-sinscrire-sur-facebook/feed/ + 0 +
                                  + + Honte Télévisuelle + http://blog.hugopoi.net/2011/03/31/honte-televisuelle/ + http://blog.hugopoi.net/2011/03/31/honte-televisuelle/#respond + Thu, 31 Mar 2011 15:41:26 +0000 + + + + + + + http://blog.hugopoi.net/?p=364 + Lire la suite »

                                  ]]>
                                  + http://blog.hugopoi.net/2011/03/31/honte-televisuelle/feed/ + 0 +
                                  + + World Community Grid, quoi ? + http://blog.hugopoi.net/2011/03/31/world-community-grid-quoi/ + http://blog.hugopoi.net/2011/03/31/world-community-grid-quoi/#respond + Thu, 31 Mar 2011 15:36:03 +0000 + + + http://blog.hugopoi.net/?p=376 + Lire la suite »

                                  ]]>
                                  + http://blog.hugopoi.net/2011/03/31/world-community-grid-quoi/feed/ + 0 +
                                  + + Freebox Révolution #oupas + http://blog.hugopoi.net/2011/02/09/freebox-revolution-oupas/ + http://blog.hugopoi.net/2011/02/09/freebox-revolution-oupas/#comments + Wed, 09 Feb 2011 08:16:39 +0000 + + + + + + + + http://blog.hugopoi.net/?p=323 + Lire la suite »

                                  ]]>
                                  + http://blog.hugopoi.net/2011/02/09/freebox-revolution-oupas/feed/ + 2 +
                                  + + Coup de gueule + http://blog.hugopoi.net/2011/01/06/coup-de-gueule/ + http://blog.hugopoi.net/2011/01/06/coup-de-gueule/#comments + Thu, 06 Jan 2011 19:51:17 +0000 + + + + + + + http://blog.hugopoi.net/?p=155 + Lire la suite »

                                  ]]>
                                  + http://blog.hugopoi.net/2011/01/06/coup-de-gueule/feed/ + 2 +
                                  +
                                  +
                                  diff --git a/www/.content.EZtzwPjb/html/fd49664e24c1793480813f95b9122759074d9a26.00000660.css b/www/.content.EZtzwPjb/html/fd49664e24c1793480813f95b9122759074d9a26.00000660.css new file mode 100644 index 0000000..8043bbf --- /dev/null +++ b/www/.content.EZtzwPjb/html/fd49664e24c1793480813f95b9122759074d9a26.00000660.css @@ -0,0 +1,27 @@ +@import url("/wp-content/themes/zbench/style.css");#header{margin:25px +auto}#header h1 +a{line-height:35px}div.wpcf7{margin:0;padding:0}div.wpcf7-response-output{margin:2em +0.5em 1em;padding:0.2em 1em}div.wpcf7-mail-sent-ok{border:2px +solid #398f14}div.wpcf7-mail-sent-ng{border:2px +solid #f00}div.wpcf7-spam-blocked{border:2px +solid #ffa500}div.wpcf7-validation-errors{border:2px +solid #f7e700}span.wpcf7-form-control-wrap{position:relative}span.wpcf7-not-valid-tip{position:absolute;top:20%;left:20%;z-index:100;background:#fff;border:1px +solid #f00;font-size:10pt;width:280px;padding:2px}span.wpcf7-not-valid-tip-no-ajax{color:#f00;font-size:10pt;display:block}span.wpcf7-list-item{margin-left:0.5em}.wpcf7-display-none{display:none}div.wpcf7 img.ajax-loader{border:none;vertical-align:middle;margin-left:4px}div.wpcf7 div.ajax-error{display:none}div.wpcf7 +.placeheld{color:#888}.wp_syntax{color:#100;background-color:#f9f9f9;border:1px +solid silver;margin:0 +0 1.5em 0;overflow:auto}.wp_syntax{overflow-x:auto;overflow-y:hidden;padding-bottom:expression(this.scrollWidth > this.offsetWidth ? 15 : 0);width:99%}.wp_syntax +table{border:none !important;border-collapse:collapse !important;margin:0 +!important;padding:0 +!important;width:100% !important}.wp_syntax +caption{margin:0 +!important;padding:2px +!important;width:100% !important;background-color:#def !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:1.2em !important}.wp_syntax caption +a{color:#1982d1 !important;text-align:left !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;text-decoration:none !important}.wp_syntax caption a:hover{color:#1982d1 !important;text-decoration:underline !important}.wp_syntax div, .wp_syntax +td{border:none !important;text-align:left !important;padding:0 +!important;vertical-align:top !important}.wp_syntax +td.code{background-color:#EEE;background-image: -webkit-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -moz-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -ms-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image: -o-linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-image:linear-gradient( transparent 50%, rgba(255, 255, 255, .9) 50% );background-size:1px 32px;line-height:normal !important;white-space:normal !important;width:100% !important}.wp_syntax +pre{background:transparent !important;border:none !important;margin:0 +!important;padding:0 +!important;width:auto !important;float:none !important;clear:none !important;overflow:visible !important;font-family:monospace!important;font-size:12px !important;line-height:16px !important;padding:0 +4px !important;white-space:pre !important;-moz-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;box-shadow:0px 0px 0px rgba(0, 0, 0, 0) !important;-webkit-border-radius:0 !important;-moz-border-radius:0 !important;border-radius:0 !important}.wp_syntax td.line_numbers +pre{background-color:#def !important;color:gray !important;text-align:right !important;width:16px !important} \ No newline at end of file diff --git a/www/.content.EZtzwPjb/html/fd792e341b11b439c8f7d3de660561ce4619a8ca.00000325.html b/www/.content.EZtzwPjb/html/fd792e341b11b439c8f7d3de660561ce4619a8ca.00000325.html new file mode 100644 index 0000000..613963e --- /dev/null +++ b/www/.content.EZtzwPjb/html/fd792e341b11b439c8f7d3de660561ce4619a8ca.00000325.html @@ -0,0 +1,374 @@ + + + + + + + HugoPoi – Page 10 – Internet, Hardware et Bidouille + + + + + + + + + + + + + + + + + + + + + + + +
                                  +
                                  +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  +
                                  +

                                  Hello World

                                  Bienvenue sur mon blog, voila c’est fait, je voulais depuis un petit moment ouvrir un blog pour m’ exprimer sur l’ actualité geek et raconter ma vie parler technique. Alors j’annonce les couleurs ici je vais pas parler coupe de cheveux ni sous-vêtement mais des sujets orientés internet, réseaux, développement et politique #hadopi #fail.

                                  +
                                  +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  + +
                                  +
                                  + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/fdaabb3018d94477eae96be4879e05e454fccdec.00000491.html b/www/.content.EZtzwPjb/html/fdaabb3018d94477eae96be4879e05e454fccdec.00000491.html new file mode 100644 index 0000000..93b366d --- /dev/null +++ b/www/.content.EZtzwPjb/html/fdaabb3018d94477eae96be4879e05e454fccdec.00000491.html @@ -0,0 +1,368 @@ + + + + + + + RAID – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                                  +
                                  +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  +
                                  +

                                  Vos données sauvegardées

                                  Dans le monde d’aujourd’hui, le numérique est omniprésent, tout ce que vous faites est ou peut être numérisé. Qu’il s’agisse de vos photos de vacances, de votre CV ou votre liste de course, vos contacts et tous les documents que vous utilisez pour travailler sont surement numériques. L’informatique est partout et aide à gérer votre comptabilité, vos contacts pro ou perso et même bientôt votre frigo. Quand je pense qu’il y a 10 ans, beaucoup de professions géraient leur base clients avec des fiches papiers, et que ça existe encore… Pourtant, c’est une perte de temps importante de gérer des clientèles de plus 100 personnes, trier les fiches à la main dans l’ordre alphabétique. Imaginez devoir sortir tous les clients que vous n’avez pas contacté depuis 2 mois, même avec uniquement 100 personnes vous allez y passer au moins une 1 heure avant que votre liste soit faite, avec une base de données, cela est fait en moins d’1 seconde. Tous ça pour dire que l’informatique facilite grandement votre vie jusqu’au jour où ça tombe en panne ! J’ai donc quelques propositions à vous faire concernant la protection de vos données. (suite…)

                                  +
                                  Par HugoPoi, il y a

                                  Préparation Migration

                                  Après réception de ma freebox revolution et son switch gigabit il est temps de s’occuper de mon home serveur :

                                  +

                                  Windows est facile mais chiant pour certains trucs… Trop de contraintes pour un usage à la maison et oui je suis sûr que certain vont troller car chez moi j’ai un serveur avec comme OS Windows Server 2008 R2. Mais pourquoi Windows Server? Première raison, tous les postes à la maison sont sous windows 7 (pour jouer c’est mieux ;). Deuxième raison, j’avais envie de me faire la main sur 2008 avec son lot de nouveautés dont la gestion des machines virtuelles VM qui est très pratique. Mais c’est vraiment trop lourd comme OS, il faut 10 minutes pour installer un service style DNS et la majorité des services réseaux ont besoin de Active Directory pour fonctionner. Dès que j’ai installé AD, ça a foutu la merde partout sur les trucs déjà configurés donc je suis retourné en arrière. Aussi IIS c’est un peu la foire pour trouver un paramètre donc je préfère utiliser un Apache. (suite…)

                                  +
                                  Par HugoPoi, il y a
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  + +
                                  +
                                  + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/fe1ba1bf91abcf6c42f3b03f9adfdd342d0a5ca5.00001220.js b/www/.content.EZtzwPjb/html/fe1ba1bf91abcf6c42f3b03f9adfdd342d0a5ca5.00001220.js new file mode 100644 index 0000000..91e3fbc --- /dev/null +++ b/www/.content.EZtzwPjb/html/fe1ba1bf91abcf6c42f3b03f9adfdd342d0a5ca5.00001220.js @@ -0,0 +1,3 @@ +/*! jQuery v3.5.1 | (c) JS Foundation and other contributors | jquery.org/license */ +!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],r=Object.getPrototypeOf,s=t.slice,g=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},x=function(e){return null!=e&&e===e.window},E=C.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.5.1",S=function(e,t){return new S.fn.init(e,t)};function p(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace($,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||v.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||v.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&y(p,e)?-1:t==C||t.ownerDocument==p&&y(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function D(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||j,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,j=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),y.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="",y.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="",y.option=!!ce.lastChild;var ge={thead:[1,"","
                                  "],col:[2,"","
                                  "],tr:[2,"","
                                  "],td:[3,"","
                                  "],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n",""]);var me=/<|&#?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function qe(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function Le(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function He(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Oe(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var Ut,Xt=[],Vt=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Xt.pop()||S.expando+"_"+Ct.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Vt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Vt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Vt,"$1"+r):!1!==e.jsonp&&(e.url+=(Et.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Xt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((Ut=E.implementation.createHTMLDocument("").body).innerHTML="
                                  ",2===Ut.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):("number"==typeof f.top&&(f.top+="px"),"number"==typeof f.left&&(f.left+="px"),c.css(f))}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=$e(y.pixelPosition,function(e,t){if(t)return t=Be(e,n),Me.test(t)?S(e).position()[n]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 0 + + + + + + + Réparer et transformer une clé USB de 4Go en 8Go – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
                                  +
                                  +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  +
                                  +
                                  +

                                  J’étais en train de bosser sur un projet Java quand ma belle mère me demande si je peux regarder une clé USB Maxell 4GB qui ne marche plus.Clé USB Maxell

                                  +

                                  Je branche et la clé se connecte correctement mais pas de table des partitions et la clé indiquait 0 octet de disponible. Je tente un « diskpart.exe » celui-ci me dit « pas de media ». Autre symptôme la LED sur la clé restait continuellement allumé. Je commence à me dire que c’est mort puis comme d’habitude je fais une recherche Google et je tombe sur ça http://www.easytutoriel.com/flasher-reparer-cle-usb-memoire/(ce lien est à moitié mort la DB est cassée) . Donc je télécharge ChipGenius_v4_00_0022_RC3 et il reconnait ma clé il me dit que c’est un controleur Phison PS2251-67(PS2267) et une puce mémoire Toshiba de type TLC.ChipGenius4

                                  +

                                  Rien de bien exceptionnel je vais sur http://flashboot.ru/iflash/ je farfouille je trouve des noms de logiciels mais pas de lien téléchargement qui marche puis pour finir je vais sur http://dl.mydigit.net/special/up/phison.html, sans traduire je comprends vite que c’est une mine d’or ce site web, tout un tas de nom de logiciel récupérer chez les fabricants de puces en tout genre de quoi flasher n’importe quoi. J’arrive à ça http://rghost.net/39050058, je télécharge j’exécute GetInfo.exe  (sans les droits administrateur) qui me donne les même infos que ChipGenius.GetInfo V3.8.3.2

                                  +

                                  Après il y a deux soft MPALL_F1_8400_v360_0B.exe et MPALL_F2_v360_0B.exe . Au hasard je lance le premier (sans les droits administrateur) et je clic sur Update sans vraiment savoir ce que ça allait vraiment faire. Et la ça reconnait la clé dans la liste et surprise il me dit que la puce de mémoire est une 8Go au début je crois à une erreur.MPAll 8400 3.60.0B

                                  +

                                  N’ayant plus rien à perdre je clic sur Start et cela lance la procédure de flash du firmware du contrôleur, pas de documentation donc je peux pas vraiment savoir ce que ça fait réellement. DRAME ça affiche une erreur et un beau fail, je ne désespère pas je débranche rebranche la clé. Et c’est un ………………….WIN Windaube m’affiche le beau panneau voulez-vous formater cette merde. Deuxième WIN de taille, la clé est reconnu comme une clé de 8 Go LOL. Je mets plus de 4 Go de données dedans je fais un checksum des fichiers et ça marche !!!

                                  +

                                  L’erreur survenu à la fin du flash peu provenir du fait que je n’avais pas lancé l’exécutable avec des privilèges élevés donc le programme n’a pas pu effectuer le formatage.

                                  +

                                  Maintenant la grande question comment ce fait t’il que Maxell qui est l’assembleur de cet clé USB nous vend t’il des clé USB 4GB comme sont en réalité des clé de 8Go. J’ai trois début de réponse :

                                  +

                                  1) Soit Maxell se fout de notre gueule sur les prix et du coup au lieu d’acheter 4000 puces Toshiba de 4 Go et 4000 de puces de 8Go , Maxell achète 8000 puces de 8Go et bidouille les firmware des contrôleurs pour faire des clés USB de 4 et 8 Go.

                                  +

                                  2) Maxell utilise des puces 8Go qui ont des défauts d’usines et utilise uniquement une parti de la puce. Ce qui expliquerait les problèmes que j’ai rencontré avec cette clé au début.

                                  +

                                  3) Maxell utilise les 4 Go restant pour faire du over-provisioning pour les cellules de mémoire défectueuse en écriture étant donné que je penses que ce genre de mémoire n’a pas beaucoup de cycle d’écriture mais c’est très peu probable que ce type technologie propre aux SSD soit dans de vulgaire clé USB bas de gamme.

                                  +
                                  +
                                  +
                                  +
                                  +
                                  Catégories : BidouilleHardwareNews
                                  +
                                  +
                                  +
                                  + + + + + + + + + +
                                  +
                                  +
                                  +
                                  +
                                  +
                                  +
                                  +

                                  + 8 commentaires

                                  +
                                  + +
                                  +
                                  +
                                  +
                                  +

                                  + 2Pi informatique + · 16 mai 2013 à 9 h 01 min +

                                  +

                                  Je n’avais jamais entendu parler de ce genre de manip, et du gain potentiel de capacité.

                                  +

                                  C’est assez étonnant, et je me demande si tous les constructeurs « brident » la capacité des clés usb …

                                  + +
                                  +
                                  + +
                                  + +
                                  +
                                  +
                                  +
                                  +

                                  + Amedoumba + · 22 juillet 2013 à 14 h 15 min +

                                  +

                                  Hello !
                                  +Intéressant comme manip. J’ai une de mes clés USB avec le même genre de probleme. Je vais donc tester et voir si cela fonctionne. Je n’ai rien à perdre de toute façon.
                                  +Merci en tout cas.

                                  + +
                                  +
                                  + +
                                  + +
                                  +
                                  +
                                  +
                                  +

                                  + diop + · 14 novembre 2013 à 15 h 11 min +

                                  +

                                  pour répéré cle usb

                                  + +
                                  +
                                  + +
                                  + +
                                  +
                                  +
                                  +
                                  +

                                  + diop + · 14 novembre 2013 à 15 h 12 min +

                                  +

                                  salut pour ma cle usb

                                  + +
                                  +
                                  + +
                                  + +
                                  +
                                  +
                                  +
                                  +

                                  + watchix + · 28 décembre 2013 à 10 h 40 min +

                                  +

                                  « File is deleted » :-(

                                  + +
                                  +
                                  +
                                    +
                                    + +
                                    +
                                    +
                                    +
                                    +

                                    + HugoPoi + · 4 janvier 2014 à 12 h 38 min +

                                    +

                                    à moitié réparer ;-)

                                    + +
                                    +
                                    + +
                                  + +
                                  + +
                                  +
                                  +
                                  +
                                  +

                                  + Jean + · 22 avril 2015 à 20 h 18 min +

                                  +

                                  Je penche pour ma part pour les raisons 1 et 2.

                                  +

                                  La première raison car le coût de la flash est diminuée plus on en commande, et aussi ça évite d’avoir deux chaines d’assemblage pour le PCB de la clé.

                                  +

                                  La seconde raison car c’est ce qui est pratiqué par pas mal de fabricants du domaine du semi-conducteur pour « créer » une gamme : AMD n’hésitait pas à vendre en entrée de gamme des processeurs amputés de certains coeurs défectueux. Et si il manque des processeurs défectueux … et bien on désactive quand même des coeurs !

                                  +

                                  Il y a aussi un paramètre à prendre en compte : la redevance sur la copie privée. Elle est proportionnelle à la capacité du support de stockage (cf. http://www.culturecommunication.gouv.fr/Politiques-ministerielles/Propriete-litteraire-et-artistique/Commission-pour-la-remuneration-de-la-copie-privee/Questions-pratiques/Les-montants-de-la-Remuneration-pour-Copie-Privee). Elle est de 0,64€ pour une clé de 4 Go, et 1,04€ pour une clé de 8 Go.

                                  + +
                                  +
                                  + +
                                  + +
                                  +
                                  +
                                  +
                                  +

                                  + Pila + · 10 décembre 2015 à 21 h 45 min +

                                  +

                                  Salut,
                                  +Je pense qu’il s’agit de puce MLC ( je crois que c’est le terme ? ), qui ont de très bonne performances sur la première moitié de leur capacité, et des très mauvaises sur la seconde moitié, car celle-ci est obtenu par réécriture sur la première partie.

                                  +

                                  En tout cas merci pour les différentes infos que tu as glanées !

                                  + +
                                  +
                                  + +
                                  +
                                  +
                                  +

                                  Répondre à Jean Annuler la réponse

                                  Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

                                  +
                                  +
                                  +

                                  + +

                                  +
                                  +
                                  +
                                  +
                                  +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  +
                                  +
                                  + + +
                                  + + + + + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/fe728e6886eeb4472ca763f9b9d9ca3b77d53bdb.00000514.xml b/www/.content.EZtzwPjb/html/fe728e6886eeb4472ca763f9b9d9ca3b77d53bdb.00000514.xml new file mode 100644 index 0000000..19b093d --- /dev/null +++ b/www/.content.EZtzwPjb/html/fe728e6886eeb4472ca763f9b9d9ca3b77d53bdb.00000514.xml @@ -0,0 +1,41 @@ + + + + HugoPoi » Silverstone + + http://blog.hugopoi.net + Internet, Hardware et Bidouille + Sat, 14 Sep 2013 23:01:40 +0000 + fr-FR + hourly + 1 + http://wordpress.org/?v=3.6 + + Liste de Noël + http://blog.hugopoi.net/2012/11/18/liste-de-noel-2/ + http://blog.hugopoi.net/2012/11/18/liste-de-noel-2/#comments + Sun, 18 Nov 2012 21:00:38 +0000 + HugoPoi + + + + + + + + + + http://blog.hugopoi.net/?p=556 + Lire la suite »

                                  ]]>
                                  + http://blog.hugopoi.net/2012/11/18/liste-de-noel-2/feed/ + 0 +
                                  +
                                  +
                                  diff --git a/www/.content.EZtzwPjb/html/ff3d929cf9d6ba7dcfeb6d00838701b56d13fa2a.00000361.html b/www/.content.EZtzwPjb/html/ff3d929cf9d6ba7dcfeb6d00838701b56d13fa2a.00000361.html new file mode 100644 index 0000000..73df19b --- /dev/null +++ b/www/.content.EZtzwPjb/html/ff3d929cf9d6ba7dcfeb6d00838701b56d13fa2a.00000361.html @@ -0,0 +1,371 @@ + + + + + + + Changer pile – HugoPoi + + + + + + + + + + + + + + + + + + + + + + + + +
                                  +
                                  +
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  +
                                  +

                                  Asus U36 et OCZ Vertex 3 la suite

                                  Après un mois d’attente auprès de Cdiscount, pour au final m’annoncer le remboursement de mon SSD Vertex 2 qui est mort subitement, j’ai donc décidé de commander un Vertex 3 qui va remplacer le mort au sein de mon Asus U36JC. Et pour ne pas l’ouvrir juste pour un banal remplacement de SSD j’ai décidé de remplacer par la même occasion la carte wifi, une Intel N-1000 par une Intel N-6320. Celle-ci disposant en plus du bluetooth. J’en ai donc profité pour prendre des photos supplémentaires du démontage pour compléter mon précédent article : Démontage d’un Asus U36. Vous pouvez d’abord lire mon ancien article avant d’attaquer celui-ci, je ne ferai qu’apporter des informations complémentaires pour le démontage. (suite…)

                                  +
                                  Par HugoPoi, il y a
                                  +
                                  + +
                                  +
                                  +
                                  +
                                  + +
                                  +
                                  + + + + + + + + + + + + + + diff --git a/www/.content.EZtzwPjb/html/ffe7b010376fc6b6c203445095aeb8734104fdbd.00001294.json b/www/.content.EZtzwPjb/html/ffe7b010376fc6b6c203445095aeb8734104fdbd.00001294.json new file mode 100644 index 0000000..2a29e54 --- /dev/null +++ b/www/.content.EZtzwPjb/html/ffe7b010376fc6b6c203445095aeb8734104fdbd.00001294.json @@ -0,0 +1 @@ +{"version":"1.0","provider_name":"HugoPoi","provider_url":"http:\/\/blog.hugopoi.net","author_name":"HugoPoi","author_url":"http:\/\/blog.hugopoi.net\/author\/hugopoi\/","title":"SOPA, PIPA, pipeau et plein d'autre","type":"rich","width":600,"height":338,"html":"
                                  SOPA, PIPA, pipeau et plein d’autre<\/a><\/blockquote>\n